Codebase list virt-viewer / b4b5a66
Merge tag 'upstream/4.0' into debian/sid Upstream version 4.0 # gpg: Signature made Fr 01 Jul 2016 09:07:28 SAST # gpg: using RSA key 0x07B8B7B0EA98120B # gpg: please do a --check-trustdb # gpg: Good signature from "Guido Günther <agx@sigxcpu.org>" [ultimate] # gpg: aka "Guido Günther <gg@godiug.net>" [ultimate] # gpg: aka "Guido Günther <agx@debian.org>" [ultimate] # gpg: aka "Guido Günther <guido@xcpu.ch>" [ultimate] # Primary key fingerprint: D343 9DAA 19DC FACD AE87 9CF2 B999 CDB5 8C8D DBD2 # Subkey fingerprint: BC7C D072 3875 EBAD 05DF 1CD9 07B8 B7B0 EA98 120B Guido Günther 7 years ago
203 changed file(s) with 48870 addition(s) and 39485 deletion(s). Raw diff Collapse all Expand all
1010
1111 With additional patches & translations from:
1212
13 Charles Arnold <carnold@suse.com>
1314 Christophe Fergeau <cfergeau@redhat.com>
1415 Daniel P. Berrange <berrange@redhat.com>
1516 Dave Allan <dallan@redhat.com>
1617 Doug Goldstein <cardoe@cardoe.com>
1718 Eduardo Lima (Etrunko) <etrunko@redhat.com>
1819 Fabiano Fidêncio <fidencio@redhat.com>
20 Frediano Ziglio <fziglio@redhat.com>
1921 Guannan Ren <gren@redhat.com>
2022 Guido Günther <agx@sigxcpu.org>
2123 Hans de Goede <hdegoede@redhat.com>
2325 Jonathon Jongsma <jjongsma@redhat.com>
2426 Ján Tomko <jtomko@redhat.com>
2527 Lukas Venhoda <lvenhoda@redhat.com>
28 Lukáš Venhoda <lvenhoda@redhat.com>
2629 Marc-André Lureau <marcandre.lureau@redhat.com>
2730 Martin Kletzander <mkletzan@redhat.com>
2831 Michal Privoznik <mprivozn@redhat.com>
3336 Richard W.M. Jones <rjones@redhat.com>
3437 Ronnie Sahlberg <ronniesahlberg@gmail.com>
3538 Sandy Stutsman <sstutsma@redhat.com>
39 Uri Lublin <uril@redhat.com>
3640 Victor Toso <victortoso@redhat.com>
3741 Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
3842 Yonit Halperin <yhalperi@redhat.com>
0 2015-12-17 Daniel P. Berrange <berrange@redhat.com>
1
2 Update for release 3.1
0 2016-06-30 Daniel P. Berrange <berrange@redhat.com>
1
2 Update NEWS for 4.0 release
33
44 Refresh translations from zanata
5
6 2016-06-30 Eduardo Lima (Etrunko) <etrunko@redhat.com>
7
8 Adjust timer to refresh ovirt foreign menu
9 This is a temporary solution, as discussed in the bug. We will adjust
10 the timer to refresh the ISO list from 15 seconds to 5 minutes (300
11 seconds), while reworking in the UI to replace the menu with a dialog,
12 which seems a saner way to display the list.
13
14 Resolves: rhbz#1347726
15
16 2016-06-30 Fabiano Fidêncio <fidencio@redhat.com>
17
18 ui: Use mnemonics for remote-viewer connection UI
19 Here we added mnemonics for the buttons "Cancel" and "Connect" and also
20 for the "Connection Address" entry (as it was before moving this dialog
21 to a .ui file).
22
23 The "Recent connections" widget is left behind as GtkRecentChooserWidget
24 isn't suitable for mnemonic activation.
25
26 Resolves: rhbz#1351487
27
28 Acked-by: Pavel Grunt <pgrunt@redhat.com>
29
30 timed-revealer: listen to the "grab-notify" signal
31 The "grab-notify" signal lets us know when our widget becomes
32 shadowed by a Gtk+ grab on another widget, or when it becomes unshadowed
33 due to a grab being removed.
34
35 That's exactly the case we face when dealing with "usb-redirection" and
36 "close" items of the fullscreen toolbar. And, currently, when these
37 widgets get closed the timed-revealer stays there forever. From now on
38 let's take advantage of the "grab-notify" signal and schedule a timeout
39 for the revealer when these widgets' windows get closed.
40
41 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
42 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
43
44 2016-06-29 Eduardo Lima (Etrunko) <etrunko@redhat.com>
45
46 Get rid of deprecated functions to customize widget colors
47 Since commit cc455b7f916110d7cfae6b7af753349e070c9494, the background
48 color has not been set correctly for Gtk+ 3.18 (Fedora 23), while it was
49 working fine for more recent version 3.20 (Fedora 24). Tracked down to
50 some changes in GtkNotebook code which can not be easily backported.
51
52 Instead of customizing background and foreground colors, let's just
53 stick with the default colors provided by theme.
54
55 Related https://bugs.freedesktop.org/show_bug.cgi?id=94276
56
57 2016-06-29 Lukáš Venhoda <lvenhoda@redhat.com>
58
59 package: Add appdata metadata for Gnome Software
60 Adds metadata to be used with Gnome Software.
61 Includes name, summary, description and a few screenshots of remote-viewer.
62
63 Acked-by: Daniel P. Berrange <berrange@redhat.com>
64 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
65
66 2016-06-29 Christophe Fergeau <cfergeau@redhat.com>
67
68 window: Don't take a reference on 'toolbar'
69 VirtViewerTimedRevealer now derives from GtkEventBox/GtkContainer, so
70 it follows GTK+ conventions and takes ownership of the floating ref on
71 'toolbar'. Since VirtViewerWindow and VirtViewerTimedRevealer will have
72 the same lifespan, we don't need to own a reference on toolbar in
73 VirtViewerWindow.
74
75 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
76
77 2016-06-29 Fabiano Fidêncio <fidencio@redhat.com>
78
79 timed-revealer: Inherit from GtkEventBox
80 As suggested by Christophe, inheriting from GtkEventBox instead of
81 having one instance of it as a member can help us to get rid of
82 virt_viewer_timed_revealer_get_overlay_widget().
83
84 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
85
86 2016-06-29 Christophe Fergeau <cfergeau@redhat.com>
87
88 timed-revealer: Don't release reference we don't own
89 VirtViewerTimedRevealer::evBox is created in
90 virt_viewer_timed_revealer_new() and will be passed to
91 gtk_container_add() through gtk_overlay_add_overlay(overlay,
92 virt_viewer_timed_revealer_get_overlay_widget(priv->revealer))
93
94 This means VirtViewerTimedRevealer does not own a reference on evBox,
95 and that it should not try to release it in
96 VirtViewerTimedRevealer::dispose()
97
98 Backtrace for the crash:
99 #0 0x00007ffff3e92c9d in g_type_check_instance_is_fundamentally_a () at /lib64/libgobject-2.0.so.0
100 #1 0x00007ffff3e722a5 in g_object_unref () at /lib64/libgobject-2.0.so.0
101 #2 0x000000000041ebe3 in virt_viewer_timed_revealer_dispose (object=0x1127320) at virt-viewer-timed-revealer.c:128
102 #3 0x00007ffff3e723b6 in g_object_unref () at /lib64/libgobject-2.0.so.0
103 #4 0x000000000041c040 in virt_viewer_window_dispose (object=0x981f70) at virt-viewer-window.c:191
104 #5 0x00007ffff3e723b6 in g_object_unref () at /lib64/libgobject-2.0.so.0
105 #6 0x0000000000413a58 in virt_viewer_app_display_removed (nth=<optimized out>, self=0x680330) at virt-viewer-app.c:989
106 #7 0x0000000000413a58 in virt_viewer_app_display_removed (session=<optimized out>, display=<optimized out>, self=0x680330) at virt-viewer-app.c:1000
107 #8 0x00007ffff3e705e0 in g_cclosure_marshal_VOID__OBJECTv () at /lib64/libgobject-2.0.so.0 #9 0x00007ffff3e6d784 in _g_closure_invoke_va () at /lib64/libgobject-2.0.so.0
108 #10 0x00007ffff3e88cd9 in g_signal_emit_valist () at /lib64/libgobject-2.0.so.0
109 #11 0x00007ffff3e897eb in g_signal_emit_by_name () at /lib64/libgobject-2.0.so.0
110 #12 0x0000000000418973 in virt_viewer_session_remove_display (session=0x9c6de0, display=0x961a90) at virt-viewer-session.c:463
111 #13 0x0000000000420934 in destroy_display (data=<optimized out>) at virt-viewer-session-spice.c:851
112 #14 0x00007ffff3b6d0eb in g_ptr_array_foreach () at /lib64/libglib-2.0.so.0
113 #15 0x00007ffff3b6d180 in ptr_array_free () at /lib64/libglib-2.0.so.0
114 #16 0x000000000042072a in virt_viewer_session_spice_clear_displays (self=0x9c6de0) at virt-viewer-session-spice.c:94
115 #17 0x000000000042240d in virt_viewer_session_spice_close (session=<optimized out>) at virt-viewer-session-spice.c:459
116 #18 0x0000000000414be5 in virt_viewer_app_quit (self=self@entry=0x680330) at virt-viewer-app.c:285
117 #19 0x0000000000415500 in virt_viewer_app_maybe_quit (self=0x680330, window=window@entry=0x981a90) at virt-viewer-app.c:481
118 #20 0x000000000041c4ad in virt_viewer_window_delete (src=<optimized out>, dummy=<optimized out>, self=0x981a90) at virt-viewer-window.c:771
119 #21 0x00007ffff61807f1 in _gtk_marshal_BOOLEAN__BOXEDv () at /lib64/libgtk-3.so.0
120 #22 0x00007ffff3e6d784 in _g_closure_invoke_va () at /lib64/libgobject-2.0.so.0
121 #23 0x00007ffff3e887b3 in g_signal_emit_valist () at /lib64/libgobject-2.0.so.0
122 #24 0x00007ffff3e8933f in g_signal_emit () at /lib64/libgobject-2.0.so.0
123 #25 0x00007ffff62dde6c in gtk_widget_event_internal () at /lib64/libgtk-3.so.0
124 #26 0x00007ffff617f5ef in gtk_main_do_event () at /lib64/libgtk-3.so.0
125 #27 0x00007ffff5c7dd25 in _gdk_event_emit () at /lib64/libgdk-3.so.0
126 #28 0x00007ffff5cae672 in gdk_event_source_dispatch () at /lib64/libgdk-3.so.0
127 #29 0x00007ffff3b9895a in g_main_context_dispatch () at /lib64/libglib-2.0.so.0
128 #30 0x00007ffff3b98d10 in g_main_context_iterate.isra () at /lib64/libglib-2.0.so.0
129 #31 0x00007ffff3b98dbc in g_main_context_iteration () at /lib64/libglib-2.0.so.0
130 #32 0x00007ffff41643cd in g_application_run () at /lib64/libgio-2.0.so.0
131 #33 0x000000000040fc1a in main (argc=3, argv=0x7fffffffdec8) at virt-viewer-main.c:41
132
133 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
134
135 timed-revealer: Fix "revealer" refcounting
136 virt_viewer_timed_revealer_new calls gtk_container_add on the instance
137 returned by gtk_revealer_new so VirtViewerTimedRevealer does not own any
138 ref on this GtkRevealer instance. Unrefing it in _dispose() is thus wrong.
139
140 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
141
142 2016-06-24 Eduardo Lima (Etrunko) <etrunko@redhat.com>
143
144 Use more accurate debug messages for foreign menu
145 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
146 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
147
148 Get ovirt foreign menu item from UI file
149 Currently the menu item is created manually, while this patch changes it to be
150 retrieved from the UI file, and decides if it needs to be shown or hidden if the
151 ISO list is received from ovirt.
152
153 This a preparation for a upcoming UI change that will present the ISO list in a
154 separate dialog, instead of a submenu.
155
156 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
157 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
158
159 2016-06-23 Fabiano Fidêncio <fidencio@redhat.com>
160
161 window: Replace autoDrawer with native Gtk widgets
162 GtkRevealer was intrudced in Gtk+ 3.10 and, combined with Gtk Overlay
163 (intoduced in Gtk+ 3.2), can provide a more sustainably implementation
164 of the AutoDrawer functionality.
165
166 This approach is completely based on the approach taken by virt-manager:
167 https://github.com/virt-manager/virt-manager/commit/dc05600324f6b9a82b68581fc0a9c145f9889ce9
168
169 Resolves: https://bugs.freedesktop.org/show_bug.cgi?id=94495
170
171 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
172
173 mingw,spec: Bump msitools version
174 Fedora 24 has GLib 2.48.0, which brings a new dependency: PCRE.
175 The new dependency is already added to the wxi file (in msitools) and a
176 new msitools build including the fix is already done [0].
177
178 Let's just bump the version in our spec file and make sure we will be
179 using the msitools which includes the fix.
180
181 [0]: https://bodhi.fedoraproject.org/updates/FEDORA-2016-a7a2db6109
182
183 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
184
185 2016-06-22 Pavel Grunt <pgrunt@redhat.com>
186
187 Fix missing field initializers
188 Spotted by clang
189
190 window: Use loop instead of multiple ifs
191 Binds modifier's mask and key, also fixes a compile time warning
192 spotted by clang:
193 warning: cast from 'gchar *' (aka 'char *') to 'guint *' (aka 'unsigned
194 int *') increases required alignment from 1 to 4 [-Wcast-align]
195 return (guint*)g_array_free(a, FALSE);
196
197 window: Move definition from header
198
199 window: Use a predefined macro instead of constant
200
201 2016-06-21 Fabiano Fidêncio <fidencio@redhat.com>
202
203 util: Fix resource path
204 Since commit 1f6f1a48 the resource path for icons has been broken.
205 The reason is that when moving the .ui files to $(srcdir)/resources/ui
206 the define used for the resources was changed to reflect the new
207 directory. However, this change wasn't needed by the icons and ended
208 up with virt-viewer not displaying a few icons.
209
210 Let's fix the issue by setting back the define to the previous one and
211 then tweaking the virt_viewer_util_load_ui() to add "ui" to the resource
212 path, for loading the ui files.
213
214 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
215
216 2016-06-20 Fabiano Fidêncio <fidencio@redhat.com>
217
218 ui: Move ui files to $(srcdir)/resources/ui
219 I'd like to keep our resources all in the same place. In the future we
220 will be able to have:
221 $(srcdir)
222 |_ resources
223 |_ ui: for our {remote,virt}-viewer ui specific files
224 |_ gtk: for files that can be automatically handled by Gtk (like
225 | app-menu).
226 |_ css: for custom themes (like:
227 https://bugs.freedesktop.org/show_bug.cgi?id=94276)
228
229 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
230
231 ui: Rename UI files to .ui (instead of .xml)
232 When using GtkApplication, Gtk automatically searches for the menus of
233 the application at "org/example/app/gtk/menus.ui".
234
235 Currently we don't have a "menus.ui", but try to see this commit is a
236 first step in order to use app-menu.
237
238 For now, let's standardize that all our UI files will have the ".ui"
239 extension instead of the ".xml" one.
240
241 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
242
243 remote-viewer: Add missing chain-up to parent's window_added() method
244 It hasn't bitten us (so hard) so far but would from the moment we add
245 support to app-menu/headerbar.
246
247 By not chaining-up to the parent's method, gtk_window_set_application()
248 is never called. This causes GApplication object not being able to load
249 the app-menu, but using the "fallback" which only contains the "Quit"
250 item.
251
252 By chaining-up to the parent's method, g_application_hold() call on
253 virt-viewer-app.c can be removed, as it is already called by the
254 parent's window_added() method.
255
256 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
257 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
258
259 window: remove unneeded GTK_WIDGET() casts
260 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
261
262 display: use MIN_DISPLAY_{WIDTH, HEIGHT} as the minimum possible value
263 Acked-by: Pavel Grunt <pgrunt@redhat.com>
264
265 display: Only queue a resize on zoom-level changes
266 By the comment in the code:
267 "For the gtk2 build, we need to queue a resize even if the zoom level
268 hasn't changed. This is due to the fact that VirtViewerWindow will
269 queue a resize event for itself immediately after calling this
270 function (in order to shrink the window to fit the new display size
271 if necessary). If we don't queue a resize here, the window will become
272 tiny because we will only request 50x50 during the window resize."
273
274 And it doesn't happen on gtk3 at all. So, let's just remove the comment
275 and just quere the resize when zoom-changes actually happen.
276
277 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
278
279 2016-06-20 Pavel Grunt <pgrunt@redhat.com>
280
281 monitor-alignment: Do not crash on NULL display
282 Since commit 01b66ef88bc142d6716b40b1e384e94a2629a99f virt-viewer
283 does not crash on connection to a guest using an invalid display
284 configuration (eg. Cirrus & QXL vga). That commit allowed existence
285 of NULL display, however the code handling monitors alignment does
286 not expect this and crashes when virt-viewer is shifting/aligning
287 its windows.
288
289 Avoid crashing by returning early on NULL display.
290
291 #0 0x0000000000411d0a in displays_cmp (p1=p1@entry=0xbad940, p2=p2@entry=0xbad944, user_data=user_data@entry=0x8eb180) at virt-viewer-util.c:544
292 #1 0x00007ffff3f16ac5 in msort_with_tmp (p=0x7fffffffd670, b=0xbad940, n=2) at gqsort.c:93
293 #2 0x00007ffff3f16ded in msort_r (b=b@entry=0xbad940, n=n@entry=2, s=s@entry=4, cmp=cmp@entry=0x411ce0 <displays_cmp>, arg=arg@entry=0x8eb180) at gqsort.c:278
294 #3 0x00007ffff3f16e78 in g_qsort_with_data (pbase=pbase@entry=0xbad940, total_elems=total_elems@entry=2, size=size@entry=4, compare_func=compare_func@entry=0x411ce0 <displays_cmp>, user_data=user_data@entry=0x8eb180) at gqsort.c:303
295 #4 0x000000000041277c in virt_viewer_align_monitors_linear (displays=displays@entry=0x8eb180 = {...}) at virt-viewer-util.c:586
296 #5 0x000000000041a92d in virt_viewer_session_on_monitor_geometry_changed (self=0x8f38a0 [VirtViewerSessionSpice], display=<optimized out>) at virt-viewer-session.c:373
297 #6 0x00007ffff4415908 in g_closure_invoke (closure=0x9306c0, return_value=return_value@entry=0x0, n_param_values=2, param_values=param_values@entry=0x7fffffffd960, invocation_hint=invocation_hint@entry=0x7fffffffd900) at gclosure.c:801
298 #7 0x00007ffff4427a1d in signal_emit_unlocked_R (node=node@entry=0x668f80, detail=detail@entry=1551, instance=instance@entry=0x930440, emission_return=emission_return@entry=0x0, instance_and_params=instance_and_params@entry=0x7fffffffd960) at gsignal.c:3627
299 #8 0x00007ffff442fab1 in g_signal_emit_valist (instance=<optimized out>, signal_id=<optimized out>, detail=<optimized out>, var_args=var_args@entry=0x7fffffffdaf0) at gsignal.c:3383
300 #9 0x00007ffff442fd9f in <emit signal notify:agent-connected on instance 0x930440 [SpiceMainChannel]> (instance=instance@entry=0x930440, signal_id=<optimized out>, detail=<optimized out>) at gsignal.c:3439
301 #10 0x00007ffff4419fd4 in g_object_dispatch_properties_changed (object=0x930440 [SpiceMainChannel], n_pspecs=<optimized out>, pspecs=<optimized out> at gobject.c:1061
302 #11 0x00007ffff441c4f9 in g_object_notify (pspec=<optimized out>, object=0x930440 [SpiceMainChannel]) at gobject.c:1155
303 #12 0x00007ffff441c4f9 in g_object_notify (object=0x930440 [SpiceMainChannel], property_name=<optimized out>) at gobject.c:1202
304 #13 0x00007ffff5a63dd0 in notify_main_context (opaque=0x7fffd6fde990) at gio-coroutine.c:240
305 #14 0x00007ffff3f07d7a in g_main_context_dispatch (context=0x68da40) at gmain.c:3152
306 #15 0x00007ffff3f07d7a in g_main_context_dispatch (context=context@entry=0x68da40) at gmain.c:3767
307 #16 0x00007ffff3f080b8 in g_main_context_iterate (context=0x68da40, block=block@entry=1, dispatch=dispatch@entry=1, self=<optimized out>) at gmain.c:3838
308 #17 0x00007ffff3f0838a in g_main_loop_run (loop=0x710de0) at gmain.c:4032
309 #18 0x00007ffff5f53045 in gtk_main () at gtkmain.c:1207
310 #19 0x0000000000411a22 in main (argc=1, argv=0x7fffffffdfa8)
311
312 Resolves: rhbz#1250820
313
314 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
315
316 Add tests for monitor alignment
317 Related: rhbz#1250820
318
319 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
320
321 2016-06-20 Charles Arnold <carnold@suse.com>
322
323 window: Fix segault on zooming operations
324 When virt-viewer is "Waiting for guest domain to start" and
325 the Ctrl- or Ctrl+ keys are pressed to zoom the blank display
326 virt-viewer will crash in virt_viewer_display_get_desktop_size
327 because of a NULL display pointer. To reproduce start virt-viewer
328 on a VM not running and zoom the display.
329
330 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
331 Acked-by: Pavel Grunt <pgrunt@redhat.com>
332
333 2016-06-16 Frediano Ziglio <fziglio@redhat.com>
334
335 Revert "Disable IME to allow receiving all keys"
336 This reverts commit 191f9a8ab49f56aa48781b5eeaa4a1a65d626627.
337
338 This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1342984.
339
340 Calling ImmDisableIME disable IME for the entire program.
341 On Windows 7 this also hide the keyboard application from the task bar
342 making impossible to switch keyboard while using remote viewer.
343 A recent commit in spice-gtk (7d881d2193bf5598b888a48bb4d8d7ad2e62f443,
344 "widget: Disable IME context on display widget") disable IME processing
345 just for SpiceDisplay. This avoid the above regression on Windows 7.
346
347 Not having this spice-gtk commit is not going to cause a huge
348 regression, so it's fine not to add strong coupling between this
349 commit and the spice-gtk commit which fixes this differently.
350
351 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
352
353 2016-06-04 Michal Privoznik <mprivozn@redhat.com>
354
355 tests: Fix VPATH build
356 So test-hotkeys include virt-viewer-app.h which includes
357 virt-viewer-window.h which includes virt-viewer-display.h which
358 in turn wants to include virt-viewer-enums.h. But, the enums
359 header file is generated at build time into builddir not srcdir.
360 Therefore it may happen if the two are distinct that compiler
361 fails to find the enums file:
362
363 In file included from ../../src/virt-viewer-window.h:29:0,
364 from ../../src/virt-viewer-app.h:28,
365 from ../../tests/test-hotkeys.c:27:
366 ../../src/virt-viewer-display.h:28:31: fatal error: virt-viewer-enums.h: No such file or directory
367 #include "virt-viewer-enums.h"
368 ^
369 compilation terminated.
370
371 The fix is to include builddir into paths where header files are
372 looked for.
373
374 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
375
376 virt-viewer-display-vnc: Include virt-viewer-util.h
377 In function virt_viewer_display_vnc_new() we are calling
378 virt_viewer_signal_connect_object() which is defined in
379 virt-viewer-util module. However, the header file for the module
380 is never included.
381
382 CC libvirt_viewer_la-virt-viewer-display-vnc.lo
383 virt-viewer-display-vnc.c: In function 'virt_viewer_display_vnc_new':
384 virt-viewer-display-vnc.c:251:5: warning: implicit declaration of function 'virt_viewer_signal_connect_object' [-Wimplicit-function-declaration]
385 virt_viewer_signal_connect_object(app, "notify::enable-accel",
386 ^
387 virt-viewer-display-vnc.c:251:5: warning: nested extern declaration of 'virt_viewer_signal_connect_object' [-Wnested-externs]
388
389 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
390
391 2016-06-02 Pavel Grunt <pgrunt@redhat.com>
392
393 app: Check validity of hotkey
394 The hotkey is valid if it has a valid value. The value is valid if it is
395 not empty and is successfully parsed by gtk_accelerator_parse().
396
397 These hotkeys formats are considered invalid:
398 "key" - missing value
399 "key=" - missing value
400 "key=abcd" - value cannot be parsed by gtk_accelerator_parse()
401
402 Resolves: rhbz#1339572
403
404 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
405
406 tests: Add hotkeys test
407 Check if expected g_warning messages are logged.
408
409 Related: rhbz#1339572
410
411 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
412
413 app: Use debug to inform about smartcard shortcuts state
414 Related: rhbz#1339572
415
416 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
417
418 vnc-display: Disable default grab sequence
419 It should be enabled only if the "release-cursor" sequence was not
420 specified (by using "--hotkeys=release-cursor=sequence"), otherwise
421 both sequences would release the cursor.
422
423 The solution is taken from the spice-display code.
424
425 Resolves: rhbz#1339575
426
427 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
428
429 2016-05-31 Pavel Grunt <pgrunt@redhat.com>
430
431 Include virt-viewer-util.h only in source files
432 It doesn't have any symbols to be used in headers
433
434 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
435
436 Add mnemonics for each display item
437 Related: rhbz#1332545
438
439 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
440
441 2016-05-10 Christophe Fergeau <cfergeau@redhat.com>
442
443 ovirt: Use sso-token when set in .vv file
444 Starting with oVirt 4.0, this replaces the jsessionid field for
445 automatic authentication with oVirt instances for REST communication.
446
447 vv-file: Add support for 'sso-token' field in [ovirt]
448 This is the new way of authenticating with remote oVirt instance
449 starting with oVirt 4.0.
450
451 ovirt: Fix OvirtApi memory handling
452 The oVirt integration code in remote-viewer assumes that
453 the caller owns a reference on the OvirtApi instance returned
454 by ovirt_proxy_fetch_api{,finish}.
455 This is incorrect as these 2 API calls have always been documented as
456 being (transfer none). This was working so far because libgovirt was
457 leaking an OvirtApi reference. This bug is fixed upstream, so we now get
458 a warning on remote-viewer exit about trying to unref an invalid object.
459
460 This commit fixes that by taking the ref we expect in OvirtForeignMenu,
461 and by not releasing a ref we do not own in remote-viewer.c
462
463 ovirt: Error reporting improvements on invalid VM name
464
465 ovirt: Don't try to use [ovirt] if jsessionid is not set
466 If jsessionid is not set in the .vv file and we try to use anyway the
467 REST API, an authentication dialog will be shown by remote-viewer, which
468 is very unwelcome. If we don't have a jsessionid set, we know we won't
469 be able to silently login to the REST API, so don't try to set a foreign
470 menu when it's not set.
471
472 2016-05-04 Frediano Ziglio <fziglio@redhat.com>
473
474 Add a program to test redirection on Windows
475 This program attempt multiple redirection combination:
476 - passing handles using either CreateProcess or SetStdHandle;
477 - having a console or not;
478 - redirection stdout/stderr yes or not.
479
480 Worth to mention that for running this test program the user will need
481 either a native MingW or Wine (with .exe executables enabled in Linux
482 binfmt).
483
484 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
485
486 Manage redirection in a way similar to Unix
487 This patch allows remote-viewer to redirect output/error streams to
488 files.
489 Also if launched from a console program (for instance from the command
490 prompt) you are able to see output from the console where you launch
491 the program.
492 This allow to launch the program with a syntax like:
493 > remote-viewer.exe --debug > log.txt 2>&1
494 or simply:
495 > remote-viewer.exe --debug
496
497 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
498
499 2016-05-03 Jonathon Jongsma <jjongsma@redhat.com>
500
501 Add some missing mnemonics to menu items
502 Fixes: rhbz#1332545
503
504 2016-05-03 Fabiano Fidêncio <fidencio@redhat.com>
505
506 msi: Depend on mingw-adwaita-icon-theme
507 Instead of maintain a file which includes every single icon that we use
508 from adwaita-icon-theme (adwaita-icons-needed.wxi.in), let's depend on
509 mingw-adwaita-icon-theme directly.
510 It reduces considerably the maintainability and the risk to have missing
511 icons. Although, the size of the final binary gets increased from ~35MB
512 to ~50MB.
513
514 Resolves: rhbz#1301064
515 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
516
517 Remove nsis installer
518 The only reason for us to keep maintaining the nsis installer was the
519 activex plugin (spicex), which requires those nsis based installers.
520 As the next release of RHEV/oVirt won't use the activex plugin (spicex)
521 let's completely remove the nsis installer from our tree and focus on
522 only maintain the msi installer.
523 oVirt/RHEV is shipping virt-viewer based on 2.0 release and, if needed,
524 they can stick to 3.0 branch in a future update (in case their plan goes
525 wrong and they end up needing the nsis support).
526
527 Related: rhbz#1324885 and rhbz#1316560
528 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
529
530 2016-05-03 Jonathon Jongsma <jjongsma@redhat.com>
531
532 Add some timeouts to file transfer dialog
533 In order to avoid the situation where a dialog flashes onto the screen
534 and then is immediately hidden, I've added a couple timeouts to the
535 dialog.
536
537 The first is a 250ms timeout before showing the dialog. This avoids
538 showing the dialog at all for very small, quick transfers.
539
540 There is also a 500ms timeout before hiding a finished task. This
541 ensures that even transfers that only take e.g. 251ms to transfer will
542 get shown to the user for at least 500ms rather than being hidden 1ms
543 after showing the dialog.
544
545 Related: rhbz#1332180, rhbz#1324521
546 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
547 Acked-by: Victor Toso <victortoso@redhat.com>
548
549 Add file transfer dialog
550 This dialog will show the progress of files being transferred from the
551 client to the guest and allows the user to cancel ongoing file transfer
552 tasks. The user can cancel each transfer individually, or cancel all
553 ongoing transfers at once.
554
555 Resolves: rhbz#1332180, rhbz#1324521
556 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
557
558 2016-04-26 Fabiano Fidêncio <fidencio@redhat.com>
559
560 spice: avoid crashing when using invalid video config
561 virt-viewer _only_ supports guests that have either:
562
563 A) a signle graphics device with multiple displays (monitorid=0,
564 displayid=(0,1,2,3)).
565
566 B) multiple graphics device with a single display each
567 (monitorid=(0,1,2,3), displayid=0).
568
569 From now on, avoid crashing connecting to a guest which has a graphics
570 configuration that violates A or B. However, even avoiding the crash, we
571 cannot ensure the guest will work as expected.
572
573 Resolves: rhbz#1250820
574
575 2016-04-22 Pavel Grunt <pgrunt@redhat.com>
576
577 manpage: Mention spice-gtk in See also section
578
579 2016-04-19 Christophe Fergeau <cfergeau@redhat.com>
580
581 Disable IME to allow receiving all keys
582 This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1297640
583
584 Acked-by: Frediano Ziglio <fziglio@redhat.com>
585 Acked-by: Pavel Grunt <pgrunt@redhat.com>
586
587 2016-04-15 Christophe Fergeau <cfergeau@redhat.com>
588
589 spec: Use pkgconfig() in BuildRequires
590 This is better than hardcoding the name of the development package as
591 this will not be impacted by package renames.
592
593 2016-03-24 Eduardo Lima (Etrunko) <etrunko@redhat.com>
594
595 configure: cleanup {GLIB2, GTK}_CFLAGS
596 Also, remove unecessary AC_SUBST calls, as {GLIB2,GTK}_LIBS are never
597 touched.
598
599 Fix spice includes
600 Spice release version 0.31 requires that only spice-client.h or
601 spice-client-gtk.h should be included directly. As a result,
602 compilation is now throwing warnings like:
603
604 warning: #warning "Only <spice-client.h> can be included directly" [-Wcpp]
605 warning: #warning "Only <spice-client-gtk.h> can be included directly" [-Wcpp]
606
607 This patch also bumps spice version requirement to 0.31, to ensure
608 those files are available.
609
610 2016-03-15 Pavel Grunt <pgrunt@redhat.com>
611
612 util: Remove unused GHashTable key/value
613
614 2016-03-14 Pavel Grunt <pgrunt@redhat.com>
615
616 Move tests under /tests directory
617 Keep tests separated from the code
618
619 Add libvirt-viewer-util library an use it in tests
620
621 2016-03-09 Christophe Fergeau <cfergeau@redhat.com>
622
623 Don't include libvirt.h in virt-viewer-auth.h
624 virt-viewer-auth.h does not use any libvirt types, so the #include is
625 not needed, and virt-viewer-auth.h is used while building remote-viewer,
626 which do not use libvirt compilation flags. This caused failures on
627 a freshly installed box without libvirt headers.
628
629 ovirt: Only use active ISO domains for foreign menu
630 oVirt storage domains can be in various states (inactive, in
631 maintainance, ...). We only want to show the ISOs it contains in the
632 foreign menu when the storage domain is actually active, not in the
633 other states.
634
635 https://bugzilla.redhat.com/show_bug.cgi?id=1310450
636
637 2016-03-08 Pavel Grunt <pgrunt@redhat.com>
638
639 test: Add tests for monitor mapping
640
641 virt_viewer_parse_monitor_mappings: Add parameter for client monitors
642 Drop dependency on gdk. it allows to write tests not depending
643 on the client's configuration.
644
645 Move monitor mapping parsing from app to util
646 It is not specific to VirtViewerApp.
647 Following commits will add support for tests thanks to this move.
648
649 2016-03-07 Fabiano Fidêncio <fidencio@redhat.com>
650
651 app, cosmetic: remove one unneeded level of identation
652 Acked-by: Pavel Grunt <pgrunt@redhat.com>
653
654 app: monitor-config - do it all or nothing
655 Don't keep trying to use a monitor config when it already failed for one
656 monitor, otherwise virt-viewer can end up in a situation where none of
657 the displays are enabled but the program is still running.
658 So, in case of any failure, let's skip the whole monitor config, forcing
659 virt-viewer to use the "fallback" one instead.
660
661 Resolves: rhbz#1315206
662
663 Acked-by: Pavel Grunt <pgrunt@redhat.com>
664
665 2016-03-04 Fabiano Fidêncio <fidencio@redhat.com>
666
667 Refresh translations from Zanata
668
669 2016-03-03 Fabiano Fidêncio <fidencio@redhat.com>
670
671 Use GResource for loading ui files
672 Let's take advantage of GResource for loading ui files in a better and
673 cleaner way than virt_viewer_util_load_ui() was doing.
674 It also brings the benefit, at least for developers, of being able to
675 test ui changes without having to "make install" virt-viewer.
676
677 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
678
679 app: Remove useless libxml includes
680 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
681
682 about: Fix the program's name in the title
683 Title currently says "About Glade". It's not a big deal because it's not
684 actually shown anywhere, but just for correctness let's change it to
685 "About Virt-Viewer".
686
687 Thanks Jonathon Jongsma for pointing this out.
688
689 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
690
691 2016-02-26 Eduardo Lima (Etrunko) <etrunko@redhat.com>
692
693 Don't open the default display while parsing command line
694 Since commit a9ce19f it has not been possible to check app version from
695 a tty without X session running. The issue is that gtk_get_option_group
696 function opens the default display if passed TRUE as argument.
697
698 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
699
700 2016-02-26 Fabiano Fidêncio <fidencio@redhat.com>
701
702 session-vnc: Avoid depracated warnings on this file
703 This is a temporary solution for using autobuild.sh, as commit df403f5
704 introduced the -Wdeprecated-declarations and gtk-vnc provides a callback
705 for getting authentication credentials which uses GValueArray, forcing
706 virt-viewer to keep using g_value_array_get_nth(), which is deprecated.
707
708 Acked-by: Pavel Grunt <pgrunt@redhat.com>
709
710 2016-02-25 Fabiano Fidêncio <fidencio@redhat.com>
711
712 configure: Simplify libvirt/libvirt-glib handling
713 Merge libvirt and libvirt-glib checking in PKG_CHECK_MODULES, then we
714 don't nee the LIBVIRT_GLIB_{CFLAGS,LIBS} in Makefile.am
715
716 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
717
718 wxi: virt-viewer depends on libvirt-glib
719 Since 51ce01d virt-viewer depends again on libvirt-glib.
720
721 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
722 Acked-by: Victor Toso <victortoso@redhat.com>
723
724 nsis: Add libvirt-glib-1.0-0.dll
725 Since 51ce01d virt-viewer depends again on libvirt-glib.
726
727 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
728 Acked-by: Victor Toso <victortoso@redhat.com>
729
730 Bring back libvirt-glib dependency
731 libvirt-glib dependency was dropped in commit 296f91c in favor to
732 maintain the full glib event loop integration into virt-viewer tree.
733 This decision was taken because libvirt-glib was not mature enough at
734 that time, which is not the case nowadays.
735
736 The libvirt-glib version chosen as dependency (0.1.8) is the first
737 release that includes the fixes for the glib event loop integration that
738 were backported to virt-viewer last year.
739
740 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
741 Acked-by: Victor Toso <victortoso@redhat.com>
742
743 2016-02-25 Pavel Grunt <pgrunt@redhat.com>
744
745 README: update information
746 Remove info about gtk versions
747 Fix a typo
748 Change link for spice-gtk widget
749
750 2016-02-24 Fabiano Fidêncio <fidencio@redhat.com>
751
752 cleanup: Don't use gtk_widget_modify_{fg,bg}()
753 These function have been deprecated since Gtk 3.0 and is recommended to
754 use _override_color() and _override_background_color() instead.
755 As these new functions take a GdkRGBA as parameter, let's use
756 gdk_rgba_parse() instead of gdk_color_parse().
757
758 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
759 Acked-by: Pavel Grunt <pgrunt@redhat.com>
760
761 cleanup: Don't use GtkStock
762 It has been deprecated since Gtk 3.10.
763
764 New strings have been added as the GTK_STOCK_* defines had their
765 translations done inside Gtk itself, but now the translations of the new
766 added labels must be done by virt-viewer translators.
767
768 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
769 Acked-by: Pavel Grunt <pgrunt@redhat.com>
770
771 cleanup: Drop old compatibilty code
772 A few more pieces of old compatibility code can be dropped, as we
773 already depend on GLib 2.38.
774
775 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
776
777 Use GDK_VERSION_MAX_ALLOWED
778 In order to avoid using a too new Gtk API.
779
780 Acked-by: Pavel Grunt <pgrunt@redhat.com>
781
782 Use GLIB_VERSION_MAX_ALLOWED
783 In order to avoid using a too new GLib API.
784
785 Acked-by: Pavel Grunt <pgrunt@redhat.com>
786
787 m4: Use -Wdeprecated-declarations
788 Let's enable deprecated-declarations warnings as we want to:
789 1) Avoid insert/maintain deprecated widgets/methods
790 2) Avoid adding widgets/methods that are too new, what could cause
791 problems like virt-viewer not being able to build in a specific distro.
792
793 Patches for making these two items possible are coming, introducing
794 _VERSION_MAX_ALLOWED for both GLIB and GDK and removing (as much as
795 possible) deprecated widgets/methods/structures.
796
797 Acked-by: Pavel Grunt <pgrunt@redhat.com>
798
799 mingw: Bump msitools version
800 Since commit 5d98df3 we depend on msitools 0.95-2.
801
802 Acked-by: Pavel Grunt <pgrunt@redhat.com>
803
804 app: Don't leave a window opened in case of connection error
805 Since commit ed9b3f3 the main window is not hidden when disconnecting.
806 But it also is not hidden when a connection error occurs, leaving a
807 black display with a not so accurate message to the users in case they
808 try to connect to a non-valid address from the remote-viewer connection
809 window and in this case the main window (display #1) shuldn't be shown.
810
811 The impetus for this chance is the following:
812 - user runs remote-viewer without any argument
813 - the remote-viewer connection window shows up
814 - user attempts to connect to a non-valid address
815 - a dialog pops up indicating a failure connecting to the graphic server
816 - the main window shows up saying "Connecting to the graphic server"
817 - user clicks 'Ok'
818 - the main window stays there with the same message
819
820 As a user, I expect the program to not show the main window in
821 connecting failure cases. This patch accomplishes that.
822
823 nsis: update nettle to 3.2.1
824 Use version 3.2.1, matching what currently is in f23.
825
826 2016-02-18 Eduardo Lima (Etrunko) <etrunko@redhat.com>
827
828 Drop old compatibility code
829 With glib requirements now being 2.38, these functions do not make sense anymore.
830
831 remote-viewer: Remove unused properties
832 The reason for using properties to access those members was to ensure
833 that they would only be set during the creation of the object. Now that
834 we removed that restriction, we set private members directly.
835
836 Port to GtkApplication API's
837 Most of this patch consists in code being shuffled around to fit the
838 expected flow while using the new APIs. I tried my best to make this
839 patch the less intrusive as possible. Main changes are:
840
841 - Updated build requirements
842 * glib version 2.38
843 * gtk+ version 3.10
844 * gio
845
846 - VirtViewerApp is now a subclass of GtkApplication.
847 Some mainloop calls were replaced:
848 * gtk_main() -> g_application_run()
849 * gtk_quit() -> g_application_quit()
850
851 - Unified command line option handling.
852 The logic has moved from the main functions and split in common
853 options, and specific ones for each application. With this, the main
854 functions were highly simplified, and now basically responsible for
855 instantiating the App object and running the main loop.
856
857 - All Window objects must be associated with the Application.
858 With this, there is no need to emit our own 'window-added'/'window-
859 removed' signals, as those will be emited by GtkApplication whenever
860 gtk_application_add_window() and gtk_application_remove_window() are
861 called. Also, 'window-removed' was not being used anywhere.
862
863 2016-02-18 Uri Lublin <uril@redhat.com>
864
865 spice: vv-file: do not ignore usb-filter
866 Fixes rhbz#1309634
867
868 Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
869
870 2016-02-15 Eduardo Lima (Etrunko) <etrunko@redhat.com>
871
872 Minor code cleanups
873 - Reuse #ifdef HAVE_SPICE_GTK block for include.
874 - Move declaration of vfunc together with others of the same class.
875 - Move variable declaration to the top of the function.
876
877 2016-02-15 Fabiano Fidêncio <fidencio@redhat.com>
878
879 Drop support to gtk2
880 The 3.0 release was the last one that still supports GTK2. For the
881 Windows builds the support to GTK2 was dropped in the previous release.
882 Let's do the same for the entire project now.
883
884 2016-02-15 Pavel Grunt <pgrunt@redhat.com>
885
886 display: Use correct variable name
887 Fix gtk2 build
888
889 display: Remove zoom property
890 It is possible to get the same info from the "zoom-level" property.
891 virt_viewer_display_get_zoom() now returns TRUE if zoom level != 100
892
893 display: Use common code to get preferred size
894
895 app: Compute monitor mapping only in fullscreen
896
897 app: Do not show usbredir button without session
898 The button is visible in the fullscreen toolbar when waiting for a guest.
899 Clicking on it causes the runtime warning:
900 virt-viewer-CRITICAL **: virt_viewer_session_usb_device_selection: assertion 'VIRT_VIEWER_IS_SESSION(self)' failed
901
902 app: Add comment only when config file has VM group
903 Avoid the debug message on close:
904 virt-viewer-DEBUG: Unable to get comment from key file: Key file does not have group '39cd210d-5d45-478a-91fe-b3680307f2df'
905
906 app: Return early on empty monitor mapping
907 Resolves:
908 https://bugzilla.redhat.com/show_bug.cgi?id=1304648
909
910 2016-02-03 Pavel Grunt <pgrunt@redhat.com>
911
912 display: Set value of desktop width and height property directly
913 Avoid calling gtk_widget_queue_resize() and emiting
914 the "display-desktop-resize" signal.
915 The only user of the properties is virt_viewer_display_spice_set_desktop()
916 which will call the function and emit the signal after setting both
917 "desktop-width" and "desktop-height" properties.
918
919 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
920
921 display: Return early and remove a block
922 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
923
924 display: Remove unnecessary VIRT_VIEWER_DISPLAY cast
925 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
926
927 2016-01-18 Fabiano Fidêncio <fidencio@redhat.com>
928
929 Remove GSLice usage
930 It's being slowly deprecated in glib
931 https://bugzilla.gnome.org/show_bug.cgi?id=754687
932
933 2016-01-13 Jonathon Jongsma <jjongsma@redhat.com>
934
935 display: Set useful values for MIN_DISPLAY_{WIDTH, HEIGHT}
936 Nowadays the value for MIN_DISPLAY_{WIDTH,HEIGHT} is 50. This arbitrary
937 value doesn't bring any benefit, doesn't provide a useful size for a
938 desktop to be usable and can actually trigger some undefined behavior
939 when reaching resolutions that are lower than the ones provided by the
940 video drivers (as in rhbz#1296878).
941
942 In order to avoid these issues and provide a minimum resolution that can
943 still be useful for our users, let's use the same values for minimum
944 width and height used by the linux QXL drivers (320x200).
945
946 This also requires us to adjust the minimum requested widget size when
947 zoom is enabled so that we don't accidentally request a size smaller
948 than the driver can support.
949
950 Related: rhbz#1296878
951
952 2016-01-08 Fabiano Fidêncio <fidencio@redhat.com>
953
954 display: set min value for desktop-{width,height} props as MIN_DISPLAY_{WIDTH,HEIGHT}
955 Otherwise we can have warnings when resizing the virt-viewer window to
956 the smallest possible size, like:
957
958 (virt-viewer:11187): GLib-GObject-WARNING **: value "50" of type `gint'
959 is invalid or out of range for property `desktop-height' of type `gint'
960
961 Related: rhbz#1296878
5962
6963 2015-12-07 Daniel P. Berrange <berrange@redhat.com>
7964
11
22 ACLOCAL_AMFLAGS = -I m4
33
4 SUBDIRS = icons src man po data
4 SUBDIRS = icons src man po data tests
55
66 AM_DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb
77 EXTRA_DIST = \
4040 # Generate the ChangeLog file (with all entries since the switch to git)
4141 # and insert it into the directory we're about to use to create a tarball.
4242 if OS_WIN32
43 .PHONY: gen-ChangeLog gen-AUTHORS nsis
43 .PHONY: gen-ChangeLog gen-AUTHORS msi
4444 else
4545 .PHONY: gen-ChangeLog gen-AUTHORS
4646 endif
6262 fi
6363
6464 if OS_WIN32
65 .PHONY: nsis
66 nsis:
67 make -C $(builddir)/data virt-viewer-$(VERSION).exe
65 .PHONY: msi
66 msi:
67 make -C $(builddir)/data msi
6868 endif
6969
7070
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 \
95 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9695 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9796 $(ACLOCAL_M4)
9897 DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
247246 GLIB2_CFLAGS = @GLIB2_CFLAGS@
248247 GLIB2_LIBS = @GLIB2_LIBS@
249248 GLIB2_REQUIRED = @GLIB2_REQUIRED@
249 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
250250 GLIB_MKENUMS = @GLIB_MKENUMS@
251251 GMOFILES = @GMOFILES@
252252 GMSGFMT = @GMSGFMT@
253253 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
254254 GREP = @GREP@
255 GTK2_REQUIRED = @GTK2_REQUIRED@
256 GTK3_REQUIRED = @GTK3_REQUIRED@
257 GTK_API_VERSION = @GTK_API_VERSION@
258255 GTK_CFLAGS = @GTK_CFLAGS@
259256 GTK_LIBS = @GTK_LIBS@
260257 GTK_REQUIRED = @GTK_REQUIRED@
261 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
262 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
263 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
264258 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
265259 GTK_VNC_LIBS = @GTK_VNC_LIBS@
260 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
266261 ICOTOOL = @ICOTOOL@
267262 INSTALL = @INSTALL@
268263 INSTALL_DATA = @INSTALL_DATA@
285280 LIBS = @LIBS@
286281 LIBTOOL = @LIBTOOL@
287282 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
283 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
288284 LIBVIRT_LIBS = @LIBVIRT_LIBS@
289285 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
290286 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
401397 top_srcdir = @top_srcdir@
402398 NULL =
403399 ACLOCAL_AMFLAGS = -I m4
404 SUBDIRS = icons src man po data
400 SUBDIRS = icons src man po data tests
405401 AM_DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb
406402 EXTRA_DIST = \
407403 $(PACKAGE).spec \
929925
930926 # Generate the ChangeLog file (with all entries since the switch to git)
931927 # and insert it into the directory we're about to use to create a tarball.
932 @OS_WIN32_TRUE@.PHONY: gen-ChangeLog gen-AUTHORS nsis
928 @OS_WIN32_TRUE@.PHONY: gen-ChangeLog gen-AUTHORS msi
933929 @OS_WIN32_FALSE@.PHONY: gen-ChangeLog gen-AUTHORS
934930
935931 gen-ChangeLog:
948944 mv -f $(distdir)/AUTHORS-tmp $(distdir)/AUTHORS ; \
949945 fi
950946
951 @OS_WIN32_TRUE@.PHONY: nsis
952 @OS_WIN32_TRUE@nsis:
953 @OS_WIN32_TRUE@ make -C $(builddir)/data virt-viewer-$(VERSION).exe
947 @OS_WIN32_TRUE@.PHONY: msi
948 @OS_WIN32_TRUE@msi:
949 @OS_WIN32_TRUE@ make -C $(builddir)/data msi
954950
955951 # this make sure those files are regenerated when they change
956952 # (in maintainer-mode)
00 Virt Viewer News
11 ================
22
3 3.1: Dec 17, 2015
3 4.0: Jun 20, 2016
44 -----------------
55
6 - Drop support for gtk2 builds
7 - Require spice-gtk >= 0.31
8 - Require glib2 >= 2.38
9 - Require gtk3 >= 3.10
10 - Require libvirt-glib >= 0.1.8
11 - Increase minimum window size fo 320x200 instead of 50x50
12 - Remove use of GSLice
13 - Don't show usbredir button if not connected yet
14 - Only compute monitor mapping in full screen
15 - Don't ignore usb-filter in spiec vv-file
16 - Port to use GtkApplication API
17 - Don't leave window open after connection failure
18 - Validate symbols from max glib/gdk versions
19 - Don't use GtkStock
20 - Don't use gtk_widget-modify_{fg,bg} APIs
21 - Drop use of built-in eventloop in favour of libvirt-glib
22 - Don't open X display while parsing command line
23 - Fix window title
24 - Use GResource for building ui files into binary
25 - Fix crash with invalid spice monitor mapping
26 - Add dialog to show file transfer progress and allow
27 cancelling
28 - Remove unused nsis installer support
29 - Include adwaita icon theme in msi builds
30 - Add more menu mnemonics
31 - Fix support for windows consoles to allow I/O redirection
32 - Add support for ovirt sso-token in vv-file
33 - Fix crash with zooming window while not connected
34 - Remove custom auto drawer widget with GtkRevealer
35 - Add appdata file for gnome software
36 - Misc other bug fixes
637 - Refresh translations
738
839 3.0: Dec 3, 2015
33 Virt Viewer provides a graphical viewer for the guest OS
44 display. At this time is supports guest OS using the VNC
55 or SPICE protocols. Further protocols may be supported in
6 the future as user demand dicatates. The viewer can connect
6 the future as user demand dictates. The viewer can connect
77 directly to both local and remotely hosted guest OS, optionally
88 using SSL/TLS encryption.
99
10 Virt Viewer can be built with either GTK2 or GTK3, with the
11 default option currently being GTK2. The choice can be made
12 with:
10 Virt Viewer is the GTK3 application. Virt Viewer 3.0 was
11 the last release that supported GTK2.
1312
14 ./configure --with-gtk=3.0 (or =2.0)
15
16 Virt Viewer uses the GTK-VNC (>= 0.4.3) widget to provide a
13 Virt Viewer uses the GTK-VNC (>= 0.4.0) widget to provide a
1714 display of the VNC protocol, which is available from
1815
1916 http://gtk-vnc.sourceforge.net/
2118 Virt Viewer uses the SPICE-GTK (>= 0.30) widget to provide a
2219 display of the SPICE protocol, which is available from:
2320
24 http://spice-space.org/page/Spice-Gtk
21 http://www.spice-space.org/download.html
2522
2623 Use of either SPICE-GTK or GTK-VNC can be disabled at time
2724 of configure, with --without-gtk-vnc or --without-spice-gtk
3333 try_compiler_flags="$try_compiler_flags -Wall -Wmissing-prototypes -std=c99 -Wnested-externs -Wpointer-arith"
3434 try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return"
3535 # Removed -Wstrict-prototypes to avoid GTK bug
36 try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wno-sign-compare -Wno-deprecated-declarations"
36 try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wdeprecated-declarations -Wno-sign-compare"
3737 if test "$enable_compile_warnings" = "error" ; then
3838 try_compiler_flags="$try_compiler_flags -Werror"
3939 fi
334334 # on various variables needed by the Makefile.in.in installed by
335335 # glib-gettextize.
336336 dnl
337 glib_DEFUN([GLIB_GNU_GETTEXT],
337 AU_DEFUN([GLIB_GNU_GETTEXT],
338338 [AC_REQUIRE([AC_PROG_CC])dnl
339339
340340 GLIB_LC_MESSAGES
404404 rm -f po/POTFILES
405405 sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
406406 < $srcdir/po/POTFILES.in > po/POTFILES
407 ])
407 ],
408 [[$0: This macro is deprecated. You should use upstream gettext instead.]])
408409
409410 # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE)
410411 # -------------------------------
455456 fi])
456457
457458
459
460 dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
461 # serial 42 IT_PROG_INTLTOOL
462 AC_DEFUN([IT_PROG_INTLTOOL], [
463 AC_PREREQ([2.50])dnl
464 AC_REQUIRE([AM_NLS])dnl
465
466 case "$am__api_version" in
467 1.[01234])
468 AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
469 ;;
470 *)
471 ;;
472 esac
473
474 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
475 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
476 INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
477 if test -n "$1"; then
478 AC_MSG_CHECKING([for intltool >= $1])
479 AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
480 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
481 AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
482 fi
483
484 AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
485 AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
486 AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
487 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
488 AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
489 fi
490
491 if test -z "$AM_DEFAULT_VERBOSITY"; then
492 AM_DEFAULT_VERBOSITY=1
493 fi
494 AC_SUBST([AM_DEFAULT_VERBOSITY])
495
496 INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))'
497 INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))'
498 INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;'
499 AC_SUBST(INTLTOOL_V_MERGE)
500 AC_SUBST(INTLTOOL__v_MERGE_)
501 AC_SUBST(INTLTOOL__v_MERGE_0)
502
503 INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))'
504 intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))'
505 intltool__v_merge_options_0='-q'
506 AC_SUBST(INTLTOOL_V_MERGE_OPTIONS)
507 AC_SUBST(intltool__v_merge_options_)
508 AC_SUBST(intltool__v_merge_options_0)
509
510 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 $< [$]@'
511 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 $< [$]@'
512 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 $< [$]@'
513 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 $< [$]@'
514 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 $< [$]@'
515 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 $< [$]@'
516 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 $< [$]@'
517 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 $< [$]@'
518 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 $< [$]@'
519 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 $< [$]@'
520 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 $< [$]@'
521 if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then
522 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 $< [$]@'
523 else
524 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'
525 fi
526 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 $< [$]@'
527 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 $< [$]@'
528 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 $< [$]@'
529 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 $< [$]@'
530 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 $< [$]@'
531 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 $< [$]@'
532 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 $< [$]@'
533
534 _IT_SUBST(INTLTOOL_DESKTOP_RULE)
535 _IT_SUBST(INTLTOOL_DIRECTORY_RULE)
536 _IT_SUBST(INTLTOOL_KEYS_RULE)
537 _IT_SUBST(INTLTOOL_PROP_RULE)
538 _IT_SUBST(INTLTOOL_OAF_RULE)
539 _IT_SUBST(INTLTOOL_PONG_RULE)
540 _IT_SUBST(INTLTOOL_SERVER_RULE)
541 _IT_SUBST(INTLTOOL_SHEET_RULE)
542 _IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
543 _IT_SUBST(INTLTOOL_UI_RULE)
544 _IT_SUBST(INTLTOOL_XAM_RULE)
545 _IT_SUBST(INTLTOOL_KBD_RULE)
546 _IT_SUBST(INTLTOOL_XML_RULE)
547 _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
548 _IT_SUBST(INTLTOOL_CAVES_RULE)
549 _IT_SUBST(INTLTOOL_SCHEMAS_RULE)
550 _IT_SUBST(INTLTOOL_THEME_RULE)
551 _IT_SUBST(INTLTOOL_SERVICE_RULE)
552 _IT_SUBST(INTLTOOL_POLICY_RULE)
553
554 # Check the gettext tools to make sure they are GNU
555 AC_PATH_PROG(XGETTEXT, xgettext)
556 AC_PATH_PROG(MSGMERGE, msgmerge)
557 AC_PATH_PROG(MSGFMT, msgfmt)
558 AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
559 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
560 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
561 fi
562 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
563 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
564 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
565 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
566 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
567 fi
568
569 AC_PATH_PROG(INTLTOOL_PERL, perl)
570 if test -z "$INTLTOOL_PERL"; then
571 AC_MSG_ERROR([perl not found])
572 fi
573 AC_MSG_CHECKING([for perl >= 5.8.1])
574 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
575 if test $? -ne 0; then
576 AC_MSG_ERROR([perl 5.8.1 is required for intltool])
577 else
578 IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"`
579 AC_MSG_RESULT([$IT_PERL_VERSION])
580 fi
581 if test "x$2" != "xno-xml"; then
582 AC_MSG_CHECKING([for XML::Parser])
583 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
584 AC_MSG_RESULT([ok])
585 else
586 AC_MSG_ERROR([XML::Parser perl module is required for intltool])
587 fi
588 fi
589
590 # Substitute ALL_LINGUAS so we can use it in po/Makefile
591 AC_SUBST(ALL_LINGUAS)
592
593 IT_PO_SUBDIR([po])
594
595 ])
596
597
598 # IT_PO_SUBDIR(DIRNAME)
599 # ---------------------
600 # All po subdirs have to be declared with this macro; the subdir "po" is
601 # declared by IT_PROG_INTLTOOL.
602 #
603 AC_DEFUN([IT_PO_SUBDIR],
604 [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
605 dnl
606 dnl The following CONFIG_COMMANDS should be executed at the very end
607 dnl of config.status.
608 AC_CONFIG_COMMANDS_PRE([
609 AC_CONFIG_COMMANDS([$1/stamp-it], [
610 if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
611 AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
612 fi
613 rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
614 >"$1/stamp-it.tmp"
615 [sed '/^#/d
616 s/^[[].*] *//
617 /^[ ]*$/d
618 '"s|^| $ac_top_srcdir/|" \
619 "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
620 ]
621 [sed '/^POTFILES =/,/[^\\]$/ {
622 /^POTFILES =/!d
623 r $1/POTFILES
624 }
625 ' "$1/Makefile.in" >"$1/Makefile"]
626 rm -f "$1/Makefile.tmp"
627 mv "$1/stamp-it.tmp" "$1/stamp-it"
628 ])
629 ])dnl
630 ])
631
632 # _IT_SUBST(VARIABLE)
633 # -------------------
634 # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
635 #
636 AC_DEFUN([_IT_SUBST],
637 [
638 AC_SUBST([$1])
639 m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
640 ]
641 )
642
643 # deprecated macros
644 AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
645 # A hint is needed for aclocal from Automake <= 1.9.4:
646 # AC_DEFUN([AC_PROG_INTLTOOL], ...)
647
648
458649 # nls.m4 serial 5 (gettext-0.18)
459 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation,
460 dnl Inc.
650 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software
651 dnl Foundation, Inc.
461652 dnl This file is free software; the Free Software Foundation
462653 dnl gives unlimited permission to copy and/or distribute it,
463654 dnl with or without modifications, as long as this notice is preserved.
464655 dnl
465 dnl This file can can be used in projects which are not available under
656 dnl This file can be used in projects which are not available under
466657 dnl the GNU General Public License or the GNU Library General Public
467658 dnl License but which still want to provide support for the GNU gettext
468659 dnl functionality.
469660 dnl Please note that the actual code of the GNU gettext library is covered
470661 dnl by the GNU Library General Public License, and the rest of the GNU
471 dnl gettext package package is covered by the GNU General Public License.
662 dnl gettext package is covered by the GNU General Public License.
472663 dnl They are *not* in the public domain.
473664
474665 dnl Authors:
488679 AC_SUBST([USE_NLS])
489680 ])
490681
491 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
492 # serial 1 (pkg-config-0.24)
493 #
494 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
495 #
496 # This program is free software; you can redistribute it and/or modify
497 # it under the terms of the GNU General Public License as published by
498 # the Free Software Foundation; either version 2 of the License, or
499 # (at your option) any later version.
500 #
501 # This program is distributed in the hope that it will be useful, but
502 # WITHOUT ANY WARRANTY; without even the implied warranty of
503 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
504 # General Public License for more details.
505 #
506 # You should have received a copy of the GNU General Public License
507 # along with this program; if not, write to the Free Software
508 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
509 #
510 # As a special exception to the GNU General Public License, if you
511 # distribute this file as part of a program that contains a
512 # configuration script generated by Autoconf, you may include it under
513 # the same distribution terms that you use for the rest of that program.
514
515 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
516 # ----------------------------------
682 dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
683 dnl serial 11 (pkg-config-0.29)
684 dnl
685 dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
686 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
687 dnl
688 dnl This program is free software; you can redistribute it and/or modify
689 dnl it under the terms of the GNU General Public License as published by
690 dnl the Free Software Foundation; either version 2 of the License, or
691 dnl (at your option) any later version.
692 dnl
693 dnl This program is distributed in the hope that it will be useful, but
694 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
695 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
696 dnl General Public License for more details.
697 dnl
698 dnl You should have received a copy of the GNU General Public License
699 dnl along with this program; if not, write to the Free Software
700 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
701 dnl 02111-1307, USA.
702 dnl
703 dnl As a special exception to the GNU General Public License, if you
704 dnl distribute this file as part of a program that contains a
705 dnl configuration script generated by Autoconf, you may include it under
706 dnl the same distribution terms that you use for the rest of that
707 dnl program.
708
709 dnl PKG_PREREQ(MIN-VERSION)
710 dnl -----------------------
711 dnl Since: 0.29
712 dnl
713 dnl Verify that the version of the pkg-config macros are at least
714 dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
715 dnl installed version of pkg-config, this checks the developer's version
716 dnl of pkg.m4 when generating configure.
717 dnl
718 dnl To ensure that this macro is defined, also add:
719 dnl m4_ifndef([PKG_PREREQ],
720 dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
721 dnl
722 dnl See the "Since" comment for each macro you use to see what version
723 dnl of the macros you require.
724 m4_defun([PKG_PREREQ],
725 [m4_define([PKG_MACROS_VERSION], [0.29])
726 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
727 [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
728 ])dnl PKG_PREREQ
729
730 dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
731 dnl ----------------------------------
732 dnl Since: 0.16
733 dnl
734 dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
735 dnl first found in the path. Checks that the version of pkg-config found
736 dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
737 dnl used since that's the first version where most current features of
738 dnl pkg-config existed.
517739 AC_DEFUN([PKG_PROG_PKG_CONFIG],
518740 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
519741 m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
535757 PKG_CONFIG=""
536758 fi
537759 fi[]dnl
538 ])# PKG_PROG_PKG_CONFIG
539
540 # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
541 #
542 # Check to see whether a particular set of modules exists. Similar
543 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
544 #
545 # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
546 # only at the first occurence in configure.ac, so if the first place
547 # it's called might be skipped (such as if it is within an "if", you
548 # have to call PKG_CHECK_EXISTS manually
549 # --------------------------------------------------------------
760 ])dnl PKG_PROG_PKG_CONFIG
761
762 dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
763 dnl -------------------------------------------------------------------
764 dnl Since: 0.18
765 dnl
766 dnl Check to see whether a particular set of modules exists. Similar to
767 dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
768 dnl
769 dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
770 dnl only at the first occurence in configure.ac, so if the first place
771 dnl it's called might be skipped (such as if it is within an "if", you
772 dnl have to call PKG_CHECK_EXISTS manually
550773 AC_DEFUN([PKG_CHECK_EXISTS],
551774 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
552775 if test -n "$PKG_CONFIG" && \
556779 $3])dnl
557780 fi])
558781
559 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
560 # ---------------------------------------------
782 dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
783 dnl ---------------------------------------------
784 dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
785 dnl pkg_failed based on the result.
561786 m4_define([_PKG_CONFIG],
562787 [if test -n "$$1"; then
563788 pkg_cv_[]$1="$$1"
569794 else
570795 pkg_failed=untried
571796 fi[]dnl
572 ])# _PKG_CONFIG
573
574 # _PKG_SHORT_ERRORS_SUPPORTED
575 # -----------------------------
797 ])dnl _PKG_CONFIG
798
799 dnl _PKG_SHORT_ERRORS_SUPPORTED
800 dnl ---------------------------
801 dnl Internal check to see if pkg-config supports short errors.
576802 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
577803 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
578804 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
580806 else
581807 _pkg_short_errors_supported=no
582808 fi[]dnl
583 ])# _PKG_SHORT_ERRORS_SUPPORTED
584
585
586 # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
587 # [ACTION-IF-NOT-FOUND])
588 #
589 #
590 # Note that if there is a possibility the first call to
591 # PKG_CHECK_MODULES might not happen, you should be sure to include an
592 # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
593 #
594 #
595 # --------------------------------------------------------------
809 ])dnl _PKG_SHORT_ERRORS_SUPPORTED
810
811
812 dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
813 dnl [ACTION-IF-NOT-FOUND])
814 dnl --------------------------------------------------------------
815 dnl Since: 0.4.0
816 dnl
817 dnl Note that if there is a possibility the first call to
818 dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
819 dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
596820 AC_DEFUN([PKG_CHECK_MODULES],
597821 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
598822 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
646870 AC_MSG_RESULT([yes])
647871 $3
648872 fi[]dnl
649 ])# PKG_CHECK_MODULES
650
651
652 # PKG_INSTALLDIR(DIRECTORY)
653 # -------------------------
654 # Substitutes the variable pkgconfigdir as the location where a module
655 # should install pkg-config .pc files. By default the directory is
656 # $libdir/pkgconfig, but the default can be changed by passing
657 # DIRECTORY. The user can override through the --with-pkgconfigdir
658 # parameter.
873 ])dnl PKG_CHECK_MODULES
874
875
876 dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
877 dnl [ACTION-IF-NOT-FOUND])
878 dnl ---------------------------------------------------------------------
879 dnl Since: 0.29
880 dnl
881 dnl Checks for existence of MODULES and gathers its build flags with
882 dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
883 dnl and VARIABLE-PREFIX_LIBS from --libs.
884 dnl
885 dnl Note that if there is a possibility the first call to
886 dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
887 dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
888 dnl configure.ac.
889 AC_DEFUN([PKG_CHECK_MODULES_STATIC],
890 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
891 _save_PKG_CONFIG=$PKG_CONFIG
892 PKG_CONFIG="$PKG_CONFIG --static"
893 PKG_CHECK_MODULES($@)
894 PKG_CONFIG=$_save_PKG_CONFIG[]dnl
895 ])dnl PKG_CHECK_MODULES_STATIC
896
897
898 dnl PKG_INSTALLDIR([DIRECTORY])
899 dnl -------------------------
900 dnl Since: 0.27
901 dnl
902 dnl Substitutes the variable pkgconfigdir as the location where a module
903 dnl should install pkg-config .pc files. By default the directory is
904 dnl $libdir/pkgconfig, but the default can be changed by passing
905 dnl DIRECTORY. The user can override through the --with-pkgconfigdir
906 dnl parameter.
659907 AC_DEFUN([PKG_INSTALLDIR],
660908 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
661909 m4_pushdef([pkg_description],
666914 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
667915 m4_popdef([pkg_default])
668916 m4_popdef([pkg_description])
669 ]) dnl PKG_INSTALLDIR
670
671
672 # PKG_NOARCH_INSTALLDIR(DIRECTORY)
673 # -------------------------
674 # Substitutes the variable noarch_pkgconfigdir as the location where a
675 # module should install arch-independent pkg-config .pc files. By
676 # default the directory is $datadir/pkgconfig, but the default can be
677 # changed by passing DIRECTORY. The user can override through the
678 # --with-noarch-pkgconfigdir parameter.
917 ])dnl PKG_INSTALLDIR
918
919
920 dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
921 dnl --------------------------------
922 dnl Since: 0.27
923 dnl
924 dnl Substitutes the variable noarch_pkgconfigdir as the location where a
925 dnl module should install arch-independent pkg-config .pc files. By
926 dnl default the directory is $datadir/pkgconfig, but the default can be
927 dnl changed by passing DIRECTORY. The user can override through the
928 dnl --with-noarch-pkgconfigdir parameter.
679929 AC_DEFUN([PKG_NOARCH_INSTALLDIR],
680930 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
681931 m4_pushdef([pkg_description],
686936 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
687937 m4_popdef([pkg_default])
688938 m4_popdef([pkg_description])
689 ]) dnl PKG_NOARCH_INSTALLDIR
690
691
692 # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
693 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
694 # -------------------------------------------
695 # Retrieves the value of the pkg-config variable for the given module.
939 ])dnl PKG_NOARCH_INSTALLDIR
940
941
942 dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
943 dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
944 dnl -------------------------------------------
945 dnl Since: 0.28
946 dnl
947 dnl Retrieves the value of the pkg-config variable for the given module.
696948 AC_DEFUN([PKG_CHECK_VAR],
697949 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
698950 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
701953 AS_VAR_COPY([$1], [pkg_cv_][$1])
702954
703955 AS_VAR_IF([$1], [""], [$5], [$4])dnl
704 ])# PKG_CHECK_VAR
956 ])dnl PKG_CHECK_VAR
705957
706958 # Copyright (C) 2002-2014 Free Software Foundation, Inc.
707959 #
18332085 AC_SUBST([am__untar])
18342086 ]) # _AM_PROG_TAR
18352087
1836 m4_include([m4/intltool.m4])
18372088 m4_include([m4/libtool.m4])
18382089 m4_include([m4/ltoptions.m4])
18392090 m4_include([m4/ltsugar.m4])
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for virt-viewer 3.1.
2 # Generated by GNU Autoconf 2.69 for virt-viewer 4.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='3.1'
590 PACKAGE_STRING='virt-viewer 3.1'
589 PACKAGE_VERSION='4.0'
590 PACKAGE_STRING='virt-viewer 4.0'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
656656 GTK_VNC_CFLAGS
657657 GTK_LIBS
658658 GTK_CFLAGS
659 HAVE_GTK_3_FALSE
660 HAVE_GTK_3_TRUE
661 HAVE_GTK_2_FALSE
662 HAVE_GTK_2_TRUE
663 GTK_VNC_API_VERSION
664 GTK_REQUIRED
665 GTK_API_VERSION
666659 HAVE_LIBVIRT_FALSE
667660 HAVE_LIBVIRT_TRUE
668661 LIBVIRT_LIBS
669662 LIBVIRT_CFLAGS
670663 LIBXML2_LIBS
671664 LIBXML2_CFLAGS
665 GLIB_COMPILE_RESOURCES
672666 GLIB2_LIBS
673667 GLIB2_CFLAGS
674668 GLIB_MKENUMS
772766 GOVIRT_REQUIRED
773767 SPICE_PROTOCOL_REQUIRED
774768 SPICE_GTK_REQUIRED
775 GTK_VNC2_REQUIRED
776 GTK_VNC1_REQUIRED
777 GTK3_REQUIRED
778 GTK2_REQUIRED
769 GTK_VNC_REQUIRED
770 GTK_REQUIRED
771 LIBVIRT_GLIB_REQUIRED
779772 LIBVIRT_REQUIRED
780773 LIBXML2_REQUIRED
781774 GLIB2_REQUIRED
869862 enable_iso_c
870863 enable_nls
871864 with_libvirt
872 with_gtk
873865 with_gtk_vnc
874866 with_spice_gtk
875867 with_ovirt
892884 PKG_CONFIG_LIBDIR
893885 GLIB2_CFLAGS
894886 GLIB2_LIBS
887 GLIB_COMPILE_RESOURCES
895888 LIBXML2_CFLAGS
896889 LIBXML2_LIBS
897890 LIBVIRT_CFLAGS
14481441 # Omit some internal or obsolete options to make the list less imposing.
14491442 # This message is too long to be a string in the A/UX 3.1 sh.
14501443 cat <<_ACEOF
1451 \`configure' configures virt-viewer 3.1 to adapt to many kinds of systems.
1444 \`configure' configures virt-viewer 4.0 to adapt to many kinds of systems.
14521445
14531446 Usage: $0 [OPTION]... [VAR=VALUE]...
14541447
15181511
15191512 if test -n "$ac_init_help"; then
15201513 case $ac_init_help in
1521 short | recursive ) echo "Configuration of virt-viewer 3.1:";;
1514 short | recursive ) echo "Configuration of virt-viewer 4.0:";;
15221515 esac
15231516 cat <<\_ACEOF
15241517
15561549 --with-sysroot[=DIR] Search for dependent libraries within DIR (or the
15571550 compiler's sysroot if not specified).
15581551 --without-libvirt Ignore presence of libvirt and disable it
1559 --with-gtk=2.0|3.0 which gtk+ version to compile against (default: 3.0)
15601552 --without-gtk-vnc Ignore presence of gtk-vnc and disable it
15611553 --without-spice-gtk Ignore presence of spice-gtk and disable it
15621554 --without-ovirt Ignore presence of librest and disable oVirt support
15821574 GLIB2_CFLAGS
15831575 C compiler flags for GLIB2, overriding pkg-config
15841576 GLIB2_LIBS linker flags for GLIB2, overriding pkg-config
1577 GLIB_COMPILE_RESOURCES
1578 the glib-compile-resources program
15851579 LIBXML2_CFLAGS
15861580 C compiler flags for LIBXML2, overriding pkg-config
15871581 LIBXML2_LIBS
16781672 test -n "$ac_init_help" && exit $ac_status
16791673 if $ac_init_version; then
16801674 cat <<\_ACEOF
1681 virt-viewer configure 3.1
1675 virt-viewer configure 4.0
16821676 generated by GNU Autoconf 2.69
16831677
16841678 Copyright (C) 2012 Free Software Foundation, Inc.
20432037 This file contains any messages produced by compilers while
20442038 running configure, to aid debugging if configure makes a mistake.
20452039
2046 It was created by virt-viewer $as_me 3.1, which was
2040 It was created by virt-viewer $as_me 4.0, which was
20472041 generated by GNU Autoconf 2.69. Invocation command line was
20482042
20492043 $ $0 $@
29102904
29112905 # Define the identity of the package.
29122906 PACKAGE='virt-viewer'
2913 VERSION='3.1'
2907 VERSION='4.0'
29142908
29152909
29162910 cat >>confdefs.h <<_ACEOF
31173111 AM_BACKSLASH='\'
31183112
31193113
3120 GLIB2_REQUIRED=2.22.0
3114 # Keep these two definitions in agreement.
3115 GLIB2_REQUIRED="2.38"
3116 GLIB2_ENCODED_VERSION="GLIB_VERSION_2_38"
3117
3118 # Keep these two definitions in agreement.
3119 GTK_REQUIRED="3.10"
3120 GTK_ENCODED_VERSION="GDK_VERSION_3_10"
3121
31213122 LIBXML2_REQUIRED="2.6.0"
31223123 LIBVIRT_REQUIRED="0.10.0"
3123 GTK2_REQUIRED="2.18.0"
3124 GTK3_REQUIRED="3.0"
3125 GTK_VNC1_REQUIRED="0.3.8"
3126 GTK_VNC2_REQUIRED="0.4.0"
3127 SPICE_GTK_REQUIRED="0.30"
3124 LIBVIRT_GLIB_REQUIRED="0.1.8"
3125 GTK_VNC_REQUIRED="0.4.0"
3126 SPICE_GTK_REQUIRED="0.31"
31283127 SPICE_PROTOCOL_REQUIRED="0.12.7"
31293128 GOVIRT_REQUIRED="0.3.2"
3130
31313129
31323130
31333131
1239812396 try_compiler_flags="$try_compiler_flags -Wall -Wmissing-prototypes -std=c99 -Wnested-externs -Wpointer-arith"
1239912397 try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return"
1240012398 # Removed -Wstrict-prototypes to avoid GTK bug
12401 try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wno-sign-compare -Wno-deprecated-declarations"
12399 try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wdeprecated-declarations -Wno-sign-compare"
1240212400 if test "$enable_compile_warnings" = "error" ; then
1240312401 try_compiler_flags="$try_compiler_flags -Werror"
1240412402 fi
1386513863 pkg_cv_GLIB2_CFLAGS="$GLIB2_CFLAGS"
1386613864 elif test -n "$PKG_CONFIG"; then
1386713865 if test -n "$PKG_CONFIG" && \
13868 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0\""; } >&5
13869 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0") 2>&5
13866 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0\""; } >&5
13867 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0") 2>&5
1387013868 ac_status=$?
1387113869 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1387213870 test $ac_status = 0; }; then
13873 pkg_cv_GLIB2_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0" 2>/dev/null`
13871 pkg_cv_GLIB2_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0" 2>/dev/null`
1387413872 test "x$?" != "x0" && pkg_failed=yes
1387513873 else
1387613874 pkg_failed=yes
1388213880 pkg_cv_GLIB2_LIBS="$GLIB2_LIBS"
1388313881 elif test -n "$PKG_CONFIG"; then
1388413882 if test -n "$PKG_CONFIG" && \
13885 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0\""; } >&5
13886 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0") 2>&5
13883 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0\""; } >&5
13884 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0") 2>&5
1388713885 ac_status=$?
1388813886 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1388913887 test $ac_status = 0; }; then
13890 pkg_cv_GLIB2_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0" 2>/dev/null`
13888 pkg_cv_GLIB2_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0" 2>/dev/null`
1389113889 test "x$?" != "x0" && pkg_failed=yes
1389213890 else
1389313891 pkg_failed=yes
1390813906 _pkg_short_errors_supported=no
1390913907 fi
1391013908 if test $_pkg_short_errors_supported = yes; then
13911 GLIB2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0" 2>&1`
13909 GLIB2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0" 2>&1`
1391213910 else
13913 GLIB2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0" 2>&1`
13911 GLIB2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0" 2>&1`
1391413912 fi
1391513913 # Put the nasty error message in config.log where it belongs
1391613914 echo "$GLIB2_PKG_ERRORS" >&5
1391713915
13918 as_fn_error $? "Package requirements (glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0) were not met:
13916 as_fn_error $? "Package requirements (glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0) were not met:
1391913917
1392013918 $GLIB2_PKG_ERRORS
1392113919
1394713945 $as_echo "yes" >&6; }
1394813946
1394913947 fi
13948 GLIB2_CFLAGS="$GLIB2_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=$GLIB2_ENCODED_VERSION \
13949 -DGLIB_VERSION_MAX_ALLOWED=$GLIB2_ENCODED_VERSION"
13950
13951
13952
13953 # Extract the first word of "glib-compile-resources", so it can be a program name with args.
13954 set dummy glib-compile-resources; ac_word=$2
13955 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13956 $as_echo_n "checking for $ac_word... " >&6; }
13957 if ${ac_cv_path_GLIB_COMPILE_RESOURCES+:} false; then :
13958 $as_echo_n "(cached) " >&6
13959 else
13960 case $GLIB_COMPILE_RESOURCES in
13961 [\\/]* | ?:[\\/]*)
13962 ac_cv_path_GLIB_COMPILE_RESOURCES="$GLIB_COMPILE_RESOURCES" # Let the user override the test with a path.
13963 ;;
13964 *)
13965 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13966 for as_dir in $PATH
13967 do
13968 IFS=$as_save_IFS
13969 test -z "$as_dir" && as_dir=.
13970 for ac_exec_ext in '' $ac_executable_extensions; do
13971 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13972 ac_cv_path_GLIB_COMPILE_RESOURCES="$as_dir/$ac_word$ac_exec_ext"
13973 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13974 break 2
13975 fi
13976 done
13977 done
13978 IFS=$as_save_IFS
13979
13980 ;;
13981 esac
13982 fi
13983 GLIB_COMPILE_RESOURCES=$ac_cv_path_GLIB_COMPILE_RESOURCES
13984 if test -n "$GLIB_COMPILE_RESOURCES"; then
13985 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_COMPILE_RESOURCES" >&5
13986 $as_echo "$GLIB_COMPILE_RESOURCES" >&6; }
13987 else
13988 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13989 $as_echo "no" >&6; }
13990 fi
13991
13992
13993 if test -z "$GLIB_COMPILE_RESOURCES"; then
13994 as_fn_error $? "glib-compile-resources not found" "$LINENO" 5
13995 fi
13996
1395013997
1395113998 pkg_failed=no
1395213999 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML2" >&5
1406914116 pkg_cv_LIBVIRT_CFLAGS="$LIBVIRT_CFLAGS"
1407014117 elif test -n "$PKG_CONFIG"; then
1407114118 if test -n "$PKG_CONFIG" && \
14072 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libvirt >= \$LIBVIRT_REQUIRED\""; } >&5
14073 ($PKG_CONFIG --exists --print-errors "libvirt >= $LIBVIRT_REQUIRED") 2>&5
14119 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libvirt >= \$LIBVIRT_REQUIRED libvirt-glib-1.0 >= \$LIBVIRT_GLIB_REQUIRED\""; } >&5
14120 ($PKG_CONFIG --exists --print-errors "libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED") 2>&5
1407414121 ac_status=$?
1407514122 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1407614123 test $ac_status = 0; }; then
14077 pkg_cv_LIBVIRT_CFLAGS=`$PKG_CONFIG --cflags "libvirt >= $LIBVIRT_REQUIRED" 2>/dev/null`
14124 pkg_cv_LIBVIRT_CFLAGS=`$PKG_CONFIG --cflags "libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED" 2>/dev/null`
1407814125 test "x$?" != "x0" && pkg_failed=yes
1407914126 else
1408014127 pkg_failed=yes
1408614133 pkg_cv_LIBVIRT_LIBS="$LIBVIRT_LIBS"
1408714134 elif test -n "$PKG_CONFIG"; then
1408814135 if test -n "$PKG_CONFIG" && \
14089 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libvirt >= \$LIBVIRT_REQUIRED\""; } >&5
14090 ($PKG_CONFIG --exists --print-errors "libvirt >= $LIBVIRT_REQUIRED") 2>&5
14136 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libvirt >= \$LIBVIRT_REQUIRED libvirt-glib-1.0 >= \$LIBVIRT_GLIB_REQUIRED\""; } >&5
14137 ($PKG_CONFIG --exists --print-errors "libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED") 2>&5
1409114138 ac_status=$?
1409214139 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1409314140 test $ac_status = 0; }; then
14094 pkg_cv_LIBVIRT_LIBS=`$PKG_CONFIG --libs "libvirt >= $LIBVIRT_REQUIRED" 2>/dev/null`
14141 pkg_cv_LIBVIRT_LIBS=`$PKG_CONFIG --libs "libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED" 2>/dev/null`
1409514142 test "x$?" != "x0" && pkg_failed=yes
1409614143 else
1409714144 pkg_failed=yes
1411214159 _pkg_short_errors_supported=no
1411314160 fi
1411414161 if test $_pkg_short_errors_supported = yes; then
14115 LIBVIRT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libvirt >= $LIBVIRT_REQUIRED" 2>&1`
14162 LIBVIRT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED" 2>&1`
1411614163 else
14117 LIBVIRT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libvirt >= $LIBVIRT_REQUIRED" 2>&1`
14164 LIBVIRT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED" 2>&1`
1411814165 fi
1411914166 # Put the nasty error message in config.log where it belongs
1412014167 echo "$LIBVIRT_PKG_ERRORS" >&5
1412114168
14122 as_fn_error $? "Package requirements (libvirt >= $LIBVIRT_REQUIRED) were not met:
14169 as_fn_error $? "Package requirements (libvirt >= $LIBVIRT_REQUIRED libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED) were not met:
1412314170
1412414171 $LIBVIRT_PKG_ERRORS
1412514172
1421214259
1421314260 LIBS=$old_LIBS
1421414261
14215 { $as_echo "$as_me:${as_lineno-$LINENO}: checking which gtk+ version to compile against" >&5
14216 $as_echo_n "checking which gtk+ version to compile against... " >&6; }
14217
14218 # Check whether --with-gtk was given.
14219 if test "${with_gtk+set}" = set; then :
14220 withval=$with_gtk; case "$with_gtk" in
14221 2.0|3.0) ;;
14222 *) as_fn_error $? "invalid gtk version specified" "$LINENO" 5 ;;
14223 esac
14224 else
14225 with_gtk=3.0
14226 fi
14227
14228 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_gtk" >&5
14229 $as_echo "$with_gtk" >&6; }
14230
14231 case "$with_gtk" in
14232 2.0) GTK_API_VERSION=2.0
14233 GTK_REQUIRED=$GTK2_REQUIRED
14234 GTK_VNC_REQUIRED=$GTK_VNC1_REQUIRED
14235 GTK_VNC_API_VERSION=1.0
14236 SPICE_GTK_API_VERSION=2.0
14237 ;;
14238 3.0) GTK_API_VERSION=3.0
14239 GTK_REQUIRED=$GTK3_REQUIRED
14240 GTK_VNC_REQUIRED=$GTK_VNC2_REQUIRED
14241 GTK_VNC_API_VERSION=2.0
14242 SPICE_GTK_API_VERSION=3.0
14243 ;;
14244 esac
14245
14246
14247
14248
14249 if test "$with_gtk" = "2.0"; then
14250 HAVE_GTK_2_TRUE=
14251 HAVE_GTK_2_FALSE='#'
14252 else
14253 HAVE_GTK_2_TRUE='#'
14254 HAVE_GTK_2_FALSE=
14255 fi
14256
14257 if test "$with_gtk" = "3.0"; then
14258 HAVE_GTK_3_TRUE=
14259 HAVE_GTK_3_FALSE='#'
14260 else
14261 HAVE_GTK_3_TRUE='#'
14262 HAVE_GTK_3_FALSE=
14263 fi
14264
14265
1426614262
1426714263 pkg_failed=no
1426814264 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5
1427214268 pkg_cv_GTK_CFLAGS="$GTK_CFLAGS"
1427314269 elif test -n "$PKG_CONFIG"; then
1427414270 if test -n "$PKG_CONFIG" && \
14275 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-\$GTK_API_VERSION >= \$GTK_REQUIRED\""; } >&5
14276 ($PKG_CONFIG --exists --print-errors "gtk+-$GTK_API_VERSION >= $GTK_REQUIRED") 2>&5
14271 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5
14272 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= $GTK_REQUIRED") 2>&5
1427714273 ac_status=$?
1427814274 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1427914275 test $ac_status = 0; }; then
14280 pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-$GTK_API_VERSION >= $GTK_REQUIRED" 2>/dev/null`
14276 pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null`
1428114277 test "x$?" != "x0" && pkg_failed=yes
1428214278 else
1428314279 pkg_failed=yes
1428914285 pkg_cv_GTK_LIBS="$GTK_LIBS"
1429014286 elif test -n "$PKG_CONFIG"; then
1429114287 if test -n "$PKG_CONFIG" && \
14292 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-\$GTK_API_VERSION >= \$GTK_REQUIRED\""; } >&5
14293 ($PKG_CONFIG --exists --print-errors "gtk+-$GTK_API_VERSION >= $GTK_REQUIRED") 2>&5
14288 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= \$GTK_REQUIRED\""; } >&5
14289 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= $GTK_REQUIRED") 2>&5
1429414290 ac_status=$?
1429514291 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1429614292 test $ac_status = 0; }; then
14297 pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-$GTK_API_VERSION >= $GTK_REQUIRED" 2>/dev/null`
14293 pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0 >= $GTK_REQUIRED" 2>/dev/null`
1429814294 test "x$?" != "x0" && pkg_failed=yes
1429914295 else
1430014296 pkg_failed=yes
1431514311 _pkg_short_errors_supported=no
1431614312 fi
1431714313 if test $_pkg_short_errors_supported = yes; then
14318 GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-$GTK_API_VERSION >= $GTK_REQUIRED" 2>&1`
14314 GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0 >= $GTK_REQUIRED" 2>&1`
1431914315 else
14320 GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-$GTK_API_VERSION >= $GTK_REQUIRED" 2>&1`
14316 GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0 >= $GTK_REQUIRED" 2>&1`
1432114317 fi
1432214318 # Put the nasty error message in config.log where it belongs
1432314319 echo "$GTK_PKG_ERRORS" >&5
1432414320
14325 as_fn_error $? "Package requirements (gtk+-$GTK_API_VERSION >= $GTK_REQUIRED) were not met:
14321 as_fn_error $? "Package requirements (gtk+-3.0 >= $GTK_REQUIRED) were not met:
1432614322
1432714323 $GTK_PKG_ERRORS
1432814324
1435414350 $as_echo "yes" >&6; }
1435514351
1435614352 fi
14353 GTK_CFLAGS="$GTK_CFLAGS -DGDK_VERSION_MIN_REQUIRED=$GTK_ENCODED_VERSION \
14354 -DGDK_VERSION_MAX_ALLOWED=$GTK_ENCODED_VERSION"
14355
1435714356
1435814357
1435914358 # Check whether --with-gtk-vnc was given.
1436414363
1436514364 if test "x$with_gtk_vnc" != "xno" && test "x$with_gtk_vnc" != "xyes"; then :
1436614365 if test -n "$PKG_CONFIG" && \
14367 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-vnc-\$GTK_VNC_API_VERSION >= \$GTK_VNC_REQUIRED\""; } >&5
14368 ($PKG_CONFIG --exists --print-errors "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED") 2>&5
14366 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-vnc-2.0 >= \$GTK_VNC_REQUIRED\""; } >&5
14367 ($PKG_CONFIG --exists --print-errors "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED") 2>&5
1436914368 ac_status=$?
1437014369 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1437114370 test $ac_status = 0; }; then
1438514384 pkg_cv_GTK_VNC_CFLAGS="$GTK_VNC_CFLAGS"
1438614385 elif test -n "$PKG_CONFIG"; then
1438714386 if test -n "$PKG_CONFIG" && \
14388 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-vnc-\$GTK_VNC_API_VERSION >= \$GTK_VNC_REQUIRED\""; } >&5
14389 ($PKG_CONFIG --exists --print-errors "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED") 2>&5
14387 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-vnc-2.0 >= \$GTK_VNC_REQUIRED\""; } >&5
14388 ($PKG_CONFIG --exists --print-errors "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED") 2>&5
1439014389 ac_status=$?
1439114390 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1439214391 test $ac_status = 0; }; then
14393 pkg_cv_GTK_VNC_CFLAGS=`$PKG_CONFIG --cflags "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED" 2>/dev/null`
14392 pkg_cv_GTK_VNC_CFLAGS=`$PKG_CONFIG --cflags "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED" 2>/dev/null`
1439414393 test "x$?" != "x0" && pkg_failed=yes
1439514394 else
1439614395 pkg_failed=yes
1440214401 pkg_cv_GTK_VNC_LIBS="$GTK_VNC_LIBS"
1440314402 elif test -n "$PKG_CONFIG"; then
1440414403 if test -n "$PKG_CONFIG" && \
14405 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-vnc-\$GTK_VNC_API_VERSION >= \$GTK_VNC_REQUIRED\""; } >&5
14406 ($PKG_CONFIG --exists --print-errors "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED") 2>&5
14404 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-vnc-2.0 >= \$GTK_VNC_REQUIRED\""; } >&5
14405 ($PKG_CONFIG --exists --print-errors "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED") 2>&5
1440714406 ac_status=$?
1440814407 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1440914408 test $ac_status = 0; }; then
14410 pkg_cv_GTK_VNC_LIBS=`$PKG_CONFIG --libs "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED" 2>/dev/null`
14409 pkg_cv_GTK_VNC_LIBS=`$PKG_CONFIG --libs "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED" 2>/dev/null`
1441114410 test "x$?" != "x0" && pkg_failed=yes
1441214411 else
1441314412 pkg_failed=yes
1442814427 _pkg_short_errors_supported=no
1442914428 fi
1443014429 if test $_pkg_short_errors_supported = yes; then
14431 GTK_VNC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED" 2>&1`
14430 GTK_VNC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED" 2>&1`
1443214431 else
14433 GTK_VNC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED" 2>&1`
14432 GTK_VNC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk-vnc-2.0 >= $GTK_VNC_REQUIRED" 2>&1`
1443414433 fi
1443514434 # Put the nasty error message in config.log where it belongs
1443614435 echo "$GTK_VNC_PKG_ERRORS" >&5
1443714436
14438 as_fn_error $? "Package requirements (gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED) were not met:
14437 as_fn_error $? "Package requirements (gtk-vnc-2.0 >= $GTK_VNC_REQUIRED) were not met:
1443914438
1444014439 $GTK_VNC_PKG_ERRORS
1444114440
1449014489
1449114490 if test "x$with_spice_gtk" != "xno" && test "x$with_spice_gtk" != "xyes"; then :
1449214491 if test -n "$PKG_CONFIG" && \
14493 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-\$SPICE_GTK_API_VERSION >= \$SPICE_GTK_REQUIRED
14492 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-3.0 >= \$SPICE_GTK_REQUIRED
1449414493 spice-controller spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5
14495 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED
14494 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED
1449614495 spice-controller spice-protocol >= $SPICE_PROTOCOL_REQUIRED") 2>&5
1449714496 ac_status=$?
1449814497 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1451314512 pkg_cv_SPICE_GTK_CFLAGS="$SPICE_GTK_CFLAGS"
1451414513 elif test -n "$PKG_CONFIG"; then
1451514514 if test -n "$PKG_CONFIG" && \
14516 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-\$SPICE_GTK_API_VERSION >= \$SPICE_GTK_REQUIRED\""; } >&5
14517 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED") 2>&5
14515 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-3.0 >= \$SPICE_GTK_REQUIRED\""; } >&5
14516 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED") 2>&5
1451814517 ac_status=$?
1451914518 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1452014519 test $ac_status = 0; }; then
14521 pkg_cv_SPICE_GTK_CFLAGS=`$PKG_CONFIG --cflags "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED" 2>/dev/null`
14520 pkg_cv_SPICE_GTK_CFLAGS=`$PKG_CONFIG --cflags "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED" 2>/dev/null`
1452214521 test "x$?" != "x0" && pkg_failed=yes
1452314522 else
1452414523 pkg_failed=yes
1453014529 pkg_cv_SPICE_GTK_LIBS="$SPICE_GTK_LIBS"
1453114530 elif test -n "$PKG_CONFIG"; then
1453214531 if test -n "$PKG_CONFIG" && \
14533 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-\$SPICE_GTK_API_VERSION >= \$SPICE_GTK_REQUIRED\""; } >&5
14534 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED") 2>&5
14532 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-client-gtk-3.0 >= \$SPICE_GTK_REQUIRED\""; } >&5
14533 ($PKG_CONFIG --exists --print-errors "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED") 2>&5
1453514534 ac_status=$?
1453614535 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1453714536 test $ac_status = 0; }; then
14538 pkg_cv_SPICE_GTK_LIBS=`$PKG_CONFIG --libs "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED" 2>/dev/null`
14537 pkg_cv_SPICE_GTK_LIBS=`$PKG_CONFIG --libs "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED" 2>/dev/null`
1453914538 test "x$?" != "x0" && pkg_failed=yes
1454014539 else
1454114540 pkg_failed=yes
1455614555 _pkg_short_errors_supported=no
1455714556 fi
1455814557 if test $_pkg_short_errors_supported = yes; then
14559 SPICE_GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED" 2>&1`
14558 SPICE_GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED" 2>&1`
1456014559 else
14561 SPICE_GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED" 2>&1`
14560 SPICE_GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED" 2>&1`
1456214561 fi
1456314562 # Put the nasty error message in config.log where it belongs
1456414563 echo "$SPICE_GTK_PKG_ERRORS" >&5
1456514564
14566 as_fn_error $? "Package requirements (spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED) were not met:
14565 as_fn_error $? "Package requirements (spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED) were not met:
1456714566
1456814567 $SPICE_GTK_PKG_ERRORS
1456914568
1507615075
1507715076
1507815077
15079 ac_config_files="$ac_config_files Makefile data/Makefile data/adwaita-icons-needed.wxi data/virt-viewer.wxs data/virt-viewer.nsis data/virt-viewer-debug.nsis 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 virt-viewer.spec"
15078 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"
1508015079
1508115080 cat >confcache <<\_ACEOF
1508215081 # This file is a shell script that caches the results of configure
1522315222 as_fn_error $? "conditional \"HAVE_LIBVIRT\" was never defined.
1522415223 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1522515224 fi
15226 if test -z "${HAVE_GTK_2_TRUE}" && test -z "${HAVE_GTK_2_FALSE}"; then
15227 as_fn_error $? "conditional \"HAVE_GTK_2\" was never defined.
15228 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15229 fi
15230 if test -z "${HAVE_GTK_3_TRUE}" && test -z "${HAVE_GTK_3_FALSE}"; then
15231 as_fn_error $? "conditional \"HAVE_GTK_3\" was never defined.
15232 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15233 fi
1523415225 if test -z "${HAVE_GTK_VNC_TRUE}" && test -z "${HAVE_GTK_VNC_FALSE}"; then
1523515226 as_fn_error $? "conditional \"HAVE_GTK_VNC\" was never defined.
1523615227 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1564415635 # report actual input values of CONFIG_FILES etc. instead of their
1564515636 # values after options handling.
1564615637 ac_log="
15647 This file was extended by virt-viewer $as_me 3.1, which was
15638 This file was extended by virt-viewer $as_me 4.0, which was
1564815639 generated by GNU Autoconf 2.69. Invocation command line was
1564915640
1565015641 CONFIG_FILES = $CONFIG_FILES
1571415705 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1571515706 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1571615707 ac_cs_version="\\
15717 virt-viewer config.status 3.1
15708 virt-viewer config.status 4.0
1571815709 configured by $0, generated by GNU Autoconf 2.69,
1571915710 with options \\"\$ac_cs_config\\"
1572015711
1613516126 "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
1613616127 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
1613716128 "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
16138 "data/adwaita-icons-needed.wxi") CONFIG_FILES="$CONFIG_FILES data/adwaita-icons-needed.wxi" ;;
1613916129 "data/virt-viewer.wxs") CONFIG_FILES="$CONFIG_FILES data/virt-viewer.wxs" ;;
16140 "data/virt-viewer.nsis") CONFIG_FILES="$CONFIG_FILES data/virt-viewer.nsis" ;;
16141 "data/virt-viewer-debug.nsis") CONFIG_FILES="$CONFIG_FILES data/virt-viewer-debug.nsis" ;;
1614216130 "icons/Makefile") CONFIG_FILES="$CONFIG_FILES icons/Makefile" ;;
1614316131 "icons/16x16/Makefile") CONFIG_FILES="$CONFIG_FILES icons/16x16/Makefile" ;;
1614416132 "icons/22x22/Makefile") CONFIG_FILES="$CONFIG_FILES icons/22x22/Makefile" ;;
1615116139 "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
1615216140 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
1615316141 "src/virt-viewer.rc") CONFIG_FILES="$CONFIG_FILES src/virt-viewer.rc" ;;
16142 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
1615416143 "virt-viewer.spec") CONFIG_FILES="$CONFIG_FILES virt-viewer.spec" ;;
1615516144 "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
1615616145
1748617475 $as_echo "$as_me: =====================" >&6;}
1748717476 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
1748817477 $as_echo "$as_me: " >&6;}
17489 { $as_echo "$as_me:${as_lineno-$LINENO}: Features:" >&5
17490 $as_echo "$as_me: Features:" >&6;}
17491 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
17492 $as_echo "$as_me: " >&6;}
17493 { $as_echo "$as_me:${as_lineno-$LINENO}: Gtk: $with_gtk" >&5
17494 $as_echo "$as_me: Gtk: $with_gtk" >&6;}
17495 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
17496 $as_echo "$as_me: " >&6;}
1749717478 { $as_echo "$as_me:${as_lineno-$LINENO}: Libraries:" >&5
1749817479 $as_echo "$as_me: Libraries:" >&6;}
1749917480 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
00
1 AC_INIT([virt-viewer],[3.1])
1 AC_INIT([virt-viewer],[4.0])
22 AC_CONFIG_SRCDIR(src/virt-viewer-main.c)
33 AC_CONFIG_MACRO_DIR([m4])
44 AC_CONFIG_AUX_DIR([build-aux])
1111 m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
1212 AM_SILENT_RULES([yes])
1313
14 GLIB2_REQUIRED=2.22.0
14 # Keep these two definitions in agreement.
15 GLIB2_REQUIRED="2.38"
16 GLIB2_ENCODED_VERSION="GLIB_VERSION_2_38"
17
18 # Keep these two definitions in agreement.
19 GTK_REQUIRED="3.10"
20 GTK_ENCODED_VERSION="GDK_VERSION_3_10"
21
1522 LIBXML2_REQUIRED="2.6.0"
1623 LIBVIRT_REQUIRED="0.10.0"
17 GTK2_REQUIRED="2.18.0"
18 GTK3_REQUIRED="3.0"
19 GTK_VNC1_REQUIRED="0.3.8"
20 GTK_VNC2_REQUIRED="0.4.0"
21 SPICE_GTK_REQUIRED="0.30"
24 LIBVIRT_GLIB_REQUIRED="0.1.8"
25 GTK_VNC_REQUIRED="0.4.0"
26 SPICE_GTK_REQUIRED="0.31"
2227 SPICE_PROTOCOL_REQUIRED="0.12.7"
2328 GOVIRT_REQUIRED="0.3.2"
2429
2530 AC_SUBST([GLIB2_REQUIRED])
2631 AC_SUBST([LIBXML2_REQUIRED])
2732 AC_SUBST([LIBVIRT_REQUIRED])
28 AC_SUBST([GTK2_REQUIRED])
29 AC_SUBST([GTK3_REQUIRED])
30 AC_SUBST([GTK_VNC1_REQUIRED])
31 AC_SUBST([GTK_VNC2_REQUIRED])
33 AC_SUBST([LIBVIRT_GLIB_REQUIRED])
34 AC_SUBST([GTK_REQUIRED])
35 AC_SUBST([GTK_VNC_REQUIRED])
3236 AC_SUBST([SPICE_GTK_REQUIRED])
3337 AC_SUBST([SPICE_PROTOCOL_REQUIRED])
3438 AC_SUBST([GOVIRT_REQUIRED])
96100 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
97101 AC_SUBST(GLIB_MKENUMS)
98102
99 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQUIRED gthread-2.0 gmodule-export-2.0)
103 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQUIRED gio-2.0 gthread-2.0 gmodule-export-2.0)
104 GLIB2_CFLAGS="$GLIB2_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=$GLIB2_ENCODED_VERSION \
105 -DGLIB_VERSION_MAX_ALLOWED=$GLIB2_ENCODED_VERSION"
106 AC_SUBST(GLIB2_CFLAGS)
107
108 AC_ARG_VAR([GLIB_COMPILE_RESOURCES],[the glib-compile-resources program])
109 AC_PATH_PROG([GLIB_COMPILE_RESOURCES],[glib-compile-resources],[])
110 if test -z "$GLIB_COMPILE_RESOURCES"; then
111 AC_MSG_ERROR([glib-compile-resources not found])
112 fi
113
100114 PKG_CHECK_MODULES(LIBXML2, libxml-2.0 >= $LIBXML2_REQUIRED)
101115
102116 AC_ARG_WITH([libvirt],
107121 [with_libvirt=yes], [with_libvirt=no])])
108122
109123 AS_IF([test "x$with_libvirt" = "xyes"],
110 [PKG_CHECK_MODULES(LIBVIRT, [libvirt >= $LIBVIRT_REQUIRED])]
124 [PKG_CHECK_MODULES(LIBVIRT, [libvirt >= $LIBVIRT_REQUIRED] [libvirt-glib-1.0 >= $LIBVIRT_GLIB_REQUIRED])]
111125 [AC_DEFINE([HAVE_LIBVIRT], 1, [Have libvirt?])]
112126 )
113127 AM_CONDITIONAL([HAVE_LIBVIRT], [test "x$with_libvirt" = "xyes"])
120134 [AC_DEFINE([HAVE_VIR_DOMAIN_OPEN_GRAPHICS_FD], 1, [Have virDomainOpenGraphicsFD?])])
121135 LIBS=$old_LIBS
122136
123 AC_MSG_CHECKING([which gtk+ version to compile against])
124 AC_ARG_WITH([gtk],
125 [AS_HELP_STRING([--with-gtk=2.0|3.0],[which gtk+ version to compile against (default: 3.0)])],
126 [case "$with_gtk" in
127 2.0|3.0) ;;
128 *) AC_MSG_ERROR([invalid gtk version specified]) ;;
129 esac],
130 [with_gtk=3.0])
131 AC_MSG_RESULT([$with_gtk])
132
133 case "$with_gtk" in
134 2.0) GTK_API_VERSION=2.0
135 GTK_REQUIRED=$GTK2_REQUIRED
136 GTK_VNC_REQUIRED=$GTK_VNC1_REQUIRED
137 GTK_VNC_API_VERSION=1.0
138 SPICE_GTK_API_VERSION=2.0
139 ;;
140 3.0) GTK_API_VERSION=3.0
141 GTK_REQUIRED=$GTK3_REQUIRED
142 GTK_VNC_REQUIRED=$GTK_VNC2_REQUIRED
143 GTK_VNC_API_VERSION=2.0
144 SPICE_GTK_API_VERSION=3.0
145 ;;
146 esac
147
148 AC_SUBST([GTK_API_VERSION])
149 AC_SUBST([GTK_REQUIRED])
150 AC_SUBST([GTK_VNC_API_VERSION])
151 AM_CONDITIONAL([HAVE_GTK_2],[test "$with_gtk" = "2.0"])
152 AM_CONDITIONAL([HAVE_GTK_3],[test "$with_gtk" = "3.0"])
153
154 PKG_CHECK_MODULES(GTK, gtk+-$GTK_API_VERSION >= $GTK_REQUIRED)
137 PKG_CHECK_MODULES(GTK, gtk+-3.0 >= $GTK_REQUIRED)
138 GTK_CFLAGS="$GTK_CFLAGS -DGDK_VERSION_MIN_REQUIRED=$GTK_ENCODED_VERSION \
139 -DGDK_VERSION_MAX_ALLOWED=$GTK_ENCODED_VERSION"
140 AC_SUBST(GTK_CFLAGS)
155141
156142 AC_ARG_WITH([gtk-vnc],
157143 AS_HELP_STRING([--without-gtk-vnc], [Ignore presence of gtk-vnc and disable it]))
158144
159145 AS_IF([test "x$with_gtk_vnc" != "xno" && test "x$with_gtk_vnc" != "xyes"],
160 [PKG_CHECK_EXISTS([gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED],
146 [PKG_CHECK_EXISTS([gtk-vnc-2.0 >= $GTK_VNC_REQUIRED],
161147 [with_gtk_vnc=yes], [with_gtk_vnc=no])])
162148
163149 AS_IF([test "x$with_gtk_vnc" = "xyes"],
164 [PKG_CHECK_MODULES(GTK_VNC, [gtk-vnc-$GTK_VNC_API_VERSION >= $GTK_VNC_REQUIRED])]
150 [PKG_CHECK_MODULES(GTK_VNC, [gtk-vnc-2.0 >= $GTK_VNC_REQUIRED])]
165151 [AC_DEFINE([HAVE_GTK_VNC], 1, [Have gtk-vnc?])]
166152 )
167153 AM_CONDITIONAL([HAVE_GTK_VNC], [test "x$with_gtk_vnc" = "xyes"])
170156 AS_HELP_STRING([--without-spice-gtk], [Ignore presence of spice-gtk and disable it]))
171157
172158 AS_IF([test "x$with_spice_gtk" != "xno" && test "x$with_spice_gtk" != "xyes"],
173 [PKG_CHECK_EXISTS([spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED
159 [PKG_CHECK_EXISTS([spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED
174160 spice-controller spice-protocol >= $SPICE_PROTOCOL_REQUIRED],
175161 [with_spice_gtk=yes], [with_spice_gtk=no])])
176162
177163 AS_IF([test "x$with_spice_gtk" = "xyes"],
178 [PKG_CHECK_MODULES(SPICE_GTK, [spice-client-gtk-$SPICE_GTK_API_VERSION >= $SPICE_GTK_REQUIRED])]
164 [PKG_CHECK_MODULES(SPICE_GTK, [spice-client-gtk-3.0 >= $SPICE_GTK_REQUIRED])]
179165 [PKG_CHECK_MODULES(SPICE_CONTROLLER, [spice-controller])]
180166 [PKG_CHECK_MODULES(SPICE_PROTOCOL, [spice-protocol >= $SPICE_PROTOCOL_REQUIRED])]
181167 [AC_DEFINE([HAVE_SPICE_GTK], 1, [Have spice-gtk?])]
250236 AC_CONFIG_FILES([
251237 Makefile
252238 data/Makefile
253 data/adwaita-icons-needed.wxi
254239 data/virt-viewer.wxs
255 data/virt-viewer.nsis
256 data/virt-viewer-debug.nsis
257240 icons/Makefile
258241 icons/16x16/Makefile
259242 icons/22x22/Makefile
266249 po/Makefile.in
267250 src/Makefile
268251 src/virt-viewer.rc
252 tests/Makefile
269253 virt-viewer.spec
270254 ])
271255 AC_OUTPUT
274258 AC_MSG_NOTICE([Configuration summary])
275259 AC_MSG_NOTICE([=====================])
276260 AC_MSG_NOTICE([])
277 AC_MSG_NOTICE([ Features:])
278 AC_MSG_NOTICE([])
279 AC_MSG_NOTICE([ Gtk: $with_gtk])
280 AC_MSG_NOTICE([])
281261 AC_MSG_NOTICE([ Libraries:])
282262 AC_MSG_NOTICE([])
283263 AC_MSG_NOTICE([ GLIB2: $GLIB2_CFLAGS $GLIB2_LIBS])
33
44 EXTRA_DIST = \
55 spice-xpi-client-remote-viewer \
6 adwaita-icons-needed.wxi.in \
76 virt-viewer.wxs.in \
8 virt-viewer.nsis.in \
9 virt-viewer-debug.nsis.in \
107 $(NULL)
118
129 # this make sure those files are regenerated when they change
1310 # (in maintainer-mode)
14 all-local: adwaita-icons-needed.wxi virt-viewer.wxs virt-viewer.nsis virt-viewer-debug.nsis
11 all-local: virt-viewer.wxs
1512
1613 if OS_WIN32
1714
4239 deps.txt:
4340 $(AM_V_GEN)rpm -qa | grep $(host_os) | sort | unix2dos > $@
4441
45 virt-viewer-$(VERSION).exe: virt-viewer.nsis deps.txt
46 $(AM_V_GEN)DESTDIR=`mktemp -d` && \
47 make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
48 makensis -NOCD \
49 -DDESTDIR=$$DESTDIR \
50 -DHaveSpiceGtk=$(HaveSpiceGtk) \
51 -DHaveGtkVnc=$(HaveGtkVnc) \
52 -DHaveLibvirt=$(HaveLibvirt) \
53 -DHaveOVirt=$(HaveOVirt) \
54 $< >/dev/null && \
55 rm -rf $$DESTDIR
56
57 virt-viewer-debug-$(VERSION).exe: virt-viewer-debug.nsis
58 $(AM_V_GEN)DESTDIR=`mktemp -d` && \
59 make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
60 makensis -NOCD -DDESTDIR=$$DESTDIR $< >/dev/null && \
61 rm -rf $$DESTDIR
62
6342 virt-viewer-$(WIXL_ARCH)-$(VERSION).msi: virt-viewer.wxs deps.txt
6443 $(AM_V_GEN)DESTDIR=`mktemp -d` && \
6544 make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
8160
8261 CLEANFILES += \
8362 deps.txt \
84 virt-viewer-$(VERSION).exe \
8563 virt-viewer-$(WIXL_ARCH)-$(VERSION).msi \
8664 $(NULL)
8765
9775 mime_DATA = virt-viewer-mime.xml
9876 @INTLTOOL_XML_RULE@
9977
78 appdatadir = $(datadir)/appdata
79 APPDATAFILES = remote-viewer.appdata.xml.in
80 appdata_DATA = $(APPDATAFILES:.xml.in=.xml)
81 @INTLTOOL_XML_RULE@
82
10083 install-data-hook:
10184 if ENABLE_UPDATE_MIMEDB
10285 @if $(AM_V_P); then set -x; else echo " INSTALL update-mime-database"; fi; \
10992 $(UPDATE_MIME_DATABASE) "$(DESTDIR)$(datadir)/mime";
11093 endif
11194
112 CLEANFILES += $(mime_DATA) $(desktop_DATA)
113 EXTRA_DIST += $(MIMEFILES) $(DESKTOPFILES)
95 CLEANFILES += $(mime_DATA) $(desktop_DATA) $(appdata_DATA)
96 EXTRA_DIST += $(MIMEFILES) $(DESKTOPFILES) $(APPDATAFILES)
11497
11598 endif
11699
8989 host_triplet = @host@
9090 @OS_WIN32_TRUE@am__append_1 = \
9191 @OS_WIN32_TRUE@ deps.txt \
92 @OS_WIN32_TRUE@ virt-viewer-$(VERSION).exe \
9392 @OS_WIN32_TRUE@ virt-viewer-$(WIXL_ARCH)-$(VERSION).msi \
9493 @OS_WIN32_TRUE@ $(NULL)
9594
96 @OS_WIN32_FALSE@am__append_2 = $(mime_DATA) $(desktop_DATA)
97 @OS_WIN32_FALSE@am__append_3 = $(MIMEFILES) $(DESKTOPFILES)
95 @OS_WIN32_FALSE@am__append_2 = $(mime_DATA) $(desktop_DATA) $(appdata_DATA)
96 @OS_WIN32_FALSE@am__append_3 = $(MIMEFILES) $(DESKTOPFILES) $(APPDATAFILES)
9897 subdir = data
9998 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
100 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
101 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
102 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
103 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
104 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
105103 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
106104 $(ACLOCAL_M4)
107105 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
108106 mkinstalldirs = $(install_sh) -d
109107 CONFIG_HEADER = $(top_builddir)/config.h
110 CONFIG_CLEAN_FILES = adwaita-icons-needed.wxi virt-viewer.wxs \
111 virt-viewer.nsis virt-viewer-debug.nsis
108 CONFIG_CLEAN_FILES = virt-viewer.wxs
112109 CONFIG_CLEAN_VPATH_FILES =
113110 AM_V_P = $(am__v_P_@AM_V@)
114111 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
156153 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
157154 $(am__cd) "$$dir" && rm -f $$files; }; \
158155 }
159 am__installdirs = "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(mimedir)"
160 DATA = $(desktop_DATA) $(mime_DATA)
156 am__installdirs = "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(desktopdir)" \
157 "$(DESTDIR)$(mimedir)"
158 DATA = $(appdata_DATA) $(desktop_DATA) $(mime_DATA)
161159 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
162 am__DIST_COMMON = $(srcdir)/Makefile.in \
163 $(srcdir)/adwaita-icons-needed.wxi.in \
164 $(srcdir)/virt-viewer-debug.nsis.in \
165 $(srcdir)/virt-viewer.nsis.in $(srcdir)/virt-viewer.wxs.in
160 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/virt-viewer.wxs.in
166161 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
167162 ACLOCAL = @ACLOCAL@
168163 ALL_LINGUAS = @ALL_LINGUAS@
198193 GLIB2_CFLAGS = @GLIB2_CFLAGS@
199194 GLIB2_LIBS = @GLIB2_LIBS@
200195 GLIB2_REQUIRED = @GLIB2_REQUIRED@
196 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
201197 GLIB_MKENUMS = @GLIB_MKENUMS@
202198 GMOFILES = @GMOFILES@
203199 GMSGFMT = @GMSGFMT@
204200 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
205201 GREP = @GREP@
206 GTK2_REQUIRED = @GTK2_REQUIRED@
207 GTK3_REQUIRED = @GTK3_REQUIRED@
208 GTK_API_VERSION = @GTK_API_VERSION@
209202 GTK_CFLAGS = @GTK_CFLAGS@
210203 GTK_LIBS = @GTK_LIBS@
211204 GTK_REQUIRED = @GTK_REQUIRED@
212 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
213 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
214 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
215205 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
216206 GTK_VNC_LIBS = @GTK_VNC_LIBS@
207 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
217208 ICOTOOL = @ICOTOOL@
218209 INSTALL = @INSTALL@
219210 INSTALL_DATA = @INSTALL_DATA@
236227 LIBS = @LIBS@
237228 LIBTOOL = @LIBTOOL@
238229 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
230 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
239231 LIBVIRT_LIBS = @LIBVIRT_LIBS@
240232 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
241233 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
353345 NULL =
354346 CLEANFILES = $(am__append_1) $(am__append_2)
355347 MANUFACTURER = Virt Manager Project
356 EXTRA_DIST = spice-xpi-client-remote-viewer \
357 adwaita-icons-needed.wxi.in virt-viewer.wxs.in \
358 virt-viewer.nsis.in virt-viewer-debug.nsis.in $(NULL) \
348 EXTRA_DIST = spice-xpi-client-remote-viewer virt-viewer.wxs.in $(NULL) \
359349 $(am__append_3)
360350 @HAVE_LIBVIRT_FALSE@@OS_WIN32_TRUE@HaveLibvirt = False
361351 @HAVE_LIBVIRT_TRUE@@OS_WIN32_TRUE@HaveLibvirt = True
371361 @OS_WIN32_FALSE@MIMEFILES = virt-viewer-mime.xml.in
372362 @OS_WIN32_FALSE@mimedir = $(datadir)/mime/packages
373363 @OS_WIN32_FALSE@mime_DATA = virt-viewer-mime.xml
364 @OS_WIN32_FALSE@appdatadir = $(datadir)/appdata
365 @OS_WIN32_FALSE@APPDATAFILES = remote-viewer.appdata.xml.in
366 @OS_WIN32_FALSE@appdata_DATA = $(APPDATAFILES:.xml.in=.xml)
374367 all: all-am
375368
376369 .SUFFIXES:
403396 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
404397 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
405398 $(am__aclocal_m4_deps):
406 adwaita-icons-needed.wxi: $(top_builddir)/config.status $(srcdir)/adwaita-icons-needed.wxi.in
407 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
408399 virt-viewer.wxs: $(top_builddir)/config.status $(srcdir)/virt-viewer.wxs.in
409400 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
410 virt-viewer.nsis: $(top_builddir)/config.status $(srcdir)/virt-viewer.nsis.in
411 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
412 virt-viewer-debug.nsis: $(top_builddir)/config.status $(srcdir)/virt-viewer-debug.nsis.in
413 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
414401
415402 mostlyclean-libtool:
416403 -rm -f *.lo
417404
418405 clean-libtool:
419406 -rm -rf .libs _libs
407 install-appdataDATA: $(appdata_DATA)
408 @$(NORMAL_INSTALL)
409 @list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \
410 if test -n "$$list"; then \
411 echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \
412 $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \
413 fi; \
414 for p in $$list; do \
415 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
416 echo "$$d$$p"; \
417 done | $(am__base_list) | \
418 while read files; do \
419 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \
420 $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \
421 done
422
423 uninstall-appdataDATA:
424 @$(NORMAL_UNINSTALL)
425 @list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \
426 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
427 dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir)
420428 install-desktopDATA: $(desktop_DATA)
421429 @$(NORMAL_INSTALL)
422430 @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
500508 check: check-am
501509 all-am: Makefile $(DATA) all-local
502510 installdirs:
503 for dir in "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(mimedir)"; do \
511 for dir in "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(mimedir)"; do \
504512 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
505513 done
506514 install: install-am
556564
557565 info-am:
558566
559 install-data-am: install-desktopDATA install-mimeDATA
567 install-data-am: install-appdataDATA install-desktopDATA \
568 install-mimeDATA
560569 @$(NORMAL_INSTALL)
561570 $(MAKE) $(AM_MAKEFLAGS) install-data-hook
562571 install-dvi: install-dvi-am
601610
602611 ps-am:
603612
604 uninstall-am: uninstall-desktopDATA uninstall-mimeDATA
613 uninstall-am: uninstall-appdataDATA uninstall-desktopDATA \
614 uninstall-mimeDATA
605615 @$(NORMAL_INSTALL)
606616 $(MAKE) $(AM_MAKEFLAGS) uninstall-hook
607617 .MAKE: install-am install-data-am install-strip uninstall-am
609619 .PHONY: all all-am all-local check check-am clean clean-generic \
610620 clean-libtool cscopelist-am ctags-am distclean \
611621 distclean-generic distclean-libtool distdir dvi dvi-am html \
612 html-am info info-am install install-am install-data \
613 install-data-am install-data-hook install-desktopDATA \
614 install-dvi install-dvi-am install-exec install-exec-am \
615 install-html install-html-am install-info install-info-am \
616 install-man install-mimeDATA install-pdf install-pdf-am \
617 install-ps install-ps-am install-strip installcheck \
618 installcheck-am installdirs maintainer-clean \
622 html-am info info-am install install-am install-appdataDATA \
623 install-data install-data-am install-data-hook \
624 install-desktopDATA install-dvi install-dvi-am install-exec \
625 install-exec-am install-html install-html-am install-info \
626 install-info-am install-man install-mimeDATA install-pdf \
627 install-pdf-am install-ps install-ps-am install-strip \
628 installcheck installcheck-am installdirs maintainer-clean \
619629 maintainer-clean-generic mostlyclean mostlyclean-generic \
620630 mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
621 uninstall-am uninstall-desktopDATA uninstall-hook \
622 uninstall-mimeDATA
631 uninstall-am uninstall-appdataDATA uninstall-desktopDATA \
632 uninstall-hook uninstall-mimeDATA
623633
624634 .PRECIOUS: Makefile
625635
626636
627637 # this make sure those files are regenerated when they change
628638 # (in maintainer-mode)
629 all-local: adwaita-icons-needed.wxi virt-viewer.wxs virt-viewer.nsis virt-viewer-debug.nsis
639 all-local: virt-viewer.wxs
630640
631641 @OS_WIN32_TRUE@deps.txt:
632642 @OS_WIN32_TRUE@ $(AM_V_GEN)rpm -qa | grep $(host_os) | sort | unix2dos > $@
633
634 @OS_WIN32_TRUE@virt-viewer-$(VERSION).exe: virt-viewer.nsis deps.txt
635 @OS_WIN32_TRUE@ $(AM_V_GEN)DESTDIR=`mktemp -d` && \
636 @OS_WIN32_TRUE@ make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
637 @OS_WIN32_TRUE@ makensis -NOCD \
638 @OS_WIN32_TRUE@ -DDESTDIR=$$DESTDIR \
639 @OS_WIN32_TRUE@ -DHaveSpiceGtk=$(HaveSpiceGtk) \
640 @OS_WIN32_TRUE@ -DHaveGtkVnc=$(HaveGtkVnc) \
641 @OS_WIN32_TRUE@ -DHaveLibvirt=$(HaveLibvirt) \
642 @OS_WIN32_TRUE@ -DHaveOVirt=$(HaveOVirt) \
643 @OS_WIN32_TRUE@ $< >/dev/null && \
644 @OS_WIN32_TRUE@ rm -rf $$DESTDIR
645
646 @OS_WIN32_TRUE@virt-viewer-debug-$(VERSION).exe: virt-viewer-debug.nsis
647 @OS_WIN32_TRUE@ $(AM_V_GEN)DESTDIR=`mktemp -d` && \
648 @OS_WIN32_TRUE@ make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
649 @OS_WIN32_TRUE@ makensis -NOCD -DDESTDIR=$$DESTDIR $< >/dev/null && \
650 @OS_WIN32_TRUE@ rm -rf $$DESTDIR
651643
652644 @OS_WIN32_TRUE@virt-viewer-$(WIXL_ARCH)-$(VERSION).msi: virt-viewer.wxs deps.txt
653645 @OS_WIN32_TRUE@ $(AM_V_GEN)DESTDIR=`mktemp -d` && \
669661 @OS_WIN32_TRUE@msi: virt-viewer-$(WIXL_ARCH)-$(VERSION).msi
670662 @OS_WIN32_FALSE@@INTLTOOL_DESKTOP_RULE@
671663 @OS_WIN32_FALSE@@INTLTOOL_XML_RULE@
664 @OS_WIN32_FALSE@@INTLTOOL_XML_RULE@
672665
673666 @OS_WIN32_FALSE@install-data-hook:
674667 @ENABLE_UPDATE_MIMEDB_TRUE@@OS_WIN32_FALSE@ @if $(AM_V_P); then set -x; else echo " INSTALL update-mime-database"; fi; \
+0
-807
data/adwaita-icons-needed.wxi.in less more
0 <?xml version="1.0" encoding="utf-8"?>
1 <Include xmlns="http://schemas.microsoft.com/wix/2006/wi">
2 <Fragment>
3 <DirectoryRef Id="INSTALLDIR">
4 <Directory Id="DirShareDefault" Name="share">
5 <Directory Id="DirIconsDefault" Name="icons">
6 <Directory Id="DirIconsAdwaita" Name="Adwaita">
7 <Directory Id="DirIconsAdwaita16x16" Name="16x16">
8 <Directory Id="DirIconsAdwaita16x16Places" Name="places">
9 <Component Id="CIconsFolderDocuments16" Guid="*">
10 <File Id="FIconsFolderDocuments16" KeyPath="yes"
11 Source="/usr/share/icons/Adwaita/16x16/places/folder-documents-symbolic.symbolic.png"/>
12 </Component>
13 <Component Id="CIconsFolderDownload16" Guid="*">
14 <File Id="FIconsFolderDownload16" KeyPath="yes"
15 Source="/usr/share/icons/Adwaita/16x16/places/folder-download-symbolic.symbolic.png"/>
16 </Component>
17 <Component Id="CIconsFolderMusic16" Guid="*">
18 <File Id="FIconsFolderMusic16" KeyPath="yes"
19 Source="/usr/share/icons/Adwaita/16x16/places/folder-music-symbolic.symbolic.png"/>
20 </Component>
21 <Component Id="CIconsFolderPictures16" Guid="*">
22 <File Id="FIconsFolderPictures16" KeyPath="yes"
23 Source="/usr/share/icons/Adwaita/16x16/places/folder-pictures-symbolic.symbolic.png"/>
24 </Component>
25 <Component Id="CIconsFolderPublicshare16" Guid="*">
26 <File Id="FIconsFolderPublicshare16" KeyPath="yes"
27 Source="/usr/share/icons/Adwaita/16x16/places/folder-publicshare-symbolic.symbolic.png"/>
28 </Component>
29 <Component Id="CIconsFolderRemote16" Guid="*">
30 <File Id="FIconsFolderRemote16" KeyPath="yes"
31 Source="/usr/share/icons/Adwaita/16x16/places/folder-remote-symbolic.symbolic.png"/>
32 </Component>
33 <Component Id="CIconsFolderSavedSearch16" Guid="*">
34 <File Id="FIconsFolderSavedSearch16" KeyPath="yes"
35 Source="/usr/share/icons/Adwaita/16x16/places/folder-saved-search-symbolic.symbolic.png"/>
36 </Component>
37 <Component Id="CIconsFolder16" Guid="*">
38 <File Id="FIconsFolder16" KeyPath="yes"
39 Source="/usr/share/icons/Adwaita/16x16/places/folder-symbolic.symbolic.png"/>
40 </Component>
41 <Component Id="CIconsFolderTemplates16" Guid="*">
42 <File Id="FIconsFolderTemplates16" KeyPath="yes"
43 Source="/usr/share/icons/Adwaita/16x16/places/folder-templates-symbolic.symbolic.png"/>
44 </Component>
45 <Component Id="CIconsFolderVideos16" Guid="*">
46 <File Id="FIconsFolderVideos16" KeyPath="yes"
47 Source="/usr/share/icons/Adwaita/16x16/places/folder-videos-symbolic.symbolic.png"/>
48 </Component>
49 <Component Id="CIconsNetworkServer16" Guid="*">
50 <File Id="FIconsNetworkServer16" KeyPath="yes"
51 Source="/usr/share/icons/Adwaita/16x16/places/network-server-symbolic.symbolic.png"/>
52 </Component>
53 <Component Id="CIconsNetworkWorkgroup16" Guid="*">
54 <File Id="FIconsNetworkWorkgroup16" KeyPath="yes"
55 Source="/usr/share/icons/Adwaita/16x16/places/network-workgroup-symbolic.symbolic.png"/>
56 </Component>
57 <Component Id="CIconsStartHere16" Guid="*">
58 <File Id="FIconsStartHere16" KeyPath="yes"
59 Source="/usr/share/icons/Adwaita/16x16/places/start-here-symbolic.symbolic.png"/>
60 </Component>
61 <Component Id="CIconsUserBookmarks16" Guid="*">
62 <File Id="FIconsUserBookmarks16" KeyPath="yes"
63 Source="/usr/share/icons/Adwaita/16x16/places/user-bookmarks-symbolic.symbolic.png"/>
64 </Component>
65 <Component Id="CIconsUserDesktop16" Guid="*">
66 <File Id="FIconsUserDesktop16" KeyPath="yes"
67 Source="/usr/share/icons/Adwaita/16x16/places/user-desktop-symbolic.symbolic.png"/>
68 </Component>
69 <Component Id="CIconsUserHome16" Guid="*">
70 <File Id="FIconsUserHome16" KeyPath="yes"
71 Source="/usr/share/icons/Adwaita/16x16/places/user-home-symbolic.symbolic.png"/>
72 </Component>
73 <Component Id="CIconsUserTrash16" Guid="*">
74 <File Id="FIconsUserTrash16" KeyPath="yes"
75 Source="/usr/share/icons/Adwaita/16x16/places/user-trash-symbolic.symbolic.png"/>
76 </Component>
77 </Directory>
78 <Directory Id="DirIconsAdwaita16x16Devices" Name="devices">
79 <Component Id="CIconsDriveHarddisk16" Guid="*">
80 <File Id="FIconsDriveHardddisk16" KeyPath="yes"
81 Source="/usr/share/icons/Adwaita/16x16/devices/drive-harddisk-symbolic.symbolic.png"/>
82 </Component>
83 <Component Id="CIconsDriveOptical16" Guid="*">
84 <File Id="FIconsDriveOptical16" KeyPath="yes"
85 Source="/usr/share/icons/Adwaita/16x16/devices/drive-optical-symbolic.symbolic.png"/>
86 </Component>
87 <Component Id="CIconsDriveRemovableMedia16" Guid="*">
88 <File Id="FIconsDriveRemovableMedia16" KeyPath="yes"
89 Source="/usr/share/icons/Adwaita/16x16/devices/drive-removable-media-symbolic.symbolic.png"/>
90 </Component>
91 </Directory>
92 <Directory Id="DirIconsAdwaita16x16Status" Name="status">
93 <Component Id="CIconsCheckbox16" Guid="*">
94 <File Id="FIconsCheckbox16" KeyPath="yes"
95 Source="/usr/share/icons/Adwaita/16x16/status/checkbox-symbolic.symbolic.png"/>
96 </Component>
97 <Component Id="CIconsCheckboxChecked16" Guid="*">
98 <File Id="FIconsCheckBoxChecked16" KeyPath="yes"
99 Source="/usr/share/icons/Adwaita/16x16/status/checkbox-checked-symbolic.symbolic.png"/>
100 </Component>
101 </Directory>
102 <Directory Id="DirIconsAdwaita16x16Actions" Name="actions">
103 <Component Id="CIconsEditClear16" Guid="*">
104 <File Id="FIconsEditClear16" KeyPath="yes"
105 Source="/usr/share/icons/Adwaita/16x16/actions/edit-clear-symbolic.symbolic.png"/>
106 </Component>
107 <Component Id="CIconsViewRestore16" Guid="*">
108 <File Id="FIconsViewRestore16" KeyPath="yes"
109 Source="/usr/share/icons/Adwaita/16x16/actions/view-restore.png"/>
110 </Component>
111 <Component Id="CIconsWindowClose16" Guid="*">
112 <File Id="FIconsWindowClose16" KeyPath="yes"
113 Source="/usr/share/icons/Adwaita/16x16/actions/window-close.png"/>
114 </Component>
115 </Directory>
116 </Directory>
117 <Directory Id="DirIconsAdwaita24x24" Name="24x24">
118 <Directory Id="DirIconsAdwaita24x24Places" Name="places">
119 <Component Id="CIconsFolderDocuments24" Guid="*">
120 <File Id="FIconsFolderDocuments24" KeyPath="yes"
121 Source="/usr/share/icons/Adwaita/24x24/places/folder-documents-symbolic.symbolic.png"/>
122 </Component>
123 <Component Id="CIconsFolderDownload24" Guid="*">
124 <File Id="FIconsFolderDownload24" KeyPath="yes"
125 Source="/usr/share/icons/Adwaita/24x24/places/folder-download-symbolic.symbolic.png"/>
126 </Component>
127 <Component Id="CIconsFolderMusic24" Guid="*">
128 <File Id="FIconsFolderMusic24" KeyPath="yes"
129 Source="/usr/share/icons/Adwaita/24x24/places/folder-music-symbolic.symbolic.png"/>
130 </Component>
131 <Component Id="CIconsFolderPictures24" Guid="*">
132 <File Id="FIconsFolderPictures24" KeyPath="yes"
133 Source="/usr/share/icons/Adwaita/24x24/places/folder-pictures-symbolic.symbolic.png"/>
134 </Component>
135 <Component Id="CIconsFolderPublicshare24" Guid="*">
136 <File Id="FIconsFolderPublicshare24" KeyPath="yes"
137 Source="/usr/share/icons/Adwaita/24x24/places/folder-publicshare-symbolic.symbolic.png"/>
138 </Component>
139 <Component Id="CIconsFolderRemote24" Guid="*">
140 <File Id="FIconsFolderRemote24" KeyPath="yes"
141 Source="/usr/share/icons/Adwaita/24x24/places/folder-remote-symbolic.symbolic.png"/>
142 </Component>
143 <Component Id="CIconsFolderSavedSearch24" Guid="*">
144 <File Id="FIconsFolderSavedSearch24" KeyPath="yes"
145 Source="/usr/share/icons/Adwaita/24x24/places/folder-saved-search-symbolic.symbolic.png"/>
146 </Component>
147 <Component Id="CIconsFolder24" Guid="*">
148 <File Id="FIconsFolder24" KeyPath="yes"
149 Source="/usr/share/icons/Adwaita/24x24/places/folder-symbolic.symbolic.png"/>
150 </Component>
151 <Component Id="CIconsFolderTemplates24" Guid="*">
152 <File Id="FIconsFolderTemplates24" KeyPath="yes"
153 Source="/usr/share/icons/Adwaita/24x24/places/folder-templates-symbolic.symbolic.png"/>
154 </Component>
155 <Component Id="CIconsFolderVideos24" Guid="*">
156 <File Id="FIconsFolderVideos24" KeyPath="yes"
157 Source="/usr/share/icons/Adwaita/24x24/places/folder-videos-symbolic.symbolic.png"/>
158 </Component>
159 <Component Id="CIconsNetworkServer24" Guid="*">
160 <File Id="FIconsNetworkServer24" KeyPath="yes"
161 Source="/usr/share/icons/Adwaita/24x24/places/network-server-symbolic.symbolic.png"/>
162 </Component>
163 <Component Id="CIconsNetworkWorkgroup24" Guid="*">
164 <File Id="FIconsNetworkWorkgroup24" KeyPath="yes"
165 Source="/usr/share/icons/Adwaita/24x24/places/network-workgroup-symbolic.symbolic.png"/>
166 </Component>
167 <Component Id="CIconsStartHere24" Guid="*">
168 <File Id="FIconsStartHere24" KeyPath="yes"
169 Source="/usr/share/icons/Adwaita/24x24/places/start-here-symbolic.symbolic.png"/>
170 </Component>
171 <Component Id="CIconsUserBookmarks24" Guid="*">
172 <File Id="FIconsUserBookmarks24" KeyPath="yes"
173 Source="/usr/share/icons/Adwaita/24x24/places/user-bookmarks-symbolic.symbolic.png"/>
174 </Component>
175 <Component Id="CIconsUserDesktop24" Guid="*">
176 <File Id="FIconsUserDesktop24" KeyPath="yes"
177 Source="/usr/share/icons/Adwaita/24x24/places/user-desktop-symbolic.symbolic.png"/>
178 </Component>
179 <Component Id="CIconsUserHome24" Guid="*">
180 <File Id="FIconsUserHome24" KeyPath="yes"
181 Source="/usr/share/icons/Adwaita/24x24/places/user-home-symbolic.symbolic.png"/>
182 </Component>
183 <Component Id="CIconsUserTrash24" Guid="*">
184 <File Id="FIconsUserTrash24" KeyPath="yes"
185 Source="/usr/share/icons/Adwaita/24x24/places/user-trash-symbolic.symbolic.png"/>
186 </Component>
187 </Directory>
188 <Directory Id="DirIconsAdwaita24x24Devices" Name="devices">
189 <Component Id="CIconsDriveHarddisk24" Guid="*">
190 <File Id="FIconsDriveHardddisk24" KeyPath="yes"
191 Source="/usr/share/icons/Adwaita/24x24/devices/drive-harddisk-symbolic.symbolic.png"/>
192 </Component>
193 <Component Id="CIconsDriveOptical24" Guid="*">
194 <File Id="FIconsDriveOptical24" KeyPath="yes"
195 Source="/usr/share/icons/Adwaita/24x24/devices/drive-optical-symbolic.symbolic.png"/>
196 </Component>
197 <Component Id="CIconsDriveRemovableMedia24" Guid="*">
198 <File Id="FIconsDriveRemovableMedia24" KeyPath="yes"
199 Source="/usr/share/icons/Adwaita/24x24/devices/drive-removable-media-symbolic.symbolic.png"/>
200 </Component>
201 </Directory>
202 <Directory Id="DirIconsAdwaita24x24Status" Name="status">
203 <Component Id="CIconsCheckbox24" Guid="*">
204 <File Id="FIconsCheckbox24" KeyPath="yes"
205 Source="/usr/share/icons/Adwaita/24x24/status/checkbox-symbolic.symbolic.png"/>
206 </Component>
207 <Component Id="CIconsCheckboxChecked24" Guid="*">
208 <File Id="FIconsCheckBoxChecked24" KeyPath="yes"
209 Source="/usr/share/icons/Adwaita/24x24/status/checkbox-checked-symbolic.symbolic.png"/>
210 </Component>
211 </Directory>
212 <Directory Id="DirIconsAdwaita24x24Actions" Name="actions">
213 <Component Id="CIconsEditClear24" Guid="*">
214 <File Id="FIconsEditClear24" KeyPath="yes"
215 Source="/usr/share/icons/Adwaita/24x24/actions/edit-clear-symbolic.symbolic.png"/>
216 </Component>
217 <Component Id="CIconsViewRestore24" Guid="*">
218 <File Id="FIconsViewRestore24" KeyPath="yes"
219 Source="/usr/share/icons/Adwaita/24x24/actions/view-restore.png"/>
220 </Component>
221 <Component Id="CIconsWindowClose24" Guid="*">
222 <File Id="FIconsWindowClose24" KeyPath="yes"
223 Source="/usr/share/icons/Adwaita/24x24/actions/window-close.png"/>
224 </Component>
225 </Directory>
226 </Directory>
227 <Directory Id="DirIconsAdwaita32x32" Name="32x32">
228 <Directory Id="DirIconsAdwaita32x32Places" Name="places">
229 <Component Id="CIconsFolderDocuments32" Guid="*">
230 <File Id="FIconsFolderDocuments32" KeyPath="yes"
231 Source="/usr/share/icons/Adwaita/32x32/places/folder-documents-symbolic.symbolic.png"/>
232 </Component>
233 <Component Id="CIconsFolderDownload32" Guid="*">
234 <File Id="FIconsFolderDownload32" KeyPath="yes"
235 Source="/usr/share/icons/Adwaita/32x32/places/folder-download-symbolic.symbolic.png"/>
236 </Component>
237 <Component Id="CIconsFolderMusic32" Guid="*">
238 <File Id="FIconsFolderMusic32" KeyPath="yes"
239 Source="/usr/share/icons/Adwaita/32x32/places/folder-music-symbolic.symbolic.png"/>
240 </Component>
241 <Component Id="CIconsFolderPictures32" Guid="*">
242 <File Id="FIconsFolderPictures32" KeyPath="yes"
243 Source="/usr/share/icons/Adwaita/32x32/places/folder-pictures-symbolic.symbolic.png"/>
244 </Component>
245 <Component Id="CIconsFolderPublicshare32" Guid="*">
246 <File Id="FIconsFolderPublicshare32" KeyPath="yes"
247 Source="/usr/share/icons/Adwaita/32x32/places/folder-publicshare-symbolic.symbolic.png"/>
248 </Component>
249 <Component Id="CIconsFolderRemote32" Guid="*">
250 <File Id="FIconsFolderRemote32" KeyPath="yes"
251 Source="/usr/share/icons/Adwaita/32x32/places/folder-remote-symbolic.symbolic.png"/>
252 </Component>
253 <Component Id="CIconsFolderSavedSearch32" Guid="*">
254 <File Id="FIconsFolderSavedSearch32" KeyPath="yes"
255 Source="/usr/share/icons/Adwaita/32x32/places/folder-saved-search-symbolic.symbolic.png"/>
256 </Component>
257 <Component Id="CIconsFolder32" Guid="*">
258 <File Id="FIconsFolder32" KeyPath="yes"
259 Source="/usr/share/icons/Adwaita/32x32/places/folder-symbolic.symbolic.png"/>
260 </Component>
261 <Component Id="CIconsFolderTemplates32" Guid="*">
262 <File Id="FIconsFolderTemplates32" KeyPath="yes"
263 Source="/usr/share/icons/Adwaita/32x32/places/folder-templates-symbolic.symbolic.png"/>
264 </Component>
265 <Component Id="CIconsFolderVideos32" Guid="*">
266 <File Id="FIconsFolderVideos32" KeyPath="yes"
267 Source="/usr/share/icons/Adwaita/32x32/places/folder-videos-symbolic.symbolic.png"/>
268 </Component>
269 <Component Id="CIconsNetworkServer32" Guid="*">
270 <File Id="FIconsNetworkServer32" KeyPath="yes"
271 Source="/usr/share/icons/Adwaita/32x32/places/network-server-symbolic.symbolic.png"/>
272 </Component>
273 <Component Id="CIconsNetworkWorkgroup32" Guid="*">
274 <File Id="FIconsNetworkWorkgroup32" KeyPath="yes"
275 Source="/usr/share/icons/Adwaita/32x32/places/network-workgroup-symbolic.symbolic.png"/>
276 </Component>
277 <Component Id="CIconsStartHere32" Guid="*">
278 <File Id="FIconsStartHere32" KeyPath="yes"
279 Source="/usr/share/icons/Adwaita/32x32/places/start-here-symbolic.symbolic.png"/>
280 </Component>
281 <Component Id="CIconsUserBookmarks32" Guid="*">
282 <File Id="FIconsUserBookmarks32" KeyPath="yes"
283 Source="/usr/share/icons/Adwaita/32x32/places/user-bookmarks-symbolic.symbolic.png"/>
284 </Component>
285 <Component Id="CIconsUserDesktop32" Guid="*">
286 <File Id="FIconsUserDesktop32" KeyPath="yes"
287 Source="/usr/share/icons/Adwaita/32x32/places/user-desktop-symbolic.symbolic.png"/>
288 </Component>
289 <Component Id="CIconsUserHome32" Guid="*">
290 <File Id="FIconsUserHome32" KeyPath="yes"
291 Source="/usr/share/icons/Adwaita/32x32/places/user-home-symbolic.symbolic.png"/>
292 </Component>
293 <Component Id="CIconsUserTrash32" Guid="*">
294 <File Id="FIconsUserTrash32" KeyPath="yes"
295 Source="/usr/share/icons/Adwaita/32x32/places/user-trash-symbolic.symbolic.png"/>
296 </Component>
297 </Directory>
298 <Directory Id="DirIconsAdwaita32x32Devices" Name="devices">
299 <Component Id="CIconsDriveHarddisk32" Guid="*">
300 <File Id="FIconsDriveHardddisk32" KeyPath="yes"
301 Source="/usr/share/icons/Adwaita/32x32/devices/drive-harddisk-symbolic.symbolic.png"/>
302 </Component>
303 <Component Id="CIconsDriveOptical32" Guid="*">
304 <File Id="FIconsDriveOptical32" KeyPath="yes"
305 Source="/usr/share/icons/Adwaita/32x32/devices/drive-optical-symbolic.symbolic.png"/>
306 </Component>
307 <Component Id="CIconsDriveRemovableMedia32" Guid="*">
308 <File Id="FIconsDriveRemovableMedia32" KeyPath="yes"
309 Source="/usr/share/icons/Adwaita/32x32/devices/drive-removable-media-symbolic.symbolic.png"/>
310 </Component>
311 </Directory>
312 <Directory Id="DirIconsAdwaita32x32Status" Name="status">
313 <Component Id="CIconsCheckbox32" Guid="*">
314 <File Id="FIconsCheckbox32" KeyPath="yes"
315 Source="/usr/share/icons/Adwaita/32x32/status/checkbox-symbolic.symbolic.png"/>
316 </Component>
317 <Component Id="CIconsCheckboxChecked32" Guid="*">
318 <File Id="FIconsCheckBoxChecked32" KeyPath="yes"
319 Source="/usr/share/icons/Adwaita/32x32/status/checkbox-checked-symbolic.symbolic.png"/>
320 </Component>
321 </Directory>
322 <Directory Id="DirIconsAdwaita32x32Actions" Name="actions">
323 <Component Id="CIconsEditClear32" Guid="*">
324 <File Id="FIconsEditClear32" KeyPath="yes"
325 Source="/usr/share/icons/Adwaita/32x32/actions/edit-clear-symbolic.symbolic.png"/>
326 </Component>
327 <Component Id="CIconsViewRestore32" Guid="*">
328 <File Id="FIconsViewRestore32" KeyPath="yes"
329 Source="/usr/share/icons/Adwaita/32x32/actions/view-restore.png"/>
330 </Component>
331 <Component Id="CIconsWindowClose32" Guid="*">
332 <File Id="FIconsWindowClose32" KeyPath="yes"
333 Source="/usr/share/icons/Adwaita/32x32/actions/window-close.png"/>
334 </Component>
335 </Directory>
336 </Directory>
337 <Directory Id="DirIconsAdwaita48x48" Name="48x48">
338 <Directory Id="DirIconsAdwaita48x48Places" Name="places">
339 <Component Id="CIconsFolderDocuments48" Guid="*">
340 <File Id="FIconsFolderDocuments48" KeyPath="yes"
341 Source="/usr/share/icons/Adwaita/48x48/places/folder-documents-symbolic.symbolic.png"/>
342 </Component>
343 <Component Id="CIconsFolderDownload48" Guid="*">
344 <File Id="FIconsFolderDownload48" KeyPath="yes"
345 Source="/usr/share/icons/Adwaita/48x48/places/folder-download-symbolic.symbolic.png"/>
346 </Component>
347 <Component Id="CIconsFolderMusic48" Guid="*">
348 <File Id="FIconsFolderMusic48" KeyPath="yes"
349 Source="/usr/share/icons/Adwaita/48x48/places/folder-music-symbolic.symbolic.png"/>
350 </Component>
351 <Component Id="CIconsFolderPictures48" Guid="*">
352 <File Id="FIconsFolderPictures48" KeyPath="yes"
353 Source="/usr/share/icons/Adwaita/48x48/places/folder-pictures-symbolic.symbolic.png"/>
354 </Component>
355 <Component Id="CIconsFolderPublicshare48" Guid="*">
356 <File Id="FIconsFolderPublicshare48" KeyPath="yes"
357 Source="/usr/share/icons/Adwaita/48x48/places/folder-publicshare-symbolic.symbolic.png"/>
358 </Component>
359 <Component Id="CIconsFolderRemote48" Guid="*">
360 <File Id="FIconsFolderRemote48" KeyPath="yes"
361 Source="/usr/share/icons/Adwaita/48x48/places/folder-remote-symbolic.symbolic.png"/>
362 </Component>
363 <Component Id="CIconsFolderSavedSearch48" Guid="*">
364 <File Id="FIconsFolderSavedSearch48" KeyPath="yes"
365 Source="/usr/share/icons/Adwaita/48x48/places/folder-saved-search-symbolic.symbolic.png"/>
366 </Component>
367 <Component Id="CIconsFolder48" Guid="*">
368 <File Id="FIconsFolder48" KeyPath="yes"
369 Source="/usr/share/icons/Adwaita/48x48/places/folder-symbolic.symbolic.png"/>
370 </Component>
371 <Component Id="CIconsFolderTemplates48" Guid="*">
372 <File Id="FIconsFolderTemplates48" KeyPath="yes"
373 Source="/usr/share/icons/Adwaita/48x48/places/folder-templates-symbolic.symbolic.png"/>
374 </Component>
375 <Component Id="CIconsFolderVideos48" Guid="*">
376 <File Id="FIconsFolderVideos48" KeyPath="yes"
377 Source="/usr/share/icons/Adwaita/48x48/places/folder-videos-symbolic.symbolic.png"/>
378 </Component>
379 <Component Id="CIconsNetworkServer48" Guid="*">
380 <File Id="FIconsNetworkServer48" KeyPath="yes"
381 Source="/usr/share/icons/Adwaita/48x48/places/network-server-symbolic.symbolic.png"/>
382 </Component>
383 <Component Id="CIconsNetworkWorkgroup48" Guid="*">
384 <File Id="FIconsNetworkWorkgroup48" KeyPath="yes"
385 Source="/usr/share/icons/Adwaita/48x48/places/network-workgroup-symbolic.symbolic.png"/>
386 </Component>
387 <Component Id="CIconsStartHere48" Guid="*">
388 <File Id="FIconsStartHere48" KeyPath="yes"
389 Source="/usr/share/icons/Adwaita/48x48/places/start-here-symbolic.symbolic.png"/>
390 </Component>
391 <Component Id="CIconsUserBookmarks48" Guid="*">
392 <File Id="FIconsUserBookmarks48" KeyPath="yes"
393 Source="/usr/share/icons/Adwaita/48x48/places/user-bookmarks-symbolic.symbolic.png"/>
394 </Component>
395 <Component Id="CIconsUserDesktop48" Guid="*">
396 <File Id="FIconsUserDesktop48" KeyPath="yes"
397 Source="/usr/share/icons/Adwaita/48x48/places/user-desktop-symbolic.symbolic.png"/>
398 </Component>
399 <Component Id="CIconsUserHome48" Guid="*">
400 <File Id="FIconsUserHome48" KeyPath="yes"
401 Source="/usr/share/icons/Adwaita/48x48/places/user-home-symbolic.symbolic.png"/>
402 </Component>
403 <Component Id="CIconsUserTrash48" Guid="*">
404 <File Id="FIconsUserTrash48" KeyPath="yes"
405 Source="/usr/share/icons/Adwaita/48x48/places/user-trash-symbolic.symbolic.png"/>
406 </Component>
407 </Directory>
408 <Directory Id="DirIconsAdwaita48x48Devices" Name="devices">
409 <Component Id="CIconsDriveHarddisk48" Guid="*">
410 <File Id="FIconsDriveHardddisk48" KeyPath="yes"
411 Source="/usr/share/icons/Adwaita/48x48/devices/drive-harddisk-symbolic.symbolic.png"/>
412 </Component>
413 <Component Id="CIconsDriveOptical48" Guid="*">
414 <File Id="FIconsDriveOptical48" KeyPath="yes"
415 Source="/usr/share/icons/Adwaita/48x48/devices/drive-optical-symbolic.symbolic.png"/>
416 </Component>
417 <Component Id="CIconsDriveRemovableMedia48" Guid="*">
418 <File Id="FIconsDriveRemovableMedia48" KeyPath="yes"
419 Source="/usr/share/icons/Adwaita/48x48/devices/drive-removable-media-symbolic.symbolic.png"/>
420 </Component>
421 </Directory>
422 <Directory Id="DirIconsAdwaita48x48Status" Name="status">
423 <Component Id="CIconsCheckbox48" Guid="*">
424 <File Id="FIconsCheckbox48" KeyPath="yes"
425 Source="/usr/share/icons/Adwaita/48x48/status/checkbox-symbolic.symbolic.png"/>
426 </Component>
427 <Component Id="CIconsCheckboxChecked48" Guid="*">
428 <File Id="FIconsCheckBoxChecked48" KeyPath="yes"
429 Source="/usr/share/icons/Adwaita/48x48/status/checkbox-checked-symbolic.symbolic.png"/>
430 </Component>
431 </Directory>
432 <Directory Id="DirIconsAdwaita48x48Actions" Name="actions">
433 <Component Id="CIconsEditClear48" Guid="*">
434 <File Id="FIconsEditClear48" KeyPath="yes"
435 Source="/usr/share/icons/Adwaita/48x48/actions/edit-clear-symbolic.symbolic.png"/>
436 </Component>
437 <Component Id="CIconsViewRestore48" Guid="*">
438 <File Id="FIconsViewRestore48" KeyPath="yes"
439 Source="/usr/share/icons/Adwaita/48x48/actions/view-restore.png"/>
440 </Component>
441 <Component Id="CIconsWindowClose48" Guid="*">
442 <File Id="FIconsWindowClose48" KeyPath="yes"
443 Source="/usr/share/icons/Adwaita/48x48/actions/window-close.png"/>
444 </Component>
445 </Directory>
446 </Directory>
447 <Directory Id="DirIconsAdwaita64x64" Name="64x64">
448 <Directory Id="DirIconsAdwaita64x64Places" Name="places">
449 <Component Id="CIconsFolderDocuments64" Guid="*">
450 <File Id="FIconsFolderDocuments64" KeyPath="yes"
451 Source="/usr/share/icons/Adwaita/64x64/places/folder-documents-symbolic.symbolic.png"/>
452 </Component>
453 <Component Id="CIconsFolderDownload64" Guid="*">
454 <File Id="FIconsFolderDownload64" KeyPath="yes"
455 Source="/usr/share/icons/Adwaita/64x64/places/folder-download-symbolic.symbolic.png"/>
456 </Component>
457 <Component Id="CIconsFolderMusic64" Guid="*">
458 <File Id="FIconsFolderMusic64" KeyPath="yes"
459 Source="/usr/share/icons/Adwaita/64x64/places/folder-music-symbolic.symbolic.png"/>
460 </Component>
461 <Component Id="CIconsFolderPictures64" Guid="*">
462 <File Id="FIconsFolderPictures64" KeyPath="yes"
463 Source="/usr/share/icons/Adwaita/64x64/places/folder-pictures-symbolic.symbolic.png"/>
464 </Component>
465 <Component Id="CIconsFolderPublicshare64" Guid="*">
466 <File Id="FIconsFolderPublicshare64" KeyPath="yes"
467 Source="/usr/share/icons/Adwaita/64x64/places/folder-publicshare-symbolic.symbolic.png"/>
468 </Component>
469 <Component Id="CIconsFolderRemote64" Guid="*">
470 <File Id="FIconsFolderRemote64" KeyPath="yes"
471 Source="/usr/share/icons/Adwaita/64x64/places/folder-remote-symbolic.symbolic.png"/>
472 </Component>
473 <Component Id="CIconsFolderSavedSearch64" Guid="*">
474 <File Id="FIconsFolderSavedSearch64" KeyPath="yes"
475 Source="/usr/share/icons/Adwaita/64x64/places/folder-saved-search-symbolic.symbolic.png"/>
476 </Component>
477 <Component Id="CIconsFolder64" Guid="*">
478 <File Id="FIconsFolder64" KeyPath="yes"
479 Source="/usr/share/icons/Adwaita/64x64/places/folder-symbolic.symbolic.png"/>
480 </Component>
481 <Component Id="CIconsFolderTemplates64" Guid="*">
482 <File Id="FIconsFolderTemplates64" KeyPath="yes"
483 Source="/usr/share/icons/Adwaita/64x64/places/folder-templates-symbolic.symbolic.png"/>
484 </Component>
485 <Component Id="CIconsFolderVideos64" Guid="*">
486 <File Id="FIconsFolderVideos64" KeyPath="yes"
487 Source="/usr/share/icons/Adwaita/64x64/places/folder-videos-symbolic.symbolic.png"/>
488 </Component>
489 <Component Id="CIconsNetworkServer64" Guid="*">
490 <File Id="FIconsNetworkServer64" KeyPath="yes"
491 Source="/usr/share/icons/Adwaita/64x64/places/network-server-symbolic.symbolic.png"/>
492 </Component>
493 <Component Id="CIconsNetworkWorkgroup64" Guid="*">
494 <File Id="FIconsNetworkWorkgroup64" KeyPath="yes"
495 Source="/usr/share/icons/Adwaita/64x64/places/network-workgroup-symbolic.symbolic.png"/>
496 </Component>
497 <Component Id="CIconsStartHere64" Guid="*">
498 <File Id="FIconsStartHere64" KeyPath="yes"
499 Source="/usr/share/icons/Adwaita/64x64/places/start-here-symbolic.symbolic.png"/>
500 </Component>
501 <Component Id="CIconsUserBookmarks64" Guid="*">
502 <File Id="FIconsUserBookmarks64" KeyPath="yes"
503 Source="/usr/share/icons/Adwaita/64x64/places/user-bookmarks-symbolic.symbolic.png"/>
504 </Component>
505 <Component Id="CIconsUserDesktop64" Guid="*">
506 <File Id="FIconsUserDesktop64" KeyPath="yes"
507 Source="/usr/share/icons/Adwaita/64x64/places/user-desktop-symbolic.symbolic.png"/>
508 </Component>
509 <Component Id="CIconsUserHome64" Guid="*">
510 <File Id="FIconsUserHome64" KeyPath="yes"
511 Source="/usr/share/icons/Adwaita/64x64/places/user-home-symbolic.symbolic.png"/>
512 </Component>
513 <Component Id="CIconsUserTrash64" Guid="*">
514 <File Id="FIconsUserTrash64" KeyPath="yes"
515 Source="/usr/share/icons/Adwaita/64x64/places/user-trash-symbolic.symbolic.png"/>
516 </Component>
517 </Directory>
518 <Directory Id="DirIconsAdwaita64x64Devices" Name="devices">
519 <Component Id="CIconsDriveHarddisk64" Guid="*">
520 <File Id="FIconsDriveHardddisk64" KeyPath="yes"
521 Source="/usr/share/icons/Adwaita/64x64/devices/drive-harddisk-symbolic.symbolic.png"/>
522 </Component>
523 <Component Id="CIconsDriveOptical64" Guid="*">
524 <File Id="FIconsDriveOptical64" KeyPath="yes"
525 Source="/usr/share/icons/Adwaita/64x64/devices/drive-optical-symbolic.symbolic.png"/>
526 </Component>
527 <Component Id="CIconsDriveRemovableMedia64" Guid="*">
528 <File Id="FIconsDriveRemovableMedia64" KeyPath="yes"
529 Source="/usr/share/icons/Adwaita/64x64/devices/drive-removable-media-symbolic.symbolic.png"/>
530 </Component>
531 </Directory>
532 <Directory Id="DirIconsAdwaita64x64Status" Name="status">
533 <Component Id="CIconsCheckbox64" Guid="*">
534 <File Id="FIconsCheckbox64" KeyPath="yes"
535 Source="/usr/share/icons/Adwaita/64x64/status/checkbox-symbolic.symbolic.png"/>
536 </Component>
537 <Component Id="CIconsCheckboxChecked64" Guid="*">
538 <File Id="FIconsCheckBoxChecked64" KeyPath="yes"
539 Source="/usr/share/icons/Adwaita/64x64/status/checkbox-checked-symbolic.symbolic.png"/>
540 </Component>
541 </Directory>
542 <Directory Id="DirIconsAdwaita64x64Actions" Name="actions">
543 <Component Id="CIconsEditClear64" Guid="*">
544 <File Id="FIconsEditClear64" KeyPath="yes"
545 Source="/usr/share/icons/Adwaita/64x64/actions/edit-clear-symbolic.symbolic.png"/>
546 </Component>
547 </Directory>
548 </Directory>
549 <Directory Id="DirIconsAdwaita96x96" Name="96x96">
550 <Directory Id="DirIconsAdwaita96x96Places" Name="places">
551 <Component Id="CIconsFolderDocuments96" Guid="*">
552 <File Id="FIconsFolderDocuments96" KeyPath="yes"
553 Source="/usr/share/icons/Adwaita/96x96/places/folder-documents-symbolic.symbolic.png"/>
554 </Component>
555 <Component Id="CIconsFolderDownload96" Guid="*">
556 <File Id="FIconsFolderDownload96" KeyPath="yes"
557 Source="/usr/share/icons/Adwaita/96x96/places/folder-download-symbolic.symbolic.png"/>
558 </Component>
559 <Component Id="CIconsFolderMusic96" Guid="*">
560 <File Id="FIconsFolderMusic96" KeyPath="yes"
561 Source="/usr/share/icons/Adwaita/96x96/places/folder-music-symbolic.symbolic.png"/>
562 </Component>
563 <Component Id="CIconsFolderPictures96" Guid="*">
564 <File Id="FIconsFolderPictures96" KeyPath="yes"
565 Source="/usr/share/icons/Adwaita/96x96/places/folder-pictures-symbolic.symbolic.png"/>
566 </Component>
567 <Component Id="CIconsFolderPublicshare96" Guid="*">
568 <File Id="FIconsFolderPublicshare96" KeyPath="yes"
569 Source="/usr/share/icons/Adwaita/96x96/places/folder-publicshare-symbolic.symbolic.png"/>
570 </Component>
571 <Component Id="CIconsFolderRemote96" Guid="*">
572 <File Id="FIconsFolderRemote96" KeyPath="yes"
573 Source="/usr/share/icons/Adwaita/96x96/places/folder-remote-symbolic.symbolic.png"/>
574 </Component>
575 <Component Id="CIconsFolderSavedSearch96" Guid="*">
576 <File Id="FIconsFolderSavedSearch96" KeyPath="yes"
577 Source="/usr/share/icons/Adwaita/96x96/places/folder-saved-search-symbolic.symbolic.png"/>
578 </Component>
579 <Component Id="CIconsFolder96" Guid="*">
580 <File Id="FIconsFolder96" KeyPath="yes"
581 Source="/usr/share/icons/Adwaita/96x96/places/folder-symbolic.symbolic.png"/>
582 </Component>
583 <Component Id="CIconsFolderTemplates96" Guid="*">
584 <File Id="FIconsFolderTemplates96" KeyPath="yes"
585 Source="/usr/share/icons/Adwaita/96x96/places/folder-templates-symbolic.symbolic.png"/>
586 </Component>
587 <Component Id="CIconsFolderVideos96" Guid="*">
588 <File Id="FIconsFolderVideos96" KeyPath="yes"
589 Source="/usr/share/icons/Adwaita/96x96/places/folder-videos-symbolic.symbolic.png"/>
590 </Component>
591 <Component Id="CIconsNetworkServer96" Guid="*">
592 <File Id="FIconsNetworkServer96" KeyPath="yes"
593 Source="/usr/share/icons/Adwaita/96x96/places/network-server-symbolic.symbolic.png"/>
594 </Component>
595 <Component Id="CIconsNetworkWorkgroup96" Guid="*">
596 <File Id="FIconsNetworkWorkgroup96" KeyPath="yes"
597 Source="/usr/share/icons/Adwaita/96x96/places/network-workgroup-symbolic.symbolic.png"/>
598 </Component>
599 <Component Id="CIconsStartHere96" Guid="*">
600 <File Id="FIconsStartHere96" KeyPath="yes"
601 Source="/usr/share/icons/Adwaita/96x96/places/start-here-symbolic.symbolic.png"/>
602 </Component>
603 <Component Id="CIconsUserBookmarks96" Guid="*">
604 <File Id="FIconsUserBookmarks96" KeyPath="yes"
605 Source="/usr/share/icons/Adwaita/96x96/places/user-bookmarks-symbolic.symbolic.png"/>
606 </Component>
607 <Component Id="CIconsUserDesktop96" Guid="*">
608 <File Id="FIconsUserDesktop96" KeyPath="yes"
609 Source="/usr/share/icons/Adwaita/96x96/places/user-desktop-symbolic.symbolic.png"/>
610 </Component>
611 <Component Id="CIconsUserHome96" Guid="*">
612 <File Id="FIconsUserHome96" KeyPath="yes"
613 Source="/usr/share/icons/Adwaita/96x96/places/user-home-symbolic.symbolic.png"/>
614 </Component>
615 <Component Id="CIconsUserTrash96" Guid="*">
616 <File Id="FIconsUserTrash96" KeyPath="yes"
617 Source="/usr/share/icons/Adwaita/96x96/places/user-trash-symbolic.symbolic.png"/>
618 </Component>
619 </Directory>
620 <Directory Id="DirIconsAdwaita96x96Devices" Name="devices">
621 <Component Id="CIconsDriveHarddisk96" Guid="*">
622 <File Id="FIconsDriveHardddisk96" KeyPath="yes"
623 Source="/usr/share/icons/Adwaita/96x96/devices/drive-harddisk-symbolic.symbolic.png"/>
624 </Component>
625 <Component Id="CIconsDriveOptical96" Guid="*">
626 <File Id="FIconsDriveOptical96" KeyPath="yes"
627 Source="/usr/share/icons/Adwaita/96x96/devices/drive-optical-symbolic.symbolic.png"/>
628 </Component>
629 <Component Id="CIconsDriveRemovableMedia96" Guid="*">
630 <File Id="FIconsDriveRemovableMedia96" KeyPath="yes"
631 Source="/usr/share/icons/Adwaita/96x96/devices/drive-removable-media-symbolic.symbolic.png"/>
632 </Component>
633 </Directory>
634 <Directory Id="DirIconsAdwaita96x96Status" Name="status">
635 <Component Id="CIconsCheckbox96" Guid="*">
636 <File Id="FIconsCheckbox96" KeyPath="yes"
637 Source="/usr/share/icons/Adwaita/96x96/status/checkbox-symbolic.symbolic.png"/>
638 </Component>
639 <Component Id="CIconsCheckboxChecked96" Guid="*">
640 <File Id="FIconsCheckBoxChecked96" KeyPath="yes"
641 Source="/usr/share/icons/Adwaita/96x96/status/checkbox-checked-symbolic.symbolic.png"/>
642 </Component>
643 </Directory>
644 <Directory Id="DirIconsAdwaita96x96Actions" Name="actions">
645 <Component Id="CIconsEditClear96" Guid="*">
646 <File Id="FIconsEditClear96" KeyPath="yes"
647 Source="/usr/share/icons/Adwaita/96x96/actions/edit-clear-symbolic.symbolic.png"/>
648 </Component>
649 </Directory>
650 </Directory>
651 </Directory>
652 </Directory>
653 </Directory>
654 </DirectoryRef>
655 </Fragment>
656 <Fragment>
657 <ComponentGroup Id="CG.adwaita-icons-needed">
658 <ComponentRef Id="CIconsFolderDocuments16"/>
659 <ComponentRef Id="CIconsFolderDownload16"/>
660 <ComponentRef Id="CIconsFolderMusic16"/>
661 <ComponentRef Id="CIconsFolderPictures16"/>
662 <ComponentRef Id="CIconsFolderPublicshare16"/>
663 <ComponentRef Id="CIconsFolderRemote16"/>
664 <ComponentRef Id="CIconsFolderSavedSearch16"/>
665 <ComponentRef Id="CIconsFolder16"/>
666 <ComponentRef Id="CIconsFolderTemplates16"/>
667 <ComponentRef Id="CIconsFolderVideos16"/>
668 <ComponentRef Id="CIconsNetworkServer16"/>
669 <ComponentRef Id="CIconsNetworkWorkgroup16"/>
670 <ComponentRef Id="CIconsStartHere16"/>
671 <ComponentRef Id="CIconsUserBookmarks16"/>
672 <ComponentRef Id="CIconsUserDesktop16"/>
673 <ComponentRef Id="CIconsUserHome16"/>
674 <ComponentRef Id="CIconsUserTrash16"/>
675 <ComponentRef Id="CIconsDriveHarddisk16"/>
676 <ComponentRef Id="CIconsDriveOptical16"/>
677 <ComponentRef Id="CIconsDriveRemovableMedia16"/>
678 <ComponentRef Id="CIconsCheckbox16"/>
679 <ComponentRef Id="CIconsCheckboxChecked16"/>
680 <ComponentRef Id="CIconsEditClear16"/>
681 <ComponentRef Id="CIconsViewRestore16"/>
682 <ComponentRef Id="CIconsWindowClose16"/>
683 <ComponentRef Id="CIconsFolderDocuments24"/>
684 <ComponentRef Id="CIconsFolderDownload24"/>
685 <ComponentRef Id="CIconsFolderMusic24"/>
686 <ComponentRef Id="CIconsFolderPictures24"/>
687 <ComponentRef Id="CIconsFolderPublicshare24"/>
688 <ComponentRef Id="CIconsFolderRemote24"/>
689 <ComponentRef Id="CIconsFolderSavedSearch24"/>
690 <ComponentRef Id="CIconsFolder24"/>
691 <ComponentRef Id="CIconsFolderTemplates24"/>
692 <ComponentRef Id="CIconsFolderVideos24"/>
693 <ComponentRef Id="CIconsNetworkServer24"/>
694 <ComponentRef Id="CIconsNetworkWorkgroup24"/>
695 <ComponentRef Id="CIconsStartHere24"/>
696 <ComponentRef Id="CIconsUserBookmarks24"/>
697 <ComponentRef Id="CIconsUserDesktop24"/>
698 <ComponentRef Id="CIconsUserHome24"/>
699 <ComponentRef Id="CIconsUserTrash24"/>
700 <ComponentRef Id="CIconsDriveHarddisk24"/>
701 <ComponentRef Id="CIconsDriveOptical24"/>
702 <ComponentRef Id="CIconsDriveRemovableMedia24"/>
703 <ComponentRef Id="CIconsCheckbox24"/>
704 <ComponentRef Id="CIconsCheckboxChecked24"/>
705 <ComponentRef Id="CIconsEditClear24"/>
706 <ComponentRef Id="CIconsViewRestore24"/>
707 <ComponentRef Id="CIconsWindowClose24"/>
708 <ComponentRef Id="CIconsFolderDocuments32"/>
709 <ComponentRef Id="CIconsFolderDownload32"/>
710 <ComponentRef Id="CIconsFolderMusic32"/>
711 <ComponentRef Id="CIconsFolderPictures32"/>
712 <ComponentRef Id="CIconsFolderPublicshare32"/>
713 <ComponentRef Id="CIconsFolderRemote32"/>
714 <ComponentRef Id="CIconsFolderSavedSearch32"/>
715 <ComponentRef Id="CIconsFolder32"/>
716 <ComponentRef Id="CIconsFolderTemplates32"/>
717 <ComponentRef Id="CIconsFolderVideos32"/>
718 <ComponentRef Id="CIconsNetworkServer32"/>
719 <ComponentRef Id="CIconsNetworkWorkgroup32"/>
720 <ComponentRef Id="CIconsStartHere32"/>
721 <ComponentRef Id="CIconsUserBookmarks32"/>
722 <ComponentRef Id="CIconsUserDesktop32"/>
723 <ComponentRef Id="CIconsUserHome32"/>
724 <ComponentRef Id="CIconsUserTrash32"/>
725 <ComponentRef Id="CIconsDriveHarddisk32"/>
726 <ComponentRef Id="CIconsDriveOptical32"/>
727 <ComponentRef Id="CIconsDriveRemovableMedia32"/>
728 <ComponentRef Id="CIconsCheckbox32"/>
729 <ComponentRef Id="CIconsCheckboxChecked32"/>
730 <ComponentRef Id="CIconsEditClear32"/>
731 <ComponentRef Id="CIconsViewRestore32"/>
732 <ComponentRef Id="CIconsWindowClose32"/>
733 <ComponentRef Id="CIconsFolderDocuments48"/>
734 <ComponentRef Id="CIconsFolderDownload48"/>
735 <ComponentRef Id="CIconsFolderMusic48"/>
736 <ComponentRef Id="CIconsFolderPictures48"/>
737 <ComponentRef Id="CIconsFolderPublicshare48"/>
738 <ComponentRef Id="CIconsFolderRemote48"/>
739 <ComponentRef Id="CIconsFolderSavedSearch48"/>
740 <ComponentRef Id="CIconsFolder48"/>
741 <ComponentRef Id="CIconsFolderTemplates48"/>
742 <ComponentRef Id="CIconsFolderVideos48"/>
743 <ComponentRef Id="CIconsNetworkServer48"/>
744 <ComponentRef Id="CIconsNetworkWorkgroup48"/>
745 <ComponentRef Id="CIconsStartHere48"/>
746 <ComponentRef Id="CIconsUserBookmarks48"/>
747 <ComponentRef Id="CIconsUserDesktop48"/>
748 <ComponentRef Id="CIconsUserHome48"/>
749 <ComponentRef Id="CIconsUserTrash48"/>
750 <ComponentRef Id="CIconsDriveHarddisk48"/>
751 <ComponentRef Id="CIconsDriveOptical48"/>
752 <ComponentRef Id="CIconsDriveRemovableMedia48"/>
753 <ComponentRef Id="CIconsCheckbox48"/>
754 <ComponentRef Id="CIconsCheckboxChecked48"/>
755 <ComponentRef Id="CIconsEditClear48"/>
756 <ComponentRef Id="CIconsViewRestore48"/>
757 <ComponentRef Id="CIconsWindowClose48"/>
758 <ComponentRef Id="CIconsFolderDocuments64"/>
759 <ComponentRef Id="CIconsFolderDownload64"/>
760 <ComponentRef Id="CIconsFolderMusic64"/>
761 <ComponentRef Id="CIconsFolderPictures64"/>
762 <ComponentRef Id="CIconsFolderPublicshare64"/>
763 <ComponentRef Id="CIconsFolderRemote64"/>
764 <ComponentRef Id="CIconsFolderSavedSearch64"/>
765 <ComponentRef Id="CIconsFolder64"/>
766 <ComponentRef Id="CIconsFolderTemplates64"/>
767 <ComponentRef Id="CIconsFolderVideos64"/>
768 <ComponentRef Id="CIconsNetworkServer64"/>
769 <ComponentRef Id="CIconsNetworkWorkgroup64"/>
770 <ComponentRef Id="CIconsStartHere64"/>
771 <ComponentRef Id="CIconsUserBookmarks64"/>
772 <ComponentRef Id="CIconsUserDesktop64"/>
773 <ComponentRef Id="CIconsUserHome64"/>
774 <ComponentRef Id="CIconsUserTrash64"/>
775 <ComponentRef Id="CIconsDriveHarddisk64"/>
776 <ComponentRef Id="CIconsDriveOptical64"/>
777 <ComponentRef Id="CIconsDriveRemovableMedia64"/>
778 <ComponentRef Id="CIconsCheckbox64"/>
779 <ComponentRef Id="CIconsCheckboxChecked64"/>
780 <ComponentRef Id="CIconsEditClear64"/>
781 <ComponentRef Id="CIconsFolderDocuments96"/>
782 <ComponentRef Id="CIconsFolderDownload96"/>
783 <ComponentRef Id="CIconsFolderMusic96"/>
784 <ComponentRef Id="CIconsFolderPictures96"/>
785 <ComponentRef Id="CIconsFolderPublicshare96"/>
786 <ComponentRef Id="CIconsFolderRemote96"/>
787 <ComponentRef Id="CIconsFolderSavedSearch96"/>
788 <ComponentRef Id="CIconsFolder96"/>
789 <ComponentRef Id="CIconsFolderTemplates96"/>
790 <ComponentRef Id="CIconsFolderVideos96"/>
791 <ComponentRef Id="CIconsNetworkServer96"/>
792 <ComponentRef Id="CIconsNetworkWorkgroup96"/>
793 <ComponentRef Id="CIconsStartHere96"/>
794 <ComponentRef Id="CIconsUserBookmarks96"/>
795 <ComponentRef Id="CIconsUserDesktop96"/>
796 <ComponentRef Id="CIconsUserHome96"/>
797 <ComponentRef Id="CIconsUserTrash96"/>
798 <ComponentRef Id="CIconsDriveHarddisk96"/>
799 <ComponentRef Id="CIconsDriveOptical96"/>
800 <ComponentRef Id="CIconsDriveRemovableMedia96"/>
801 <ComponentRef Id="CIconsCheckbox96"/>
802 <ComponentRef Id="CIconsCheckboxChecked96"/>
803 <ComponentRef Id="CIconsEditClear96"/>
804 </ComponentGroup>
805 </Fragment>
806 </Include>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <application>
2 <id type="desktop">remote-viewer.desktop</id>
3 <metadata_license>CC0-1.0</metadata_license>
4 <project_license>GPL-2.0+</project_license>
5 <_name>Remote Viewer</_name>
6 <_summary>Remotely access virtual machines</_summary>
7 <description>
8 <_p>
9 Remote Viewer provides a graphical viewer for the guest OS
10 display. At this time it supports guest OS using the VNC
11 or SPICE protocols. Further protocols may be supported in
12 the future as user demand dictates. The viewer can connect
13 directly to both local and remotely hosted guest OS, optionally
14 using SSL/TLS encryption.
15 </_p>
16 </description>
17 <screenshots>
18 <screenshot type="default">https://virt-manager.org/appdata/en_US/virt-viewer/general.png</screenshot>
19 <screenshot>https://virt-manager.org/appdata/en_US/virt-viewer/connection.png</screenshot>
20 <screenshot>https://virt-manager.org/appdata/en_US/virt-viewer/usbredir.png</screenshot>
21 <screenshot>https://virt-manager.org/appdata/en_US/virt-viewer/shared_folder.png</screenshot>
22 </screenshots>
23 <provides>
24 <binary>remote-viewer</binary>
25 </provides>
26 <url type="homepage">https://virt-manager.org/</url>
27 <updatecontact>virt-tools-list_at_redhat.com</updatecontact>
28 </application>
+0
-49
data/virt-viewer-debug.nsis.in less more
0 #!Nsis Installer Command Script
1 # @configure_input@
2 # To build an installer from the script you would normally do:
3 #
4 # makensis virt-viewer-debug.nsis
5 #
6 # which will generate the output file 'virt-viewer-@VERSION@.exe' which is a Windows
7 # installer containing your program.
8
9 Name "VirtViewer Debug @VERSION@"
10 OutFile "virt-viewer-debug-@VERSION@.exe"
11 InstallDir "$LOCALAPPDATA\virt-viewer"
12 InstallDirRegKey HKCU "Software\virt-viewer" ""
13
14 RequestExecutionLevel user
15 SetCompressor bzip2
16 ShowInstDetails hide
17 ShowUninstDetails hide
18 XPStyle on
19
20 Page instfiles
21
22 Section "VirtViewer Debug"
23 SectionIn RO
24 WriteRegStr HKCU "Software\virt-viewer" "" $INSTDIR
25
26 SetOutPath "$INSTDIR"
27
28 SetOutPath "$INSTDIR\bin"
29 File "@prefix@/bin/gdb.exe"
30 File "@prefix@/bin/gdbserver.exe"
31 File "${DESTDIR}@prefix@/bin/debug-helper.exe"
32
33 # make virt-viewer debug the default spice-x client
34 WriteRegStr HKCU "Software\spice-space.org\spicex" "client" "$INSTDIR\bin\debug-helper.exe remote-viewer.exe --spice-controller"
35 SectionEnd
36
37 Section "Uninstall"
38 Delete /rebootok "$INSTDIR\bin\debug-helper.exe"
39 Delete /rebootok "$INSTDIR\bin\gdbserver.exe"
40 Delete /rebootok "$INSTDIR\bin\gdb.exe"
41 RMDir "$INSTDIR\bin"
42
43 RMDir "$INSTDIR"
44 SectionEnd
45
46 Section -post
47 WriteUninstaller "$INSTDIR\Uninstall-debug.exe"
48 SectionEnd
+0
-602
data/virt-viewer.nsis.in less more
0 #!Nsis Installer Command Script
1 # @configure_input@
2 # To build an installer from the script you would normally do:
3 #
4 # makensis virt-viewer.nsis
5 #
6 # which will generate the output file 'virt-viewer-@VERSION@.exe' which is a Windows
7 # installer containing your program.
8
9 Name "VirtViewer @VERSION@"
10 OutFile "virt-viewer-@VERSION@.exe"
11 InstallDir "$LOCALAPPDATA\virt-viewer"
12 InstallDirRegKey HKCU "Software\virt-viewer" ""
13
14 RequestExecutionLevel user
15 SetCompressor bzip2
16 ShowInstDetails hide
17 ShowUninstDetails hide
18 XPStyle on
19
20 Page directory
21 Page instfiles
22
23 !define REG_UNINSTALL "Software\Microsoft\Windows\CurrentVersion\Uninstall\virt-viewer"
24 !define REG_IEPOLICY "Software\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\{96190E9D-6FBB-64DB-9095-29F6FDE0B897}"
25
26 Function RegisterApplication
27 ;Register uninstaller into Add/Remove panel (for local user only)
28 WriteRegStr HKCU "${REG_UNINSTALL}" "DisplayName" "VirtViewer @VERSION@"
29 WriteRegStr HKCU "${REG_UNINSTALL}" "DisplayIcon" "$\"$INSTDIR\bin\virt-viewer.exe$\""
30 WriteRegStr HKCU "${REG_UNINSTALL}" "Publisher" "virt-manager.org"
31 WriteRegStr HKCU "${REG_UNINSTALL}" "DisplayVersion" "@VERSION@"
32 WriteRegDWord HKCU "${REG_UNINSTALL}" "EstimatedSize" 32000 ;KB
33 WriteRegStr HKCU "${REG_UNINSTALL}" "HelpLink" "http://www.virt-manager.org"
34 WriteRegStr HKCU "${REG_UNINSTALL}" "URLInfoAbout" "http://www.virt-manager.org"
35 WriteRegStr HKCU "${REG_UNINSTALL}" "InstallLocation" "$\"$INSTDIR$\""
36 WriteRegStr HKCU "${REG_UNINSTALL}" "InstallSource" "$\"$EXEDIR$\""
37 WriteRegDWord HKCU "${REG_UNINSTALL}" "NoModify" 1
38 WriteRegDWord HKCU "${REG_UNINSTALL}" "NoRepair" 1
39 WriteRegStr HKCU "${REG_UNINSTALL}" "UninstallString" "$\"$INSTDIR\Uninstall.exe$\""
40 WriteRegStr HKCU "${REG_UNINSTALL}" "Comments" "Uninstalls VirtViewer."
41
42 WriteRegStr HKCU "${REG_IEPOLICY}" "AppPath" "$INSTDIR\bin"
43 WriteRegStr HKCU "${REG_IEPOLICY}" "AppName" "remote-viewer.exe"
44 WriteRegDWord HKCU "${REG_IEPOLICY}" "Policy" 3
45 FunctionEnd
46
47 Function .onInit
48 retry:
49 System::Call 'kernel32::CreateMutexA(i 0, i 0, t "VirtViewerMutex") i .r1 ?e'
50 Pop $R0
51 StrCmp $R0 0 end
52 System::Call 'kernel32::CloseHandle(i r1) i.s'
53 MessageBox MB_ICONEXCLAMATION|MB_RETRYCANCEL "VirtViewer is already running, quit any instance and retry." IDRETRY retry IDCANCEL cancel
54 cancel:
55 Abort
56 end:
57 FunctionEnd
58
59 Section "VirtViewer"
60 SectionIn RO
61 WriteRegStr HKCU "Software\virt-viewer" "" $INSTDIR
62
63 SetOutPath "$INSTDIR"
64 File "deps.txt"
65
66 SetOutPath "$INSTDIR\bin"
67 !if ${HaveSpiceGtk} == True
68 # gstreamer1
69 File "@prefix@/bin/gst-inspect-1.0.exe"
70 File "@prefix@/bin/gst-launch-1.0.exe"
71 File "@prefix@/bin/gst-typefind-1.0.exe"
72 File "@prefix@/bin/libgstbase-1.0-0.dll"
73 File "@prefix@/bin/libgstcontroller-1.0-0.dll"
74 File "@prefix@/bin/libgstreamer-1.0-0.dll"
75 # gstreamer1-plugins-base
76 File "@prefix@/bin/libgstapp-1.0-0.dll"
77 File "@prefix@/bin/libgstaudio-1.0-0.dll"
78 File "@prefix@/bin/libgstfft-1.0-0.dll"
79 File "@prefix@/bin/libgstpbutils-1.0-0.dll"
80 File "@prefix@/bin/libgsttag-1.0-0.dll"
81
82 File "@prefix@/bin/libusb-1.0.dll"
83 File "@prefix@/bin/libusbredirhost-1.dll"
84 File "@prefix@/bin/libusbredirparser-1.dll"
85
86 File "@prefix@/bin/libcelt051-0.dll"
87 File "@prefix@/bin/libopus-0.dll"
88 File "@prefix@/bin/liborc-0.4-0.dll"
89 File "@prefix@/bin/liborc-test-0.4-0.dll"
90
91 File "@prefix@/bin/libspice-client-glib-2.0-8.dll"
92 File "@prefix@/bin/libspice-controller-0.dll"
93 File "@prefix@/bin/libspice-client-gtk-3.0-4.dll"
94 !endif
95
96 File "@prefix@/bin/libatk-1.0-0.dll"
97 File "@prefix@/bin/libbz2-1.dll"
98 File "@prefix@/bin/libcairo-2.dll"
99 File "@prefix@/bin/libcairo-gobject-2.dll"
100 File "@prefix@/bin/libepoxy-0.dll"
101 File "@prefix@/bin/libcrypto-10.dll"
102 File "@prefix@/bin/libexpat-1.dll"
103 File "@prefix@/bin/libffi-6.dll"
104 File "@prefix@/bin/libfontconfig-1.dll"
105 File "@prefix@/bin/libfreetype-6.dll"
106 File "@prefix@/bin/libgdk-3-0.dll"
107 File "@prefix@/bin/libgdk_pixbuf-2.0-0.dll"
108 File "@prefix@/bin/libgio-2.0-0.dll"
109 File "@prefix@/bin/libglib-2.0-0.dll"
110 File "@prefix@/bin/libgmodule-2.0-0.dll"
111 File "@prefix@/bin/libgobject-2.0-0.dll"
112 File "@prefix@/bin/libgthread-2.0-0.dll"
113 File "@prefix@/bin/libgtk-3-0.dll"
114 File "@prefix@/bin/iconv.dll"
115 File "@prefix@/bin/libintl-8.dll"
116 File "@prefix@/bin/libjpeg-62.dll"
117 File "@prefix@/bin/libpango-1.0-0.dll"
118 File "@prefix@/bin/libpangocairo-1.0-0.dll"
119 File "@prefix@/bin/libpangoft2-1.0-0.dll"
120 File "@prefix@/bin/libpangowin32-1.0-0.dll"
121 File "@prefix@/bin/libpixman-1-0.dll"
122 File "@prefix@/bin/libpng16-16.dll"
123 File "@prefix@/bin/libssl-10.dll"
124 File "@prefix@/bin/libtasn1-6.dll"
125 File "@prefix@/bin/libxml2-2.dll"
126 File "@prefix@/bin/libp11-kit-0.dll"
127 File "@prefix@/bin/libssp-0.dll"
128 File "@prefix@/bin/libwinpthread-1.dll"
129 !if ${HaveLibvirt} == True
130 File "@prefix@/bin/libssh2-1.dll"
131 File "@prefix@/bin/libcurl-4.dll"
132 File "@prefix@/bin/libportablexdr-0.dll"
133 File "@prefix@/bin/libidn-11.dll"
134 File "@prefix@/bin/libvirt-0.dll"
135 File "@prefix@/bin/libvirt-qemu-0.dll"
136 File "@prefix@/bin/libvirt-lxc-0.dll"
137 File "@prefix@/bin/virsh.exe"
138 File "@prefix@/bin/virt-pki-validate"
139 File "@prefix@/bin/virt-xml-validate"
140 !endif
141
142 #gtkvnc
143 !if ${HaveGtkVnc} == True
144 File "@prefix@/bin/libgpg-error-0.dll"
145 File "@prefix@/bin/libgcrypt-20.dll"
146 File "@prefix@/bin/libgvnc-1.0-0.dll"
147 File "@prefix@/bin/libgtk-vnc-2.0-0.dll"
148 !endif
149
150 File "@prefix@/bin/libgnutls-30.dll"
151 File "@prefix@/bin/libgmp-10.dll"
152 File "@prefix@/bin/libhogweed-4-1.dll"
153 File "@prefix@/bin/libnettle-6-1.dll"
154 File /nonfatal "@prefix@/bin/libgcc_s_sjlj-1.dll"
155 File /nonfatal "@prefix@/bin/libgcc_s_seh-1.dll"
156
157 #libgovirt (and its dependencies)
158 !if ${HaveOVirt} == True
159 File "@prefix@/bin/libgovirt-2.dll"
160 File "@prefix@/bin/librest-0.7-0.dll"
161 File "@prefix@/bin/librest-extras-0.7-0.dll"
162 File "@prefix@/bin/libsoup-2.4-1.dll"
163 File "@prefix@/bin/libsqlite3-0.dll"
164 File "@prefix@/bin/libsoup-gnome-2.4-1.dll"
165 !endif
166
167 File /oname=remote-viewer.com "${DESTDIR}@prefix@/bin/windows-cmdline-wrapper.exe"
168 File "${DESTDIR}@prefix@/bin/remote-viewer.exe"
169 !if ${HaveLibvirt} == True
170 File "${DESTDIR}@prefix@/bin/virt-viewer.exe"
171 !endif
172 File "@prefix@/bin/libreadline6.dll"
173 File "@prefix@/bin/zlib1.dll"
174
175 SetOutPath "$INSTDIR\etc"
176 File /r "@prefix@/etc/fonts"
177 File /r "@prefix@/etc/gtk-3.0"
178 File /r "@prefix@/etc/libvirt"
179
180 CreateDirectory "$INSTDIR\etc\gtk-3.0"
181
182 SetOutPath "$INSTDIR\lib"
183 File /r "@prefix@/lib/gdk-pixbuf-2.0"
184 File /r "@prefix@/lib/gtk-3.0"
185
186 !if ${HaveSpiceGtk} == True
187 SetOutPath "$INSTDIR\lib\gstreamer-1.0"
188 # gstreamer1
189 File "@prefix@/lib/gstreamer-1.0/libgstcoreelements.dll"
190 # gstreamer1-plugins-base
191 File "@prefix@/lib/gstreamer-1.0/libgstapp.dll"
192 File "@prefix@/lib/gstreamer-1.0/libgstaudioconvert.dll"
193 File "@prefix@/lib/gstreamer-1.0/libgstaudiorate.dll"
194 File "@prefix@/lib/gstreamer-1.0/libgstaudioresample.dll"
195 # gstreamer1-plugins-good
196 File "@prefix@/lib/gstreamer-1.0/libgstautodetect.dll"
197 File "@prefix@/lib/gstreamer-1.0/libgstdirectsoundsink.dll"
198 # gstreamer1-plugins-bad
199 File "@prefix@/lib/gstreamer-1.0/libgstdirectsoundsrc.dll"
200 !endif
201
202 !if ${HaveOVirt} == True
203 SetOutPath "$INSTDIR\lib\gio\modules"
204 File "@prefix@/lib/gio/modules/libgiognutls.dll"
205 !endif
206
207 SetOutPath "$INSTDIR\share"
208 !if ${HaveLibvirt} == True
209 File /r "@prefix@/share/libvirt"
210 !endif
211 File /r "@prefix@/share/glib-2.0"
212
213 # fixme for all languages
214 SetOutPath "$INSTDIR\share\locale\fr"
215 !if ${HaveLibvirt} == True
216 File "@prefix@/share/locale/fr/LC_MESSAGES/libvirt.*"
217 File "${DESTDIR}@prefix@/share/locale/fr/LC_MESSAGES/virt-viewer.*"
218 !endif
219
220 # fixme: are the UI files shared between virt-viewer and remote-viewer?
221 SetOutPath "$INSTDIR\share\virt-viewer\ui"
222 File "${DESTDIR}@prefix@/share/virt-viewer/ui/*.xml"
223
224 SetOutPath "$INSTDIR\share\icons\hicolor"
225 File "/usr/share/icons/hicolor/index.theme"
226
227 SetOutPath "$INSTDIR\share\icons\hicolor\16x16\apps"
228 File "${DESTDIR}@prefix@/share/icons/hicolor/16x16/apps/virt-viewer.png"
229 File "/usr/share/icons/Adwaita/16x16/apps/preferences-desktop-keyboard-shortcuts.png"
230 SetOutPath "$INSTDIR\share\icons\hicolor\24x24\apps"
231 File "${DESTDIR}@prefix@/share/icons/hicolor/24x24/apps/virt-viewer.png"
232 SetOutPath "$INSTDIR\share\icons\hicolor\24x24\devices"
233 File "${DESTDIR}@prefix@/share/icons/hicolor/24x24/devices/virt-viewer-usb.png"
234 SetOutPath "$INSTDIR\share\icons\hicolor\32x32\apps"
235 File "${DESTDIR}@prefix@/share/icons/hicolor/32x32/apps/virt-viewer.png"
236 SetOutPath "$INSTDIR\share\icons\hicolor\48x48\apps"
237 File "${DESTDIR}@prefix@/share/icons/hicolor/48x48/apps/virt-viewer.png"
238
239 CreateDirectory "$INSTDIR\share\icons\Adwaita"
240 SetOutPath "$INSTDIR\share\icons\Adwaita\16x16\places"
241 File "/usr/share/icons/Adwaita/16x16/places/folder-documents-symbolic.symbolic.png"
242 File "/usr/share/icons/Adwaita/16x16/places/folder-download-symbolic.symbolic.png"
243 File "/usr/share/icons/Adwaita/16x16/places/folder-music-symbolic.symbolic.png"
244 File "/usr/share/icons/Adwaita/16x16/places/folder-pictures-symbolic.symbolic.png"
245 File "/usr/share/icons/Adwaita/16x16/places/folder-publicshare-symbolic.symbolic.png"
246 File "/usr/share/icons/Adwaita/16x16/places/folder-remote-symbolic.symbolic.png"
247 File "/usr/share/icons/Adwaita/16x16/places/folder-saved-search-symbolic.symbolic.png"
248 File "/usr/share/icons/Adwaita/16x16/places/folder-symbolic.symbolic.png"
249 File "/usr/share/icons/Adwaita/16x16/places/folder-templates-symbolic.symbolic.png"
250 File "/usr/share/icons/Adwaita/16x16/places/folder-videos-symbolic.symbolic.png"
251 File "/usr/share/icons/Adwaita/16x16/places/network-server-symbolic.symbolic.png"
252 File "/usr/share/icons/Adwaita/16x16/places/network-workgroup-symbolic.symbolic.png"
253 File "/usr/share/icons/Adwaita/16x16/places/start-here-symbolic.symbolic.png"
254 File "/usr/share/icons/Adwaita/16x16/places/user-bookmarks-symbolic.symbolic.png"
255 File "/usr/share/icons/Adwaita/16x16/places/user-desktop-symbolic.symbolic.png"
256 File "/usr/share/icons/Adwaita/16x16/places/user-home-symbolic.symbolic.png"
257 File "/usr/share/icons/Adwaita/16x16/places/user-trash-symbolic.symbolic.png"
258
259 SetOutPath "$INSTDIR\share\icons\Adwaita\24x24\places"
260 File "/usr/share/icons/Adwaita/24x24/places/folder-documents-symbolic.symbolic.png"
261 File "/usr/share/icons/Adwaita/24x24/places/folder-download-symbolic.symbolic.png"
262 File "/usr/share/icons/Adwaita/24x24/places/folder-music-symbolic.symbolic.png"
263 File "/usr/share/icons/Adwaita/24x24/places/folder-pictures-symbolic.symbolic.png"
264 File "/usr/share/icons/Adwaita/24x24/places/folder-publicshare-symbolic.symbolic.png"
265 File "/usr/share/icons/Adwaita/24x24/places/folder-remote-symbolic.symbolic.png"
266 File "/usr/share/icons/Adwaita/24x24/places/folder-saved-search-symbolic.symbolic.png"
267 File "/usr/share/icons/Adwaita/24x24/places/folder-symbolic.symbolic.png"
268 File "/usr/share/icons/Adwaita/24x24/places/folder-templates-symbolic.symbolic.png"
269 File "/usr/share/icons/Adwaita/24x24/places/folder-videos-symbolic.symbolic.png"
270 File "/usr/share/icons/Adwaita/24x24/places/network-server-symbolic.symbolic.png"
271 File "/usr/share/icons/Adwaita/24x24/places/network-workgroup-symbolic.symbolic.png"
272 File "/usr/share/icons/Adwaita/24x24/places/start-here-symbolic.symbolic.png"
273 File "/usr/share/icons/Adwaita/24x24/places/user-bookmarks-symbolic.symbolic.png"
274 File "/usr/share/icons/Adwaita/24x24/places/user-desktop-symbolic.symbolic.png"
275 File "/usr/share/icons/Adwaita/24x24/places/user-home-symbolic.symbolic.png"
276 File "/usr/share/icons/Adwaita/24x24/places/user-trash-symbolic.symbolic.png"
277
278 SetOutPath "$INSTDIR\share\icons\Adwaita\32x32\places"
279 File "/usr/share/icons/Adwaita/32x32/places/folder-documents-symbolic.symbolic.png"
280 File "/usr/share/icons/Adwaita/32x32/places/folder-download-symbolic.symbolic.png"
281 File "/usr/share/icons/Adwaita/32x32/places/folder-music-symbolic.symbolic.png"
282 File "/usr/share/icons/Adwaita/32x32/places/folder-pictures-symbolic.symbolic.png"
283 File "/usr/share/icons/Adwaita/32x32/places/folder-publicshare-symbolic.symbolic.png"
284 File "/usr/share/icons/Adwaita/32x32/places/folder-remote-symbolic.symbolic.png"
285 File "/usr/share/icons/Adwaita/32x32/places/folder-saved-search-symbolic.symbolic.png"
286 File "/usr/share/icons/Adwaita/32x32/places/folder-symbolic.symbolic.png"
287 File "/usr/share/icons/Adwaita/32x32/places/folder-templates-symbolic.symbolic.png"
288 File "/usr/share/icons/Adwaita/32x32/places/folder-videos-symbolic.symbolic.png"
289 File "/usr/share/icons/Adwaita/32x32/places/network-server-symbolic.symbolic.png"
290 File "/usr/share/icons/Adwaita/32x32/places/network-workgroup-symbolic.symbolic.png"
291 File "/usr/share/icons/Adwaita/32x32/places/start-here-symbolic.symbolic.png"
292 File "/usr/share/icons/Adwaita/32x32/places/user-bookmarks-symbolic.symbolic.png"
293 File "/usr/share/icons/Adwaita/32x32/places/user-desktop-symbolic.symbolic.png"
294 File "/usr/share/icons/Adwaita/32x32/places/user-home-symbolic.symbolic.png"
295 File "/usr/share/icons/Adwaita/32x32/places/user-trash-symbolic.symbolic.png"
296
297 SetOutPath "$INSTDIR\share\icons\Adwaita\48x48\places"
298 File "/usr/share/icons/Adwaita/48x48/places/folder-documents-symbolic.symbolic.png"
299 File "/usr/share/icons/Adwaita/48x48/places/folder-download-symbolic.symbolic.png"
300 File "/usr/share/icons/Adwaita/48x48/places/folder-music-symbolic.symbolic.png"
301 File "/usr/share/icons/Adwaita/48x48/places/folder-pictures-symbolic.symbolic.png"
302 File "/usr/share/icons/Adwaita/48x48/places/folder-publicshare-symbolic.symbolic.png"
303 File "/usr/share/icons/Adwaita/48x48/places/folder-remote-symbolic.symbolic.png"
304 File "/usr/share/icons/Adwaita/48x48/places/folder-saved-search-symbolic.symbolic.png"
305 File "/usr/share/icons/Adwaita/48x48/places/folder-symbolic.symbolic.png"
306 File "/usr/share/icons/Adwaita/48x48/places/folder-templates-symbolic.symbolic.png"
307 File "/usr/share/icons/Adwaita/48x48/places/folder-videos-symbolic.symbolic.png"
308 File "/usr/share/icons/Adwaita/48x48/places/network-server-symbolic.symbolic.png"
309 File "/usr/share/icons/Adwaita/48x48/places/network-workgroup-symbolic.symbolic.png"
310 File "/usr/share/icons/Adwaita/48x48/places/start-here-symbolic.symbolic.png"
311 File "/usr/share/icons/Adwaita/48x48/places/user-bookmarks-symbolic.symbolic.png"
312 File "/usr/share/icons/Adwaita/48x48/places/user-desktop-symbolic.symbolic.png"
313 File "/usr/share/icons/Adwaita/48x48/places/user-home-symbolic.symbolic.png"
314 File "/usr/share/icons/Adwaita/48x48/places/user-trash-symbolic.symbolic.png"
315
316 SetOutPath "$INSTDIR\share\icons\Adwaita\64x64\places"
317 File "/usr/share/icons/Adwaita/64x64/places/folder-documents-symbolic.symbolic.png"
318 File "/usr/share/icons/Adwaita/64x64/places/folder-download-symbolic.symbolic.png"
319 File "/usr/share/icons/Adwaita/64x64/places/folder-music-symbolic.symbolic.png"
320 File "/usr/share/icons/Adwaita/64x64/places/folder-pictures-symbolic.symbolic.png"
321 File "/usr/share/icons/Adwaita/64x64/places/folder-publicshare-symbolic.symbolic.png"
322 File "/usr/share/icons/Adwaita/64x64/places/folder-remote-symbolic.symbolic.png"
323 File "/usr/share/icons/Adwaita/64x64/places/folder-saved-search-symbolic.symbolic.png"
324 File "/usr/share/icons/Adwaita/64x64/places/folder-symbolic.symbolic.png"
325 File "/usr/share/icons/Adwaita/64x64/places/folder-templates-symbolic.symbolic.png"
326 File "/usr/share/icons/Adwaita/64x64/places/folder-videos-symbolic.symbolic.png"
327 File "/usr/share/icons/Adwaita/64x64/places/network-server-symbolic.symbolic.png"
328 File "/usr/share/icons/Adwaita/64x64/places/network-workgroup-symbolic.symbolic.png"
329 File "/usr/share/icons/Adwaita/64x64/places/start-here-symbolic.symbolic.png"
330 File "/usr/share/icons/Adwaita/64x64/places/user-bookmarks-symbolic.symbolic.png"
331 File "/usr/share/icons/Adwaita/64x64/places/user-desktop-symbolic.symbolic.png"
332 File "/usr/share/icons/Adwaita/64x64/places/user-home-symbolic.symbolic.png"
333 File "/usr/share/icons/Adwaita/64x64/places/user-trash-symbolic.symbolic.png"
334
335 SetOutPath "$INSTDIR\share\icons\Adwaita\96x96\places"
336 File "/usr/share/icons/Adwaita/96x96/places/folder-documents-symbolic.symbolic.png"
337 File "/usr/share/icons/Adwaita/96x96/places/folder-download-symbolic.symbolic.png"
338 File "/usr/share/icons/Adwaita/96x96/places/folder-music-symbolic.symbolic.png"
339 File "/usr/share/icons/Adwaita/96x96/places/folder-pictures-symbolic.symbolic.png"
340 File "/usr/share/icons/Adwaita/96x96/places/folder-publicshare-symbolic.symbolic.png"
341 File "/usr/share/icons/Adwaita/96x96/places/folder-remote-symbolic.symbolic.png"
342 File "/usr/share/icons/Adwaita/96x96/places/folder-saved-search-symbolic.symbolic.png"
343 File "/usr/share/icons/Adwaita/96x96/places/folder-symbolic.symbolic.png"
344 File "/usr/share/icons/Adwaita/96x96/places/folder-templates-symbolic.symbolic.png"
345 File "/usr/share/icons/Adwaita/96x96/places/folder-videos-symbolic.symbolic.png"
346 File "/usr/share/icons/Adwaita/96x96/places/network-server-symbolic.symbolic.png"
347 File "/usr/share/icons/Adwaita/96x96/places/network-workgroup-symbolic.symbolic.png"
348 File "/usr/share/icons/Adwaita/96x96/places/start-here-symbolic.symbolic.png"
349 File "/usr/share/icons/Adwaita/96x96/places/user-bookmarks-symbolic.symbolic.png"
350 File "/usr/share/icons/Adwaita/96x96/places/user-desktop-symbolic.symbolic.png"
351 File "/usr/share/icons/Adwaita/96x96/places/user-home-symbolic.symbolic.png"
352 File "/usr/share/icons/Adwaita/96x96/places/user-trash-symbolic.symbolic.png"
353
354 SetOutPath "$INSTDIR\share\icons\Adwaita\16x16\devices"
355 File "/usr/share/icons/Adwaita/16x16/devices/drive-harddisk-symbolic.symbolic.png"
356 File "/usr/share/icons/Adwaita/16x16/devices/drive-optical-symbolic.symbolic.png"
357 File "/usr/share/icons/Adwaita/16x16/devices/drive-removable-media-symbolic.symbolic.png"
358
359 SetOutPath "$INSTDIR\share\icons\Adwaita\24x24\devices"
360 File "/usr/share/icons/Adwaita/24x24/devices/drive-harddisk-symbolic.symbolic.png"
361 File "/usr/share/icons/Adwaita/24x24/devices/drive-optical-symbolic.symbolic.png"
362 File "/usr/share/icons/Adwaita/24x24/devices/drive-removable-media-symbolic.symbolic.png"
363
364 SetOutPath "$INSTDIR\share\icons\Adwaita\32x32\devices"
365 File "/usr/share/icons/Adwaita/32x32/devices/drive-harddisk-symbolic.symbolic.png"
366 File "/usr/share/icons/Adwaita/32x32/devices/drive-optical-symbolic.symbolic.png"
367 File "/usr/share/icons/Adwaita/32x32/devices/drive-removable-media-symbolic.symbolic.png"
368
369 SetOutPath "$INSTDIR\share\icons\Adwaita\48x48\devices"
370 File "/usr/share/icons/Adwaita/48x48/devices/drive-harddisk-symbolic.symbolic.png"
371 File "/usr/share/icons/Adwaita/48x48/devices/drive-optical-symbolic.symbolic.png"
372 File "/usr/share/icons/Adwaita/48x48/devices/drive-removable-media-symbolic.symbolic.png"
373
374 SetOutPath "$INSTDIR\share\icons\Adwaita\64x64\devices"
375 File "/usr/share/icons/Adwaita/64x64/devices/drive-harddisk-symbolic.symbolic.png"
376 File "/usr/share/icons/Adwaita/64x64/devices/drive-optical-symbolic.symbolic.png"
377 File "/usr/share/icons/Adwaita/64x64/devices/drive-removable-media-symbolic.symbolic.png"
378
379 SetOutPath "$INSTDIR\share\icons\Adwaita\96x96\devices"
380 File "/usr/share/icons/Adwaita/96x96/devices/drive-harddisk-symbolic.symbolic.png"
381 File "/usr/share/icons/Adwaita/96x96/devices/drive-optical-symbolic.symbolic.png"
382 File "/usr/share/icons/Adwaita/96x96/devices/drive-removable-media-symbolic.symbolic.png"
383
384 SetOutPath "$INSTDIR\share\icons\Adwaita\16x16\status"
385 File "/usr/share/icons/Adwaita/16x16/status/checkbox-symbolic.symbolic.png"
386 File "/usr/share/icons/Adwaita/16x16/status/checkbox-checked-symbolic.symbolic.png"
387
388 SetOutPath "$INSTDIR\share\icons\Adwaita\24x24\status"
389 File "/usr/share/icons/Adwaita/24x24/status/checkbox-symbolic.symbolic.png"
390 File "/usr/share/icons/Adwaita/24x24/status/checkbox-checked-symbolic.symbolic.png"
391
392 SetOutPath "$INSTDIR\share\icons\Adwaita\32x32\status"
393 File "/usr/share/icons/Adwaita/32x32/status/checkbox-symbolic.symbolic.png"
394 File "/usr/share/icons/Adwaita/32x32/status/checkbox-checked-symbolic.symbolic.png"
395
396 SetOutPath "$INSTDIR\share\icons\Adwaita\48x48\status"
397 File "/usr/share/icons/Adwaita/48x48/status/checkbox-symbolic.symbolic.png"
398 File "/usr/share/icons/Adwaita/48x48/status/checkbox-checked-symbolic.symbolic.png"
399
400 SetOutPath "$INSTDIR\share\icons\Adwaita\64x64\status"
401 File "/usr/share/icons/Adwaita/64x64/status/checkbox-symbolic.symbolic.png"
402 File "/usr/share/icons/Adwaita/64x64/status/checkbox-checked-symbolic.symbolic.png"
403
404 SetOutPath "$INSTDIR\share\icons\Adwaita\96x96\status"
405 File "/usr/share/icons/Adwaita/96x96/status/checkbox-symbolic.symbolic.png"
406 File "/usr/share/icons/Adwaita/96x96/status/checkbox-checked-symbolic.symbolic.png"
407
408 SetOutPath "$INSTDIR\share\icons\Adwaita\16x16\actions"
409 File "/usr/share/icons/Adwaita/16x16/actions/edit-clear-symbolic.symbolic.png"
410 File "/usr/share/icons/Adwaita/16x16/actions/view-restore.png"
411 File "/usr/share/icons/Adwaita/16x16/actions/window-close.png"
412
413 SetOutPath "$INSTDIR\share\icons\Adwaita\24x24\actions"
414 File "/usr/share/icons/Adwaita/24x24/actions/edit-clear-symbolic.symbolic.png"
415 File "/usr/share/icons/Adwaita/24x24/actions/view-restore.png"
416 File "/usr/share/icons/Adwaita/24x24/actions/window-close.png"
417
418 SetOutPath "$INSTDIR\share\icons\Adwaita\32x32\actions"
419 File "/usr/share/icons/Adwaita/32x32/actions/edit-clear-symbolic.symbolic.png"
420 File "/usr/share/icons/Adwaita/32x32/actions/view-restore.png"
421 File "/usr/share/icons/Adwaita/32x32/actions/window-close.png"
422
423 SetOutPath "$INSTDIR\share\icons\Adwaita\48x48\actions"
424 File "/usr/share/icons/Adwaita/48x48/actions/edit-clear-symbolic.symbolic.png"
425 File "/usr/share/icons/Adwaita/48x48/actions/view-restore.png"
426 File "/usr/share/icons/Adwaita/48x48/actions/window-close.png"
427
428 SetOutPath "$INSTDIR\share\icons\Adwaita\64x64\actions"
429 File "/usr/share/icons/Adwaita/64x64/actions/edit-clear-symbolic.symbolic.png"
430
431 SetOutPath "$INSTDIR\share\icons\Adwaita\96x96\actions"
432 File "/usr/share/icons/Adwaita/96x96/actions/edit-clear-symbolic.symbolic.png"
433
434 ReadEnvStr $0 COMSPEC
435 SetOutPath "$INSTDIR"
436
437 # make virt-viewer the default spice-x client
438 WriteRegStr HKCU "Software\spice-space.org\spicex" "client" "$INSTDIR\bin\remote-viewer.exe --spice-controller"
439
440 SectionEnd
441
442 Section "Start Menu Shortcuts"
443 CreateDirectory "$SMPROGRAMS\VirtViewer"
444 CreateShortCut "$SMPROGRAMS\VirtViewer\Remote Viewer.lnk" "$INSTDIR\bin\remote-viewer.exe" "" "$INSTDIR\bin\remote-viewer.exe" 0
445 CreateShortCut "$SMPROGRAMS\VirtViewer\Uninstall.lnk" "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0
446 SectionEnd
447
448 Section "Uninstall"
449 Delete /rebootok "$SMPROGRAMS\VirtViewer\Uninstall.lnk"
450 Delete /rebootok "$SMPROGRAMS\VirtViewer\Remote Viewer.lnk"
451 RMDir "$SMPROGRAMS\VirtViewer"
452
453 DeleteRegKey HKCU "Software\spice-space.org\spicex\client"
454 DeleteRegKey /ifempty HKCU "Software\spice-space.org\spicex"
455 DeleteRegKey /ifempty HKCU "Software\spice-space.org"
456 DeleteRegKey HKCU "Software\virt-viewer"
457 DeleteRegKey HKCU "${REG_UNINSTALL}"
458 DeleteRegKey HKCU "${REG_IEPOLICY}"
459
460 RMDir /r "$INSTDIR\share"
461
462 RMDir /r "$INSTDIR\lib\gtk-3.0"
463
464 !if ${HaveSpiceGtk} == True
465 # gstreamer1
466 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstcoreelements.dll"
467 # gstreamer1-plugins-base
468 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstapp.dll"
469 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstaudioconvert.dll"
470 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstaudiorate.dll"
471 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstaudioresample.dll"
472 # gstreamer1-plugins-good
473 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstautodetect.dll"
474 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstdirectsoundsink.dll"
475 # gstreamer1-plugins-bad
476 Delete /rebootok "$INSTDIR\lib\gstreamer-1.0\libgstdirectsoundsrc.dll"
477 RMDir "$INSTDIR\lib\gstreamer-1.0"
478 !endif
479 RMDir /r "$INSTDIR\lib\gdk-pixbuf-2.0"
480
481 RMDir /r "$INSTDIR\etc\gtk-3.0"
482 RMDir /r "$INSTDIR\etc\fonts"
483 !if {HaveLibvirt} == True
484 RMDir /r "$INSTDIR\etc\libvirt"
485 !endif
486
487 Delete /rebootok "$INSTDIR\bin\remote-viewer.com"
488 Delete /rebootok "$INSTDIR\bin\remote-viewer.exe"
489 Delete /rebootok "$INSTDIR\bin\libpangoft2-1.0-0.dll"
490 Delete /rebootok "$INSTDIR\bin\libgdk_pixbuf-2.0-0.dll"
491 Delete /rebootok "$INSTDIR\bin\libgdk-3-0.dll"
492 !if ${HaveSpiceGtk} == True
493 # gstreamer1
494 Delete /rebootok "$INSTDIR\bin\gst-inspect-1.0.exe"
495 Delete /rebootok "$INSTDIR\bin\gst-launch-1.0.exe"
496 Delete /rebootok "$INSTDIR\bin\gst-typefind-1.0.exe"
497 Delete /rebootok "$INSTDIR\bin\libgstbase-1.0-0.dll"
498 Delete /rebootok "$INSTDIR\bin\libgstcontroller-1.0-0.dll"
499 Delete /rebootok "$INSTDIR\bin\libgstreamer-1.0-0.dll"
500 # gstreamer1-plugins-base
501 Delete /rebootok "$INSTDIR\bin\libgstapp-1.0-0.dll"
502 Delete /rebootok "$INSTDIR\bin\libgstaudio-1.0-0.dll"
503 Delete /rebootok "$INSTDIR\bin\libgstfft-1.0-0.dll"
504 Delete /rebootok "$INSTDIR\bin\libgstpbutils-1.0-0.dll"
505 Delete /rebootok "$INSTDIR\bin\libgsttag-1.0-0.dll"
506
507 Delete /rebootok "$INSTDIR\bin\libusb-1.0.dll"
508 Delete /rebootok "$INSTDIR\bin\libusbredirhost-1.dll"
509 Delete /rebootok "$INSTDIR\bin\libusbredirparser-1.dll"
510
511 Delete /rebootok "$INSTDIR\bin\libcelt051-0.dll"
512 Delete /rebootok "$INSTDIR\bin\libopus-0.dll"
513 Delete /rebootok "$INSTDIR\bin\liborc-test-0.4-0.dll"
514 Delete /rebootok "$INSTDIR\bin\liborc-0.4-0.dll"
515
516 Delete /rebootok "$INSTDIR\bin\libspice-client-glib-2.0-8.dll"
517 Delete /rebootok "$INSTDIR\bin\libspice-controller-0.dll"
518 Delete /rebootok "$INSTDIR\bin\libspice-client-gtk-3.0-4.dll"
519 !endif
520 Delete /rebootok "$INSTDIR\bin\zlib1.dll"
521 Delete /rebootok "$INSTDIR\bin\libreadline6.dll"
522 Delete /rebootok "$INSTDIR\bin\libffi-6.dll"
523 Delete /rebootok "$INSTDIR\bin\libp11-kit-0.dll"
524 Delete /rebootok "$INSTDIR\bin\libxml2-2.dll"
525 Delete /rebootok "$INSTDIR\bin\libtasn1-6.dll"
526 Delete /rebootok "$INSTDIR\bin\libssl-10.dll"
527 Delete /rebootok "$INSTDIR\bin\libpng16-16.dll"
528 Delete /rebootok "$INSTDIR\bin\libpixman-1-0.dll"
529 Delete /rebootok "$INSTDIR\bin\libpangowin32-1.0-0.dll"
530 Delete /rebootok "$INSTDIR\bin\libpangocairo-1.0-0.dll"
531 Delete /rebootok "$INSTDIR\bin\libpango-1.0-0.dll"
532 Delete /rebootok "$INSTDIR\bin\libjpeg-62.dll"
533 Delete /rebootok "$INSTDIR\bin\libintl-8.dll"
534 !if ${HaveLibvirt} == True
535 Delete /rebootok "$INSTDIR\bin\libvirt-0.dll"
536 Delete /rebootok "$INSTDIR\bin\libwinpthread-1.dll"
537 Delete /rebootok "$INSTDIR\bin\libcurl-4.dll"
538 Delete /rebootok "$INSTDIR\bin\libidn-11.dll"
539 Delete /rebootok "$INSTDIR\bin\libssh2-1.dll"
540 Delete /rebootok "$INSTDIR\bin\libportablexdr-0.dll"
541 Delete /rebootok "$INSTDIR\bin\libvirt-qemu-0.dll"
542 Delete /rebootok "$INSTDIR\bin\libvirt-lxc-0.dll"
543 Delete /rebootok "$INSTDIR\bin\virsh.exe"
544 Delete /rebootok "$INSTDIR\bin\virt-pki-validate"
545 Delete /rebootok "$INSTDIR\bin\virt-xml-validate"
546 Delete /rebootok "$INSTDIR\bin\virt-viewer.exe"
547 !endif
548 Delete /rebootok "$INSTDIR\bin\libgmp-10.dll"
549 Delete /rebootok "$INSTDIR\bin\libhogweed-4-1.dll"
550 Delete /rebootok "$INSTDIR\bin\libnettle-6-1.dll"
551 Delete /rebootok "$INSTDIR\bin\libgcc_s_sjlj-1.dll"
552 Delete /rebootok "$INSTDIR\bin\libgcc_s_seh-1.dll"
553 !if ${HaveGtkVnc} == True
554 Delete /rebootok "$INSTDIR\bin\libgpg-error-0.dll"
555 Delete /rebootok "$INSTDIR\bin\libgcrypt-20.dll"
556 Delete /rebootok "$INSTDIR\bin\libgvnc-1.0-0.dll"
557 Delete /rebootok "$INSTDIR\bin\libgtk-vnc-2.0-0.dll"
558 !endif
559 Delete /rebootok "$INSTDIR\bin\libssp-0.dll"
560 Delete /rebootok "$INSTDIR\bin\iconv.dll"
561 Delete /rebootok "$INSTDIR\bin\libgtk-3-0.dll"
562 Delete /rebootok "$INSTDIR\bin\libgthread-2.0-0.dll"
563 Delete /rebootok "$INSTDIR\bin\libgobject-2.0-0.dll"
564 Delete /rebootok "$INSTDIR\bin\libgnutls-30.dll"
565 Delete /rebootok "$INSTDIR\bin\libgmodule-2.0-0.dll"
566 Delete /rebootok "$INSTDIR\bin\libglib-2.0-0.dll"
567 Delete /rebootok "$INSTDIR\bin\libgio-2.0-0.dll"
568 Delete /rebootok "$INSTDIR\bin\libfreetype-6.dll"
569 Delete /rebootok "$INSTDIR\bin\libfontconfig-1.dll"
570 Delete /rebootok "$INSTDIR\bin\libexpat-1.dll"
571 Delete /rebootok "$INSTDIR\bin\libcrypto-10.dll"
572 Delete /rebootok "$INSTDIR\bin\libcairo-2.dll"
573 Delete /rebootok "$INSTDIR\bin\libcairo-gobject-2.dll"
574 Delete /rebootok "$INSTDIR\bin\libepoxy-0.dll"
575 Delete /rebootok "$INSTDIR\bin\libbz2-1.dll"
576 Delete /rebootok "$INSTDIR\bin\libatk-1.0-0.dll"
577 !if ${HaveOVirt} == True
578 Delete /rebootok "$INSTDIR\bin\libgovirt-2.dll"
579 Delete /rebootok "$INSTDIR\bin\librest-0.7-0.dll"
580 Delete /rebootok "$INSTDIR\bin\librest-extras-0.7-0.dll"
581 Delete /rebootok "$INSTDIR\bin\libsoup-2.4-1.dll"
582 Delete /rebootok "$INSTDIR\bin\libsqlite3-0.dll"
583 Delete /rebootok "$INSTDIR\bin\libsoup-gnome-2.4-1.dll"
584 !endif
585
586 !if ${HaveOVirt} == True
587 Delete /rebootok "$INSTDIR\lib\gio\modules\libgiognutls.dll"
588 RMDir /r "$INSTDIR\lib\gio"
589 !endif
590
591 RMDir "$INSTDIR\bin"
592 RMDir "$INSTDIR\lib"
593
594 Delete /rebootok "$INSTDIR\deps.txt"
595 RMDir "$INSTDIR"
596 SectionEnd
597
598 Section -post
599 WriteUninstaller "$INSTDIR\Uninstall.exe"
600 Call RegisterApplication
601 SectionEnd
2121 <?if $(var.HaveGtkVnc) = "True"?>
2222 <?require gtk-vnc2.wxi?>
2323 <?endif?>
24 <?require adwaita-icons-needed.wxi?>
24 <?require adwaita-icon-theme.wxi?>
2525 <?if $(var.HaveLibvirt) = "True"?>
2626 <?require libvirt.wxi?>
27 <?require libvirt-glib.wxi?>
2728 <?endif?>
2829 <?if $(var.HaveOVirt) = "True"?>
2930 <?require libgovirt.wxi?>
9394 <File Id="FHwdataUSB" KeyPath="yes" Source="/usr/share/hwdata/usb.ids"/>
9495 </Component>
9596 </Directory>
96
97 <Directory Id="DirIcons" Name="icons">
98 <Directory Id="DirIconsHi" Name="hicolor">
99 <Directory Id="DirIconsHi16x16" Name="16x16">
100 <Directory Id="DirIconsHi16x16Apps" Name="apps">
101 <Component Id="CIconsHi16x16Apps" Guid="*">
102 <File Id="FIconskeyboardshortcuts" KeyPath="yes"
103 Source="/usr/share/icons/Adwaita/16x16/apps/preferences-desktop-keyboard-shortcuts.png"/>
104 </Component>
105 </Directory>
106 </Directory>
107 </Directory>
108 </Directory>
10997 </Directory>
11098 </DirectoryRef>
11199
128116 <?if $(var.HaveGtkVnc) = "True"?>
129117 <ComponentGroupRef Id="CG.gtk-vnc2"/>
130118 <?endif?>
131 <ComponentGroupRef Id="CG.adwaita-icons-needed"/>
119 <ComponentGroupRef Id="CG.adwaita-icon-theme"/>
132120 <?if $(var.HaveLibvirt) = "True"?>
133121 <ComponentGroupRef Id="CG.libvirt"/>
122 <ComponentGroupRef Id="CG.libvirt-glib"/>
134123 <?endif?>
135124 <?if $(var.HaveOVirt) = "True"?>
136125 <ComponentGroupRef Id="CG.libgovirt"/>
141130 <ComponentRef Id="CShortcut"/>
142131 <ComponentRef Id="CRegistryEntries"/>
143132 <ComponentRef Id="CProgIds"/>
144 <ComponentRef Id="CIconsHi16x16Apps"/>
145133 <ComponentRef Id="CHwdataUSB"/>
146134 </Feature>
147135
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
186185 GLIB2_CFLAGS = @GLIB2_CFLAGS@
187186 GLIB2_LIBS = @GLIB2_LIBS@
188187 GLIB2_REQUIRED = @GLIB2_REQUIRED@
188 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
189189 GLIB_MKENUMS = @GLIB_MKENUMS@
190190 GMOFILES = @GMOFILES@
191191 GMSGFMT = @GMSGFMT@
192192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
193193 GREP = @GREP@
194 GTK2_REQUIRED = @GTK2_REQUIRED@
195 GTK3_REQUIRED = @GTK3_REQUIRED@
196 GTK_API_VERSION = @GTK_API_VERSION@
197194 GTK_CFLAGS = @GTK_CFLAGS@
198195 GTK_LIBS = @GTK_LIBS@
199196 GTK_REQUIRED = @GTK_REQUIRED@
200 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
201 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
202 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
203197 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
204198 GTK_VNC_LIBS = @GTK_VNC_LIBS@
199 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
205200 ICOTOOL = @ICOTOOL@
206201 INSTALL = @INSTALL@
207202 INSTALL_DATA = @INSTALL_DATA@
224219 LIBS = @LIBS@
225220 LIBTOOL = @LIBTOOL@
226221 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
222 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
227223 LIBVIRT_LIBS = @LIBVIRT_LIBS@
228224 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
229225 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
186185 GLIB2_CFLAGS = @GLIB2_CFLAGS@
187186 GLIB2_LIBS = @GLIB2_LIBS@
188187 GLIB2_REQUIRED = @GLIB2_REQUIRED@
188 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
189189 GLIB_MKENUMS = @GLIB_MKENUMS@
190190 GMOFILES = @GMOFILES@
191191 GMSGFMT = @GMSGFMT@
192192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
193193 GREP = @GREP@
194 GTK2_REQUIRED = @GTK2_REQUIRED@
195 GTK3_REQUIRED = @GTK3_REQUIRED@
196 GTK_API_VERSION = @GTK_API_VERSION@
197194 GTK_CFLAGS = @GTK_CFLAGS@
198195 GTK_LIBS = @GTK_LIBS@
199196 GTK_REQUIRED = @GTK_REQUIRED@
200 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
201 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
202 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
203197 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
204198 GTK_VNC_LIBS = @GTK_VNC_LIBS@
199 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
205200 ICOTOOL = @ICOTOOL@
206201 INSTALL = @INSTALL@
207202 INSTALL_DATA = @INSTALL_DATA@
224219 LIBS = @LIBS@
225220 LIBTOOL = @LIBTOOL@
226221 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
222 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
227223 LIBVIRT_LIBS = @LIBVIRT_LIBS@
228224 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
229225 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
187186 GLIB2_CFLAGS = @GLIB2_CFLAGS@
188187 GLIB2_LIBS = @GLIB2_LIBS@
189188 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190190 GLIB_MKENUMS = @GLIB_MKENUMS@
191191 GMOFILES = @GMOFILES@
192192 GMSGFMT = @GMSGFMT@
193193 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194194 GREP = @GREP@
195 GTK2_REQUIRED = @GTK2_REQUIRED@
196 GTK3_REQUIRED = @GTK3_REQUIRED@
197 GTK_API_VERSION = @GTK_API_VERSION@
198195 GTK_CFLAGS = @GTK_CFLAGS@
199196 GTK_LIBS = @GTK_LIBS@
200197 GTK_REQUIRED = @GTK_REQUIRED@
201 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
202 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
203 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
204198 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
205199 GTK_VNC_LIBS = @GTK_VNC_LIBS@
200 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
206201 ICOTOOL = @ICOTOOL@
207202 INSTALL = @INSTALL@
208203 INSTALL_DATA = @INSTALL_DATA@
225220 LIBS = @LIBS@
226221 LIBTOOL = @LIBTOOL@
227222 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
223 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
228224 LIBVIRT_LIBS = @LIBVIRT_LIBS@
229225 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
230226 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
186185 GLIB2_CFLAGS = @GLIB2_CFLAGS@
187186 GLIB2_LIBS = @GLIB2_LIBS@
188187 GLIB2_REQUIRED = @GLIB2_REQUIRED@
188 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
189189 GLIB_MKENUMS = @GLIB_MKENUMS@
190190 GMOFILES = @GMOFILES@
191191 GMSGFMT = @GMSGFMT@
192192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
193193 GREP = @GREP@
194 GTK2_REQUIRED = @GTK2_REQUIRED@
195 GTK3_REQUIRED = @GTK3_REQUIRED@
196 GTK_API_VERSION = @GTK_API_VERSION@
197194 GTK_CFLAGS = @GTK_CFLAGS@
198195 GTK_LIBS = @GTK_LIBS@
199196 GTK_REQUIRED = @GTK_REQUIRED@
200 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
201 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
202 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
203197 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
204198 GTK_VNC_LIBS = @GTK_VNC_LIBS@
199 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
205200 ICOTOOL = @ICOTOOL@
206201 INSTALL = @INSTALL@
207202 INSTALL_DATA = @INSTALL_DATA@
224219 LIBS = @LIBS@
225220 LIBTOOL = @LIBTOOL@
226221 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
222 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
227223 LIBVIRT_LIBS = @LIBVIRT_LIBS@
228224 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
229225 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
186185 GLIB2_CFLAGS = @GLIB2_CFLAGS@
187186 GLIB2_LIBS = @GLIB2_LIBS@
188187 GLIB2_REQUIRED = @GLIB2_REQUIRED@
188 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
189189 GLIB_MKENUMS = @GLIB_MKENUMS@
190190 GMOFILES = @GMOFILES@
191191 GMSGFMT = @GMSGFMT@
192192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
193193 GREP = @GREP@
194 GTK2_REQUIRED = @GTK2_REQUIRED@
195 GTK3_REQUIRED = @GTK3_REQUIRED@
196 GTK_API_VERSION = @GTK_API_VERSION@
197194 GTK_CFLAGS = @GTK_CFLAGS@
198195 GTK_LIBS = @GTK_LIBS@
199196 GTK_REQUIRED = @GTK_REQUIRED@
200 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
201 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
202 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
203197 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
204198 GTK_VNC_LIBS = @GTK_VNC_LIBS@
199 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
205200 ICOTOOL = @ICOTOOL@
206201 INSTALL = @INSTALL@
207202 INSTALL_DATA = @INSTALL_DATA@
224219 LIBS = @LIBS@
225220 LIBTOOL = @LIBTOOL@
226221 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
222 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
227223 LIBVIRT_LIBS = @LIBVIRT_LIBS@
228224 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
229225 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
186185 GLIB2_CFLAGS = @GLIB2_CFLAGS@
187186 GLIB2_LIBS = @GLIB2_LIBS@
188187 GLIB2_REQUIRED = @GLIB2_REQUIRED@
188 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
189189 GLIB_MKENUMS = @GLIB_MKENUMS@
190190 GMOFILES = @GMOFILES@
191191 GMSGFMT = @GMSGFMT@
192192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
193193 GREP = @GREP@
194 GTK2_REQUIRED = @GTK2_REQUIRED@
195 GTK3_REQUIRED = @GTK3_REQUIRED@
196 GTK_API_VERSION = @GTK_API_VERSION@
197194 GTK_CFLAGS = @GTK_CFLAGS@
198195 GTK_LIBS = @GTK_LIBS@
199196 GTK_REQUIRED = @GTK_REQUIRED@
200 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
201 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
202 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
203197 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
204198 GTK_VNC_LIBS = @GTK_VNC_LIBS@
199 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
205200 ICOTOOL = @ICOTOOL@
206201 INSTALL = @INSTALL@
207202 INSTALL_DATA = @INSTALL_DATA@
224219 LIBS = @LIBS@
225220 LIBTOOL = @LIBTOOL@
226221 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
222 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
227223 LIBVIRT_LIBS = @LIBVIRT_LIBS@
228224 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
229225 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
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 \
96 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9796 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9897 $(ACLOCAL_M4)
9998 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
218217 GLIB2_CFLAGS = @GLIB2_CFLAGS@
219218 GLIB2_LIBS = @GLIB2_LIBS@
220219 GLIB2_REQUIRED = @GLIB2_REQUIRED@
220 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
221221 GLIB_MKENUMS = @GLIB_MKENUMS@
222222 GMOFILES = @GMOFILES@
223223 GMSGFMT = @GMSGFMT@
224224 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
225225 GREP = @GREP@
226 GTK2_REQUIRED = @GTK2_REQUIRED@
227 GTK3_REQUIRED = @GTK3_REQUIRED@
228 GTK_API_VERSION = @GTK_API_VERSION@
229226 GTK_CFLAGS = @GTK_CFLAGS@
230227 GTK_LIBS = @GTK_LIBS@
231228 GTK_REQUIRED = @GTK_REQUIRED@
232 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
233 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
234 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
235229 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
236230 GTK_VNC_LIBS = @GTK_VNC_LIBS@
231 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
237232 ICOTOOL = @ICOTOOL@
238233 INSTALL = @INSTALL@
239234 INSTALL_DATA = @INSTALL_DATA@
256251 LIBS = @LIBS@
257252 LIBTOOL = @LIBTOOL@
258253 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
254 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
259255 LIBVIRT_LIBS = @LIBVIRT_LIBS@
260256 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
261257 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
+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
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 \
95 $(top_srcdir)/configure.ac
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)/acinclude.m4 $(top_srcdir)/configure.ac
9695 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9796 $(ACLOCAL_M4)
9897 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
187186 GLIB2_CFLAGS = @GLIB2_CFLAGS@
188187 GLIB2_LIBS = @GLIB2_LIBS@
189188 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190190 GLIB_MKENUMS = @GLIB_MKENUMS@
191191 GMOFILES = @GMOFILES@
192192 GMSGFMT = @GMSGFMT@
193193 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194194 GREP = @GREP@
195 GTK2_REQUIRED = @GTK2_REQUIRED@
196 GTK3_REQUIRED = @GTK3_REQUIRED@
197 GTK_API_VERSION = @GTK_API_VERSION@
198195 GTK_CFLAGS = @GTK_CFLAGS@
199196 GTK_LIBS = @GTK_LIBS@
200197 GTK_REQUIRED = @GTK_REQUIRED@
201 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
202 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
203 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
204198 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
205199 GTK_VNC_LIBS = @GTK_VNC_LIBS@
200 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
206201 ICOTOOL = @ICOTOOL@
207202 INSTALL = @INSTALL@
208203 INSTALL_DATA = @INSTALL_DATA@
225220 LIBS = @LIBS@
226221 LIBTOOL = @LIBTOOL@
227222 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
223 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
228224 LIBVIRT_LIBS = @LIBVIRT_LIBS@
229225 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
230226 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
0 .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.31)
0 .\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32)
11 .\"
22 .\" Standard preamble:
33 .\" ========================================================================
4545 .ie \n(.g .ds Aq \(aq
4646 .el .ds Aq '
4747 .\"
48 .\" If the F register is turned on, we'll generate index entries on stderr for
48 .\" If the F register is >0, we'll generate index entries on stderr for
4949 .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
5050 .\" entries marked with X<> in POD. Of course, you'll have to process the
5151 .\" output yourself in some meaningful fashion.
5353 .\" Avoid warning from groff about undefined register 'F'.
5454 .de IX
5555 ..
56 .nr rF 0
57 .if \n(.g .if rF .nr rF 1
58 .if (\n(rF:(\n(.g==0)) \{
59 . if \nF \{
60 . de IX
61 . tm Index:\\$1\t\\n%\t"\\$2"
56 .if !\nF .nr F 0
57 .if \nF>0 \{\
58 . de IX
59 . tm Index:\\$1\t\\n%\t"\\$2"
6260 ..
63 . if !\nF==2 \{
64 . nr % 0
65 . nr F 2
66 . \}
61 . if !\nF==2 \{\
62 . nr % 0
63 . nr F 2
6764 . \}
6865 .\}
69 .rr rF
7066 .\"
7167 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
7268 .\" Fear. Run. Save yourself. No user-serviceable parts.
132128 .\" ========================================================================
133129 .\"
134130 .IX Title "REMOTE-VIEWER 1"
135 .TH REMOTE-VIEWER 1 "2015-12-17" "perl v5.22.1" "Virtualization Support"
131 .TH REMOTE-VIEWER 1 "2016-06-30" "perl v5.22.2" "Virtualization Support"
136132 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
137133 .\" way too many mistakes in technical documents.
138134 .if n .ad l
422418 .ie n .IP """jsessionid"" (string)" 4
423419 .el .IP "\f(CWjsessionid\fR (string)" 4
424420 .IX Item "jsessionid (string)"
425 Value to set the 'jsessionid' cookie to. Setting this authentication cookie to a valid value
426 will allow to interact with the oVirt \s-1REST API\s0 without being asked for credentials.
421 Value to set the 'jsessionid' cookie to. With oVirt 3.6, setting this
422 authentication cookie to a valid value will allow to interact with the oVirt
423 \&\s-1REST API\s0 without being asked for credentials.
424 .ie n .IP """sso\-token"" (string)" 4
425 .el .IP "\f(CWsso\-token\fR (string)" 4
426 .IX Item "sso-token (string)"
427 Value to set the 'Authorization' header to. With oVirt 4.0 or newer, setting
428 this authentication header to a valid value will allow to interact with the
429 oVirt \s-1REST API\s0 without being asked for credentials.
427430 .ie n .IP """ca"" (string)" 4
428431 .el .IP "\f(CWca\fR (string)" 4
429432 .IX Item "ca (string)"
494497 to the extent permitted by law.
495498 .SH "SEE ALSO"
496499 .IX Header "SEE ALSO"
497 \&\f(CW\*(C`virt\-viewer(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR
500 \&\f(CW\*(C`virt\-viewer(1)\*(C'\fR, \f(CW\*(C`spice\-gtk(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR
308308
309309 =item C<jsessionid> (string)
310310
311 Value to set the 'jsessionid' cookie to. Setting this authentication cookie to a valid value
312 will allow to interact with the oVirt REST API without being asked for credentials.
311 Value to set the 'jsessionid' cookie to. With oVirt 3.6, setting this
312 authentication cookie to a valid value will allow to interact with the oVirt
313 REST API without being asked for credentials.
314
315 =item C<sso-token> (string)
316
317 Value to set the 'Authorization' header to. With oVirt 4.0 or newer, setting
318 this authentication header to a valid value will allow to interact with the
319 oVirt REST API without being asked for credentials.
313320
314321 =item C<ca> (string)
315322
377384
378385 =head1 SEE ALSO
379386
380 C<virt-viewer(1)>, the project website C<http://virt-manager.org>
387 C<virt-viewer(1)>, C<spice-gtk(1)>, the project website C<http://virt-manager.org>
381388
382389 =cut
0 .\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.31)
0 .\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32)
11 .\"
22 .\" Standard preamble:
33 .\" ========================================================================
4545 .ie \n(.g .ds Aq \(aq
4646 .el .ds Aq '
4747 .\"
48 .\" If the F register is turned on, we'll generate index entries on stderr for
48 .\" If the F register is >0, we'll generate index entries on stderr for
4949 .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
5050 .\" entries marked with X<> in POD. Of course, you'll have to process the
5151 .\" output yourself in some meaningful fashion.
5353 .\" Avoid warning from groff about undefined register 'F'.
5454 .de IX
5555 ..
56 .nr rF 0
57 .if \n(.g .if rF .nr rF 1
58 .if (\n(rF:(\n(.g==0)) \{
59 . if \nF \{
60 . de IX
61 . tm Index:\\$1\t\\n%\t"\\$2"
62 ..
63 . if !\nF==2 \{
64 . nr % 0
65 . nr F 2
66 . \}
56 .if !\nF .nr F 0
57 .if \nF>0 \{\
58 . de IX
59 . tm Index:\\$1\t\\n%\t"\\$2"
60 ..
61 . if !\nF==2 \{\
62 . nr % 0
63 . nr F 2
6764 . \}
6865 .\}
69 .rr rF
7066 .\"
7167 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
7268 .\" Fear. Run. Save yourself. No user-serviceable parts.
132128 .\" ========================================================================
133129 .\"
134130 .IX Title "VIRT-VIEWER 1"
135 .TH VIRT-VIEWER 1 "2015-12-17" "perl v5.22.1" "Virtualization Support"
131 .TH VIRT-VIEWER 1 "2016-06-30" "perl v5.22.2" "Virtualization Support"
136132 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
137133 .\" way too many mistakes in technical documents.
138134 .if n .ad l
328324 to the extent permitted by law.
329325 .SH "SEE ALSO"
330326 .IX Header "SEE ALSO"
331 \&\f(CWvirsh(1)\fR, \f(CW\*(C`virt\-manager(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR
327 \&\f(CWvirsh(1)\fR, \f(CW\*(C`virt\-manager(1)\*(C'\fR, \f(CW\*(C`spice\-gtk(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR
199199
200200 =head1 SEE ALSO
201201
202 C<virsh(1)>, C<virt-manager(1)>, the project website C<http://virt-manager.org>
202 C<virsh(1)>, C<virt-manager(1)>, C<spice-gtk(1)>, the project website C<http://virt-manager.org>
203203
204204 =cut
1212 %define buildid %(expr %{rel0} \\* 256 + %{rel1})
1313
1414 Name: mingw-virt-viewer
15 Version: 3.1
15 Version: 4.0
1616 Release: %{relver}%{?extra_release}
1717 Summary: MinGW Windows virt-viewer console application
1818
2121 URL: http://virt-manager.org/
2222 Source0: ftp://virt-manager.org/downloads/virt-viewer/virt-viewer-%{version}.tar.gz
2323
24 BuildRequires: mingw32-adwaita-icon-theme
25 BuildRequires: mingw64-adwaita-icon-theme
2426 BuildRequires: mingw32-filesystem >= 23
2527 BuildRequires: mingw64-filesystem >= 23
26 BuildRequires: mingw32-glib2 >= 2.22.0
27 BuildRequires: mingw64-glib2 >= 2.22.0
28 BuildRequires: mingw32-glib2 >= 2.38
29 BuildRequires: mingw64-glib2 >= 2.38
2830 BuildRequires: mingw32-glib-networking
2931 BuildRequires: mingw64-glib-networking
3032 BuildRequires: mingw32-gstreamer1-plugins-bad-free
3133 BuildRequires: mingw64-gstreamer1-plugins-bad-free
3234 BuildRequires: mingw32-gstreamer1-plugins-good
3335 BuildRequires: mingw64-gstreamer1-plugins-good
34 BuildRequires: mingw32-gtk3 >= 3.0
35 BuildRequires: mingw64-gtk3 >= 3.0
36 BuildRequires: mingw32-gtk3 >= 3.10
37 BuildRequires: mingw64-gtk3 >= 3.10
3638 BuildRequires: mingw32-libgovirt
3739 BuildRequires: mingw64-libgovirt
3840 BuildRequires: mingw32-libusbx
3941 BuildRequires: mingw64-libusbx
4042 BuildRequires: mingw32-libvirt >= 0.10.0
4143 BuildRequires: mingw64-libvirt >= 0.10.0
44 BuildRequires: mingw32-libvirt-glib >= 0.1.8
45 BuildRequires: mingw64-libvirt-glib >= 0.1.8
4246 BuildRequires: mingw32-libxml2 >= 2.6.0
4347 BuildRequires: mingw64-libxml2 >= 2.6.0
4448 BuildRequires: mingw32-gtk-vnc2 >= 0.4.0
4953 BuildRequires: mingw64-rest
5054 BuildRequires: mingw32-spice-glib
5155 BuildRequires: mingw64-spice-glib
52 BuildRequires: mingw32-spice-gtk3 >= 0.30
53 BuildRequires: mingw64-spice-gtk3 >= 0.30
56 BuildRequires: mingw32-spice-gtk3 >= 0.31
57 BuildRequires: mingw64-spice-gtk3 >= 0.31
5458 BuildRequires: mingw32-usbredir
5559 BuildRequires: mingw64-usbredir
5660 BuildRequires: pkgconfig
5963 BuildRequires: icoutils
6064 BuildRequires: dos2unix
6165 BuildRequires: hicolor-icon-theme
62 BuildRequires: adwaita-icon-theme
6366 BuildRequires: hwdata
64 BuildRequires: msitools >= 0.94-2
67 BuildRequires: msitools >= 0.95-5
6568
6669 BuildArch: noarch
6770
111114 %mingw_make_install DESTDIR=$RPM_BUILD_ROOT
112115
113116 %if 0%{?mingw_build_win32} == 1
114 cp build_win32$MINGW_BUILDDIR_SUFFIX/data/virt-viewer-x86-3.1.msi $RPM_BUILD_ROOT/%{mingw32_datadir}/virt-viewer
117 mkdir $RPM_BUILD_ROOT/%{mingw32_datadir}/virt-viewer
118 cp build_win32$MINGW_BUILDDIR_SUFFIX/data/virt-viewer-x86-4.0.msi $RPM_BUILD_ROOT/%{mingw32_datadir}/virt-viewer
115119 %endif
116120
117121 %if 0%{?mingw_build_win64} == 1
118 cp build_win64$MINGW_BUILDDIR_SUFFIX/data/virt-viewer-x64-3.1.msi $RPM_BUILD_ROOT/%{mingw64_datadir}/virt-viewer
122 mkdir $RPM_BUILD_ROOT/%{mingw64_datadir}/virt-viewer
123 cp build_win64$MINGW_BUILDDIR_SUFFIX/data/virt-viewer-x64-4.0.msi $RPM_BUILD_ROOT/%{mingw64_datadir}/virt-viewer
119124 %endif
120125
121126 %find_lang virt-viewer
135140 %{mingw32_bindir}/debug-helper.exe
136141
137142 %dir %{mingw32_datadir}/virt-viewer/
138 %dir %{mingw32_datadir}/virt-viewer/ui/
139 %{mingw32_datadir}/virt-viewer/ui/virt-viewer.xml
140 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-about.xml
141 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-auth.xml
142 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-guest-details.xml
143 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-vm-connection.xml
144 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-preferences.xml
145 %{mingw32_datadir}/virt-viewer/ui/remote-viewer-connect.xml
146143 %{mingw32_datadir}/icons/hicolor/*/apps/*
147144 %{mingw32_datadir}/icons/hicolor/*/devices/*
148145
150147 %{mingw32_mandir}/man1/remote-viewer.1*
151148
152149 %files -n mingw32-virt-viewer-msi
153 %{mingw32_datadir}/virt-viewer/virt-viewer-x86-3.1.msi
150 %{mingw32_datadir}/virt-viewer/virt-viewer-x86-4.0.msi
154151
155152 %files -n mingw64-virt-viewer -f virt-viewer.lang
156153 %defattr(-,root,root)
160157 %{mingw64_bindir}/debug-helper.exe
161158
162159 %dir %{mingw64_datadir}/virt-viewer/
163 %dir %{mingw64_datadir}/virt-viewer/ui/
164 %{mingw64_datadir}/virt-viewer/ui/virt-viewer.xml
165 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-about.xml
166 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-auth.xml
167 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-guest-details.xml
168 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-vm-connection.xml
169 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-preferences.xml
170 %{mingw64_datadir}/virt-viewer/ui/remote-viewer-connect.xml
171160 %{mingw64_datadir}/icons/hicolor/*/apps/*
172161 %{mingw64_datadir}/icons/hicolor/*/devices/*
173162
175164 %{mingw64_mandir}/man1/remote-viewer.1*
176165
177166 %files -n mingw64-virt-viewer-msi
178 %{mingw64_datadir}/virt-viewer/virt-viewer-x64-3.1.msi
167 %{mingw64_datadir}/virt-viewer/virt-viewer-x64-4.0.msi
179168
180169 %changelog
2121 URL: http://virt-manager.org/
2222 Source0: ftp://virt-manager.org/downloads/virt-viewer/virt-viewer-%{version}.tar.gz
2323
24 BuildRequires: mingw32-adwaita-icon-theme
25 BuildRequires: mingw64-adwaita-icon-theme
2426 BuildRequires: mingw32-filesystem >= 23
2527 BuildRequires: mingw64-filesystem >= 23
2628 BuildRequires: mingw32-glib2 >= @GLIB2_REQUIRED@
3133 BuildRequires: mingw64-gstreamer1-plugins-bad-free
3234 BuildRequires: mingw32-gstreamer1-plugins-good
3335 BuildRequires: mingw64-gstreamer1-plugins-good
34 BuildRequires: mingw32-gtk3 >= @GTK3_REQUIRED@
35 BuildRequires: mingw64-gtk3 >= @GTK3_REQUIRED@
36 BuildRequires: mingw32-gtk3 >= @GTK_REQUIRED@
37 BuildRequires: mingw64-gtk3 >= @GTK_REQUIRED@
3638 BuildRequires: mingw32-libgovirt
3739 BuildRequires: mingw64-libgovirt
3840 BuildRequires: mingw32-libusbx
3941 BuildRequires: mingw64-libusbx
4042 BuildRequires: mingw32-libvirt >= @LIBVIRT_REQUIRED@
4143 BuildRequires: mingw64-libvirt >= @LIBVIRT_REQUIRED@
44 BuildRequires: mingw32-libvirt-glib >= @LIBVIRT_GLIB_REQUIRED@
45 BuildRequires: mingw64-libvirt-glib >= @LIBVIRT_GLIB_REQUIRED@
4246 BuildRequires: mingw32-libxml2 >= @LIBXML2_REQUIRED@
4347 BuildRequires: mingw64-libxml2 >= @LIBXML2_REQUIRED@
44 BuildRequires: mingw32-gtk-vnc2 >= @GTK_VNC2_REQUIRED@
45 BuildRequires: mingw64-gtk-vnc2 >= @GTK_VNC2_REQUIRED@
48 BuildRequires: mingw32-gtk-vnc2 >= @GTK_VNC_REQUIRED@
49 BuildRequires: mingw64-gtk-vnc2 >= @GTK_VNC_REQUIRED@
4650 BuildRequires: mingw32-readline
4751 BuildRequires: mingw64-readline
4852 BuildRequires: mingw32-rest
5963 BuildRequires: icoutils
6064 BuildRequires: dos2unix
6165 BuildRequires: hicolor-icon-theme
62 BuildRequires: adwaita-icon-theme
6366 BuildRequires: hwdata
64 BuildRequires: msitools >= 0.94-2
67 BuildRequires: msitools >= 0.95-5
6568
6669 BuildArch: noarch
6770
111114 %mingw_make_install DESTDIR=$RPM_BUILD_ROOT
112115
113116 %if 0%{?mingw_build_win32} == 1
117 mkdir $RPM_BUILD_ROOT/%{mingw32_datadir}/virt-viewer
114118 cp build_win32$MINGW_BUILDDIR_SUFFIX/data/virt-viewer-x86-@VERSION@.msi $RPM_BUILD_ROOT/%{mingw32_datadir}/virt-viewer
115119 %endif
116120
117121 %if 0%{?mingw_build_win64} == 1
122 mkdir $RPM_BUILD_ROOT/%{mingw64_datadir}/virt-viewer
118123 cp build_win64$MINGW_BUILDDIR_SUFFIX/data/virt-viewer-x64-@VERSION@.msi $RPM_BUILD_ROOT/%{mingw64_datadir}/virt-viewer
119124 %endif
120125
135140 %{mingw32_bindir}/debug-helper.exe
136141
137142 %dir %{mingw32_datadir}/virt-viewer/
138 %dir %{mingw32_datadir}/virt-viewer/ui/
139 %{mingw32_datadir}/virt-viewer/ui/virt-viewer.xml
140 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-about.xml
141 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-auth.xml
142 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-guest-details.xml
143 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-vm-connection.xml
144 %{mingw32_datadir}/virt-viewer/ui/virt-viewer-preferences.xml
145 %{mingw32_datadir}/virt-viewer/ui/remote-viewer-connect.xml
146143 %{mingw32_datadir}/icons/hicolor/*/apps/*
147144 %{mingw32_datadir}/icons/hicolor/*/devices/*
148145
160157 %{mingw64_bindir}/debug-helper.exe
161158
162159 %dir %{mingw64_datadir}/virt-viewer/
163 %dir %{mingw64_datadir}/virt-viewer/ui/
164 %{mingw64_datadir}/virt-viewer/ui/virt-viewer.xml
165 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-about.xml
166 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-auth.xml
167 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-guest-details.xml
168 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-vm-connection.xml
169 %{mingw64_datadir}/virt-viewer/ui/virt-viewer-preferences.xml
170 %{mingw64_datadir}/virt-viewer/ui/remote-viewer-connect.xml
171160 %{mingw64_datadir}/icons/hicolor/*/apps/*
172161 %{mingw64_datadir}/icons/hicolor/*/devices/*
173162
0 data/remote-viewer.appdata.xml.in
01 data/remote-viewer.desktop.in
12 data/virt-viewer-mime.xml.in
2 src/gbinding.c
33 src/remote-viewer-main.c
44 src/remote-viewer.c
5 [type: gettext/glade] src/remote-viewer-connect.xml
6 [type: gettext/glade] src/virt-viewer-about.xml
5 [type: gettext/glade] src/resources/ui/remote-viewer-connect.ui
6 [type: gettext/glade] src/resources/ui/virt-viewer-about.ui
77 src/virt-viewer-app.c
88 src/virt-viewer-auth.c
9 [type: gettext/glade] src/virt-viewer-auth.xml
9 [type: gettext/glade] src/resources/ui/virt-viewer-auth.ui
1010 src/virt-viewer-display-vnc.c
11 src/virt-viewer-file-transfer-dialog.c
1112 src/virt-viewer-main.c
1213 src/virt-viewer-session-spice.c
1314 src/virt-viewer-session-vnc.c
1516 src/virt-viewer-window.c
1617 src/virt-viewer-file.c
1718 src/virt-viewer.c
18 [type: gettext/glade] src/virt-viewer.xml
19 [type: gettext/glade] src/virt-viewer-guest-details.xml
20 [type: gettext/glade] src/virt-viewer-vm-connection.xml
21 [type: gettext/glade] src/virt-viewer-preferences.xml
19 [type: gettext/glade] src/resources/ui/virt-viewer.ui
20 [type: gettext/glade] src/resources/ui/virt-viewer-guest-details.ui
21 [type: gettext/glade] src/resources/ui/virt-viewer-vm-connection.ui
22 [type: gettext/glade] src/resources/ui/virt-viewer-preferences.ui
+343
-316
po/af.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/am.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/ar.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+300
-274
po/as.po less more
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1313 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1414 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1515 "Language-Team: Assamese (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.7.3\n"
23
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
22 "X-Generator: Zanata 3.8.4\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
2526 msgid "Remote Viewer"
2627 msgstr "দূৰৱৰ্তী দৰ্শক"
28
29 #: ../data/remote-viewer.appdata.xml.in.h:2
30 msgid "Remotely access virtual machines"
31 msgstr ""
32
33 #: ../data/remote-viewer.appdata.xml.in.h:3
34 msgid ""
35 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
36 "time it supports guest OS using the VNC or SPICE protocols. Further "
37 "protocols may be supported in the future as user demand dictates. The viewer "
38 "can connect directly to both local and remotely hosted guest OS, optionally "
39 "using SSL/TLS encryption."
40 msgstr ""
2741
2842 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Access remote desktops"
3347 msgid "Virt-Viewer connection file"
3448 msgstr "Virt-Viewer সংযোগ ফাইল"
3549
36 #: ../src/gbinding.c:637
37 msgid "Source"
38 msgstr "উৎস"
39
40 #: ../src/gbinding.c:638
41 msgid "The source of the binding"
42 msgstr "বন্ধনৰ উৎস"
43
44 #: ../src/gbinding.c:652
45 msgid "Target"
46 msgstr "লক্ষ্য"
47
48 #: ../src/gbinding.c:653
49 msgid "The target of the binding"
50 msgstr "বন্ধনৰ লক্ষ্য"
51
52 #: ../src/gbinding.c:668
53 msgid "Source Property"
54 msgstr "উৎস সম্পত্তি"
55
56 #: ../src/gbinding.c:669
57 msgid "The property on the source to bind"
58 msgstr "বান্ধিব লগিয়া উৎসৰ সম্পত্তি"
59
60 #: ../src/gbinding.c:684
61 msgid "Target Property"
62 msgstr "লক্ষ্য সম্পত্তি"
63
64 #: ../src/gbinding.c:685
65 msgid "The property on the target to bind"
66 msgstr "বান্ধিব লগিয়া লক্ষ্যৰ সম্পত্তি"
67
68 #: ../src/gbinding.c:699
69 msgid "Flags"
70 msgstr "ফ্লেগসমূহ"
71
72 #: ../src/gbinding.c:700
73 msgid "The binding flags"
74 msgstr "বন্ধনী ফ্লেগসমূহ"
75
76 #: ../src/remote-viewer-main.c:50
77 #, c-format
78 msgid "remote-viewer version %s"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
82 msgid "Display version information"
83 msgstr "সংস্কৰণ তথ্য প্ৰদৰ্শন কৰক"
84
85 #: ../src/remote-viewer-main.c:105
50 #: ../src/remote-viewer.c:139
8651 msgid "Set window title"
8752 msgstr "উইন্ডো শীৰ্ষক সংহতি কৰক"
8853
89 #: ../src/remote-viewer-main.c:108
54 #: ../src/remote-viewer.c:142
9055 msgid "Open connection using Spice controller communication"
9156 msgstr "Spice নিয়ন্ত্ৰক সংযোগ ব্যৱহাৰ কৰি সংযোগ খোলক"
9257
93 #: ../src/remote-viewer-main.c:120
58 #: ../src/remote-viewer.c:150
9459 msgid "Remote viewer client"
9560 msgstr "দূৰৱৰ্তী দৰ্শক ক্লাএণ্ট"
9661
97 #: ../src/remote-viewer-main.c:138
98 #, c-format
99 msgid ""
100 "%s\n"
101 "Run '%s --help' to see a full list of available command line options\n"
102 msgstr ""
103 "%s⏎ উপলব্ধ কমান্ড শাৰী বিকল্পসমূহৰ এটা সম্পূৰ্ণ তালিকা চাবলে '%s --help' চাওক⏎\n"
104
105 #: ../src/remote-viewer-main.c:149
106 #, c-format
107 msgid "Error: extra arguments given while using Spice controller\n"
108 msgstr "ত্ৰুটি: Spice নিয়ন্ত্ৰক ব্যৱহাৰ কৰোতে অতিৰিক্ত ত্ৰকসমূহ দিয়া হৈছে\n"
109
110 #: ../src/remote-viewer-main.c:156
111 #, c-format
112 msgid "Error: can't handle multiple URIs\n"
113 msgstr "ত্ৰুটি: কেইবাটাও URls নিয়ন্ত্ৰণ কৰিব নোৱাৰি\n"
114
115 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
62 #: ../src/remote-viewer.c:175
63 #, c-format
64 msgid ""
65 "\n"
66 "Error: can't handle multiple URIs\n"
67 "\n"
68 msgstr ""
69
70 #: ../src/remote-viewer.c:187
71 #, c-format
72 msgid ""
73 "\n"
74 "Error: extra arguments given while using Spice controller\n"
75 "\n"
76 msgstr ""
77
78 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
79 #, c-format
80 msgid "Run '%s --help' to see a full list of available command line options\n"
81 msgstr ""
82
83 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11684 msgid "Failed to initiate connection"
11785 msgstr "সংযোগ আৰম্ভ কৰিবলে ব্যৰ্থ"
11886
119 #: ../src/remote-viewer.c:313
87 #: ../src/remote-viewer.c:297
12088 msgid "Display disabled by controller"
12189 msgstr "প্ৰদৰ্শন নিয়ন্ত্ৰক দ্বাৰা অসামৰ্থবান কৰা হৈছে"
12290
123 #: ../src/remote-viewer.c:609
91 #: ../src/remote-viewer.c:593
12492 #, c-format
12593 msgid "Controller connection failed: %s"
12694 msgstr "নিয়ন্ত্ৰক সংযোগ ব্যৰ্থ হল: %s"
12795
128 #: ../src/remote-viewer.c:755
129 msgid "_Change CD"
130 msgstr ""
131
132 #: ../src/remote-viewer.c:855
96 #: ../src/remote-viewer.c:848
13397 msgid "failed to parse ovirt uri"
13498 msgstr ""
13599
136 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
100 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
137101 msgid "Authentication was cancelled"
138102 msgstr ""
139103
140 #: ../src/remote-viewer.c:900
104 #: ../src/remote-viewer.c:893
141105 #, c-format
142106 msgid "oVirt VM %s is not running"
143107 msgstr ""
144108
145 #: ../src/remote-viewer.c:914
109 #: ../src/remote-viewer.c:907
146110 #, c-format
147111 msgid "oVirt VM %s has no display"
148112 msgstr ""
149113
150 #: ../src/remote-viewer.c:940
114 #: ../src/remote-viewer.c:933
151115 #, c-format
152116 msgid "oVirt VM %s has no host information"
153117 msgstr ""
154118
155 #: ../src/remote-viewer.c:951
119 #: ../src/remote-viewer.c:944
156120 #, c-format
157121 msgid "oVirt VM %s has unknown display type: %d"
158122 msgstr ""
159123
160 #: ../src/remote-viewer.c:1094
124 #: ../src/remote-viewer.c:1115
161125 msgid "Setting up Spice session..."
162126 msgstr "Spice অধিবেশন সংহতি কৰা হৈ আছে..."
163127
164 #: ../src/remote-viewer.c:1102
128 #: ../src/remote-viewer.c:1123
165129 msgid "No connection was chosen"
166130 msgstr ""
167131
168 #: ../src/remote-viewer.c:1120
132 #: ../src/remote-viewer.c:1141
169133 #, c-format
170134 msgid "Invalid file %s: "
171135 msgstr ""
172136
173 #: ../src/remote-viewer.c:1128
137 #: ../src/remote-viewer.c:1149
174138 msgid "Cannot determine the connection type from URI"
175139 msgstr "URI ৰ পৰা সংযোগ ধৰণ নিৰ্ধাৰণ কৰিব পৰা নগল"
176140
177 #: ../src/remote-viewer.c:1134
141 #: ../src/remote-viewer.c:1155
178142 msgid "Couldn't open oVirt session: "
179143 msgstr ""
180144
185149 #. * indent-tabs-mode: nil
186150 #. * End:
187151 #.
188 #: ../src/remote-viewer-connect.xml.h:1
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
189153 msgid "Connection details"
190154 msgstr "সংযোগৰ বিৱৰণসমূহ"
191155
192 #: ../src/remote-viewer-connect.xml.h:2
193 msgid "Connection Address"
194 msgstr ""
195
196 #: ../src/remote-viewer-connect.xml.h:3
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 msgid "Connection _Address"
158 msgstr ""
159
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
197161 msgid "For example, spice://foo.example.org:5900"
198162 msgstr "উদাহৰণস্বৰূপ, spice://foo.example.org:5900"
199163
200 #: ../src/remote-viewer-connect.xml.h:4
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
201165 msgid "Recent connections"
202166 msgstr ""
203167
204 #: ../src/remote-viewer-connect.xml.h:5
205 msgid "Cancel"
206 msgstr ""
207
208 #: ../src/remote-viewer-connect.xml.h:6
209 msgid "Connect"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:1
213 msgid "About Glade"
214 msgstr "Glade ৰ বিষয়ে"
215
216 #: ../src/virt-viewer-about.xml.h:2
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
169 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
170 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
171 msgid "_Cancel"
172 msgstr ""
173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
175 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 msgid "C_onnect"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:1
180 msgid "About Virt-Viewer"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:2
217184 msgid ""
218185 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219186 "Copyright (C) 2007-2014 Red Hat, Inc."
221188 "স্বত্বাধিকাৰ (C) ২০০৭-২০১২ Daniel P. Berrange\n"
222189 "স্বত্বাধিকাৰ (C) ২০০৭-২০১৪ Red Hat, Inc."
223190
224 #: ../src/virt-viewer-about.xml.h:4
191 #: ../src/resources/ui/virt-viewer-about.ui.h:4
225192 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
226193 msgstr ""
227194 "GTK-VNC, SPICE-GTK আৰু libvirt ৰ সৈতে নিৰ্মাণ কৰা এটা দূৰৱৰ্তী ডেস্কটপ ক্লাএন্ট"
228195
229 #: ../src/virt-viewer-about.xml.h:5
196 #: ../src/resources/ui/virt-viewer-about.ui.h:5
230197 msgid "virt-manager.org"
231198 msgstr "virt-manager.org"
232199
233 #: ../src/virt-viewer-about.xml.h:6
200 #: ../src/resources/ui/virt-viewer-about.ui.h:6
234201 msgid ""
235202 "This program is free software; you can redistribute it and/or modify\n"
236203 "it under the terms of the GNU General Public License as published by\n"
260227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA লে "
261228 "লিখক\n"
262229
263 #: ../src/virt-viewer-about.xml.h:20
230 #: ../src/resources/ui/virt-viewer-about.ui.h:20
264231 msgid "The Fedora Translation Team"
265232 msgstr "Fedora অনুবাদ দল"
266233
267 #: ../src/virt-viewer-app.c:526
234 #: ../src/virt-viewer-app.c:458
268235 msgid "Do you want to close the session?"
269236 msgstr "আপুনি অধিবেশন বন্ধ কৰিব বিচাৰে নে?"
270237
271 #: ../src/virt-viewer-app.c:528
238 #: ../src/virt-viewer-app.c:460
272239 msgid "Do not ask me again"
273240 msgstr "মোক আকৌ নুশুধিব"
274241
275 #: ../src/virt-viewer-app.c:1008
242 #: ../src/virt-viewer-app.c:948
276243 #, c-format
277244 msgid "Waiting for display %d..."
278245 msgstr "প্ৰদৰ্শন %d ৰ বাবে অপেক্ষা কৰা হৈ আছে..."
279246
280 #: ../src/virt-viewer-app.c:1117
247 #: ../src/virt-viewer-app.c:1055
281248 #, c-format
282249 msgid "Unsupported graphic type '%s'"
283250 msgstr ""
284251
285 #: ../src/virt-viewer-app.c:1200
252 #: ../src/virt-viewer-app.c:1138
286253 msgid "Connect to ssh failed."
287254 msgstr "ssh লে সংযোগ ব্যৰ্থ হল।"
288255
289 #: ../src/virt-viewer-app.c:1202
256 #: ../src/virt-viewer-app.c:1140
290257 msgid "Can't connect to channel, SSH only supported."
291258 msgstr "চেনেলে সংযোগ কৰিব নোৱাৰি, কেৱল SSH সমৰ্থিত।"
292259
293 #: ../src/virt-viewer-app.c:1214
260 #: ../src/virt-viewer-app.c:1152
294261 msgid "Connect to channel unsupported."
295262 msgstr "চেনেললে সংযোগ অসমৰ্থিত।"
296263
297 #: ../src/virt-viewer-app.c:1276
264 #: ../src/virt-viewer-app.c:1214
298265 msgid "Display can only be attached through libvirt with --attach"
299266 msgstr ""
300267
301 #: ../src/virt-viewer-app.c:1299
268 #: ../src/virt-viewer-app.c:1237
302269 msgid "Connecting to graphic server"
303270 msgstr "গ্ৰাফিক চাৰ্ভাৰলে সংযোগ কৰা হৈ আছে"
304271
305 #: ../src/virt-viewer-app.c:1398
272 #: ../src/virt-viewer-app.c:1336
306273 msgid "Guest domain has shutdown"
307274 msgstr "অতিথি ডমেইন বন্ধ হল"
308275
309 #: ../src/virt-viewer-app.c:1459
276 #: ../src/virt-viewer-app.c:1397
310277 msgid "Connected to graphic server"
311278 msgstr "গ্ৰাফিক চাৰ্ভাৰলে সংযোগিত"
312279
313 #: ../src/virt-viewer-app.c:1486
280 #: ../src/virt-viewer-app.c:1424
314281 #, c-format
315282 msgid "Unable to connect to the graphic server %s"
316283 msgstr "গ্ৰাফিক চাৰ্ভাৰ %s লে সংযোগ কৰিবলে অক্ষম"
317284
318 #: ../src/virt-viewer-app.c:1512
285 #: ../src/virt-viewer-app.c:1450
319286 #, c-format
320287 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
321288 msgstr ""
322289
323 #: ../src/virt-viewer-app.c:1525
290 #: ../src/virt-viewer-app.c:1463
324291 #, c-format
325292 msgid "Unable to authenticate with remote desktop server: %s"
326293 msgstr "দূৰৱৰ্তী ডেস্কটপ চাৰ্ভাৰৰ সৈতে প্ৰমাণিত কৰিবলে অক্ষম: %s"
327294
328 #: ../src/virt-viewer-app.c:1533
295 #: ../src/virt-viewer-app.c:1471
329296 #, c-format
330297 msgid "USB redirection error: %s"
331298 msgstr "USB পুনৰনিৰ্দেশ ত্ৰুটি: %s"
332299
333 #: ../src/virt-viewer-app.c:1786
300 #: ../src/virt-viewer-app.c:1805
334301 #, c-format
335302 msgid "Zoom level must be within %d-%d\n"
336303 msgstr "জুম স্তৰ %d-%d ৰ মাজত হব লাগিব\n"
337304
338 #: ../src/virt-viewer-app.c:2296
339 #, c-format
340 msgid "Display %d"
341 msgstr "%d প্ৰদৰ্শন কৰক"
342
343 #: ../src/virt-viewer-app.c:2552
305 #: ../src/virt-viewer-app.c:1858
306 #, c-format
307 msgid "%s\n"
308 msgstr ""
309
310 #: ../src/virt-viewer-app.c:1868
311 #, c-format
312 msgid "%s version %s"
313 msgstr ""
314
315 #: ../src/virt-viewer-app.c:2292
316 #, c-format
317 msgid "Display _%d"
318 msgstr ""
319
320 #: ../src/virt-viewer-app.c:2548
344321 #, c-format
345322 msgid "Invalid kiosk-quit argument: %s"
346323 msgstr "অবৈধ kiosk-quit তৰ্ক: %s"
324
325 #: ../src/virt-viewer-app.c:2559
326 msgid "Display version information"
327 msgstr "সংস্কৰণ তথ্য প্ৰদৰ্শন কৰক"
347328
348329 #: ../src/virt-viewer-app.c:2561
349330 msgid "Zoom level of window, in percentage"
378359 msgid "Display debugging information"
379360 msgstr "ডিবাগ তথ্য প্ৰদৰ্শন কৰক"
380361
381 #: ../src/virt-viewer-auth.c:88
362 #: ../src/virt-viewer-auth.c:89
382363 #, c-format
383364 msgid ""
384365 "Authentication is required for the %s connection to:\n"
387368 "\n"
388369 msgstr ""
389370
390 #: ../src/virt-viewer-auth.c:92
371 #: ../src/virt-viewer-auth.c:93
391372 #, c-format
392373 msgid "Authentication is required for the %s connection:\n"
393374 msgstr ""
399380 #. * indent-tabs-mode: nil
400381 #. * End:
401382 #.
402 #: ../src/virt-viewer-auth.xml.h:1
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
403384 msgid "Authentication required"
404385 msgstr "প্ৰমাণীকৰণৰ প্ৰয়োজন"
405386
406 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
387 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
388 msgid "_OK"
389 msgstr ""
390
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
392 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
407393 msgid "label"
408394 msgstr "লেবেল"
409395
410 #: ../src/virt-viewer-auth.xml.h:3
396 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
411397 msgid "Password:"
412398 msgstr "পাছৱাৰ্ড:"
413399
414 #: ../src/virt-viewer-auth.xml.h:4
400 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
415401 msgid "Username:"
416402 msgstr "ব্যৱহাৰকাৰীৰ নাম:"
417403
418 #: ../src/virt-viewer-auth.xml.h:5
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
419405 msgid "Show password"
420406 msgstr ""
421407
422 #: ../src/virt-viewer-display-vnc.c:133
408 #: ../src/virt-viewer-display-vnc.c:134
423409 msgid "VNC does not provide GUID"
424410 msgstr ""
425411
412 #: ../src/virt-viewer-file-transfer-dialog.c:152
413 msgid "Cancel"
414 msgstr ""
415
416 #: ../src/virt-viewer-file-transfer-dialog.c:163
417 msgid "File Transfers"
418 msgstr ""
419
426420 #: ../src/virt-viewer-main.c:38
427 #, c-format
428 msgid "%s version %s\n"
429 msgstr "%s সংস্কৰণ %s\n"
430
431 #: ../src/virt-viewer-main.c:62
432 msgid "Direct connection with no automatic tunnels"
433 msgstr "কোনো স্বচালিত টানেল নহোৱাকৈ প্ৰত্যক্ষ সংযোগ"
434
435 #: ../src/virt-viewer-main.c:64
436 msgid "Attach to the local display using libvirt"
437 msgstr "libvirt ব্যৱহাৰ কৰি স্থানীয় প্ৰদৰ্শনলে সংলঘ্ন কৰক"
438
439 #: ../src/virt-viewer-main.c:66
440 msgid "Connect to hypervisor"
441 msgstr "হাইপাৰভাইছৰলে সংযোগ কৰক"
442
443 #: ../src/virt-viewer-main.c:68
444 msgid "Wait for domain to start"
445 msgstr "ডমেইন আৰম্ভ হবলে অপেক্ষা কৰক"
446
447 #: ../src/virt-viewer-main.c:70
448 msgid "Reconnect to domain upon restart"
449 msgstr "পুনৰাম্ভ হওতে ডমেইনলে পুনৰসংযোগ কৰক"
450
451 #: ../src/virt-viewer-main.c:77
452421 msgid "Virt Viewer"
453422 msgstr "Virt দৰ্শক"
454423
455 #: ../src/virt-viewer-main.c:80
456 #, c-format
457 msgid "Run '%s --help' to see a full list of available command line options"
458 msgstr "উপলব্ধ কমান্ড শাৰী বিকল্পসমূহৰ এটা সম্পূৰ্ণ তালিকা চাবলে '%s --help' চলাওক"
459
460 #: ../src/virt-viewer-main.c:86
461 msgid "Virtual machine graphical console"
462 msgstr "ভাৰছুৱেল মেচিন গ্ৰাফিকেল কনচৌল"
463
464 #: ../src/virt-viewer-main.c:107
465 #, c-format
466 msgid ""
467 "\n"
468 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
469 "\n"
470 "%s\n"
471 "\n"
472 msgstr ""
473
474 #: ../src/virt-viewer-main.c:112
475 #, c-format
476 msgid ""
477 "\n"
478 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
479 "\n"
480 msgstr ""
481
482 #: ../src/virt-viewer-session-spice.c:694
424 #: ../src/virt-viewer-session-spice.c:705
483425 msgid "Invalid password"
484426 msgstr ""
485427
486428 #. Create the widgets
487 #: ../src/virt-viewer-session-spice.c:786
429 #: ../src/virt-viewer-session-spice.c:797
488430 msgid "Select USB devices for redirection"
489431 msgstr "পুনৰনিৰ্দেশৰ বাবে USB ডিভাইচসমূহ বাছক"
490432
491 #: ../src/virt-viewer-session-vnc.c:153
433 #: ../src/virt-viewer-session-spice.c:799
434 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
435 msgid "_Close"
436 msgstr ""
437
438 #: ../src/virt-viewer-session-vnc.c:156
492439 #, c-format
493440 msgid "Unsupported authentication type %d"
494441 msgstr "অসমৰ্থিত প্ৰমাণীকৰণ ধৰণ %d"
501448 msgid "No virtual machine was chosen"
502449 msgstr ""
503450
504 #: ../src/virt-viewer-window.c:537
451 #: ../src/virt-viewer-window.c:534
505452 msgid "Ctrl+Alt+_Del"
506453 msgstr "Ctrl+Alt+_Del"
507454
508 #: ../src/virt-viewer-window.c:538
455 #: ../src/virt-viewer-window.c:535
509456 msgid "Ctrl+Alt+_Backspace"
510457 msgstr "Ctrl+Alt+_Backspace"
511458
512 #: ../src/virt-viewer-window.c:540
459 #: ../src/virt-viewer-window.c:537
513460 msgid "Ctrl+Alt+F_1"
514461 msgstr "Ctrl+Alt+F_1"
515462
516 #: ../src/virt-viewer-window.c:541
463 #: ../src/virt-viewer-window.c:538
517464 msgid "Ctrl+Alt+F_2"
518465 msgstr "Ctrl+Alt+F_2"
519466
520 #: ../src/virt-viewer-window.c:542
467 #: ../src/virt-viewer-window.c:539
521468 msgid "Ctrl+Alt+F_3"
522469 msgstr "Ctrl+Alt+F_3"
523470
524 #: ../src/virt-viewer-window.c:543
471 #: ../src/virt-viewer-window.c:540
525472 msgid "Ctrl+Alt+F_4"
526473 msgstr "Ctrl+Alt+F_4"
527474
528 #: ../src/virt-viewer-window.c:544
475 #: ../src/virt-viewer-window.c:541
529476 msgid "Ctrl+Alt+F_5"
530477 msgstr "Ctrl+Alt+F_5"
531478
532 #: ../src/virt-viewer-window.c:545
479 #: ../src/virt-viewer-window.c:542
533480 msgid "Ctrl+Alt+F_6"
534481 msgstr "Ctrl+Alt+F_6"
535482
536 #: ../src/virt-viewer-window.c:546
483 #: ../src/virt-viewer-window.c:543
537484 msgid "Ctrl+Alt+F_7"
538485 msgstr "Ctrl+Alt+F_7"
539486
540 #: ../src/virt-viewer-window.c:547
487 #: ../src/virt-viewer-window.c:544
541488 msgid "Ctrl+Alt+F_8"
542489 msgstr "Ctrl+Alt+F_8"
543490
544 #: ../src/virt-viewer-window.c:548
491 #: ../src/virt-viewer-window.c:545
545492 msgid "Ctrl+Alt+F_9"
546493 msgstr "Ctrl+Alt+F_9"
547494
548 #: ../src/virt-viewer-window.c:549
495 #: ../src/virt-viewer-window.c:546
549496 msgid "Ctrl+Alt+F1_0"
550497 msgstr "Ctrl+Alt+F1_0"
551498
552 #: ../src/virt-viewer-window.c:550
499 #: ../src/virt-viewer-window.c:547
553500 msgid "Ctrl+Alt+F11"
554501 msgstr "Ctrl+Alt+F11"
555502
556 #: ../src/virt-viewer-window.c:551
503 #: ../src/virt-viewer-window.c:548
557504 msgid "Ctrl+Alt+F12"
558505 msgstr "Ctrl+Alt+F12"
559506
560 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
507 #: ../src/virt-viewer-window.c:919
508 msgid "_Save"
509 msgstr ""
510
511 #: ../src/virt-viewer-window.c:927
561512 msgid "Screenshot"
562513 msgstr "স্ক্ৰিনশ্বট"
563514
564 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
515 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
565516 msgid "Unknown"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1062
519 #: ../src/virt-viewer-window.c:1071
569520 msgid "Disconnect"
570521 msgstr "বিচ্ছিন্ন কৰক"
571522
572 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
573 #: ../src/virt-viewer.xml.h:3
523 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
574524 msgid "USB device selection"
575525 msgstr "USB ডিভাইছ নিৰ্বাচন"
576526
577 #: ../src/virt-viewer-window.c:1081
527 #: ../src/virt-viewer-window.c:1089
578528 msgid "Send key combination"
579529 msgstr "চাবি সংযুক্তি পঠাওক"
580530
581 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
531 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
582532 msgid "Leave fullscreen"
583533 msgstr "পূৰ্ণপৰ্দা ত্যাগ কৰক"
584534
585 #: ../src/virt-viewer-window.c:1173
535 #: ../src/virt-viewer-window.c:1175
586536 msgid "Ctrl+Alt"
587537 msgstr "Ctrl+Alt"
588538
589 #: ../src/virt-viewer-window.c:1176
539 #: ../src/virt-viewer-window.c:1178
590540 #, c-format
591541 msgid "(Press %s to release pointer)"
592542 msgstr "(পোইন্টাৰ এৰিবলে %s টিপক)"
595545 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596546 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597547 #.
598 #: ../src/virt-viewer-window.c:1187
548 #: ../src/virt-viewer-window.c:1189
599549 #, c-format
600550 msgid "%s%s%s - %s"
601551 msgstr "%s%s%s - %s"
602552
603553 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1191
554 #: ../src/virt-viewer-window.c:1193
605555 msgid " "
606556 msgstr " "
607557
608 #: ../src/virt-viewer-file.c:825
558 #: ../src/virt-viewer-file.c:843
609559 #, c-format
610560 msgid ""
611561 "At least %s version %s is required to setup this connection, see %s for "
612562 "details"
613563 msgstr ""
614564
615 #: ../src/virt-viewer-file.c:833
565 #: ../src/virt-viewer-file.c:851
616566 #, c-format
617567 msgid "At least %s version %s is required to setup this connection"
618568 msgstr "এই সংযোগ সংস্থাপন কৰিবলে অন্তত %s সংস্কৰণ %s ৰ প্ৰয়োজন"
619569
620 #: ../src/virt-viewer.c:163
570 #: ../src/virt-viewer.c:90
571 msgid "Direct connection with no automatic tunnels"
572 msgstr "কোনো স্বচালিত টানেল নহোৱাকৈ প্ৰত্যক্ষ সংযোগ"
573
574 #: ../src/virt-viewer.c:92
575 msgid "Attach to the local display using libvirt"
576 msgstr "libvirt ব্যৱহাৰ কৰি স্থানীয় প্ৰদৰ্শনলে সংলঘ্ন কৰক"
577
578 #: ../src/virt-viewer.c:94
579 msgid "Connect to hypervisor"
580 msgstr "হাইপাৰভাইছৰলে সংযোগ কৰক"
581
582 #: ../src/virt-viewer.c:96
583 msgid "Wait for domain to start"
584 msgstr "ডমেইন আৰম্ভ হবলে অপেক্ষা কৰক"
585
586 #: ../src/virt-viewer.c:98
587 msgid "Reconnect to domain upon restart"
588 msgstr "পুনৰাম্ভ হওতে ডমেইনলে পুনৰসংযোগ কৰক"
589
590 #: ../src/virt-viewer.c:105
591 msgid "Virtual machine graphical console"
592 msgstr "ভাৰছুৱেল মেচিন গ্ৰাফিকেল কনচৌল"
593
594 #: ../src/virt-viewer.c:124
595 #, c-format
596 msgid ""
597 "\n"
598 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
599 "\n"
600 msgstr ""
601
602 #: ../src/virt-viewer.c:136
603 #, c-format
604 msgid ""
605 "\n"
606 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
607 "\n"
608 msgstr ""
609
610 #: ../src/virt-viewer.c:250
621611 msgid "Waiting for guest domain to re-start"
622612 msgstr "অতিথি ডমেইন পুনৰাম্ভ হোৱাৰ বাবে অপেক্ষা কৰা হৈ আছে"
623613
624 #: ../src/virt-viewer.c:409
614 #: ../src/virt-viewer.c:496
625615 #, c-format
626616 msgid "Cannot determine the graphic type for the guest %s"
627617 msgstr "অতিথি %s ৰ বাবে গ্ৰাফিক ধৰণ নিৰ্ধাৰণ কৰিব নোৱাৰি"
628618
629 #: ../src/virt-viewer.c:448
619 #: ../src/virt-viewer.c:535
630620 #, c-format
631621 msgid "Cannot determine the host for the guest %s"
632622 msgstr "অতিথি %s ৰ বাবে হস্ট নিৰ্ধাৰণ কৰিব নোৱাৰি"
633623
634 #: ../src/virt-viewer.c:476
624 #: ../src/virt-viewer.c:563
635625 #, c-format
636626 msgid "Guest '%s' is not reachable"
637627 msgstr ""
638628
639 #: ../src/virt-viewer.c:697
629 #: ../src/virt-viewer.c:784
640630 #, c-format
641631 msgid "Virtual machine %s is not running"
642632 msgstr ""
643633
644 #: ../src/virt-viewer.c:720
634 #: ../src/virt-viewer.c:807
645635 msgid "Waiting for libvirt to start"
646636 msgstr "libvirt আৰম্ভ হবলে অপেক্ষা কৰা হৈছে"
647637
648 #: ../src/virt-viewer.c:724
638 #: ../src/virt-viewer.c:811
649639 msgid "Finding guest domain"
650640 msgstr "অতিথি ডমেইন বিচৰা"
651641
652 #: ../src/virt-viewer.c:728
642 #: ../src/virt-viewer.c:815
653643 msgid "Waiting for guest domain to be created"
654644 msgstr "অতিথি ডমেইন সৃষ্টি হোৱালে অপেক্ষা কৰা হৈ আছে"
655645
656 #: ../src/virt-viewer.c:750
646 #: ../src/virt-viewer.c:837
657647 msgid "Checking guest domain status"
658648 msgstr "অতিথি ডমেইন অৱস্থা নীৰিক্ষণ কৰা"
659649
660 #: ../src/virt-viewer.c:753
650 #: ../src/virt-viewer.c:840
661651 msgid "Cannot get guest state"
662652 msgstr ""
663653
664 #: ../src/virt-viewer.c:759
654 #: ../src/virt-viewer.c:846
665655 msgid "Waiting for guest domain to start"
666656 msgstr "অতিথি ডমেইন আৰম্ভ হোৱালে অপেক্ষা কৰা হৈ আছে"
667657
668 #: ../src/virt-viewer.c:863
658 #: ../src/virt-viewer.c:950
669659 #, c-format
670660 msgid "Unable to connect to libvirt with URI: %s."
671661 msgstr ""
672662
673 #: ../src/virt-viewer.c:864
663 #: ../src/virt-viewer.c:951
674664 msgid "[none]"
675665 msgstr "[none]"
676666
677 #: ../src/virt-viewer.c:871
667 #: ../src/virt-viewer.c:958
678668 msgid "Authentication failed."
679669 msgstr ""
680670
681 #: ../src/virt-viewer.c:931
671 #: ../src/virt-viewer.c:1018
682672 msgid "Failed to connect: "
683673 msgstr ""
684674
689679 #. * indent-tabs-mode: nil
690680 #. * End:
691681 #.
692 #: ../src/virt-viewer.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:1
693683 msgid "_File"
694684 msgstr "ফাইল (_F)"
695685
696 #: ../src/virt-viewer.xml.h:4
686 #: ../src/resources/ui/virt-viewer.ui.h:2
687 msgid "_Screenshot"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:3
691 msgid "_USB device selection"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:4
697695 msgid "Smartcard insertion"
698696 msgstr "স্মাৰ্টকাৰ্ড সোমোৱা"
699697
700 #: ../src/virt-viewer.xml.h:5
698 #: ../src/resources/ui/virt-viewer.ui.h:5
701699 msgid "Smartcard removal"
702700 msgstr "স্মাৰ্টকাৰ্ড আতৰোৱা"
703701
704 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
705 msgid "Preferences"
706 msgstr ""
707
708 #: ../src/virt-viewer.xml.h:7
702 #: ../src/resources/ui/virt-viewer.ui.h:6
703 msgid "_Preferences"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:7
707 msgid "_Quit"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:8
709711 msgid "_View"
710712 msgstr "দৰ্শন কৰক (_V)"
711713
712 #: ../src/virt-viewer.xml.h:8
713 msgid "Full screen"
714 msgstr "সম্পূৰ্ণ পৰ্দা"
715
716 #: ../src/virt-viewer.xml.h:9
714 #: ../src/resources/ui/virt-viewer.ui.h:9
715 msgid "_Full screen"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:10
717719 msgid "_Zoom"
718720 msgstr "জুম কৰক (_Z)"
719721
720 #: ../src/virt-viewer.xml.h:10
721 msgid "Displays"
722 msgstr "প্ৰদৰ্শনসমূহ"
723
724 #: ../src/virt-viewer.xml.h:11
722 #: ../src/resources/ui/virt-viewer.ui.h:11
723 msgid "Zoom _In"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:12
727 msgid "Zoom _Out"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:13
731 msgid "_Normal Size"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:14
735 msgid "_Displays"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:15
725739 msgid "Release cursor"
726740 msgstr "উন্মোচন কাৰ্চাৰ"
727741
728 #: ../src/virt-viewer.xml.h:12
742 #: ../src/resources/ui/virt-viewer.ui.h:16
729743 msgid "_Send key"
730744 msgstr "কি পঠাওক (_S)"
731745
732 #: ../src/virt-viewer.xml.h:13
746 #: ../src/resources/ui/virt-viewer.ui.h:17
733747 msgid "_Help"
734748 msgstr "সহায় (_H)"
735749
736 #: ../src/virt-viewer.xml.h:14
750 #: ../src/resources/ui/virt-viewer.ui.h:18
737751 msgid "_Guest Details"
738752 msgstr ""
739753
740 #: ../src/virt-viewer-guest-details.xml.h:1
754 #: ../src/resources/ui/virt-viewer.ui.h:19
755 msgid "_About"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer.ui.h:20
759 msgid "_Change CD"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
741763 msgid "Guest Details"
742764 msgstr ""
743765
744 #: ../src/virt-viewer-guest-details.xml.h:2
766 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
745767 msgid "Name:"
746768 msgstr ""
747769
748 #: ../src/virt-viewer-guest-details.xml.h:3
770 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
749771 msgid "GUID:"
750772 msgstr ""
751773
752 #: ../src/virt-viewer-vm-connection.xml.h:1
774 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
753775 msgid "Choose a virtual machine"
754776 msgstr ""
755777
756 #: ../src/virt-viewer-vm-connection.xml.h:2
778 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
757779 msgid "Name"
758780 msgstr ""
759781
760 #: ../src/virt-viewer-vm-connection.xml.h:3
782 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
761783 msgid "Available virtual machines"
762784 msgstr ""
763785
764 #: ../src/virt-viewer-preferences.xml.h:2
786 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
787 msgid "Preferences"
788 msgstr ""
789
790 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
765791 msgid "Folder sharing"
766792 msgstr ""
767793
768 #: ../src/virt-viewer-preferences.xml.h:3
794 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
769795 msgid "Share folder"
770796 msgstr ""
771797
772 #: ../src/virt-viewer-preferences.xml.h:4
798 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
773799 msgid "Read-only"
774800 msgstr ""
775801
776 #: ../src/virt-viewer-preferences.xml.h:5
802 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
777803 msgid "Spice"
778804 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/be.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+300
-278
po/bg.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Bulgarian (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
2425 msgstr "Remote Viewer"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
38 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
2741 msgid "Access remote desktops"
3145 msgid "Virt-Viewer connection file"
3246 msgstr "Virt-Viewer файл за връзка"
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr "Източник"
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr "Източникът на привързването"
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr "Цел"
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr "Целта на привързването"
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr "Свойства на източника"
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr "Свойствата на източника на привързване"
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr "Свойства на целта"
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr "Свойствата на целта на привързване"
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr "Флагове"
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr "Флаговете на привързването"
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "Показва информация за версията"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr "Задаване заглавие на прозореца"
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr "Отвори връзка чрез комуникационния контролер Spice"
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101 "%s\n"
102 "Стартирайте '%s --help' за да видите пълен списък на опциите в командния "
103 "ред\n"
104
105 #: ../src/remote-viewer-main.c:149
106 #, c-format
107 msgid "Error: extra arguments given while using Spice controller\n"
108 msgstr ""
109 "Грешка: подадени са излишни аргументи докато се ползва Spice контролер\n"
110
111 #: ../src/remote-viewer-main.c:156
112 #, c-format
113 msgid "Error: can't handle multiple URIs\n"
114 msgstr "Грешка: не мога да обработя няколко URI-а\n"
115
116 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11782 msgid "Failed to initiate connection"
11883 msgstr "Неуспешно инициализиране на връзка"
11984
120 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
12186 msgid "Display disabled by controller"
12287 msgstr "Дисплеят е забранен от контролера"
12388
124 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12590 #, c-format
12691 msgid "Controller connection failed: %s"
12792 msgstr "Връзката на контролера пропадна: %s"
12893
129 #: ../src/remote-viewer.c:755
130 msgid "_Change CD"
131 msgstr ""
132
133 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13495 msgid "failed to parse ovirt uri"
13596 msgstr ""
13697
137 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13899 msgid "Authentication was cancelled"
139100 msgstr ""
140101
141 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
142103 #, c-format
143104 msgid "oVirt VM %s is not running"
144105 msgstr ""
145106
146 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
147108 #, c-format
148109 msgid "oVirt VM %s has no display"
149110 msgstr ""
150111
151 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
152113 #, c-format
153114 msgid "oVirt VM %s has no host information"
154115 msgstr ""
155116
156 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
157118 #, c-format
158119 msgid "oVirt VM %s has unknown display type: %d"
159120 msgstr ""
160121
161 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
162123 msgid "Setting up Spice session..."
163124 msgstr "Създаване на Spice сесия..."
164125
165 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
166127 msgid "No connection was chosen"
167128 msgstr ""
168129
169 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
170131 #, c-format
171132 msgid "Invalid file %s: "
172133 msgstr ""
173134
174 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
175136 msgid "Cannot determine the connection type from URI"
176137 msgstr "От това URI не може да се определи типа на връзката"
177138
178 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
179140 msgid "Couldn't open oVirt session: "
180141 msgstr ""
181142
186147 #. * indent-tabs-mode: nil
187148 #. * End:
188149 #.
189 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
190151 msgid "Connection details"
191152 msgstr "Параметри на връзката"
192153
193 #: ../src/remote-viewer-connect.xml.h:2
194 msgid "Connection Address"
195 msgstr ""
196
197 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
198159 msgid "For example, spice://foo.example.org:5900"
199160 msgstr ""
200161
201 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
202163 msgid "Recent connections"
203164 msgstr ""
204165
205 #: ../src/remote-viewer-connect.xml.h:5
206 msgid "Cancel"
207 msgstr ""
208
209 #: ../src/remote-viewer-connect.xml.h:6
210 msgid "Connect"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:1
214 msgid "About Glade"
215 msgstr "Относно Glade"
216
217 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
218182 msgid ""
219183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
220184 "Copyright (C) 2007-2014 Red Hat, Inc."
221185 msgstr ""
222186
223 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
224188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
225189 msgstr "Отдалечен десктоп клиент, създаден с GTK-VNC, SPICE-GTK и libvirt"
226190
227 #: ../src/virt-viewer-about.xml.h:5
191 #: ../src/resources/ui/virt-viewer-about.ui.h:5
228192 msgid "virt-manager.org"
229193 msgstr "virt-manager.org"
230194
231 #: ../src/virt-viewer-about.xml.h:6
195 #: ../src/resources/ui/virt-viewer-about.ui.h:6
232196 msgid ""
233197 "This program is free software; you can redistribute it and/or modify\n"
234198 "it under the terms of the GNU General Public License as published by\n"
259223 "заедно с тази програма; ако не, пишете на Free Software\n"
260224 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
261225
262 #: ../src/virt-viewer-about.xml.h:20
226 #: ../src/resources/ui/virt-viewer-about.ui.h:20
263227 msgid "The Fedora Translation Team"
264228 msgstr ""
265229 "The Fedora Translation Team\n"
266230 "Валентин Ласков, 2012"
267231
268 #: ../src/virt-viewer-app.c:526
232 #: ../src/virt-viewer-app.c:458
269233 msgid "Do you want to close the session?"
270234 msgstr "Желаете ли да прекратите сесията?"
271235
272 #: ../src/virt-viewer-app.c:528
236 #: ../src/virt-viewer-app.c:460
273237 msgid "Do not ask me again"
274238 msgstr "Не ме питай отново"
275239
276 #: ../src/virt-viewer-app.c:1008
240 #: ../src/virt-viewer-app.c:948
277241 #, c-format
278242 msgid "Waiting for display %d..."
279243 msgstr "Изчаквам за да покажа %d..."
280244
281 #: ../src/virt-viewer-app.c:1117
245 #: ../src/virt-viewer-app.c:1055
282246 #, c-format
283247 msgid "Unsupported graphic type '%s'"
284248 msgstr ""
285249
286 #: ../src/virt-viewer-app.c:1200
250 #: ../src/virt-viewer-app.c:1138
287251 msgid "Connect to ssh failed."
288252 msgstr "Връзката към ssh пропадна."
289253
290 #: ../src/virt-viewer-app.c:1202
254 #: ../src/virt-viewer-app.c:1140
291255 msgid "Can't connect to channel, SSH only supported."
292256 msgstr "Не мога да се свържа към канала, поддържа се само SSH."
293257
294 #: ../src/virt-viewer-app.c:1214
258 #: ../src/virt-viewer-app.c:1152
295259 msgid "Connect to channel unsupported."
296260 msgstr "Свързване към канал не се поддържа."
297261
298 #: ../src/virt-viewer-app.c:1276
262 #: ../src/virt-viewer-app.c:1214
299263 msgid "Display can only be attached through libvirt with --attach"
300264 msgstr ""
301265
302 #: ../src/virt-viewer-app.c:1299
266 #: ../src/virt-viewer-app.c:1237
303267 msgid "Connecting to graphic server"
304268 msgstr "Свързване към графичен сървър"
305269
306 #: ../src/virt-viewer-app.c:1398
270 #: ../src/virt-viewer-app.c:1336
307271 msgid "Guest domain has shutdown"
308272 msgstr "Виртуализиращата среда на госта беше спряна"
309273
310 #: ../src/virt-viewer-app.c:1459
274 #: ../src/virt-viewer-app.c:1397
311275 msgid "Connected to graphic server"
312276 msgstr "Свързан към графичен сървър"
313277
314 #: ../src/virt-viewer-app.c:1486
278 #: ../src/virt-viewer-app.c:1424
315279 #, c-format
316280 msgid "Unable to connect to the graphic server %s"
317281 msgstr "Невъзможно е да се свържа с графичния сървър %s"
318282
319 #: ../src/virt-viewer-app.c:1512
283 #: ../src/virt-viewer-app.c:1450
320284 #, c-format
321285 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
322286 msgstr ""
323287
324 #: ../src/virt-viewer-app.c:1525
288 #: ../src/virt-viewer-app.c:1463
325289 #, c-format
326290 msgid "Unable to authenticate with remote desktop server: %s"
327291 msgstr "Невъзможно е удостоверяването пред отдалечения десктоп сървър: %s"
328292
329 #: ../src/virt-viewer-app.c:1533
293 #: ../src/virt-viewer-app.c:1471
330294 #, c-format
331295 msgid "USB redirection error: %s"
332296 msgstr "Грешка при USB пренасочването: %s"
333297
334 #: ../src/virt-viewer-app.c:1786
298 #: ../src/virt-viewer-app.c:1805
335299 #, c-format
336300 msgid "Zoom level must be within %d-%d\n"
337301 msgstr "Zoom level трябва да е в рамките %d-%d\n"
338302
339 #: ../src/virt-viewer-app.c:2296
340 #, c-format
341 msgid "Display %d"
342 msgstr "Дисплей %d"
343
344 #: ../src/virt-viewer-app.c:2552
303 #: ../src/virt-viewer-app.c:1858
304 #, c-format
305 msgid "%s\n"
306 msgstr ""
307
308 #: ../src/virt-viewer-app.c:1868
309 #, c-format
310 msgid "%s version %s"
311 msgstr ""
312
313 #: ../src/virt-viewer-app.c:2292
314 #, c-format
315 msgid "Display _%d"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:2548
345319 #, c-format
346320 msgid "Invalid kiosk-quit argument: %s"
347321 msgstr "Невалиден kiosk-quit аргумент: %s"
322
323 #: ../src/virt-viewer-app.c:2559
324 msgid "Display version information"
325 msgstr "Показва информация за версията"
348326
349327 #: ../src/virt-viewer-app.c:2561
350328 msgid "Zoom level of window, in percentage"
378356 msgid "Display debugging information"
379357 msgstr "Показва информация за отстраняване на грешки"
380358
381 #: ../src/virt-viewer-auth.c:88
359 #: ../src/virt-viewer-auth.c:89
382360 #, c-format
383361 msgid ""
384362 "Authentication is required for the %s connection to:\n"
387365 "\n"
388366 msgstr ""
389367
390 #: ../src/virt-viewer-auth.c:92
368 #: ../src/virt-viewer-auth.c:93
391369 #, c-format
392370 msgid "Authentication is required for the %s connection:\n"
393371 msgstr ""
399377 #. * indent-tabs-mode: nil
400378 #. * End:
401379 #.
402 #: ../src/virt-viewer-auth.xml.h:1
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
403381 msgid "Authentication required"
404382 msgstr "Изисква се удостоверяване"
405383
406 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
385 msgid "_OK"
386 msgstr ""
387
388 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
389 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
407390 msgid "label"
408391 msgstr "етикет"
409392
410 #: ../src/virt-viewer-auth.xml.h:3
393 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
411394 msgid "Password:"
412395 msgstr "Парола:"
413396
414 #: ../src/virt-viewer-auth.xml.h:4
397 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
415398 msgid "Username:"
416399 msgstr "Потребител:"
417400
418 #: ../src/virt-viewer-auth.xml.h:5
401 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
419402 msgid "Show password"
420403 msgstr ""
421404
422 #: ../src/virt-viewer-display-vnc.c:133
405 #: ../src/virt-viewer-display-vnc.c:134
423406 msgid "VNC does not provide GUID"
424407 msgstr ""
425408
409 #: ../src/virt-viewer-file-transfer-dialog.c:152
410 msgid "Cancel"
411 msgstr ""
412
413 #: ../src/virt-viewer-file-transfer-dialog.c:163
414 msgid "File Transfers"
415 msgstr ""
416
426417 #: ../src/virt-viewer-main.c:38
427 #, c-format
428 msgid "%s version %s\n"
429 msgstr "%s версия %s\n"
430
431 #: ../src/virt-viewer-main.c:62
432 msgid "Direct connection with no automatic tunnels"
433 msgstr "Директна връзка без автоматични тунели"
434
435 #: ../src/virt-viewer-main.c:64
436 msgid "Attach to the local display using libvirt"
437 msgstr "Прилагане към локалния дисплей посредством libvirt"
438
439 #: ../src/virt-viewer-main.c:66
440 msgid "Connect to hypervisor"
441 msgstr "Свързване към хипервайзор"
442
443 #: ../src/virt-viewer-main.c:68
444 msgid "Wait for domain to start"
445 msgstr "Изчаквам стартирането на виртуализиращата среда"
446
447 #: ../src/virt-viewer-main.c:70
448 msgid "Reconnect to domain upon restart"
449 msgstr "Повторно включване към виртуализиращата среда при рестартиране"
450
451 #: ../src/virt-viewer-main.c:77
452418 msgid "Virt Viewer"
453419 msgstr "Вирт наблюдател"
454420
455 #: ../src/virt-viewer-main.c:80
456 #, c-format
457 msgid "Run '%s --help' to see a full list of available command line options"
458 msgstr ""
459 "Стартирайте '%s --help' за да видите пълен списък на опциите в командния ред"
460
461 #: ../src/virt-viewer-main.c:86
462 msgid "Virtual machine graphical console"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:107
466 #, c-format
467 msgid ""
468 "\n"
469 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
470 "\n"
471 "%s\n"
472 "\n"
473 msgstr ""
474
475 #: ../src/virt-viewer-main.c:112
476 #, c-format
477 msgid ""
478 "\n"
479 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
480 "\n"
481 msgstr ""
482
483 #: ../src/virt-viewer-session-spice.c:694
421 #: ../src/virt-viewer-session-spice.c:705
484422 msgid "Invalid password"
485423 msgstr ""
486424
487425 #. Create the widgets
488 #: ../src/virt-viewer-session-spice.c:786
426 #: ../src/virt-viewer-session-spice.c:797
489427 msgid "Select USB devices for redirection"
490428 msgstr "Изберете USB устройства за пренасочване"
491429
492 #: ../src/virt-viewer-session-vnc.c:153
430 #: ../src/virt-viewer-session-spice.c:799
431 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
432 msgid "_Close"
433 msgstr ""
434
435 #: ../src/virt-viewer-session-vnc.c:156
493436 #, c-format
494437 msgid "Unsupported authentication type %d"
495438 msgstr "Не се поддържа удостоверяване тип %d"
502445 msgid "No virtual machine was chosen"
503446 msgstr ""
504447
505 #: ../src/virt-viewer-window.c:537
448 #: ../src/virt-viewer-window.c:534
506449 msgid "Ctrl+Alt+_Del"
507450 msgstr "Ctrl+Alt+_Del"
508451
509 #: ../src/virt-viewer-window.c:538
452 #: ../src/virt-viewer-window.c:535
510453 msgid "Ctrl+Alt+_Backspace"
511454 msgstr "Ctrl+Alt+_Backspace"
512455
513 #: ../src/virt-viewer-window.c:540
456 #: ../src/virt-viewer-window.c:537
514457 msgid "Ctrl+Alt+F_1"
515458 msgstr "Ctrl+Alt+F_1"
516459
517 #: ../src/virt-viewer-window.c:541
460 #: ../src/virt-viewer-window.c:538
518461 msgid "Ctrl+Alt+F_2"
519462 msgstr "Ctrl+Alt+F_2"
520463
521 #: ../src/virt-viewer-window.c:542
464 #: ../src/virt-viewer-window.c:539
522465 msgid "Ctrl+Alt+F_3"
523466 msgstr "Ctrl+Alt+F_3"
524467
525 #: ../src/virt-viewer-window.c:543
468 #: ../src/virt-viewer-window.c:540
526469 msgid "Ctrl+Alt+F_4"
527470 msgstr "Ctrl+Alt+F_4"
528471
529 #: ../src/virt-viewer-window.c:544
472 #: ../src/virt-viewer-window.c:541
530473 msgid "Ctrl+Alt+F_5"
531474 msgstr "Ctrl+Alt+F_5"
532475
533 #: ../src/virt-viewer-window.c:545
476 #: ../src/virt-viewer-window.c:542
534477 msgid "Ctrl+Alt+F_6"
535478 msgstr "Ctrl+Alt+F_6"
536479
537 #: ../src/virt-viewer-window.c:546
480 #: ../src/virt-viewer-window.c:543
538481 msgid "Ctrl+Alt+F_7"
539482 msgstr "Ctrl+Alt+F_7"
540483
541 #: ../src/virt-viewer-window.c:547
484 #: ../src/virt-viewer-window.c:544
542485 msgid "Ctrl+Alt+F_8"
543486 msgstr "Ctrl+Alt+F_8"
544487
545 #: ../src/virt-viewer-window.c:548
488 #: ../src/virt-viewer-window.c:545
546489 msgid "Ctrl+Alt+F_9"
547490 msgstr "Ctrl+Alt+F_9"
548491
549 #: ../src/virt-viewer-window.c:549
492 #: ../src/virt-viewer-window.c:546
550493 msgid "Ctrl+Alt+F1_0"
551494 msgstr "Ctrl+Alt+F1_0"
552495
553 #: ../src/virt-viewer-window.c:550
496 #: ../src/virt-viewer-window.c:547
554497 msgid "Ctrl+Alt+F11"
555498 msgstr "Ctrl+Alt+F11"
556499
557 #: ../src/virt-viewer-window.c:551
500 #: ../src/virt-viewer-window.c:548
558501 msgid "Ctrl+Alt+F12"
559502 msgstr "Ctrl+Alt+F12"
560503
561 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
504 #: ../src/virt-viewer-window.c:919
505 msgid "_Save"
506 msgstr ""
507
508 #: ../src/virt-viewer-window.c:927
562509 msgid "Screenshot"
563510 msgstr "Снимка на екрана"
564511
565 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
512 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
566513 msgid "Unknown"
567514 msgstr ""
568515
569 #: ../src/virt-viewer-window.c:1062
516 #: ../src/virt-viewer-window.c:1071
570517 msgid "Disconnect"
571518 msgstr "Изключване"
572519
573 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
574 #: ../src/virt-viewer.xml.h:3
520 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
575521 msgid "USB device selection"
576522 msgstr "Избор на USB устройства"
577523
578 #: ../src/virt-viewer-window.c:1081
524 #: ../src/virt-viewer-window.c:1089
579525 msgid "Send key combination"
580526 msgstr "Изпращане на клавишна комбинация"
581527
582 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
528 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
583529 msgid "Leave fullscreen"
584530 msgstr "Изход от Цял екран"
585531
586 #: ../src/virt-viewer-window.c:1173
532 #: ../src/virt-viewer-window.c:1175
587533 msgid "Ctrl+Alt"
588534 msgstr "Ctrl+Alt"
589535
590 #: ../src/virt-viewer-window.c:1176
536 #: ../src/virt-viewer-window.c:1178
591537 #, c-format
592538 msgid "(Press %s to release pointer)"
593539 msgstr "(Натиснете %s за освобождаване на показалеца)"
596542 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597543 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598544 #.
599 #: ../src/virt-viewer-window.c:1187
545 #: ../src/virt-viewer-window.c:1189
600546 #, c-format
601547 msgid "%s%s%s - %s"
602548 msgstr "%s%s%s - %s"
603549
604550 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1191
551 #: ../src/virt-viewer-window.c:1193
606552 msgid " "
607553 msgstr " "
608554
609 #: ../src/virt-viewer-file.c:825
555 #: ../src/virt-viewer-file.c:843
610556 #, c-format
611557 msgid ""
612558 "At least %s version %s is required to setup this connection, see %s for "
613559 "details"
614560 msgstr ""
615561
616 #: ../src/virt-viewer-file.c:833
562 #: ../src/virt-viewer-file.c:851
617563 #, c-format
618564 msgid "At least %s version %s is required to setup this connection"
619565 msgstr "Изисква се %s поне версия %s за създаване на тази връзка"
620566
621 #: ../src/virt-viewer.c:163
567 #: ../src/virt-viewer.c:90
568 msgid "Direct connection with no automatic tunnels"
569 msgstr "Директна връзка без автоматични тунели"
570
571 #: ../src/virt-viewer.c:92
572 msgid "Attach to the local display using libvirt"
573 msgstr "Прилагане към локалния дисплей посредством libvirt"
574
575 #: ../src/virt-viewer.c:94
576 msgid "Connect to hypervisor"
577 msgstr "Свързване към хипервайзор"
578
579 #: ../src/virt-viewer.c:96
580 msgid "Wait for domain to start"
581 msgstr "Изчаквам стартирането на виртуализиращата среда"
582
583 #: ../src/virt-viewer.c:98
584 msgid "Reconnect to domain upon restart"
585 msgstr "Повторно включване към виртуализиращата среда при рестартиране"
586
587 #: ../src/virt-viewer.c:105
588 msgid "Virtual machine graphical console"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:124
592 #, c-format
593 msgid ""
594 "\n"
595 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
596 "\n"
597 msgstr ""
598
599 #: ../src/virt-viewer.c:136
600 #, c-format
601 msgid ""
602 "\n"
603 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
604 "\n"
605 msgstr ""
606
607 #: ../src/virt-viewer.c:250
622608 msgid "Waiting for guest domain to re-start"
623609 msgstr "Изчакване виртуализиращата среда на госта да се рестартира"
624610
625 #: ../src/virt-viewer.c:409
611 #: ../src/virt-viewer.c:496
626612 #, c-format
627613 msgid "Cannot determine the graphic type for the guest %s"
628614 msgstr "Не мога да определя графичния тип за госта %s"
629615
630 #: ../src/virt-viewer.c:448
616 #: ../src/virt-viewer.c:535
631617 #, c-format
632618 msgid "Cannot determine the host for the guest %s"
633619 msgstr "Не мога да определя хоста за госта %s"
634620
635 #: ../src/virt-viewer.c:476
621 #: ../src/virt-viewer.c:563
636622 #, c-format
637623 msgid "Guest '%s' is not reachable"
638624 msgstr ""
639625
640 #: ../src/virt-viewer.c:697
626 #: ../src/virt-viewer.c:784
641627 #, c-format
642628 msgid "Virtual machine %s is not running"
643629 msgstr ""
644630
645 #: ../src/virt-viewer.c:720
631 #: ../src/virt-viewer.c:807
646632 msgid "Waiting for libvirt to start"
647633 msgstr "Изчаквам стартирането на libvirt"
648634
649 #: ../src/virt-viewer.c:724
635 #: ../src/virt-viewer.c:811
650636 msgid "Finding guest domain"
651637 msgstr "Търсене на виртуализиращата среда на госта"
652638
653 #: ../src/virt-viewer.c:728
639 #: ../src/virt-viewer.c:815
654640 msgid "Waiting for guest domain to be created"
655641 msgstr "Изчакване виртуализиращата среда да бъде създадена"
656642
657 #: ../src/virt-viewer.c:750
643 #: ../src/virt-viewer.c:837
658644 msgid "Checking guest domain status"
659645 msgstr "Проверка състоянието на виртуализиращата среда"
660646
661 #: ../src/virt-viewer.c:753
647 #: ../src/virt-viewer.c:840
662648 msgid "Cannot get guest state"
663649 msgstr ""
664650
665 #: ../src/virt-viewer.c:759
651 #: ../src/virt-viewer.c:846
666652 msgid "Waiting for guest domain to start"
667653 msgstr "Изчакване виртуализиращата среда на госта да бъде стартирана"
668654
669 #: ../src/virt-viewer.c:863
655 #: ../src/virt-viewer.c:950
670656 #, c-format
671657 msgid "Unable to connect to libvirt with URI: %s."
672658 msgstr ""
673659
674 #: ../src/virt-viewer.c:864
660 #: ../src/virt-viewer.c:951
675661 msgid "[none]"
676662 msgstr "[нищо]"
677663
678 #: ../src/virt-viewer.c:871
664 #: ../src/virt-viewer.c:958
679665 msgid "Authentication failed."
680666 msgstr ""
681667
682 #: ../src/virt-viewer.c:931
668 #: ../src/virt-viewer.c:1018
683669 msgid "Failed to connect: "
684670 msgstr ""
685671
690676 #. * indent-tabs-mode: nil
691677 #. * End:
692678 #.
693 #: ../src/virt-viewer.xml.h:1
679 #: ../src/resources/ui/virt-viewer.ui.h:1
694680 msgid "_File"
695681 msgstr "_Файл"
696682
697 #: ../src/virt-viewer.xml.h:4
683 #: ../src/resources/ui/virt-viewer.ui.h:2
684 msgid "_Screenshot"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:3
688 msgid "_USB device selection"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:4
698692 msgid "Smartcard insertion"
699693 msgstr "Поставяне на смарткарта"
700694
701 #: ../src/virt-viewer.xml.h:5
695 #: ../src/resources/ui/virt-viewer.ui.h:5
702696 msgid "Smartcard removal"
703697 msgstr "Премахване на смарткарта"
704698
705 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
706 msgid "Preferences"
707 msgstr ""
708
709 #: ../src/virt-viewer.xml.h:7
699 #: ../src/resources/ui/virt-viewer.ui.h:6
700 msgid "_Preferences"
701 msgstr ""
702
703 #: ../src/resources/ui/virt-viewer.ui.h:7
704 msgid "_Quit"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:8
710708 msgid "_View"
711709 msgstr "_Изглед"
712710
713 #: ../src/virt-viewer.xml.h:8
714 msgid "Full screen"
715 msgstr "Цял екран"
716
717 #: ../src/virt-viewer.xml.h:9
711 #: ../src/resources/ui/virt-viewer.ui.h:9
712 msgid "_Full screen"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:10
718716 msgid "_Zoom"
719717 msgstr "_Мащабиране"
720718
721 #: ../src/virt-viewer.xml.h:10
722 msgid "Displays"
723 msgstr "Екрани"
724
725 #: ../src/virt-viewer.xml.h:11
719 #: ../src/resources/ui/virt-viewer.ui.h:11
720 msgid "Zoom _In"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:12
724 msgid "Zoom _Out"
725 msgstr ""
726
727 #: ../src/resources/ui/virt-viewer.ui.h:13
728 msgid "_Normal Size"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:14
732 msgid "_Displays"
733 msgstr ""
734
735 #: ../src/resources/ui/virt-viewer.ui.h:15
726736 msgid "Release cursor"
727737 msgstr "Освобождаване на показалеца"
728738
729 #: ../src/virt-viewer.xml.h:12
739 #: ../src/resources/ui/virt-viewer.ui.h:16
730740 msgid "_Send key"
731741 msgstr "Изпрати _клавиш"
732742
733 #: ../src/virt-viewer.xml.h:13
743 #: ../src/resources/ui/virt-viewer.ui.h:17
734744 msgid "_Help"
735745 msgstr "_Помощ"
736746
737 #: ../src/virt-viewer.xml.h:14
747 #: ../src/resources/ui/virt-viewer.ui.h:18
738748 msgid "_Guest Details"
739749 msgstr ""
740750
741 #: ../src/virt-viewer-guest-details.xml.h:1
751 #: ../src/resources/ui/virt-viewer.ui.h:19
752 msgid "_About"
753 msgstr ""
754
755 #: ../src/resources/ui/virt-viewer.ui.h:20
756 msgid "_Change CD"
757 msgstr ""
758
759 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742760 msgid "Guest Details"
743761 msgstr ""
744762
745 #: ../src/virt-viewer-guest-details.xml.h:2
763 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746764 msgid "Name:"
747765 msgstr ""
748766
749 #: ../src/virt-viewer-guest-details.xml.h:3
767 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750768 msgid "GUID:"
751769 msgstr ""
752770
753 #: ../src/virt-viewer-vm-connection.xml.h:1
771 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754772 msgid "Choose a virtual machine"
755773 msgstr ""
756774
757 #: ../src/virt-viewer-vm-connection.xml.h:2
775 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758776 msgid "Name"
759777 msgstr ""
760778
761 #: ../src/virt-viewer-vm-connection.xml.h:3
779 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762780 msgid "Available virtual machines"
763781 msgstr ""
764782
765 #: ../src/virt-viewer-preferences.xml.h:2
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
784 msgid "Preferences"
785 msgstr ""
786
787 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
766788 msgid "Folder sharing"
767789 msgstr ""
768790
769 #: ../src/virt-viewer-preferences.xml.h:3
791 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
770792 msgid "Share folder"
771793 msgstr ""
772794
773 #: ../src/virt-viewer-preferences.xml.h:4
795 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
774796 msgid "Read-only"
775797 msgstr ""
776798
777 #: ../src/virt-viewer-preferences.xml.h:5
799 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
778800 msgid "Spice"
779801 msgstr ""
+300
-273
po/bn.po less more
1212 msgstr ""
1313 "Project-Id-Version: PACKAGE VERSION\n"
1414 "Report-Msgid-Bugs-To: \n"
15 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
15 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1616 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1717 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1818 "Language-Team: Bengali (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
26
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
25 "X-Generator: Zanata 3.8.4\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
2829 msgid "Remote Viewer"
30 msgstr ""
31
32 #: ../data/remote-viewer.appdata.xml.in.h:2
33 msgid "Remotely access virtual machines"
34 msgstr ""
35
36 #: ../data/remote-viewer.appdata.xml.in.h:3
37 msgid ""
38 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
39 "time it supports guest OS using the VNC or SPICE protocols. Further "
40 "protocols may be supported in the future as user demand dictates. The viewer "
41 "can connect directly to both local and remotely hosted guest OS, optionally "
42 "using SSL/TLS encryption."
2943 msgstr ""
3044
3145 #: ../data/remote-viewer.desktop.in.h:2
3650 msgid "Virt-Viewer connection file"
3751 msgstr ""
3852
39 #: ../src/gbinding.c:637
40 msgid "Source"
41 msgstr "উৎস"
42
43 #: ../src/gbinding.c:638
44 msgid "The source of the binding"
45 msgstr "বাইন্ডিংয়ের উৎস"
46
47 #: ../src/gbinding.c:652
48 msgid "Target"
49 msgstr "উদ্দিষ্ট"
50
51 #: ../src/gbinding.c:653
52 msgid "The target of the binding"
53 msgstr "বাইন্ডিংয়ের উদ্দিষ্টবস্তু"
54
55 #: ../src/gbinding.c:668
56 msgid "Source Property"
57 msgstr "উৎসের বস্তু"
58
59 #: ../src/gbinding.c:669
60 msgid "The property on the source to bind"
61 msgstr "উৎসের মধ্যে বাইন্ড করার জন্য চিহ্নিত বস্তু"
62
63 #: ../src/gbinding.c:684
64 msgid "Target Property"
65 msgstr "উদ্দিষ্টের বস্তু"
66
67 #: ../src/gbinding.c:685
68 msgid "The property on the target to bind"
69 msgstr "উদ্দিষ্টের মধ্যে বাইন্ড করার জন্য চিহ্নিত বস্তু"
70
71 #: ../src/gbinding.c:699
72 msgid "Flags"
73 msgstr "ফ্ল্যাগ"
74
75 #: ../src/gbinding.c:700
76 msgid "The binding flags"
77 msgstr "বাইন্ড করতে ব্যবহৃত ফ্ল্যাগ"
78
79 #: ../src/remote-viewer-main.c:50
80 #, c-format
81 msgid "remote-viewer version %s"
82 msgstr ""
83
84 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
85 msgid "Display version information"
86 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
87
88 #: ../src/remote-viewer-main.c:105
53 #: ../src/remote-viewer.c:139
8954 msgid "Set window title"
9055 msgstr ""
9156
92 #: ../src/remote-viewer-main.c:108
57 #: ../src/remote-viewer.c:142
9358 msgid "Open connection using Spice controller communication"
9459 msgstr "Spice কন্ট্রোলারের যোগাব্যবস্থার মাধ্যমে সংযোগ আরম্ভ করা হবে"
9560
96 #: ../src/remote-viewer-main.c:120
61 #: ../src/remote-viewer.c:150
9762 msgid "Remote viewer client"
9863 msgstr ""
9964
100 #: ../src/remote-viewer-main.c:138
101 #, c-format
102 msgid ""
103 "%s\n"
104 "Run '%s --help' to see a full list of available command line options\n"
105 msgstr ""
106
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr ""
111
112 #: ../src/remote-viewer-main.c:156
113 #, c-format
114 msgid "Error: can't handle multiple URIs\n"
115 msgstr ""
116
117 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
65 #: ../src/remote-viewer.c:175
66 #, c-format
67 msgid ""
68 "\n"
69 "Error: can't handle multiple URIs\n"
70 "\n"
71 msgstr ""
72
73 #: ../src/remote-viewer.c:187
74 #, c-format
75 msgid ""
76 "\n"
77 "Error: extra arguments given while using Spice controller\n"
78 "\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
82 #, c-format
83 msgid "Run '%s --help' to see a full list of available command line options\n"
84 msgstr ""
85
86 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11887 msgid "Failed to initiate connection"
11988 msgstr "সংযোগ আরম্ভ করতে ব্যর্থ"
12089
121 #: ../src/remote-viewer.c:313
90 #: ../src/remote-viewer.c:297
12291 msgid "Display disabled by controller"
12392 msgstr "কন্ট্রোলার দ্বারা প্রদর্শন নিষ্ক্রিয় করা হয়েছে"
12493
125 #: ../src/remote-viewer.c:609
94 #: ../src/remote-viewer.c:593
12695 #, c-format
12796 msgid "Controller connection failed: %s"
12897 msgstr "কন্ট্রোলারের সংযোগ স্থাপন করতে ব্যর্থ: %s"
12998
130 #: ../src/remote-viewer.c:755
131 msgid "_Change CD"
132 msgstr ""
133
134 #: ../src/remote-viewer.c:855
99 #: ../src/remote-viewer.c:848
135100 msgid "failed to parse ovirt uri"
136101 msgstr ""
137102
138 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
103 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
139104 msgid "Authentication was cancelled"
140105 msgstr ""
141106
142 #: ../src/remote-viewer.c:900
107 #: ../src/remote-viewer.c:893
143108 #, c-format
144109 msgid "oVirt VM %s is not running"
145110 msgstr ""
146111
147 #: ../src/remote-viewer.c:914
112 #: ../src/remote-viewer.c:907
148113 #, c-format
149114 msgid "oVirt VM %s has no display"
150115 msgstr ""
151116
152 #: ../src/remote-viewer.c:940
117 #: ../src/remote-viewer.c:933
153118 #, c-format
154119 msgid "oVirt VM %s has no host information"
155120 msgstr ""
156121
157 #: ../src/remote-viewer.c:951
122 #: ../src/remote-viewer.c:944
158123 #, c-format
159124 msgid "oVirt VM %s has unknown display type: %d"
160125 msgstr ""
161126
162 #: ../src/remote-viewer.c:1094
127 #: ../src/remote-viewer.c:1115
163128 msgid "Setting up Spice session..."
164129 msgstr "Spice-র সেশান প্রস্তুত করা হচ্ছে..."
165130
166 #: ../src/remote-viewer.c:1102
131 #: ../src/remote-viewer.c:1123
167132 msgid "No connection was chosen"
168133 msgstr ""
169134
170 #: ../src/remote-viewer.c:1120
135 #: ../src/remote-viewer.c:1141
171136 #, c-format
172137 msgid "Invalid file %s: "
173138 msgstr ""
174139
175 #: ../src/remote-viewer.c:1128
140 #: ../src/remote-viewer.c:1149
176141 msgid "Cannot determine the connection type from URI"
177142 msgstr "URI থেকে সংযোগের ধরন নির্ধারণ করা সম্ভব নয়"
178143
179 #: ../src/remote-viewer.c:1134
144 #: ../src/remote-viewer.c:1155
180145 msgid "Couldn't open oVirt session: "
181146 msgstr ""
182147
187152 #. * indent-tabs-mode: nil
188153 #. * End:
189154 #.
190 #: ../src/remote-viewer-connect.xml.h:1
155 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
191156 msgid "Connection details"
192157 msgstr ""
193158
194 #: ../src/remote-viewer-connect.xml.h:2
195 msgid "Connection Address"
196 msgstr ""
197
198 #: ../src/remote-viewer-connect.xml.h:3
159 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
160 msgid "Connection _Address"
161 msgstr ""
162
163 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
199164 msgid "For example, spice://foo.example.org:5900"
200165 msgstr ""
201166
202 #: ../src/remote-viewer-connect.xml.h:4
167 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
203168 msgid "Recent connections"
204169 msgstr ""
205170
206 #: ../src/remote-viewer-connect.xml.h:5
207 msgid "Cancel"
208 msgstr ""
209
210 #: ../src/remote-viewer-connect.xml.h:6
211 msgid "Connect"
212 msgstr ""
213
214 #: ../src/virt-viewer-about.xml.h:1
215 msgid "About Glade"
216 msgstr "Glade পরিচিতি"
217
218 #: ../src/virt-viewer-about.xml.h:2
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
172 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
174 msgid "_Cancel"
175 msgstr ""
176
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
179 msgid "C_onnect"
180 msgstr ""
181
182 #: ../src/resources/ui/virt-viewer-about.ui.h:1
183 msgid "About Virt-Viewer"
184 msgstr ""
185
186 #: ../src/resources/ui/virt-viewer-about.ui.h:2
219187 msgid ""
220188 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
221189 "Copyright (C) 2007-2014 Red Hat, Inc."
222190 msgstr ""
223191
224 #: ../src/virt-viewer-about.xml.h:4
192 #: ../src/resources/ui/virt-viewer-about.ui.h:4
225193 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
226194 msgstr "GTK-VNC, SPICE-GTK ও libvirt সহযোগে নির্মিত একটি দূরবর্তী ডেস্কটপ"
227195
228 #: ../src/virt-viewer-about.xml.h:5
196 #: ../src/resources/ui/virt-viewer-about.ui.h:5
229197 msgid "virt-manager.org"
230198 msgstr "virt-manager.org"
231199
232 #: ../src/virt-viewer-about.xml.h:6
200 #: ../src/resources/ui/virt-viewer-about.ui.h:6
233201 msgid ""
234202 "This program is free software; you can redistribute it and/or modify\n"
235203 "it under the terms of the GNU General Public License as published by\n"
261229 "Inc., \n"
262230 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
263231
264 #: ../src/virt-viewer-about.xml.h:20
232 #: ../src/resources/ui/virt-viewer-about.ui.h:20
265233 msgid "The Fedora Translation Team"
266234 msgstr "Fedora-র অনুবাদকদের দল"
267235
268 #: ../src/virt-viewer-app.c:526
236 #: ../src/virt-viewer-app.c:458
269237 msgid "Do you want to close the session?"
270238 msgstr ""
271239
272 #: ../src/virt-viewer-app.c:528
240 #: ../src/virt-viewer-app.c:460
273241 msgid "Do not ask me again"
274242 msgstr ""
275243
276 #: ../src/virt-viewer-app.c:1008
244 #: ../src/virt-viewer-app.c:948
277245 #, c-format
278246 msgid "Waiting for display %d..."
279247 msgstr "%d প্রদর্শনের জন্য অপেক্ষা করা হচ্ছে..."
280248
281 #: ../src/virt-viewer-app.c:1117
249 #: ../src/virt-viewer-app.c:1055
282250 #, c-format
283251 msgid "Unsupported graphic type '%s'"
284252 msgstr ""
285253
286 #: ../src/virt-viewer-app.c:1200
254 #: ../src/virt-viewer-app.c:1138
287255 msgid "Connect to ssh failed."
288256 msgstr "ssh-র সাথে সংযোগ করতে ব্যর্থ।"
289257
290 #: ../src/virt-viewer-app.c:1202
258 #: ../src/virt-viewer-app.c:1140
291259 msgid "Can't connect to channel, SSH only supported."
292260 msgstr "চ্যানেলের সাথে সংযোগ করা যায়নি, শুধুমাত্র SSH সমর্থিত হবে।"
293261
294 #: ../src/virt-viewer-app.c:1214
262 #: ../src/virt-viewer-app.c:1152
295263 msgid "Connect to channel unsupported."
296264 msgstr "সমর্থন বিনা চ্যানেলের সাথে সংযোগ করা হবে।"
297265
298 #: ../src/virt-viewer-app.c:1276
266 #: ../src/virt-viewer-app.c:1214
299267 msgid "Display can only be attached through libvirt with --attach"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1299
270 #: ../src/virt-viewer-app.c:1237
303271 msgid "Connecting to graphic server"
304272 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হচ্ছে"
305273
306 #: ../src/virt-viewer-app.c:1398
274 #: ../src/virt-viewer-app.c:1336
307275 msgid "Guest domain has shutdown"
308276 msgstr "গেস্ট ডোমেইন বন্ধ হয়েছে"
309277
310 #: ../src/virt-viewer-app.c:1459
278 #: ../src/virt-viewer-app.c:1397
311279 msgid "Connected to graphic server"
312280 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হয়েছে"
313281
314 #: ../src/virt-viewer-app.c:1486
282 #: ../src/virt-viewer-app.c:1424
315283 #, c-format
316284 msgid "Unable to connect to the graphic server %s"
317285 msgstr "%s গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ"
318286
319 #: ../src/virt-viewer-app.c:1512
287 #: ../src/virt-viewer-app.c:1450
320288 #, c-format
321289 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
322290 msgstr ""
323291
324 #: ../src/virt-viewer-app.c:1525
292 #: ../src/virt-viewer-app.c:1463
325293 #, c-format
326294 msgid "Unable to authenticate with remote desktop server: %s"
327295 msgstr "দূরবর্তী ডেস্কটপ সার্ভারের সাথে অনুমোদন করতে ব্যর্থ: %s"
328296
329 #: ../src/virt-viewer-app.c:1533
297 #: ../src/virt-viewer-app.c:1471
330298 #, c-format
331299 msgid "USB redirection error: %s"
332300 msgstr "USB পুনর্নির্দেশে সমস্যা: %s"
333301
334 #: ../src/virt-viewer-app.c:1786
302 #: ../src/virt-viewer-app.c:1805
335303 #, c-format
336304 msgid "Zoom level must be within %d-%d\n"
337305 msgstr ""
338306
339 #: ../src/virt-viewer-app.c:2296
340 #, c-format
341 msgid "Display %d"
342 msgstr ""
343
344 #: ../src/virt-viewer-app.c:2552
307 #: ../src/virt-viewer-app.c:1858
308 #, c-format
309 msgid "%s\n"
310 msgstr ""
311
312 #: ../src/virt-viewer-app.c:1868
313 #, c-format
314 msgid "%s version %s"
315 msgstr ""
316
317 #: ../src/virt-viewer-app.c:2292
318 #, c-format
319 msgid "Display _%d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2548
345323 #, c-format
346324 msgid "Invalid kiosk-quit argument: %s"
347325 msgstr ""
326
327 #: ../src/virt-viewer-app.c:2559
328 msgid "Display version information"
329 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
348330
349331 #: ../src/virt-viewer-app.c:2561
350332 msgid "Zoom level of window, in percentage"
378360 msgid "Display debugging information"
379361 msgstr "ডিবাগ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
380362
381 #: ../src/virt-viewer-auth.c:88
363 #: ../src/virt-viewer-auth.c:89
382364 #, c-format
383365 msgid ""
384366 "Authentication is required for the %s connection to:\n"
387369 "\n"
388370 msgstr ""
389371
390 #: ../src/virt-viewer-auth.c:92
372 #: ../src/virt-viewer-auth.c:93
391373 #, c-format
392374 msgid "Authentication is required for the %s connection:\n"
393375 msgstr ""
399381 #. * indent-tabs-mode: nil
400382 #. * End:
401383 #.
402 #: ../src/virt-viewer-auth.xml.h:1
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
403385 msgid "Authentication required"
404386 msgstr "অনুমোদন প্রয়োজন"
405387
406 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
388 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
389 msgid "_OK"
390 msgstr ""
391
392 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
393 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
407394 msgid "label"
408395 msgstr "label"
409396
410 #: ../src/virt-viewer-auth.xml.h:3
397 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
411398 msgid "Password:"
412399 msgstr "পাসওয়ার্ড:"
413400
414 #: ../src/virt-viewer-auth.xml.h:4
401 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
415402 msgid "Username:"
416403 msgstr "ব্যবহারকারীর নাম:"
417404
418 #: ../src/virt-viewer-auth.xml.h:5
405 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
419406 msgid "Show password"
420407 msgstr ""
421408
422 #: ../src/virt-viewer-display-vnc.c:133
409 #: ../src/virt-viewer-display-vnc.c:134
423410 msgid "VNC does not provide GUID"
424411 msgstr ""
425412
413 #: ../src/virt-viewer-file-transfer-dialog.c:152
414 msgid "Cancel"
415 msgstr ""
416
417 #: ../src/virt-viewer-file-transfer-dialog.c:163
418 msgid "File Transfers"
419 msgstr ""
420
426421 #: ../src/virt-viewer-main.c:38
427 #, c-format
428 msgid "%s version %s\n"
429 msgstr "%s সংস্করণ %s\n"
430
431 #: ../src/virt-viewer-main.c:62
432 msgid "Direct connection with no automatic tunnels"
433 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
434
435 #: ../src/virt-viewer-main.c:64
436 msgid "Attach to the local display using libvirt"
437 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
438
439 #: ../src/virt-viewer-main.c:66
440 msgid "Connect to hypervisor"
441 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
442
443 #: ../src/virt-viewer-main.c:68
444 msgid "Wait for domain to start"
445 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
446
447 #: ../src/virt-viewer-main.c:70
448 msgid "Reconnect to domain upon restart"
449 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
450
451 #: ../src/virt-viewer-main.c:77
452422 msgid "Virt Viewer"
453423 msgstr "Virt Viewer"
454424
455 #: ../src/virt-viewer-main.c:80
456 #, c-format
457 msgid "Run '%s --help' to see a full list of available command line options"
458 msgstr ""
459
460 #: ../src/virt-viewer-main.c:86
461 msgid "Virtual machine graphical console"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:107
465 #, c-format
466 msgid ""
467 "\n"
468 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
469 "\n"
470 "%s\n"
471 "\n"
472 msgstr ""
473
474 #: ../src/virt-viewer-main.c:112
475 #, c-format
476 msgid ""
477 "\n"
478 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
479 "\n"
480 msgstr ""
481
482 #: ../src/virt-viewer-session-spice.c:694
425 #: ../src/virt-viewer-session-spice.c:705
483426 msgid "Invalid password"
484427 msgstr ""
485428
486429 #. Create the widgets
487 #: ../src/virt-viewer-session-spice.c:786
430 #: ../src/virt-viewer-session-spice.c:797
488431 msgid "Select USB devices for redirection"
489432 msgstr "পুনর্নির্দেশের জন্য USB ডিভাইস নির্বাচন করুন"
490433
491 #: ../src/virt-viewer-session-vnc.c:153
434 #: ../src/virt-viewer-session-spice.c:799
435 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
436 msgid "_Close"
437 msgstr ""
438
439 #: ../src/virt-viewer-session-vnc.c:156
492440 #, c-format
493441 msgid "Unsupported authentication type %d"
494442 msgstr "%d ধরনের অনুমোদন সমর্থিত নয়"
501449 msgid "No virtual machine was chosen"
502450 msgstr ""
503451
504 #: ../src/virt-viewer-window.c:537
452 #: ../src/virt-viewer-window.c:534
505453 msgid "Ctrl+Alt+_Del"
506454 msgstr "Ctrl+Alt+_Del"
507455
508 #: ../src/virt-viewer-window.c:538
456 #: ../src/virt-viewer-window.c:535
509457 msgid "Ctrl+Alt+_Backspace"
510458 msgstr "Ctrl+Alt+_Backspace"
511459
512 #: ../src/virt-viewer-window.c:540
460 #: ../src/virt-viewer-window.c:537
513461 msgid "Ctrl+Alt+F_1"
514462 msgstr "Ctrl+Alt+F_1"
515463
516 #: ../src/virt-viewer-window.c:541
464 #: ../src/virt-viewer-window.c:538
517465 msgid "Ctrl+Alt+F_2"
518466 msgstr "Ctrl+Alt+F_2"
519467
520 #: ../src/virt-viewer-window.c:542
468 #: ../src/virt-viewer-window.c:539
521469 msgid "Ctrl+Alt+F_3"
522470 msgstr "Ctrl+Alt+F_3"
523471
524 #: ../src/virt-viewer-window.c:543
472 #: ../src/virt-viewer-window.c:540
525473 msgid "Ctrl+Alt+F_4"
526474 msgstr "Ctrl+Alt+F_4"
527475
528 #: ../src/virt-viewer-window.c:544
476 #: ../src/virt-viewer-window.c:541
529477 msgid "Ctrl+Alt+F_5"
530478 msgstr "Ctrl+Alt+F_5"
531479
532 #: ../src/virt-viewer-window.c:545
480 #: ../src/virt-viewer-window.c:542
533481 msgid "Ctrl+Alt+F_6"
534482 msgstr "Ctrl+Alt+F_6"
535483
536 #: ../src/virt-viewer-window.c:546
484 #: ../src/virt-viewer-window.c:543
537485 msgid "Ctrl+Alt+F_7"
538486 msgstr "Ctrl+Alt+F_7"
539487
540 #: ../src/virt-viewer-window.c:547
488 #: ../src/virt-viewer-window.c:544
541489 msgid "Ctrl+Alt+F_8"
542490 msgstr "Ctrl+Alt+F_8"
543491
544 #: ../src/virt-viewer-window.c:548
492 #: ../src/virt-viewer-window.c:545
545493 msgid "Ctrl+Alt+F_9"
546494 msgstr "Ctrl+Alt+F_9"
547495
548 #: ../src/virt-viewer-window.c:549
496 #: ../src/virt-viewer-window.c:546
549497 msgid "Ctrl+Alt+F1_0"
550498 msgstr "Ctrl+Alt+F1_0"
551499
552 #: ../src/virt-viewer-window.c:550
500 #: ../src/virt-viewer-window.c:547
553501 msgid "Ctrl+Alt+F11"
554502 msgstr "Ctrl+Alt+F11"
555503
556 #: ../src/virt-viewer-window.c:551
504 #: ../src/virt-viewer-window.c:548
557505 msgid "Ctrl+Alt+F12"
558506 msgstr "Ctrl+Alt+F12"
559507
560 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
508 #: ../src/virt-viewer-window.c:919
509 msgid "_Save"
510 msgstr ""
511
512 #: ../src/virt-viewer-window.c:927
561513 msgid "Screenshot"
562514 msgstr "স্ক্রিন-শট"
563515
564 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
516 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
565517 msgid "Unknown"
566518 msgstr ""
567519
568 #: ../src/virt-viewer-window.c:1062
520 #: ../src/virt-viewer-window.c:1071
569521 msgid "Disconnect"
570522 msgstr "সংযোগ বিচ্ছেদ করুন"
571523
572 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
573 #: ../src/virt-viewer.xml.h:3
524 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
574525 msgid "USB device selection"
575526 msgstr "USB ডিভাইস নির্বাচন"
576527
577 #: ../src/virt-viewer-window.c:1081
528 #: ../src/virt-viewer-window.c:1089
578529 msgid "Send key combination"
579530 msgstr ""
580531
581 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
532 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
582533 msgid "Leave fullscreen"
583534 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন থেকে প্রস্থান"
584535
585 #: ../src/virt-viewer-window.c:1173
536 #: ../src/virt-viewer-window.c:1175
586537 msgid "Ctrl+Alt"
587538 msgstr ""
588539
589 #: ../src/virt-viewer-window.c:1176
540 #: ../src/virt-viewer-window.c:1178
590541 #, c-format
591542 msgid "(Press %s to release pointer)"
592543 msgstr ""
595546 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596547 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597548 #.
598 #: ../src/virt-viewer-window.c:1187
549 #: ../src/virt-viewer-window.c:1189
599550 #, c-format
600551 msgid "%s%s%s - %s"
601552 msgstr "%s%s%s - %s"
602553
603554 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1191
555 #: ../src/virt-viewer-window.c:1193
605556 msgid " "
606557 msgstr " "
607558
608 #: ../src/virt-viewer-file.c:825
559 #: ../src/virt-viewer-file.c:843
609560 #, c-format
610561 msgid ""
611562 "At least %s version %s is required to setup this connection, see %s for "
612563 "details"
613564 msgstr ""
614565
615 #: ../src/virt-viewer-file.c:833
566 #: ../src/virt-viewer-file.c:851
616567 #, c-format
617568 msgid "At least %s version %s is required to setup this connection"
618569 msgstr ""
619570
620 #: ../src/virt-viewer.c:163
571 #: ../src/virt-viewer.c:90
572 msgid "Direct connection with no automatic tunnels"
573 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
574
575 #: ../src/virt-viewer.c:92
576 msgid "Attach to the local display using libvirt"
577 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
578
579 #: ../src/virt-viewer.c:94
580 msgid "Connect to hypervisor"
581 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
582
583 #: ../src/virt-viewer.c:96
584 msgid "Wait for domain to start"
585 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
586
587 #: ../src/virt-viewer.c:98
588 msgid "Reconnect to domain upon restart"
589 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
590
591 #: ../src/virt-viewer.c:105
592 msgid "Virtual machine graphical console"
593 msgstr ""
594
595 #: ../src/virt-viewer.c:124
596 #, c-format
597 msgid ""
598 "\n"
599 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
600 "\n"
601 msgstr ""
602
603 #: ../src/virt-viewer.c:136
604 #, c-format
605 msgid ""
606 "\n"
607 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
608 "\n"
609 msgstr ""
610
611 #: ../src/virt-viewer.c:250
621612 msgid "Waiting for guest domain to re-start"
622613 msgstr "গেস্ট ডোমেইন পুনরায় আরম্ভের অপেক্ষা করা হচ্ছে"
623614
624 #: ../src/virt-viewer.c:409
615 #: ../src/virt-viewer.c:496
625616 #, c-format
626617 msgid "Cannot determine the graphic type for the guest %s"
627618 msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিকের ধরন নির্ধারণ করা সম্ভব নয়"
628619
629 #: ../src/virt-viewer.c:448
620 #: ../src/virt-viewer.c:535
630621 #, c-format
631622 msgid "Cannot determine the host for the guest %s"
632623 msgstr "%s গেস্ট মেশিনের জন্য হোস্ট নির্ধারণ করা সম্ভব নয়"
633624
634 #: ../src/virt-viewer.c:476
625 #: ../src/virt-viewer.c:563
635626 #, c-format
636627 msgid "Guest '%s' is not reachable"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:697
630 #: ../src/virt-viewer.c:784
640631 #, c-format
641632 msgid "Virtual machine %s is not running"
642633 msgstr ""
643634
644 #: ../src/virt-viewer.c:720
635 #: ../src/virt-viewer.c:807
645636 msgid "Waiting for libvirt to start"
646637 msgstr ""
647638
648 #: ../src/virt-viewer.c:724
639 #: ../src/virt-viewer.c:811
649640 msgid "Finding guest domain"
650641 msgstr "গেস্ট ডোমেইন সন্ধান করা হচ্ছে"
651642
652 #: ../src/virt-viewer.c:728
643 #: ../src/virt-viewer.c:815
653644 msgid "Waiting for guest domain to be created"
654645 msgstr "গেস্ট ডোমেইন প্রস্তুতির অপেক্ষা করা হচ্ছে"
655646
656 #: ../src/virt-viewer.c:750
647 #: ../src/virt-viewer.c:837
657648 msgid "Checking guest domain status"
658649 msgstr "গেস্ট ডোমেইনের অবস্থা পরীক্ষা করতে ব্যর্থ"
659650
660 #: ../src/virt-viewer.c:753
651 #: ../src/virt-viewer.c:840
661652 msgid "Cannot get guest state"
662653 msgstr ""
663654
664 #: ../src/virt-viewer.c:759
655 #: ../src/virt-viewer.c:846
665656 msgid "Waiting for guest domain to start"
666657 msgstr "গেস্ট ডোমেইন আরম্ভের অপেক্ষা করা হচ্ছে"
667658
668 #: ../src/virt-viewer.c:863
659 #: ../src/virt-viewer.c:950
669660 #, c-format
670661 msgid "Unable to connect to libvirt with URI: %s."
671662 msgstr ""
672663
673 #: ../src/virt-viewer.c:864
664 #: ../src/virt-viewer.c:951
674665 msgid "[none]"
675666 msgstr "[শূণ্য]"
676667
677 #: ../src/virt-viewer.c:871
668 #: ../src/virt-viewer.c:958
678669 msgid "Authentication failed."
679670 msgstr ""
680671
681 #: ../src/virt-viewer.c:931
672 #: ../src/virt-viewer.c:1018
682673 msgid "Failed to connect: "
683674 msgstr ""
684675
689680 #. * indent-tabs-mode: nil
690681 #. * End:
691682 #.
692 #: ../src/virt-viewer.xml.h:1
683 #: ../src/resources/ui/virt-viewer.ui.h:1
693684 msgid "_File"
694685 msgstr "ফাইল (_F)"
695686
696 #: ../src/virt-viewer.xml.h:4
687 #: ../src/resources/ui/virt-viewer.ui.h:2
688 msgid "_Screenshot"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:3
692 msgid "_USB device selection"
693 msgstr ""
694
695 #: ../src/resources/ui/virt-viewer.ui.h:4
697696 msgid "Smartcard insertion"
698697 msgstr "স্মার্ট-কার্ড অন্তর্ভুক্তি"
699698
700 #: ../src/virt-viewer.xml.h:5
699 #: ../src/resources/ui/virt-viewer.ui.h:5
701700 msgid "Smartcard removal"
702701 msgstr "স্মার্ট-কার্ড অপসারণ"
703702
704 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
705 msgid "Preferences"
706 msgstr ""
707
708 #: ../src/virt-viewer.xml.h:7
703 #: ../src/resources/ui/virt-viewer.ui.h:6
704 msgid "_Preferences"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:7
708 msgid "_Quit"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:8
709712 msgid "_View"
710713 msgstr "প্রদর্শন (_V)"
711714
712 #: ../src/virt-viewer.xml.h:8
713 msgid "Full screen"
714 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন"
715
716 #: ../src/virt-viewer.xml.h:9
715 #: ../src/resources/ui/virt-viewer.ui.h:9
716 msgid "_Full screen"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:10
717720 msgid "_Zoom"
718721 msgstr "প্রদর্শনের নাম (_Z)"
719722
720 #: ../src/virt-viewer.xml.h:10
721 msgid "Displays"
722 msgstr "প্রদর্শনক্ষেত্র"
723
724 #: ../src/virt-viewer.xml.h:11
723 #: ../src/resources/ui/virt-viewer.ui.h:11
724 msgid "Zoom _In"
725 msgstr ""
726
727 #: ../src/resources/ui/virt-viewer.ui.h:12
728 msgid "Zoom _Out"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:13
732 msgid "_Normal Size"
733 msgstr ""
734
735 #: ../src/resources/ui/virt-viewer.ui.h:14
736 msgid "_Displays"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:15
725740 msgid "Release cursor"
726741 msgstr "কার্সার মুক্ত করা হবে"
727742
728 #: ../src/virt-viewer.xml.h:12
743 #: ../src/resources/ui/virt-viewer.ui.h:16
729744 msgid "_Send key"
730745 msgstr "কি পাঠিয়ে দিন (_S)"
731746
732 #: ../src/virt-viewer.xml.h:13
747 #: ../src/resources/ui/virt-viewer.ui.h:17
733748 msgid "_Help"
734749 msgstr "সহায়তা (_H)"
735750
736 #: ../src/virt-viewer.xml.h:14
751 #: ../src/resources/ui/virt-viewer.ui.h:18
737752 msgid "_Guest Details"
738753 msgstr ""
739754
740 #: ../src/virt-viewer-guest-details.xml.h:1
755 #: ../src/resources/ui/virt-viewer.ui.h:19
756 msgid "_About"
757 msgstr ""
758
759 #: ../src/resources/ui/virt-viewer.ui.h:20
760 msgid "_Change CD"
761 msgstr ""
762
763 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
741764 msgid "Guest Details"
742765 msgstr ""
743766
744 #: ../src/virt-viewer-guest-details.xml.h:2
767 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
745768 msgid "Name:"
746769 msgstr ""
747770
748 #: ../src/virt-viewer-guest-details.xml.h:3
771 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
749772 msgid "GUID:"
750773 msgstr ""
751774
752 #: ../src/virt-viewer-vm-connection.xml.h:1
775 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
753776 msgid "Choose a virtual machine"
754777 msgstr ""
755778
756 #: ../src/virt-viewer-vm-connection.xml.h:2
779 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
757780 msgid "Name"
758781 msgstr ""
759782
760 #: ../src/virt-viewer-vm-connection.xml.h:3
783 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
761784 msgid "Available virtual machines"
762785 msgstr ""
763786
764 #: ../src/virt-viewer-preferences.xml.h:2
787 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
788 msgid "Preferences"
789 msgstr ""
790
791 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
765792 msgid "Folder sharing"
766793 msgstr ""
767794
768 #: ../src/virt-viewer-preferences.xml.h:3
795 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
769796 msgid "Share folder"
770797 msgstr ""
771798
772 #: ../src/virt-viewer-preferences.xml.h:4
799 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
773800 msgid "Read-only"
774801 msgstr ""
775802
776 #: ../src/virt-viewer-preferences.xml.h:5
803 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
777804 msgid "Spice"
778805 msgstr ""
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1313 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1414 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1515 "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/virt-"
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.7.3\n"
23
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
22 "X-Generator: Zanata 3.8.4\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
2526 msgid "Remote Viewer"
2627 msgstr "দূরবর্তী প্রদর্শন"
28
29 #: ../data/remote-viewer.appdata.xml.in.h:2
30 msgid "Remotely access virtual machines"
31 msgstr ""
32
33 #: ../data/remote-viewer.appdata.xml.in.h:3
34 msgid ""
35 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
36 "time it supports guest OS using the VNC or SPICE protocols. Further "
37 "protocols may be supported in the future as user demand dictates. The viewer "
38 "can connect directly to both local and remotely hosted guest OS, optionally "
39 "using SSL/TLS encryption."
40 msgstr ""
2741
2842 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Access remote desktops"
3347 msgid "Virt-Viewer connection file"
3448 msgstr "Virt-Viewer সংযোগ ফাইল"
3549
36 #: ../src/gbinding.c:637
37 msgid "Source"
38 msgstr "উৎস"
39
40 #: ../src/gbinding.c:638
41 msgid "The source of the binding"
42 msgstr "বাইন্ডিংয়ের উৎস"
43
44 #: ../src/gbinding.c:652
45 msgid "Target"
46 msgstr "উদ্দিষ্ট"
47
48 #: ../src/gbinding.c:653
49 msgid "The target of the binding"
50 msgstr "বাইন্ডিংয়ের উদ্দিষ্টবস্তু"
51
52 #: ../src/gbinding.c:668
53 msgid "Source Property"
54 msgstr "উৎসের বস্তু"
55
56 #: ../src/gbinding.c:669
57 msgid "The property on the source to bind"
58 msgstr "উৎসের মধ্যে বাইন্ড করার জন্য চিহ্নিত বস্তু"
59
60 #: ../src/gbinding.c:684
61 msgid "Target Property"
62 msgstr "উদ্দিষ্টের বস্তু"
63
64 #: ../src/gbinding.c:685
65 msgid "The property on the target to bind"
66 msgstr "উদ্দিষ্টের মধ্যে বাইন্ড করার জন্য চিহ্নিত বস্তু"
67
68 #: ../src/gbinding.c:699
69 msgid "Flags"
70 msgstr "ফ্ল্যাগ"
71
72 #: ../src/gbinding.c:700
73 msgid "The binding flags"
74 msgstr "বাইন্ড করতে ব্যবহৃত ফ্ল্যাগ"
75
76 #: ../src/remote-viewer-main.c:50
77 #, c-format
78 msgid "remote-viewer version %s"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
82 msgid "Display version information"
83 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
84
85 #: ../src/remote-viewer-main.c:105
50 #: ../src/remote-viewer.c:139
8651 msgid "Set window title"
8752 msgstr "উইন্ডো টাইটেল সেট করুন"
8853
89 #: ../src/remote-viewer-main.c:108
54 #: ../src/remote-viewer.c:142
9055 msgid "Open connection using Spice controller communication"
9156 msgstr "Spice কন্ট্রোলারের যোগাব্যবস্থার মাধ্যমে সংযোগ আরম্ভ করা হবে"
9257
93 #: ../src/remote-viewer-main.c:120
58 #: ../src/remote-viewer.c:150
9459 msgid "Remote viewer client"
9560 msgstr "রিমোট ভিউয়ার ক্লায়েন্ট"
9661
97 #: ../src/remote-viewer-main.c:138
98 #, c-format
99 msgid ""
100 "%s\n"
101 "Run '%s --help' to see a full list of available command line options\n"
102 msgstr ""
103 "%s\n"
104 "কমান্ড-লাইন থেকে ব্যবহারযোগ্য সকল বিকল্পের তালিকা দেখার জন্য '%s --help' প্রয়োগ "
105 "করুন।\n"
106
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr "ত্রুটি: Spice কনট্রোলার ব্যবহার করার সময় অতিরিক্ত আর্গুমেন্ট প্রয়োগ করা হয়েছে\n"
111
112 #: ../src/remote-viewer-main.c:156
113 #, c-format
114 msgid "Error: can't handle multiple URIs\n"
115 msgstr "ত্রুটি: একাধিক URI পরিচালনা করা সম্ভব নয়\n"
116
117 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
62 #: ../src/remote-viewer.c:175
63 #, c-format
64 msgid ""
65 "\n"
66 "Error: can't handle multiple URIs\n"
67 "\n"
68 msgstr ""
69
70 #: ../src/remote-viewer.c:187
71 #, c-format
72 msgid ""
73 "\n"
74 "Error: extra arguments given while using Spice controller\n"
75 "\n"
76 msgstr ""
77
78 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
79 #, c-format
80 msgid "Run '%s --help' to see a full list of available command line options\n"
81 msgstr ""
82
83 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11884 msgid "Failed to initiate connection"
11985 msgstr "সংযোগ আরম্ভ করতে ব্যর্থ"
12086
121 #: ../src/remote-viewer.c:313
87 #: ../src/remote-viewer.c:297
12288 msgid "Display disabled by controller"
12389 msgstr "কন্ট্রোলার দ্বারা প্রদর্শন নিষ্ক্রিয় করা হয়েছে"
12490
125 #: ../src/remote-viewer.c:609
91 #: ../src/remote-viewer.c:593
12692 #, c-format
12793 msgid "Controller connection failed: %s"
12894 msgstr "কন্ট্রোলারের সংযোগ স্থাপন করতে ব্যর্থ: %s"
12995
130 #: ../src/remote-viewer.c:755
131 msgid "_Change CD"
132 msgstr ""
133
134 #: ../src/remote-viewer.c:855
96 #: ../src/remote-viewer.c:848
13597 msgid "failed to parse ovirt uri"
13698 msgstr ""
13799
138 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
100 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
139101 msgid "Authentication was cancelled"
140102 msgstr ""
141103
142 #: ../src/remote-viewer.c:900
104 #: ../src/remote-viewer.c:893
143105 #, c-format
144106 msgid "oVirt VM %s is not running"
145107 msgstr ""
146108
147 #: ../src/remote-viewer.c:914
109 #: ../src/remote-viewer.c:907
148110 #, c-format
149111 msgid "oVirt VM %s has no display"
150112 msgstr ""
151113
152 #: ../src/remote-viewer.c:940
114 #: ../src/remote-viewer.c:933
153115 #, c-format
154116 msgid "oVirt VM %s has no host information"
155117 msgstr ""
156118
157 #: ../src/remote-viewer.c:951
119 #: ../src/remote-viewer.c:944
158120 #, c-format
159121 msgid "oVirt VM %s has unknown display type: %d"
160122 msgstr ""
161123
162 #: ../src/remote-viewer.c:1094
124 #: ../src/remote-viewer.c:1115
163125 msgid "Setting up Spice session..."
164126 msgstr "Spice-র সেশান প্রস্তুত করা হচ্ছে..."
165127
166 #: ../src/remote-viewer.c:1102
128 #: ../src/remote-viewer.c:1123
167129 msgid "No connection was chosen"
168130 msgstr ""
169131
170 #: ../src/remote-viewer.c:1120
132 #: ../src/remote-viewer.c:1141
171133 #, c-format
172134 msgid "Invalid file %s: "
173135 msgstr ""
174136
175 #: ../src/remote-viewer.c:1128
137 #: ../src/remote-viewer.c:1149
176138 msgid "Cannot determine the connection type from URI"
177139 msgstr "URI থেকে সংযোগের ধরন নির্ধারণ করা সম্ভব নয়"
178140
179 #: ../src/remote-viewer.c:1134
141 #: ../src/remote-viewer.c:1155
180142 msgid "Couldn't open oVirt session: "
181143 msgstr ""
182144
187149 #. * indent-tabs-mode: nil
188150 #. * End:
189151 #.
190 #: ../src/remote-viewer-connect.xml.h:1
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
191153 msgid "Connection details"
192154 msgstr "সংযোগ সংক্রান্ত বিবরণ"
193155
194 #: ../src/remote-viewer-connect.xml.h:2
195 msgid "Connection Address"
196 msgstr ""
197
198 #: ../src/remote-viewer-connect.xml.h:3
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 msgid "Connection _Address"
158 msgstr ""
159
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
199161 msgid "For example, spice://foo.example.org:5900"
200162 msgstr "উদাহরণস্বরূপ, spice://foo.example.org:5900"
201163
202 #: ../src/remote-viewer-connect.xml.h:4
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
203165 msgid "Recent connections"
204166 msgstr ""
205167
206 #: ../src/remote-viewer-connect.xml.h:5
207 msgid "Cancel"
208 msgstr ""
209
210 #: ../src/remote-viewer-connect.xml.h:6
211 msgid "Connect"
212 msgstr ""
213
214 #: ../src/virt-viewer-about.xml.h:1
215 msgid "About Glade"
216 msgstr "Glade পরিচিতি"
217
218 #: ../src/virt-viewer-about.xml.h:2
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
169 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
170 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
171 msgid "_Cancel"
172 msgstr ""
173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
175 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 msgid "C_onnect"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:1
180 msgid "About Virt-Viewer"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:2
219184 msgid ""
220185 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
221186 "Copyright (C) 2007-2014 Red Hat, Inc."
223188 "কপিরাইট (C) 2007-2012 Daniel P. Berrange\n"
224189 "কপিরাইট (C) 2007-2014 Red Hat, Inc."
225190
226 #: ../src/virt-viewer-about.xml.h:4
191 #: ../src/resources/ui/virt-viewer-about.ui.h:4
227192 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
228193 msgstr "GTK-VNC, SPICE-GTK ও libvirt সহযোগে নির্মিত একটি দূরবর্তী ডেস্কটপ"
229194
230 #: ../src/virt-viewer-about.xml.h:5
195 #: ../src/resources/ui/virt-viewer-about.ui.h:5
231196 msgid "virt-manager.org"
232197 msgstr "virt-manager.org"
233198
234 #: ../src/virt-viewer-about.xml.h:6
199 #: ../src/resources/ui/virt-viewer-about.ui.h:6
235200 msgid ""
236201 "This program is free software; you can redistribute it and/or modify\n"
237202 "it under the terms of the GNU General Public License as published by\n"
263228 "Inc., \n"
264229 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
265230
266 #: ../src/virt-viewer-about.xml.h:20
231 #: ../src/resources/ui/virt-viewer-about.ui.h:20
267232 msgid "The Fedora Translation Team"
268233 msgstr "Fedora-র অনুবাদকদের দল"
269234
270 #: ../src/virt-viewer-app.c:526
235 #: ../src/virt-viewer-app.c:458
271236 msgid "Do you want to close the session?"
272237 msgstr "অাপনি কী সেশন বন্ধ করতে চান?"
273238
274 #: ../src/virt-viewer-app.c:528
239 #: ../src/virt-viewer-app.c:460
275240 msgid "Do not ask me again"
276241 msgstr "অামকে অাবার জিজ্ঞাসা করবেন না"
277242
278 #: ../src/virt-viewer-app.c:1008
243 #: ../src/virt-viewer-app.c:948
279244 #, c-format
280245 msgid "Waiting for display %d..."
281246 msgstr "%d প্রদর্শনের জন্য অপেক্ষা করা হচ্ছে..."
282247
283 #: ../src/virt-viewer-app.c:1117
248 #: ../src/virt-viewer-app.c:1055
284249 #, c-format
285250 msgid "Unsupported graphic type '%s'"
286251 msgstr ""
287252
288 #: ../src/virt-viewer-app.c:1200
253 #: ../src/virt-viewer-app.c:1138
289254 msgid "Connect to ssh failed."
290255 msgstr "ssh-র সাথে সংযোগ করতে ব্যর্থ।"
291256
292 #: ../src/virt-viewer-app.c:1202
257 #: ../src/virt-viewer-app.c:1140
293258 msgid "Can't connect to channel, SSH only supported."
294259 msgstr "চ্যানেলের সাথে সংযোগ করা যায়নি, শুধুমাত্র SSH সমর্থিত হবে।"
295260
296 #: ../src/virt-viewer-app.c:1214
261 #: ../src/virt-viewer-app.c:1152
297262 msgid "Connect to channel unsupported."
298263 msgstr "সমর্থন বিনা চ্যানেলের সাথে সংযোগ করা হবে।"
299264
300 #: ../src/virt-viewer-app.c:1276
265 #: ../src/virt-viewer-app.c:1214
301266 msgid "Display can only be attached through libvirt with --attach"
302267 msgstr ""
303268
304 #: ../src/virt-viewer-app.c:1299
269 #: ../src/virt-viewer-app.c:1237
305270 msgid "Connecting to graphic server"
306271 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হচ্ছে"
307272
308 #: ../src/virt-viewer-app.c:1398
273 #: ../src/virt-viewer-app.c:1336
309274 msgid "Guest domain has shutdown"
310275 msgstr "গেস্ট ডোমেইন বন্ধ হয়েছে"
311276
312 #: ../src/virt-viewer-app.c:1459
277 #: ../src/virt-viewer-app.c:1397
313278 msgid "Connected to graphic server"
314279 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হয়েছে"
315280
316 #: ../src/virt-viewer-app.c:1486
281 #: ../src/virt-viewer-app.c:1424
317282 #, c-format
318283 msgid "Unable to connect to the graphic server %s"
319284 msgstr "%s গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ"
320285
321 #: ../src/virt-viewer-app.c:1512
286 #: ../src/virt-viewer-app.c:1450
322287 #, c-format
323288 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
324289 msgstr ""
325290
326 #: ../src/virt-viewer-app.c:1525
291 #: ../src/virt-viewer-app.c:1463
327292 #, c-format
328293 msgid "Unable to authenticate with remote desktop server: %s"
329294 msgstr "দূরবর্তী ডেস্কটপ সার্ভারের সাথে অনুমোদন করতে ব্যর্থ: %s"
330295
331 #: ../src/virt-viewer-app.c:1533
296 #: ../src/virt-viewer-app.c:1471
332297 #, c-format
333298 msgid "USB redirection error: %s"
334299 msgstr "USB পুনর্নির্দেশে সমস্যা: %s"
335300
336 #: ../src/virt-viewer-app.c:1786
301 #: ../src/virt-viewer-app.c:1805
337302 #, c-format
338303 msgid "Zoom level must be within %d-%d\n"
339304 msgstr "জুম মাত্রা অবশ্যই %d-%d এর মধ্যবর্তী হতে হবে\n"
340305
341 #: ../src/virt-viewer-app.c:2296
342 #, c-format
343 msgid "Display %d"
344 msgstr "প্রদর্শন %d"
345
346 #: ../src/virt-viewer-app.c:2552
306 #: ../src/virt-viewer-app.c:1858
307 #, c-format
308 msgid "%s\n"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:1868
312 #, c-format
313 msgid "%s version %s"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2292
317 #, c-format
318 msgid "Display _%d"
319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:2548
347322 #, c-format
348323 msgid "Invalid kiosk-quit argument: %s"
349324 msgstr "অবৈধ kiosk-quit আর্গুমেন্ট: %s"
325
326 #: ../src/virt-viewer-app.c:2559
327 msgid "Display version information"
328 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
350329
351330 #: ../src/virt-viewer-app.c:2561
352331 msgid "Zoom level of window, in percentage"
382361 msgid "Display debugging information"
383362 msgstr "ডিবাগ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
384363
385 #: ../src/virt-viewer-auth.c:88
364 #: ../src/virt-viewer-auth.c:89
386365 #, c-format
387366 msgid ""
388367 "Authentication is required for the %s connection to:\n"
391370 "\n"
392371 msgstr ""
393372
394 #: ../src/virt-viewer-auth.c:92
373 #: ../src/virt-viewer-auth.c:93
395374 #, c-format
396375 msgid "Authentication is required for the %s connection:\n"
397376 msgstr ""
403382 #. * indent-tabs-mode: nil
404383 #. * End:
405384 #.
406 #: ../src/virt-viewer-auth.xml.h:1
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
407386 msgid "Authentication required"
408387 msgstr "অনুমোদন প্রয়োজন"
409388
410 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
390 msgid "_OK"
391 msgstr ""
392
393 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
394 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
411395 msgid "label"
412396 msgstr "label"
413397
414 #: ../src/virt-viewer-auth.xml.h:3
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
415399 msgid "Password:"
416400 msgstr "পাসওয়ার্ড:"
417401
418 #: ../src/virt-viewer-auth.xml.h:4
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
419403 msgid "Username:"
420404 msgstr "ব্যবহারকারীর নাম:"
421405
422 #: ../src/virt-viewer-auth.xml.h:5
406 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
423407 msgid "Show password"
424408 msgstr ""
425409
426 #: ../src/virt-viewer-display-vnc.c:133
410 #: ../src/virt-viewer-display-vnc.c:134
427411 msgid "VNC does not provide GUID"
428412 msgstr ""
429413
414 #: ../src/virt-viewer-file-transfer-dialog.c:152
415 msgid "Cancel"
416 msgstr ""
417
418 #: ../src/virt-viewer-file-transfer-dialog.c:163
419 msgid "File Transfers"
420 msgstr ""
421
430422 #: ../src/virt-viewer-main.c:38
431 #, c-format
432 msgid "%s version %s\n"
433 msgstr "%s সংস্করণ %s\n"
434
435 #: ../src/virt-viewer-main.c:62
436 msgid "Direct connection with no automatic tunnels"
437 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
438
439 #: ../src/virt-viewer-main.c:64
440 msgid "Attach to the local display using libvirt"
441 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
442
443 #: ../src/virt-viewer-main.c:66
444 msgid "Connect to hypervisor"
445 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
446
447 #: ../src/virt-viewer-main.c:68
448 msgid "Wait for domain to start"
449 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
450
451 #: ../src/virt-viewer-main.c:70
452 msgid "Reconnect to domain upon restart"
453 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
454
455 #: ../src/virt-viewer-main.c:77
456423 msgid "Virt Viewer"
457424 msgstr "Virt Viewer"
458425
459 #: ../src/virt-viewer-main.c:80
460 #, c-format
461 msgid "Run '%s --help' to see a full list of available command line options"
462 msgstr ""
463 "কমান্ড-লাইন থেকে ব্যবহারযোগ্য সকল বিকল্পের তালিকা দেখার জন্য '%s --help' প্রয়োগ করুন"
464
465 #: ../src/virt-viewer-main.c:86
466 msgid "Virtual machine graphical console"
467 msgstr "ভার্চুয়াল মেশিনের গ্রাফিক্যাল কনসোল"
468
469 #: ../src/virt-viewer-main.c:107
470 #, c-format
471 msgid ""
472 "\n"
473 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
474 "\n"
475 "%s\n"
476 "\n"
477 msgstr ""
478
479 #: ../src/virt-viewer-main.c:112
480 #, c-format
481 msgid ""
482 "\n"
483 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
484 "\n"
485 msgstr ""
486
487 #: ../src/virt-viewer-session-spice.c:694
426 #: ../src/virt-viewer-session-spice.c:705
488427 msgid "Invalid password"
489428 msgstr ""
490429
491430 #. Create the widgets
492 #: ../src/virt-viewer-session-spice.c:786
431 #: ../src/virt-viewer-session-spice.c:797
493432 msgid "Select USB devices for redirection"
494433 msgstr "পুনর্নির্দেশের জন্য USB ডিভাইস নির্বাচন করুন"
495434
496 #: ../src/virt-viewer-session-vnc.c:153
435 #: ../src/virt-viewer-session-spice.c:799
436 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
437 msgid "_Close"
438 msgstr ""
439
440 #: ../src/virt-viewer-session-vnc.c:156
497441 #, c-format
498442 msgid "Unsupported authentication type %d"
499443 msgstr "%d ধরনের অনুমোদন সমর্থিত নয়"
506450 msgid "No virtual machine was chosen"
507451 msgstr ""
508452
509 #: ../src/virt-viewer-window.c:537
453 #: ../src/virt-viewer-window.c:534
510454 msgid "Ctrl+Alt+_Del"
511455 msgstr "Ctrl+Alt+_Del"
512456
513 #: ../src/virt-viewer-window.c:538
457 #: ../src/virt-viewer-window.c:535
514458 msgid "Ctrl+Alt+_Backspace"
515459 msgstr "Ctrl+Alt+_Backspace"
516460
517 #: ../src/virt-viewer-window.c:540
461 #: ../src/virt-viewer-window.c:537
518462 msgid "Ctrl+Alt+F_1"
519463 msgstr "Ctrl+Alt+F_1"
520464
521 #: ../src/virt-viewer-window.c:541
465 #: ../src/virt-viewer-window.c:538
522466 msgid "Ctrl+Alt+F_2"
523467 msgstr "Ctrl+Alt+F_2"
524468
525 #: ../src/virt-viewer-window.c:542
469 #: ../src/virt-viewer-window.c:539
526470 msgid "Ctrl+Alt+F_3"
527471 msgstr "Ctrl+Alt+F_3"
528472
529 #: ../src/virt-viewer-window.c:543
473 #: ../src/virt-viewer-window.c:540
530474 msgid "Ctrl+Alt+F_4"
531475 msgstr "Ctrl+Alt+F_4"
532476
533 #: ../src/virt-viewer-window.c:544
477 #: ../src/virt-viewer-window.c:541
534478 msgid "Ctrl+Alt+F_5"
535479 msgstr "Ctrl+Alt+F_5"
536480
537 #: ../src/virt-viewer-window.c:545
481 #: ../src/virt-viewer-window.c:542
538482 msgid "Ctrl+Alt+F_6"
539483 msgstr "Ctrl+Alt+F_6"
540484
541 #: ../src/virt-viewer-window.c:546
485 #: ../src/virt-viewer-window.c:543
542486 msgid "Ctrl+Alt+F_7"
543487 msgstr "Ctrl+Alt+F_7"
544488
545 #: ../src/virt-viewer-window.c:547
489 #: ../src/virt-viewer-window.c:544
546490 msgid "Ctrl+Alt+F_8"
547491 msgstr "Ctrl+Alt+F_8"
548492
549 #: ../src/virt-viewer-window.c:548
493 #: ../src/virt-viewer-window.c:545
550494 msgid "Ctrl+Alt+F_9"
551495 msgstr "Ctrl+Alt+F_9"
552496
553 #: ../src/virt-viewer-window.c:549
497 #: ../src/virt-viewer-window.c:546
554498 msgid "Ctrl+Alt+F1_0"
555499 msgstr "Ctrl+Alt+F1_0"
556500
557 #: ../src/virt-viewer-window.c:550
501 #: ../src/virt-viewer-window.c:547
558502 msgid "Ctrl+Alt+F11"
559503 msgstr "Ctrl+Alt+F11"
560504
561 #: ../src/virt-viewer-window.c:551
505 #: ../src/virt-viewer-window.c:548
562506 msgid "Ctrl+Alt+F12"
563507 msgstr "Ctrl+Alt+F12"
564508
565 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
509 #: ../src/virt-viewer-window.c:919
510 msgid "_Save"
511 msgstr ""
512
513 #: ../src/virt-viewer-window.c:927
566514 msgid "Screenshot"
567515 msgstr "স্ক্রিন-শট"
568516
569 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
517 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
570518 msgid "Unknown"
571519 msgstr ""
572520
573 #: ../src/virt-viewer-window.c:1062
521 #: ../src/virt-viewer-window.c:1071
574522 msgid "Disconnect"
575523 msgstr "সংযোগ বিচ্ছেদ করুন"
576524
577 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
578 #: ../src/virt-viewer.xml.h:3
525 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
579526 msgid "USB device selection"
580527 msgstr "USB ডিভাইস নির্বাচন"
581528
582 #: ../src/virt-viewer-window.c:1081
529 #: ../src/virt-viewer-window.c:1089
583530 msgid "Send key combination"
584531 msgstr "সেন্ড-কি-র সংকলন"
585532
586 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
533 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
587534 msgid "Leave fullscreen"
588535 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন থেকে প্রস্থান"
589536
590 #: ../src/virt-viewer-window.c:1173
537 #: ../src/virt-viewer-window.c:1175
591538 msgid "Ctrl+Alt"
592539 msgstr "Ctrl+Alt"
593540
594 #: ../src/virt-viewer-window.c:1176
541 #: ../src/virt-viewer-window.c:1178
595542 #, c-format
596543 msgid "(Press %s to release pointer)"
597544 msgstr "(পয়েন্টার মুক্ত করার জন্য %s টিপুন)"
600547 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
601548 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
602549 #.
603 #: ../src/virt-viewer-window.c:1187
550 #: ../src/virt-viewer-window.c:1189
604551 #, c-format
605552 msgid "%s%s%s - %s"
606553 msgstr "%s%s%s - %s"
607554
608555 #. translators: <space>
609 #: ../src/virt-viewer-window.c:1191
556 #: ../src/virt-viewer-window.c:1193
610557 msgid " "
611558 msgstr " "
612559
613 #: ../src/virt-viewer-file.c:825
560 #: ../src/virt-viewer-file.c:843
614561 #, c-format
615562 msgid ""
616563 "At least %s version %s is required to setup this connection, see %s for "
617564 "details"
618565 msgstr ""
619566
620 #: ../src/virt-viewer-file.c:833
567 #: ../src/virt-viewer-file.c:851
621568 #, c-format
622569 msgid "At least %s version %s is required to setup this connection"
623570 msgstr "এই সংযোগ সেট অাপ করতে অন্ততপক্ষে %s সংস্করণ %s প্রয়োজন"
624571
625 #: ../src/virt-viewer.c:163
572 #: ../src/virt-viewer.c:90
573 msgid "Direct connection with no automatic tunnels"
574 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
575
576 #: ../src/virt-viewer.c:92
577 msgid "Attach to the local display using libvirt"
578 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
579
580 #: ../src/virt-viewer.c:94
581 msgid "Connect to hypervisor"
582 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
583
584 #: ../src/virt-viewer.c:96
585 msgid "Wait for domain to start"
586 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
587
588 #: ../src/virt-viewer.c:98
589 msgid "Reconnect to domain upon restart"
590 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
591
592 #: ../src/virt-viewer.c:105
593 msgid "Virtual machine graphical console"
594 msgstr "ভার্চুয়াল মেশিনের গ্রাফিক্যাল কনসোল"
595
596 #: ../src/virt-viewer.c:124
597 #, c-format
598 msgid ""
599 "\n"
600 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
601 "\n"
602 msgstr ""
603
604 #: ../src/virt-viewer.c:136
605 #, c-format
606 msgid ""
607 "\n"
608 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
609 "\n"
610 msgstr ""
611
612 #: ../src/virt-viewer.c:250
626613 msgid "Waiting for guest domain to re-start"
627614 msgstr "গেস্ট ডোমেইন পুনরায় আরম্ভের অপেক্ষা করা হচ্ছে"
628615
629 #: ../src/virt-viewer.c:409
616 #: ../src/virt-viewer.c:496
630617 #, c-format
631618 msgid "Cannot determine the graphic type for the guest %s"
632619 msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিকের ধরন নির্ধারণ করা সম্ভব নয়"
633620
634 #: ../src/virt-viewer.c:448
621 #: ../src/virt-viewer.c:535
635622 #, c-format
636623 msgid "Cannot determine the host for the guest %s"
637624 msgstr "%s গেস্ট মেশিনের জন্য হোস্ট নির্ধারণ করা সম্ভব নয়"
638625
639 #: ../src/virt-viewer.c:476
626 #: ../src/virt-viewer.c:563
640627 #, c-format
641628 msgid "Guest '%s' is not reachable"
642629 msgstr ""
643630
644 #: ../src/virt-viewer.c:697
631 #: ../src/virt-viewer.c:784
645632 #, c-format
646633 msgid "Virtual machine %s is not running"
647634 msgstr ""
648635
649 #: ../src/virt-viewer.c:720
636 #: ../src/virt-viewer.c:807
650637 msgid "Waiting for libvirt to start"
651638 msgstr "লিবভার্ট আরম্ভের অপেক্ষা করা হচ্ছে"
652639
653 #: ../src/virt-viewer.c:724
640 #: ../src/virt-viewer.c:811
654641 msgid "Finding guest domain"
655642 msgstr "গেস্ট ডোমেইন সন্ধান করা হচ্ছে"
656643
657 #: ../src/virt-viewer.c:728
644 #: ../src/virt-viewer.c:815
658645 msgid "Waiting for guest domain to be created"
659646 msgstr "গেস্ট ডোমেইন প্রস্তুতির অপেক্ষা করা হচ্ছে"
660647
661 #: ../src/virt-viewer.c:750
648 #: ../src/virt-viewer.c:837
662649 msgid "Checking guest domain status"
663650 msgstr "গেস্ট ডোমেইনের অবস্থা পরীক্ষা করতে ব্যর্থ"
664651
665 #: ../src/virt-viewer.c:753
652 #: ../src/virt-viewer.c:840
666653 msgid "Cannot get guest state"
667654 msgstr ""
668655
669 #: ../src/virt-viewer.c:759
656 #: ../src/virt-viewer.c:846
670657 msgid "Waiting for guest domain to start"
671658 msgstr "গেস্ট ডোমেইন আরম্ভের অপেক্ষা করা হচ্ছে"
672659
673 #: ../src/virt-viewer.c:863
660 #: ../src/virt-viewer.c:950
674661 #, c-format
675662 msgid "Unable to connect to libvirt with URI: %s."
676663 msgstr ""
677664
678 #: ../src/virt-viewer.c:864
665 #: ../src/virt-viewer.c:951
679666 msgid "[none]"
680667 msgstr "[শূণ্য]"
681668
682 #: ../src/virt-viewer.c:871
669 #: ../src/virt-viewer.c:958
683670 msgid "Authentication failed."
684671 msgstr ""
685672
686 #: ../src/virt-viewer.c:931
673 #: ../src/virt-viewer.c:1018
687674 msgid "Failed to connect: "
688675 msgstr ""
689676
694681 #. * indent-tabs-mode: nil
695682 #. * End:
696683 #.
697 #: ../src/virt-viewer.xml.h:1
684 #: ../src/resources/ui/virt-viewer.ui.h:1
698685 msgid "_File"
699686 msgstr "ফাইল (_F)"
700687
701 #: ../src/virt-viewer.xml.h:4
688 #: ../src/resources/ui/virt-viewer.ui.h:2
689 msgid "_Screenshot"
690 msgstr ""
691
692 #: ../src/resources/ui/virt-viewer.ui.h:3
693 msgid "_USB device selection"
694 msgstr ""
695
696 #: ../src/resources/ui/virt-viewer.ui.h:4
702697 msgid "Smartcard insertion"
703698 msgstr "স্মার্ট-কার্ড অন্তর্ভুক্তি"
704699
705 #: ../src/virt-viewer.xml.h:5
700 #: ../src/resources/ui/virt-viewer.ui.h:5
706701 msgid "Smartcard removal"
707702 msgstr "স্মার্ট-কার্ড অপসারণ"
708703
709 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
710 msgid "Preferences"
711 msgstr ""
712
713 #: ../src/virt-viewer.xml.h:7
704 #: ../src/resources/ui/virt-viewer.ui.h:6
705 msgid "_Preferences"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:7
709 msgid "_Quit"
710 msgstr ""
711
712 #: ../src/resources/ui/virt-viewer.ui.h:8
714713 msgid "_View"
715714 msgstr "প্রদর্শন (_V)"
716715
717 #: ../src/virt-viewer.xml.h:8
718 msgid "Full screen"
719 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন"
720
721 #: ../src/virt-viewer.xml.h:9
716 #: ../src/resources/ui/virt-viewer.ui.h:9
717 msgid "_Full screen"
718 msgstr ""
719
720 #: ../src/resources/ui/virt-viewer.ui.h:10
722721 msgid "_Zoom"
723722 msgstr "প্রদর্শনের নাম (_Z)"
724723
725 #: ../src/virt-viewer.xml.h:10
726 msgid "Displays"
727 msgstr "প্রদর্শনক্ষেত্র"
728
729 #: ../src/virt-viewer.xml.h:11
724 #: ../src/resources/ui/virt-viewer.ui.h:11
725 msgid "Zoom _In"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:12
729 msgid "Zoom _Out"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:13
733 msgid "_Normal Size"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:14
737 msgid "_Displays"
738 msgstr ""
739
740 #: ../src/resources/ui/virt-viewer.ui.h:15
730741 msgid "Release cursor"
731742 msgstr "কার্সার মুক্ত করা হবে"
732743
733 #: ../src/virt-viewer.xml.h:12
744 #: ../src/resources/ui/virt-viewer.ui.h:16
734745 msgid "_Send key"
735746 msgstr "কি পাঠিয়ে দিন (_S)"
736747
737 #: ../src/virt-viewer.xml.h:13
748 #: ../src/resources/ui/virt-viewer.ui.h:17
738749 msgid "_Help"
739750 msgstr "সহায়তা (_H)"
740751
741 #: ../src/virt-viewer.xml.h:14
752 #: ../src/resources/ui/virt-viewer.ui.h:18
742753 msgid "_Guest Details"
743754 msgstr ""
744755
745 #: ../src/virt-viewer-guest-details.xml.h:1
756 #: ../src/resources/ui/virt-viewer.ui.h:19
757 msgid "_About"
758 msgstr ""
759
760 #: ../src/resources/ui/virt-viewer.ui.h:20
761 msgid "_Change CD"
762 msgstr ""
763
764 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
746765 msgid "Guest Details"
747766 msgstr ""
748767
749 #: ../src/virt-viewer-guest-details.xml.h:2
768 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
750769 msgid "Name:"
751770 msgstr ""
752771
753 #: ../src/virt-viewer-guest-details.xml.h:3
772 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
754773 msgid "GUID:"
755774 msgstr ""
756775
757 #: ../src/virt-viewer-vm-connection.xml.h:1
776 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
758777 msgid "Choose a virtual machine"
759778 msgstr ""
760779
761 #: ../src/virt-viewer-vm-connection.xml.h:2
780 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
762781 msgid "Name"
763782 msgstr ""
764783
765 #: ../src/virt-viewer-vm-connection.xml.h:3
784 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
766785 msgid "Available virtual machines"
767786 msgstr ""
768787
769 #: ../src/virt-viewer-preferences.xml.h:2
788 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
789 msgid "Preferences"
790 msgstr ""
791
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
770793 msgid "Folder sharing"
771794 msgstr ""
772795
773 #: ../src/virt-viewer-preferences.xml.h:3
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
774797 msgid "Share folder"
775798 msgstr ""
776799
777 #: ../src/virt-viewer-preferences.xml.h:4
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
778801 msgid "Read-only"
779802 msgstr ""
780803
781 #: ../src/virt-viewer-preferences.xml.h:5
804 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
782805 msgid "Spice"
783806 msgstr ""
+343
-316
po/bo.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/br.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/bs.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+347
-331
po/ca.po less more
44 # Translators:
55 # Robert Antoni Buj i Gelonch, 2014
66 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015. #zanata
7 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2016. #zanata
78 msgid ""
89 msgstr ""
910 "Project-Id-Version: PACKAGE VERSION\n"
1011 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "PO-Revision-Date: 2015-12-09 03:08-0500\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
13 "PO-Revision-Date: 2016-03-15 07:50-0400\n"
1314 "Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>\n"
1415 "Language-Team: Catalan (http://www.transifex.com/projects/p/virt-viewer/"
1516 "language/ca/)\n"
1819 "Content-Type: text/plain; charset=UTF-8\n"
1920 "Content-Transfer-Encoding: 8bit\n"
2021 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21 "X-Generator: Zanata 3.7.3\n"
22
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
22 "X-Generator: Zanata 3.8.4\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
2426 msgid "Remote Viewer"
2527 msgstr "Visualitzador remot"
28
29 #: ../data/remote-viewer.appdata.xml.in.h:2
30 msgid "Remotely access virtual machines"
31 msgstr ""
32
33 #: ../data/remote-viewer.appdata.xml.in.h:3
34 msgid ""
35 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
36 "time it supports guest OS using the VNC or SPICE protocols. Further "
37 "protocols may be supported in the future as user demand dictates. The viewer "
38 "can connect directly to both local and remotely hosted guest OS, optionally "
39 "using SSL/TLS encryption."
40 msgstr ""
2641
2742 #: ../data/remote-viewer.desktop.in.h:2
2843 msgid "Access remote desktops"
3247 msgid "Virt-Viewer connection file"
3348 msgstr "Fitxer de connexió Virt-Viewer"
3449
35 #: ../src/gbinding.c:637
36 msgid "Source"
37 msgstr "Origen"
38
39 #: ../src/gbinding.c:638
40 msgid "The source of the binding"
41 msgstr "L'origen de la creació d'un vincle"
42
43 #: ../src/gbinding.c:652
44 msgid "Target"
45 msgstr "Destí"
46
47 #: ../src/gbinding.c:653
48 msgid "The target of the binding"
49 msgstr "El destí de la creació d'un vincle"
50
51 #: ../src/gbinding.c:668
52 msgid "Source Property"
53 msgstr "Propietat de l'origen"
54
55 #: ../src/gbinding.c:669
56 msgid "The property on the source to bind"
57 msgstr "La propietat en l'origen per crear un vincle"
58
59 #: ../src/gbinding.c:684
60 msgid "Target Property"
61 msgstr "Propietat del destí"
62
63 #: ../src/gbinding.c:685
64 msgid "The property on the target to bind"
65 msgstr "La propietat en el destí per crear un vincle"
66
67 #: ../src/gbinding.c:699
68 msgid "Flags"
69 msgstr "Indicadors"
70
71 #: ../src/gbinding.c:700
72 msgid "The binding flags"
73 msgstr "Els indicadors de la creació d'un vincle"
74
75 #: ../src/remote-viewer-main.c:50
76 #, c-format
77 msgid "remote-viewer version %s"
78 msgstr "remote-viewer versió %s"
79
80 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
81 msgid "Display version information"
82 msgstr "Mostra informació de la versió"
83
84 #: ../src/remote-viewer-main.c:105
50 #: ../src/remote-viewer.c:139
8551 msgid "Set window title"
8652 msgstr "Estableix el títol de la finestra"
8753
88 #: ../src/remote-viewer-main.c:108
54 #: ../src/remote-viewer.c:142
8955 msgid "Open connection using Spice controller communication"
9056 msgstr "Obre la connexió mitjançant la comunicació del controlador Spice"
9157
92 #: ../src/remote-viewer-main.c:120
58 #: ../src/remote-viewer.c:150
9359 msgid "Remote viewer client"
9460 msgstr "Client del visualitzador remot"
9561
96 #: ../src/remote-viewer-main.c:138
97 #, c-format
98 msgid ""
99 "%s\n"
100 "Run '%s --help' to see a full list of available command line options\n"
101 msgstr ""
102 "%s\n"
103 "Executeu '%s --help' per visualitzar el llistat complet d'opcions "
104 "disponibles per a la línia d'ordres\n"
105
106 #: ../src/remote-viewer-main.c:149
107 #, c-format
108 msgid "Error: extra arguments given while using Spice controller\n"
109 msgstr ""
110 "Error: s'han proporcionat arguments extres mentre s'estava utilitzant el "
111 "controlador Spice\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "S'ha produït un error: no es poden gestionar múltiples URI\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
62 #: ../src/remote-viewer.c:175
63 #, c-format
64 msgid ""
65 "\n"
66 "Error: can't handle multiple URIs\n"
67 "\n"
68 msgstr ""
69
70 #: ../src/remote-viewer.c:187
71 #, c-format
72 msgid ""
73 "\n"
74 "Error: extra arguments given while using Spice controller\n"
75 "\n"
76 msgstr ""
77
78 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
79 #, c-format
80 msgid "Run '%s --help' to see a full list of available command line options\n"
81 msgstr ""
82
83 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11984 msgid "Failed to initiate connection"
120 msgstr "S'ha produït un error en inicialitzar la connexió"
121
122 #: ../src/remote-viewer.c:313
85 msgstr "Ha fallat la inicialització de la connexió"
86
87 #: ../src/remote-viewer.c:297
12388 msgid "Display disabled by controller"
12489 msgstr "La pantalla està desactivada pel controlador"
12590
126 #: ../src/remote-viewer.c:609
91 #: ../src/remote-viewer.c:593
12792 #, c-format
12893 msgid "Controller connection failed: %s"
12994 msgstr "La connexió amb el controlador ha fallat: %s"
13095
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr "_Canvia CD"
134
135 #: ../src/remote-viewer.c:855
96 #: ../src/remote-viewer.c:848
13697 msgid "failed to parse ovirt uri"
137 msgstr "S'ha produït un error en analitzar sintàcticament la uri d'ovirt"
138
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 msgstr "Ha fallat l'anàlisi de la uri d'ovirt"
99
100 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140101 msgid "Authentication was cancelled"
141102 msgstr "S'ha cancel·lat l'autenticació"
142103
143 #: ../src/remote-viewer.c:900
104 #: ../src/remote-viewer.c:893
144105 #, c-format
145106 msgid "oVirt VM %s is not running"
146107 msgstr "La MV oVirt %s no s'està executant"
147108
148 #: ../src/remote-viewer.c:914
109 #: ../src/remote-viewer.c:907
149110 #, c-format
150111 msgid "oVirt VM %s has no display"
151112 msgstr "La MV oVirt %s no té cap pantalla"
152113
153 #: ../src/remote-viewer.c:940
114 #: ../src/remote-viewer.c:933
154115 #, c-format
155116 msgid "oVirt VM %s has no host information"
156117 msgstr "La MV d'oVirt %s no té cap informació de l'amfitrió"
157118
158 #: ../src/remote-viewer.c:951
119 #: ../src/remote-viewer.c:944
159120 #, c-format
160121 msgid "oVirt VM %s has unknown display type: %d"
161122 msgstr "La MV oVirt %s té un tipus desconegut de pantalla: %d"
162123
163 #: ../src/remote-viewer.c:1094
124 #: ../src/remote-viewer.c:1115
164125 msgid "Setting up Spice session..."
165126 msgstr "S'està preparant la sessió Spice..."
166127
167 #: ../src/remote-viewer.c:1102
128 #: ../src/remote-viewer.c:1123
168129 msgid "No connection was chosen"
169130 msgstr "No s'ha seleccionat cap connexió"
170131
171 #: ../src/remote-viewer.c:1120
132 #: ../src/remote-viewer.c:1141
172133 #, c-format
173134 msgid "Invalid file %s: "
174135 msgstr "Fitxer no vàlid %s:"
175136
176 #: ../src/remote-viewer.c:1128
137 #: ../src/remote-viewer.c:1149
177138 msgid "Cannot determine the connection type from URI"
178139 msgstr "No s'ha pogut determinar el tipus de connexió des de la URI"
179140
180 #: ../src/remote-viewer.c:1134
141 #: ../src/remote-viewer.c:1155
181142 msgid "Couldn't open oVirt session: "
182143 msgstr "No s'ha pogut obrir la sessió d'oVirt:"
183144
188149 #. * indent-tabs-mode: nil
189150 #. * End:
190151 #.
191 #: ../src/remote-viewer-connect.xml.h:1
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192153 msgid "Connection details"
193154 msgstr "Detalls de la connexió"
194155
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr "Adreça de connexió"
198
199 #: ../src/remote-viewer-connect.xml.h:3
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 msgid "Connection _Address"
158 msgstr ""
159
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200161 msgid "For example, spice://foo.example.org:5900"
201162 msgstr "Per exemple, spice://foo.exemple.cat:5900"
202163
203 #: ../src/remote-viewer-connect.xml.h:4
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204165 msgid "Recent connections"
205166 msgstr "Connexions recents"
206167
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr "Cancel·la"
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr "Connecta"
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "Quant a Glade"
218
219 #: ../src/virt-viewer-about.xml.h:2
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
169 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
170 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
171 msgid "_Cancel"
172 msgstr ""
173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
175 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 msgid "C_onnect"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:1
180 msgid "About Virt-Viewer"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220184 msgid ""
221185 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222186 "Copyright (C) 2007-2014 Red Hat, Inc."
224188 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
225189 "Copyright (C) 2007-2014 Red Hat, Inc."
226190
227 #: ../src/virt-viewer-about.xml.h:4
191 #: ../src/resources/ui/virt-viewer-about.ui.h:4
228192 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
229193 msgstr ""
230194 "Un client d'escriptori remot que estigui construït amb GTK-VNC, SPICE-GTK i "
231195 "libvirt"
232196
233 #: ../src/virt-viewer-about.xml.h:5
197 #: ../src/resources/ui/virt-viewer-about.ui.h:5
234198 msgid "virt-manager.org"
235199 msgstr "virt-manager.org"
236200
237 #: ../src/virt-viewer-about.xml.h:6
201 #: ../src/resources/ui/virt-viewer-about.ui.h:6
238202 msgid ""
239203 "This program is free software; you can redistribute it and/or modify\n"
240204 "it under the terms of the GNU General Public License as published by\n"
264228 "amb aquest programa; si no fos així, escriviu a la Free Software\n"
265229 "Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"
266230
267 #: ../src/virt-viewer-about.xml.h:20
231 #: ../src/resources/ui/virt-viewer-about.ui.h:20
268232 msgid "The Fedora Translation Team"
269 msgstr "Robert Antoni Buj i Gelonch <rbuj@fedoraproject.og>"
270
271 #: ../src/virt-viewer-app.c:526
233 msgstr "Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>"
234
235 #: ../src/virt-viewer-app.c:458
272236 msgid "Do you want to close the session?"
273237 msgstr "Voleu tancar la sessió?"
274238
275 #: ../src/virt-viewer-app.c:528
239 #: ../src/virt-viewer-app.c:460
276240 msgid "Do not ask me again"
277241 msgstr "No m'ho tornis a preguntar"
278242
279 #: ../src/virt-viewer-app.c:1008
243 #: ../src/virt-viewer-app.c:948
280244 #, c-format
281245 msgid "Waiting for display %d..."
282246 msgstr "A l'espera de la pantalla %d..."
283247
284 #: ../src/virt-viewer-app.c:1117
248 #: ../src/virt-viewer-app.c:1055
285249 #, c-format
286250 msgid "Unsupported graphic type '%s'"
287251 msgstr "Tipus no admès de gràfics «%s»"
288252
289 #: ../src/virt-viewer-app.c:1200
253 #: ../src/virt-viewer-app.c:1138
290254 msgid "Connect to ssh failed."
291255 msgstr "La connexió per ssh ha fallat."
292256
293 #: ../src/virt-viewer-app.c:1202
257 #: ../src/virt-viewer-app.c:1140
294258 msgid "Can't connect to channel, SSH only supported."
295259 msgstr "No s'ha pogut connectar al canal, únicament és compatible amb SSH."
296260
297 #: ../src/virt-viewer-app.c:1214
261 #: ../src/virt-viewer-app.c:1152
298262 msgid "Connect to channel unsupported."
299263 msgstr "La connexió al canal no és compatible."
300264
301 #: ../src/virt-viewer-app.c:1276
265 #: ../src/virt-viewer-app.c:1214
302266 msgid "Display can only be attached through libvirt with --attach"
303267 msgstr "La pantalla únicament pot adjuntar-se a través de libvirt amb --attach"
304268
305 #: ../src/virt-viewer-app.c:1299
269 #: ../src/virt-viewer-app.c:1237
306270 msgid "Connecting to graphic server"
307271 msgstr "S'està connectant al servidor gràfic"
308272
309 #: ../src/virt-viewer-app.c:1398
273 #: ../src/virt-viewer-app.c:1336
310274 msgid "Guest domain has shutdown"
311275 msgstr "S'ha apagat el domini del convidat"
312276
313 #: ../src/virt-viewer-app.c:1459
277 #: ../src/virt-viewer-app.c:1397
314278 msgid "Connected to graphic server"
315279 msgstr "S'ha connectat al servidor gràfic"
316280
317 #: ../src/virt-viewer-app.c:1486
281 #: ../src/virt-viewer-app.c:1424
318282 #, c-format
319283 msgid "Unable to connect to the graphic server %s"
320284 msgstr "No s'ha pogut connectar amb el servidor gràfic %s"
321285
322 #: ../src/virt-viewer-app.c:1512
286 #: ../src/virt-viewer-app.c:1450
323287 #, c-format
324288 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
325289 msgstr "No s'ha pogut autenticar amb el servidor d'escriptori remot a %s: %s\n"
326290
327 #: ../src/virt-viewer-app.c:1525
291 #: ../src/virt-viewer-app.c:1463
328292 #, c-format
329293 msgid "Unable to authenticate with remote desktop server: %s"
330294 msgstr "No s'ha pogut autentificar amb el servidor d'escriptori remot: %s"
331295
332 #: ../src/virt-viewer-app.c:1533
296 #: ../src/virt-viewer-app.c:1471
333297 #, c-format
334298 msgid "USB redirection error: %s"
335299 msgstr "S'ha produït un error en la redirecció USB: %s"
336300
337 #: ../src/virt-viewer-app.c:1786
301 #: ../src/virt-viewer-app.c:1805
338302 #, c-format
339303 msgid "Zoom level must be within %d-%d\n"
340 msgstr "El nivell del zoom ha d'estar dins del rang %d-%d\n"
341
342 #: ../src/virt-viewer-app.c:2296
343 #, c-format
344 msgid "Display %d"
345 msgstr "Pantalla %d"
346
347 #: ../src/virt-viewer-app.c:2552
304 msgstr "El nivell del zoom ha d'estar dins de l'interval %d-%d\n"
305
306 #: ../src/virt-viewer-app.c:1858
307 #, c-format
308 msgid "%s\n"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:1868
312 #, c-format
313 msgid "%s version %s"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2292
317 #, c-format
318 msgid "Display _%d"
319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:2548
348322 #, c-format
349323 msgid "Invalid kiosk-quit argument: %s"
350324 msgstr "Argument no vàlid de kiosk-quit: %s"
325
326 #: ../src/virt-viewer-app.c:2559
327 msgid "Display version information"
328 msgstr "Mostra informació de la versió"
351329
352330 #: ../src/virt-viewer-app.c:2561
353331 msgid "Zoom level of window, in percentage"
383361 msgid "Display debugging information"
384362 msgstr "Mostra informació de depuració"
385363
386 #: ../src/virt-viewer-auth.c:88
364 #: ../src/virt-viewer-auth.c:89
387365 #, c-format
388366 msgid ""
389367 "Authentication is required for the %s connection to:\n"
396374 "<b>%s</b>\n"
397375 "\n"
398376
399 #: ../src/virt-viewer-auth.c:92
377 #: ../src/virt-viewer-auth.c:93
400378 #, c-format
401379 msgid "Authentication is required for the %s connection:\n"
402380 msgstr "Es requereix autentificació per a la connexió %s:\n"
408386 #. * indent-tabs-mode: nil
409387 #. * End:
410388 #.
411 #: ../src/virt-viewer-auth.xml.h:1
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
412390 msgid "Authentication required"
413391 msgstr "Es requereix autenticació"
414392
415 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
393 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
394 msgid "_OK"
395 msgstr ""
396
397 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
398 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
416399 msgid "label"
417400 msgstr "etiqueta"
418401
419 #: ../src/virt-viewer-auth.xml.h:3
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
420403 msgid "Password:"
421404 msgstr "Contrasenya:"
422405
423 #: ../src/virt-viewer-auth.xml.h:4
406 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
424407 msgid "Username:"
425408 msgstr "Nom d'usuari:"
426409
427 #: ../src/virt-viewer-auth.xml.h:5
410 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
428411 msgid "Show password"
429412 msgstr "Mostra la contrasenya"
430413
431 #: ../src/virt-viewer-display-vnc.c:133
414 #: ../src/virt-viewer-display-vnc.c:134
432415 msgid "VNC does not provide GUID"
433416 msgstr "VNC no proporciona GUID"
434417
418 #: ../src/virt-viewer-file-transfer-dialog.c:152
419 msgid "Cancel"
420 msgstr "Cancel·la"
421
422 #: ../src/virt-viewer-file-transfer-dialog.c:163
423 msgid "File Transfers"
424 msgstr ""
425
435426 #: ../src/virt-viewer-main.c:38
436 #, c-format
437 msgid "%s version %s\n"
438 msgstr "%s versió %s\n"
439
440 #: ../src/virt-viewer-main.c:62
441 msgid "Direct connection with no automatic tunnels"
442 msgstr "Connexió directa sense túnels automàtics"
443
444 #: ../src/virt-viewer-main.c:64
445 msgid "Attach to the local display using libvirt"
446 msgstr "Adjunta a la pantalla local mitjançant libvirt"
447
448 #: ../src/virt-viewer-main.c:66
449 msgid "Connect to hypervisor"
450 msgstr "Connecta a l'hipervisor"
451
452 #: ../src/virt-viewer-main.c:68
453 msgid "Wait for domain to start"
454 msgstr "Espera el domini per iniciar"
455
456 #: ../src/virt-viewer-main.c:70
457 msgid "Reconnect to domain upon restart"
458 msgstr "Torna a connectar al domini en reiniciar"
459
460 #: ../src/virt-viewer-main.c:77
461427 msgid "Virt Viewer"
462428 msgstr "Virt Viewer"
463429
464 #: ../src/virt-viewer-main.c:80
465 #, c-format
466 msgid "Run '%s --help' to see a full list of available command line options"
467 msgstr ""
468 "Executeu '%s --help' per visualitzar el llistat complet d'opcions "
469 "disponibles per a la línia d'ordres"
470
471 #: ../src/virt-viewer-main.c:86
472 msgid "Virtual machine graphical console"
473 msgstr "Consola gràfica de la màquina virtual"
474
475 #: ../src/virt-viewer-main.c:107
476 #, c-format
477 msgid ""
478 "\n"
479 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
480 "\n"
481 "%s\n"
482 "\n"
483 msgstr ""
484 "\n"
485 "Ús: %s [OPCIONS] [NOM-DOMINI|ID|UUID]\n"
486 "\n"
487 "%s\n"
488 "\n"
489
490 #: ../src/virt-viewer-main.c:112
491 #, c-format
492 msgid ""
493 "\n"
494 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
495 "\n"
496 msgstr ""
497 "\n"
498 "Cap NOM-DOMINI|ID|UUID es va especificar per a '--wait'\n"
499 "\n"
500
501 #: ../src/virt-viewer-session-spice.c:694
430 #: ../src/virt-viewer-session-spice.c:705
502431 msgid "Invalid password"
503432 msgstr "La contrasenya no és vàlida"
504433
505434 #. Create the widgets
506 #: ../src/virt-viewer-session-spice.c:786
435 #: ../src/virt-viewer-session-spice.c:797
507436 msgid "Select USB devices for redirection"
508437 msgstr "Seleccioneu els dispositius USB per a la redirecció"
509438
510 #: ../src/virt-viewer-session-vnc.c:153
439 #: ../src/virt-viewer-session-spice.c:799
440 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
441 msgid "_Close"
442 msgstr ""
443
444 #: ../src/virt-viewer-session-vnc.c:156
511445 #, c-format
512446 msgid "Unsupported authentication type %d"
513447 msgstr "El tipus d'autenticació no és compatible %d"
520454 msgid "No virtual machine was chosen"
521455 msgstr "No s'ha triat cap màquina virtual"
522456
523 #: ../src/virt-viewer-window.c:537
457 #: ../src/virt-viewer-window.c:534
524458 msgid "Ctrl+Alt+_Del"
525459 msgstr "Ctrl+Alt+_ Supr"
526460
527 #: ../src/virt-viewer-window.c:538
461 #: ../src/virt-viewer-window.c:535
528462 msgid "Ctrl+Alt+_Backspace"
529463 msgstr "Ctrl+Alt+_Retrocés"
530464
531 #: ../src/virt-viewer-window.c:540
465 #: ../src/virt-viewer-window.c:537
532466 msgid "Ctrl+Alt+F_1"
533467 msgstr "Ctrl+Alt+F_1"
534468
535 #: ../src/virt-viewer-window.c:541
469 #: ../src/virt-viewer-window.c:538
536470 msgid "Ctrl+Alt+F_2"
537471 msgstr "Ctrl+Alt+F_2"
538472
539 #: ../src/virt-viewer-window.c:542
473 #: ../src/virt-viewer-window.c:539
540474 msgid "Ctrl+Alt+F_3"
541475 msgstr "Ctrl+Alt+F_3"
542476
543 #: ../src/virt-viewer-window.c:543
477 #: ../src/virt-viewer-window.c:540
544478 msgid "Ctrl+Alt+F_4"
545479 msgstr "Ctrl+Alt+F_4"
546480
547 #: ../src/virt-viewer-window.c:544
481 #: ../src/virt-viewer-window.c:541
548482 msgid "Ctrl+Alt+F_5"
549483 msgstr "Ctrl+Alt+F_5"
550484
551 #: ../src/virt-viewer-window.c:545
485 #: ../src/virt-viewer-window.c:542
552486 msgid "Ctrl+Alt+F_6"
553487 msgstr "Ctrl+Alt+F_6"
554488
555 #: ../src/virt-viewer-window.c:546
489 #: ../src/virt-viewer-window.c:543
556490 msgid "Ctrl+Alt+F_7"
557491 msgstr "Ctrl+Alt+F_7"
558492
559 #: ../src/virt-viewer-window.c:547
493 #: ../src/virt-viewer-window.c:544
560494 msgid "Ctrl+Alt+F_8"
561495 msgstr "Ctrl+Alt+F_8"
562496
563 #: ../src/virt-viewer-window.c:548
497 #: ../src/virt-viewer-window.c:545
564498 msgid "Ctrl+Alt+F_9"
565499 msgstr "Ctrl+Alt+F_9"
566500
567 #: ../src/virt-viewer-window.c:549
501 #: ../src/virt-viewer-window.c:546
568502 msgid "Ctrl+Alt+F1_0"
569503 msgstr "Ctrl+Alt+F1_0"
570504
571 #: ../src/virt-viewer-window.c:550
505 #: ../src/virt-viewer-window.c:547
572506 msgid "Ctrl+Alt+F11"
573507 msgstr "Ctrl+Alt+F11"
574508
575 #: ../src/virt-viewer-window.c:551
509 #: ../src/virt-viewer-window.c:548
576510 msgid "Ctrl+Alt+F12"
577511 msgstr "Ctrl+Alt+F12"
578512
579 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
513 #: ../src/virt-viewer-window.c:919
514 msgid "_Save"
515 msgstr ""
516
517 #: ../src/virt-viewer-window.c:927
580518 msgid "Screenshot"
581519 msgstr "Captura de pantalla"
582520
583 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
521 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
584522 msgid "Unknown"
585523 msgstr "Desconegut"
586524
587 #: ../src/virt-viewer-window.c:1062
525 #: ../src/virt-viewer-window.c:1071
588526 msgid "Disconnect"
589527 msgstr "Desconnecta"
590528
591 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
592 #: ../src/virt-viewer.xml.h:3
529 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
593530 msgid "USB device selection"
594531 msgstr "Selecció del dispositiu USB"
595532
596 #: ../src/virt-viewer-window.c:1081
533 #: ../src/virt-viewer-window.c:1089
597534 msgid "Send key combination"
598535 msgstr "Envia una combinació de tecles"
599536
600 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
537 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
601538 msgid "Leave fullscreen"
602539 msgstr "Deixa la pantalla completa"
603540
604 #: ../src/virt-viewer-window.c:1173
541 #: ../src/virt-viewer-window.c:1175
605542 msgid "Ctrl+Alt"
606543 msgstr "Ctrl+Alt"
607544
608 #: ../src/virt-viewer-window.c:1176
545 #: ../src/virt-viewer-window.c:1178
609546 #, c-format
610547 msgid "(Press %s to release pointer)"
611548 msgstr "(Premeu %s per alliberar el punter)"
614551 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
615552 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
616553 #.
617 #: ../src/virt-viewer-window.c:1187
554 #: ../src/virt-viewer-window.c:1189
618555 #, c-format
619556 msgid "%s%s%s - %s"
620557 msgstr "%s%s%s - %s"
621558
622559 #. translators: <space>
623 #: ../src/virt-viewer-window.c:1191
560 #: ../src/virt-viewer-window.c:1193
624561 msgid " "
625562 msgstr " "
626563
627 #: ../src/virt-viewer-file.c:825
564 #: ../src/virt-viewer-file.c:843
628565 #, c-format
629566 msgid ""
630567 "At least %s version %s is required to setup this connection, see %s for "
633570 "Com a mínim %s versió %s es requereix per a configurar aquesta connexió, "
634571 "vegeu %s per a més detalls"
635572
636 #: ../src/virt-viewer-file.c:833
573 #: ../src/virt-viewer-file.c:851
637574 #, c-format
638575 msgid "At least %s version %s is required to setup this connection"
639576 msgstr "Com a mínim es necessita %s versió %s per preparar aquesta connexió"
640577
641 #: ../src/virt-viewer.c:163
578 #: ../src/virt-viewer.c:90
579 msgid "Direct connection with no automatic tunnels"
580 msgstr "Connexió directa sense túnels automàtics"
581
582 #: ../src/virt-viewer.c:92
583 msgid "Attach to the local display using libvirt"
584 msgstr "Adjunta a la pantalla local mitjançant libvirt"
585
586 #: ../src/virt-viewer.c:94
587 msgid "Connect to hypervisor"
588 msgstr "Connecta a l'hipervisor"
589
590 #: ../src/virt-viewer.c:96
591 msgid "Wait for domain to start"
592 msgstr "Espera el domini per iniciar"
593
594 #: ../src/virt-viewer.c:98
595 msgid "Reconnect to domain upon restart"
596 msgstr "Torna a connectar al domini en reiniciar"
597
598 #: ../src/virt-viewer.c:105
599 msgid "Virtual machine graphical console"
600 msgstr "Consola gràfica de la màquina virtual"
601
602 #: ../src/virt-viewer.c:124
603 #, c-format
604 msgid ""
605 "\n"
606 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
607 "\n"
608 msgstr ""
609
610 #: ../src/virt-viewer.c:136
611 #, c-format
612 msgid ""
613 "\n"
614 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
615 "\n"
616 msgstr ""
617 "\n"
618 "Cap NOM-DOMINI|ID|UUID es va especificar per a '--wait'\n"
619 "\n"
620
621 #: ../src/virt-viewer.c:250
642622 msgid "Waiting for guest domain to re-start"
643623 msgstr "A l'espera del domini del convidat per tornar a iniciar"
644624
645 #: ../src/virt-viewer.c:409
625 #: ../src/virt-viewer.c:496
646626 #, c-format
647627 msgid "Cannot determine the graphic type for the guest %s"
648628 msgstr "No es pot determinar el tipus de gràfics per al convidat %s"
649629
650 #: ../src/virt-viewer.c:448
630 #: ../src/virt-viewer.c:535
651631 #, c-format
652632 msgid "Cannot determine the host for the guest %s"
653633 msgstr "No s'ha pogut determinar l'amfitrió per al convidat %s"
654634
655 #: ../src/virt-viewer.c:476
635 #: ../src/virt-viewer.c:563
656636 #, c-format
657637 msgid "Guest '%s' is not reachable"
658638 msgstr "El convidat «%s» no és accessible"
659639
660 #: ../src/virt-viewer.c:697
640 #: ../src/virt-viewer.c:784
661641 #, c-format
662642 msgid "Virtual machine %s is not running"
663643 msgstr "La màquina virtual %s no s'està executant"
664644
665 #: ../src/virt-viewer.c:720
645 #: ../src/virt-viewer.c:807
666646 msgid "Waiting for libvirt to start"
667647 msgstr "A l'espera de libvirt per iniciar"
668648
669 #: ../src/virt-viewer.c:724
649 #: ../src/virt-viewer.c:811
670650 msgid "Finding guest domain"
671651 msgstr "S'està cercant el domini del convidat"
672652
673 #: ../src/virt-viewer.c:728
653 #: ../src/virt-viewer.c:815
674654 msgid "Waiting for guest domain to be created"
675655 msgstr "A l'espera de la creació del domini del convidat"
676656
677 #: ../src/virt-viewer.c:750
657 #: ../src/virt-viewer.c:837
678658 msgid "Checking guest domain status"
679659 msgstr "S'està comprovant l'estat del domini del convidat"
680660
681 #: ../src/virt-viewer.c:753
661 #: ../src/virt-viewer.c:840
682662 msgid "Cannot get guest state"
683663 msgstr "No es pot obtenir l'estat del convidat"
684664
685 #: ../src/virt-viewer.c:759
665 #: ../src/virt-viewer.c:846
686666 msgid "Waiting for guest domain to start"
687667 msgstr "A l'espera del domini del convidat a iniciar"
688668
689 #: ../src/virt-viewer.c:863
669 #: ../src/virt-viewer.c:950
690670 #, c-format
691671 msgid "Unable to connect to libvirt with URI: %s."
692672 msgstr "No s'ha pogut connectar a libvirt amb l'URI: %s."
693673
694 #: ../src/virt-viewer.c:864
674 #: ../src/virt-viewer.c:951
695675 msgid "[none]"
696676 msgstr "[cap]"
697677
698 #: ../src/virt-viewer.c:871
678 #: ../src/virt-viewer.c:958
699679 msgid "Authentication failed."
700680 msgstr "L'autentificació ha fallat."
701681
702 #: ../src/virt-viewer.c:931
682 #: ../src/virt-viewer.c:1018
703683 msgid "Failed to connect: "
704 msgstr "No s'ha pogut connectar"
684 msgstr "Ha fallat la connexió: "
705685
706686 #.
707687 #. * Local variables:
710690 #. * indent-tabs-mode: nil
711691 #. * End:
712692 #.
713 #: ../src/virt-viewer.xml.h:1
693 #: ../src/resources/ui/virt-viewer.ui.h:1
714694 msgid "_File"
715695 msgstr "_Fitxer"
716696
717 #: ../src/virt-viewer.xml.h:4
697 #: ../src/resources/ui/virt-viewer.ui.h:2
698 msgid "_Screenshot"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:3
702 msgid "_USB device selection"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:4
718706 msgid "Smartcard insertion"
719707 msgstr "Inserció d'una targeta intel·ligent"
720708
721 #: ../src/virt-viewer.xml.h:5
709 #: ../src/resources/ui/virt-viewer.ui.h:5
722710 msgid "Smartcard removal"
723711 msgstr "Extracció d'una targeta intel·ligent"
724712
725 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
713 #: ../src/resources/ui/virt-viewer.ui.h:6
714 msgid "_Preferences"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:7
718 msgid "_Quit"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:8
722 msgid "_View"
723 msgstr "_Visualitza"
724
725 #: ../src/resources/ui/virt-viewer.ui.h:9
726 msgid "_Full screen"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:10
730 msgid "_Zoom"
731 msgstr "_Zoom"
732
733 #: ../src/resources/ui/virt-viewer.ui.h:11
734 msgid "Zoom _In"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:12
738 msgid "Zoom _Out"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer.ui.h:13
742 msgid "_Normal Size"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer.ui.h:14
746 msgid "_Displays"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer.ui.h:15
750 msgid "Release cursor"
751 msgstr "Allibera el cursor"
752
753 #: ../src/resources/ui/virt-viewer.ui.h:16
754 msgid "_Send key"
755 msgstr "Envia _tecles"
756
757 #: ../src/resources/ui/virt-viewer.ui.h:17
758 msgid "_Help"
759 msgstr "A_juda"
760
761 #: ../src/resources/ui/virt-viewer.ui.h:18
762 msgid "_Guest Details"
763 msgstr "_Detalls del convidat"
764
765 #: ../src/resources/ui/virt-viewer.ui.h:19
766 msgid "_About"
767 msgstr ""
768
769 #: ../src/resources/ui/virt-viewer.ui.h:20
770 msgid "_Change CD"
771 msgstr "_Canvia CD"
772
773 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
774 msgid "Guest Details"
775 msgstr "Detalls del convidat"
776
777 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
778 msgid "Name:"
779 msgstr "Nom:"
780
781 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
782 msgid "GUID:"
783 msgstr "GUID:"
784
785 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
786 msgid "Choose a virtual machine"
787 msgstr "Trieu una màquina virtual"
788
789 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
790 msgid "Name"
791 msgstr "Nom"
792
793 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
794 msgid "Available virtual machines"
795 msgstr "Màquines virtuals disponibles"
796
797 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
726798 msgid "Preferences"
727799 msgstr "Preferències"
728800
729 #: ../src/virt-viewer.xml.h:7
730 msgid "_View"
731 msgstr "_Visualitza"
732
733 #: ../src/virt-viewer.xml.h:8
734 msgid "Full screen"
735 msgstr "Pantalla completa"
736
737 #: ../src/virt-viewer.xml.h:9
738 msgid "_Zoom"
739 msgstr "_Zoom"
740
741 #: ../src/virt-viewer.xml.h:10
742 msgid "Displays"
743 msgstr "Pantalles"
744
745 #: ../src/virt-viewer.xml.h:11
746 msgid "Release cursor"
747 msgstr "Allibera el cursor"
748
749 #: ../src/virt-viewer.xml.h:12
750 msgid "_Send key"
751 msgstr "Envia _tecles"
752
753 #: ../src/virt-viewer.xml.h:13
754 msgid "_Help"
755 msgstr "A_juda"
756
757 #: ../src/virt-viewer.xml.h:14
758 msgid "_Guest Details"
759 msgstr "_Detalls del convidat"
760
761 #: ../src/virt-viewer-guest-details.xml.h:1
762 msgid "Guest Details"
763 msgstr "Detalls del convidat"
764
765 #: ../src/virt-viewer-guest-details.xml.h:2
766 msgid "Name:"
767 msgstr "Nom:"
768
769 #: ../src/virt-viewer-guest-details.xml.h:3
770 msgid "GUID:"
771 msgstr "GUID:"
772
773 #: ../src/virt-viewer-vm-connection.xml.h:1
774 msgid "Choose a virtual machine"
775 msgstr "Trieu una màquina virtual"
776
777 #: ../src/virt-viewer-vm-connection.xml.h:2
778 msgid "Name"
779 msgstr "Nom"
780
781 #: ../src/virt-viewer-vm-connection.xml.h:3
782 msgid "Available virtual machines"
783 msgstr "Màquines virtuals disponibles"
784
785 #: ../src/virt-viewer-preferences.xml.h:2
801 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
786802 msgid "Folder sharing"
787803 msgstr "Compartició de carpetes"
788804
789 #: ../src/virt-viewer-preferences.xml.h:3
805 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
790806 msgid "Share folder"
791807 msgstr "Comparteix la carpeta"
792808
793 #: ../src/virt-viewer-preferences.xml.h:4
809 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
794810 msgid "Read-only"
795811 msgstr "Només lectura"
796812
797 #: ../src/virt-viewer-preferences.xml.h:5
813 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
798814 msgid "Spice"
799815 msgstr "Spice"
+343
-316
po/cs.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Czech\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
18 "X-Generator: Zanata 3.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/cy.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+343
-316
po/da.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+387
-354
po/de.po less more
1313 # Roman Spirgi <bigant@fedoraproject.org>, 2012
1414 # noxin <transifex.com@davidmainzer.com>, 2013
1515 # Roman Spirgi <rspirgi@gmail.com>, 2015. #zanata
16 # jasna <jdimanos@redhat.com>, 2016. #zanata
1617 msgid ""
1718 msgstr ""
1819 "Project-Id-Version: PACKAGE VERSION\n"
1920 "Report-Msgid-Bugs-To: \n"
20 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
21 "PO-Revision-Date: 2015-05-26 09:30-0400\n"
22 "Last-Translator: Roman Spirgi <rspirgi@gmail.com>\n"
21 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
22 "PO-Revision-Date: 2016-02-03 12:37-0500\n"
23 "Last-Translator: jasna <jdimanos@redhat.com>\n"
2324 "Language-Team: German (http://www.transifex.com/projects/p/virt-viewer/"
2425 "language/de/)\n"
2526 "Language: de\n"
2728 "Content-Type: text/plain; charset=UTF-8\n"
2829 "Content-Transfer-Encoding: 8bit\n"
2930 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
30 "X-Generator: Zanata 3.7.3\n"
31
32 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
31 "X-Generator: Zanata 3.8.4\n"
32
33 #: ../data/remote-viewer.appdata.xml.in.h:1
34 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
3335 msgid "Remote Viewer"
3436 msgstr "Remote-Viewer"
37
38 #: ../data/remote-viewer.appdata.xml.in.h:2
39 msgid "Remotely access virtual machines"
40 msgstr ""
41
42 #: ../data/remote-viewer.appdata.xml.in.h:3
43 msgid ""
44 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
45 "time it supports guest OS using the VNC or SPICE protocols. Further "
46 "protocols may be supported in the future as user demand dictates. The viewer "
47 "can connect directly to both local and remotely hosted guest OS, optionally "
48 "using SSL/TLS encryption."
49 msgstr ""
3550
3651 #: ../data/remote-viewer.desktop.in.h:2
3752 msgid "Access remote desktops"
4156 msgid "Virt-Viewer connection file"
4257 msgstr "Virt-Viewer Verbindungsdatei"
4358
44 #: ../src/gbinding.c:637
45 msgid "Source"
46 msgstr "Quelle"
47
48 #: ../src/gbinding.c:638
49 msgid "The source of the binding"
50 msgstr "Die Quelle der Bindung"
51
52 #: ../src/gbinding.c:652
53 msgid "Target"
54 msgstr "Ziel"
55
56 #: ../src/gbinding.c:653
57 msgid "The target of the binding"
58 msgstr "Das Ziel der Bindung"
59
60 #: ../src/gbinding.c:668
61 msgid "Source Property"
62 msgstr "Quell-Eigenschaft"
63
64 #: ../src/gbinding.c:669
65 msgid "The property on the source to bind"
66 msgstr "Die Eigenschaft auf der Quelle der Bindung"
67
68 #: ../src/gbinding.c:684
69 msgid "Target Property"
70 msgstr "Ziel-Eigenschaft"
71
72 #: ../src/gbinding.c:685
73 msgid "The property on the target to bind"
74 msgstr "Die Eigenschaft auf dem Ziel der Bindung"
75
76 #: ../src/gbinding.c:699
77 msgid "Flags"
78 msgstr "Flags"
79
80 #: ../src/gbinding.c:700
81 msgid "The binding flags"
82 msgstr "Die Bindungs-Flags"
83
84 #: ../src/remote-viewer-main.c:50
85 #, c-format
86 msgid "remote-viewer version %s"
87 msgstr ""
88
89 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
90 msgid "Display version information"
91 msgstr "Versionsinformationen anzeigen"
92
93 #: ../src/remote-viewer-main.c:105
59 #: ../src/remote-viewer.c:139
9460 msgid "Set window title"
9561 msgstr "Titel des Window setzen"
9662
97 #: ../src/remote-viewer-main.c:108
63 #: ../src/remote-viewer.c:142
9864 msgid "Open connection using Spice controller communication"
9965 msgstr "Verbindung öffnen unter Verwendung der Spice-Kontroller-Kommunikation"
10066
101 #: ../src/remote-viewer-main.c:120
67 #: ../src/remote-viewer.c:150
10268 msgid "Remote viewer client"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:138
106 #, c-format
107 msgid ""
108 "%s\n"
109 "Run '%s --help' to see a full list of available command line options\n"
110 msgstr ""
111 "%s\n"
112 "Führen Sie '%s --help' aus, zum Anzeigen aller verfügbaren Kommandozeilen-"
113 "Optionen\n"
114
115 #: ../src/remote-viewer-main.c:149
116 #, c-format
117 msgid "Error: extra arguments given while using Spice controller\n"
118 msgstr ""
119 "Fehler: Zusätzliche Parameter bei Verwendung von Spice-Controller angegeben\n"
120
121 #: ../src/remote-viewer-main.c:156
122 #, c-format
123 msgid "Error: can't handle multiple URIs\n"
124 msgstr "Fehler: Multiple URIs können nicht verarbeitet werden\n"
125
126 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
69 msgstr "Remote-Viewer Client"
70
71 #: ../src/remote-viewer.c:175
72 #, c-format
73 msgid ""
74 "\n"
75 "Error: can't handle multiple URIs\n"
76 "\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:187
80 #, c-format
81 msgid ""
82 "\n"
83 "Error: extra arguments given while using Spice controller\n"
84 "\n"
85 msgstr ""
86
87 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
88 #, c-format
89 msgid "Run '%s --help' to see a full list of available command line options\n"
90 msgstr ""
91
92 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12793 msgid "Failed to initiate connection"
12894 msgstr "Initiieren der Verbindung fehlgeschlagen"
12995
130 #: ../src/remote-viewer.c:313
96 #: ../src/remote-viewer.c:297
13197 msgid "Display disabled by controller"
13298 msgstr "Anzeige vom Kontroller deaktiviert"
13399
134 #: ../src/remote-viewer.c:609
100 #: ../src/remote-viewer.c:593
135101 #, c-format
136102 msgid "Controller connection failed: %s"
137103 msgstr "Kontroller-Verbindung fehlgeschlagen: %s"
138104
139 #: ../src/remote-viewer.c:755
140 msgid "_Change CD"
141 msgstr ""
142
143 #: ../src/remote-viewer.c:855
105 #: ../src/remote-viewer.c:848
144106 msgid "failed to parse ovirt uri"
145 msgstr ""
146
147 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
107 msgstr "Parsen von ovirt uri fehlgeschlagen"
108
109 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
148110 msgid "Authentication was cancelled"
149 msgstr ""
150
151 #: ../src/remote-viewer.c:900
111 msgstr "Authentifizierung abgebrochen"
112
113 #: ../src/remote-viewer.c:893
152114 #, c-format
153115 msgid "oVirt VM %s is not running"
154 msgstr ""
155
156 #: ../src/remote-viewer.c:914
116 msgstr "oVirt VM %s läuft nicht"
117
118 #: ../src/remote-viewer.c:907
157119 #, c-format
158120 msgid "oVirt VM %s has no display"
159 msgstr ""
160
161 #: ../src/remote-viewer.c:940
121 msgstr "oVirt VM %s hat keine Anzeige"
122
123 #: ../src/remote-viewer.c:933
162124 #, c-format
163125 msgid "oVirt VM %s has no host information"
164 msgstr ""
165
166 #: ../src/remote-viewer.c:951
126 msgstr "oVirt VM %s hat keine Host-Informationen"
127
128 #: ../src/remote-viewer.c:944
167129 #, c-format
168130 msgid "oVirt VM %s has unknown display type: %d"
169 msgstr ""
170
171 #: ../src/remote-viewer.c:1094
131 msgstr "oVirt VM %s hat unbekannten Anzeigentyp: %d"
132
133 #: ../src/remote-viewer.c:1115
172134 msgid "Setting up Spice session..."
173135 msgstr "Einrichten der Spice-Sitzung ..."
174136
175 #: ../src/remote-viewer.c:1102
137 #: ../src/remote-viewer.c:1123
176138 msgid "No connection was chosen"
177 msgstr ""
178
179 #: ../src/remote-viewer.c:1120
139 msgstr "Es wurde keine Verbindung gewählt"
140
141 #: ../src/remote-viewer.c:1141
180142 #, c-format
181143 msgid "Invalid file %s: "
182 msgstr ""
183
184 #: ../src/remote-viewer.c:1128
144 msgstr "Ungültige Datei %s: "
145
146 #: ../src/remote-viewer.c:1149
185147 msgid "Cannot determine the connection type from URI"
186148 msgstr "Verbindungstyp konnte nicht von URI ermittelt werden"
187149
188 #: ../src/remote-viewer.c:1134
150 #: ../src/remote-viewer.c:1155
189151 msgid "Couldn't open oVirt session: "
190 msgstr ""
152 msgstr "Konnte oVirt-Sitzung nicht öffnen: "
191153
192154 #.
193155 #. * Local variables:
196158 #. * indent-tabs-mode: nil
197159 #. * End:
198160 #.
199 #: ../src/remote-viewer-connect.xml.h:1
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
200162 msgid "Connection details"
201163 msgstr "Verbindungsdetails"
202164
203 #: ../src/remote-viewer-connect.xml.h:2
204 msgid "Connection Address"
205 msgstr ""
206
207 #: ../src/remote-viewer-connect.xml.h:3
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
166 msgid "Connection _Address"
167 msgstr ""
168
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
208170 msgid "For example, spice://foo.example.org:5900"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:4
171 msgstr "Zum Beispiel spice://foo.example.org:5900"
172
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
212174 msgid "Recent connections"
213 msgstr ""
214
215 #: ../src/remote-viewer-connect.xml.h:5
216 msgid "Cancel"
217 msgstr ""
218
219 #: ../src/remote-viewer-connect.xml.h:6
220 msgid "Connect"
221 msgstr ""
222
223 #: ../src/virt-viewer-about.xml.h:1
224 msgid "About Glade"
225 msgstr "Über Glade"
226
227 #: ../src/virt-viewer-about.xml.h:2
175 msgstr "Neueste Verbindungen"
176
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:918
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 msgid "_Cancel"
181 msgstr ""
182
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
185 msgid "C_onnect"
186 msgstr ""
187
188 #: ../src/resources/ui/virt-viewer-about.ui.h:1
189 msgid "About Virt-Viewer"
190 msgstr ""
191
192 #: ../src/resources/ui/virt-viewer-about.ui.h:2
228193 msgid ""
229194 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
230195 "Copyright (C) 2007-2014 Red Hat, Inc."
231196 msgstr ""
232
233 #: ../src/virt-viewer-about.xml.h:4
197 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
198 "Copyright (C) 2007-2014 Red Hat, Inc."
199
200 #: ../src/resources/ui/virt-viewer-about.ui.h:4
234201 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
235202 msgstr ""
236203 "Ein Remote-Desktop-Client erstellt unter Verwendung von GTK-VNC, SPICE-GTK "
237204 "und libvirt"
238205
239 #: ../src/virt-viewer-about.xml.h:5
206 #: ../src/resources/ui/virt-viewer-about.ui.h:5
240207 msgid "virt-manager.org"
241208 msgstr "virt-manager.org"
242209
243 #: ../src/virt-viewer-about.xml.h:6
210 #: ../src/resources/ui/virt-viewer-about.ui.h:6
244211 msgid ""
245212 "This program is free software; you can redistribute it and/or modify\n"
246213 "it under the terms of the GNU General Public License as published by\n"
270237 "along with this program; if not, write to the Free Software\n"
271238 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
272239
273 #: ../src/virt-viewer-about.xml.h:20
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
274241 msgid "The Fedora Translation Team"
275242 msgstr "Das Fedora Übersetzungs-Team"
276243
277 #: ../src/virt-viewer-app.c:526
244 #: ../src/virt-viewer-app.c:458
278245 msgid "Do you want to close the session?"
279246 msgstr "Möchten Sie die Sitzung beenden?"
280247
281 #: ../src/virt-viewer-app.c:528
248 #: ../src/virt-viewer-app.c:460
282249 msgid "Do not ask me again"
283250 msgstr "Nicht noch einmal nachfragen"
284251
285 #: ../src/virt-viewer-app.c:1008
252 #: ../src/virt-viewer-app.c:948
286253 #, c-format
287254 msgid "Waiting for display %d..."
288255 msgstr "Warten auf Anzeige %d ..."
289256
290 #: ../src/virt-viewer-app.c:1117
257 #: ../src/virt-viewer-app.c:1055
291258 #, c-format
292259 msgid "Unsupported graphic type '%s'"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:1200
260 msgstr "Nicht unterstützter Grafiktyp »%s«"
261
262 #: ../src/virt-viewer-app.c:1138
296263 msgid "Connect to ssh failed."
297264 msgstr "Verbindung über SSH ist fehlgeschlagen."
298265
299 #: ../src/virt-viewer-app.c:1202
266 #: ../src/virt-viewer-app.c:1140
300267 msgid "Can't connect to channel, SSH only supported."
301268 msgstr ""
302269 "Zu dem Kanal konnte nicht verbunden werden, es wird nur SSH unterstützt"
303270
304 #: ../src/virt-viewer-app.c:1214
271 #: ../src/virt-viewer-app.c:1152
305272 msgid "Connect to channel unsupported."
306273 msgstr "Verbindung zu dem Kanal wird nicht unterstützt."
307274
308 #: ../src/virt-viewer-app.c:1276
275 #: ../src/virt-viewer-app.c:1214
309276 msgid "Display can only be attached through libvirt with --attach"
310 msgstr ""
311
312 #: ../src/virt-viewer-app.c:1299
277 msgstr "Anzeige kann nur durch libvirt mit --attach zugeordnet werden"
278
279 #: ../src/virt-viewer-app.c:1237
313280 msgid "Connecting to graphic server"
314281 msgstr "Verbinden mit Grafikserver"
315282
316 #: ../src/virt-viewer-app.c:1398
283 #: ../src/virt-viewer-app.c:1336
317284 msgid "Guest domain has shutdown"
318285 msgstr "Gast-Domain wurde beendet"
319286
320 #: ../src/virt-viewer-app.c:1459
287 #: ../src/virt-viewer-app.c:1397
321288 msgid "Connected to graphic server"
322289 msgstr "Verbunden mit Grafikserver"
323290
324 #: ../src/virt-viewer-app.c:1486
291 #: ../src/virt-viewer-app.c:1424
325292 #, c-format
326293 msgid "Unable to connect to the graphic server %s"
327294 msgstr "Verbindung zum Grafik-Server %s konnte nicht hergestellt werden"
328295
329 #: ../src/virt-viewer-app.c:1512
296 #: ../src/virt-viewer-app.c:1450
330297 #, c-format
331298 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
332 msgstr ""
333
334 #: ../src/virt-viewer-app.c:1525
299 msgstr "Authentifikation beim Remote-Desktop-Server an %s: %s fehlgeschlagen\n"
300
301 #: ../src/virt-viewer-app.c:1463
335302 #, c-format
336303 msgid "Unable to authenticate with remote desktop server: %s"
337304 msgstr "Authentifikation beim Remote-Desktop-Server fehlgeschlagen: %s"
338305
339 #: ../src/virt-viewer-app.c:1533
306 #: ../src/virt-viewer-app.c:1471
340307 #, c-format
341308 msgid "USB redirection error: %s"
342309 msgstr "USB-Weiterleitungsfehler: %s"
343310
344 #: ../src/virt-viewer-app.c:1786
311 #: ../src/virt-viewer-app.c:1805
345312 #, c-format
346313 msgid "Zoom level must be within %d-%d\n"
347314 msgstr "Zoom-Level muss zwischen %d-%d sein\n"
348315
349 #: ../src/virt-viewer-app.c:2296
350 #, c-format
351 msgid "Display %d"
352 msgstr "%d anzeigen"
353
354 #: ../src/virt-viewer-app.c:2552
316 #: ../src/virt-viewer-app.c:1858
317 #, c-format
318 msgid "%s\n"
319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:1868
322 #, c-format
323 msgid "%s version %s"
324 msgstr ""
325
326 #: ../src/virt-viewer-app.c:2292
327 #, c-format
328 msgid "Display _%d"
329 msgstr ""
330
331 #: ../src/virt-viewer-app.c:2548
355332 #, c-format
356333 msgid "Invalid kiosk-quit argument: %s"
357334 msgstr "Ungültiger kiosk-quit Parameter: %s"
335
336 #: ../src/virt-viewer-app.c:2559
337 msgid "Display version information"
338 msgstr "Versionsinformationen anzeigen"
358339
359340 #: ../src/virt-viewer-app.c:2561
360341 msgid "Zoom level of window, in percentage"
390371 msgid "Display debugging information"
391372 msgstr "Debugging-Informationen anzeigen"
392373
393 #: ../src/virt-viewer-auth.c:88
374 #: ../src/virt-viewer-auth.c:89
394375 #, c-format
395376 msgid ""
396377 "Authentication is required for the %s connection to:\n"
398379 "<b>%s</b>\n"
399380 "\n"
400381 msgstr ""
401
402 #: ../src/virt-viewer-auth.c:92
382 "Authentifikation ist erforderlich für die %s Verbindung mit:\n"
383 "\n"
384 "<b>%s</b>\n"
385 "\n"
386
387 #: ../src/virt-viewer-auth.c:93
403388 #, c-format
404389 msgid "Authentication is required for the %s connection:\n"
405 msgstr ""
390 msgstr "Authentifikation ist für die %s Verbindung erforderlich:\n"
406391
407392 #.
408393 #. * Local variables:
411396 #. * indent-tabs-mode: nil
412397 #. * End:
413398 #.
414 #: ../src/virt-viewer-auth.xml.h:1
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
415400 msgid "Authentication required"
416401 msgstr "Authentifikation erforderlich"
417402
418 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
403 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
404 msgid "_OK"
405 msgstr ""
406
407 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
408 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
419409 msgid "label"
420410 msgstr "Label"
421411
422 #: ../src/virt-viewer-auth.xml.h:3
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
423413 msgid "Password:"
424414 msgstr "Passwort:"
425415
426 #: ../src/virt-viewer-auth.xml.h:4
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
427417 msgid "Username:"
428418 msgstr "Benutzername:"
429419
430 #: ../src/virt-viewer-auth.xml.h:5
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
431421 msgid "Show password"
432 msgstr ""
433
434 #: ../src/virt-viewer-display-vnc.c:133
422 msgstr "Passwort anzeigen"
423
424 #: ../src/virt-viewer-display-vnc.c:134
435425 msgid "VNC does not provide GUID"
426 msgstr "VNC bietet keine GUID"
427
428 #: ../src/virt-viewer-file-transfer-dialog.c:152
429 msgid "Cancel"
430 msgstr "Abbrechen"
431
432 #: ../src/virt-viewer-file-transfer-dialog.c:163
433 msgid "File Transfers"
436434 msgstr ""
437435
438436 #: ../src/virt-viewer-main.c:38
439 #, c-format
440 msgid "%s version %s\n"
441 msgstr "%s Version %s\n"
442
443 #: ../src/virt-viewer-main.c:62
444 msgid "Direct connection with no automatic tunnels"
445 msgstr "Direkte Verbindung ohne automatische Tunnel"
446
447 #: ../src/virt-viewer-main.c:64
448 msgid "Attach to the local display using libvirt"
449 msgstr "Mit lokaler Anzeige verbinden mittels libvirt"
450
451 #: ../src/virt-viewer-main.c:66
452 msgid "Connect to hypervisor"
453 msgstr "Verbinden mit Hypervisor"
454
455 #: ../src/virt-viewer-main.c:68
456 msgid "Wait for domain to start"
457 msgstr "Warten auf Start der Domain"
458
459 #: ../src/virt-viewer-main.c:70
460 msgid "Reconnect to domain upon restart"
461 msgstr "Nach Neustart erneut mit Domain verbinden"
462
463 #: ../src/virt-viewer-main.c:77
464437 msgid "Virt Viewer"
465438 msgstr "Virt-Viewer"
466439
467 #: ../src/virt-viewer-main.c:80
468 #, c-format
469 msgid "Run '%s --help' to see a full list of available command line options"
470 msgstr ""
471 "Führen Sie '%s --help' aus, zum Anzeigen aller verfügbaren Kommandozeilen-"
472 "Optionen"
473
474 #: ../src/virt-viewer-main.c:86
475 msgid "Virtual machine graphical console"
476 msgstr ""
477
478 #: ../src/virt-viewer-main.c:107
479 #, c-format
480 msgid ""
481 "\n"
482 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
483 "\n"
484 "%s\n"
485 "\n"
486 msgstr ""
487
488 #: ../src/virt-viewer-main.c:112
489 #, c-format
490 msgid ""
491 "\n"
492 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
493 "\n"
494 msgstr ""
495
496 #: ../src/virt-viewer-session-spice.c:694
440 #: ../src/virt-viewer-session-spice.c:705
497441 msgid "Invalid password"
498 msgstr ""
442 msgstr "Ungültiges Passwort"
499443
500444 #. Create the widgets
501 #: ../src/virt-viewer-session-spice.c:786
445 #: ../src/virt-viewer-session-spice.c:797
502446 msgid "Select USB devices for redirection"
503447 msgstr "USB-Gerät zur Weiterleitung wählen"
504448
505 #: ../src/virt-viewer-session-vnc.c:153
449 #: ../src/virt-viewer-session-spice.c:799
450 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
451 msgid "_Close"
452 msgstr ""
453
454 #: ../src/virt-viewer-session-vnc.c:156
506455 #, c-format
507456 msgid "Unsupported authentication type %d"
508457 msgstr "Nicht unterstützter Authentifikationsstyp %d"
509458
510459 #: ../src/virt-viewer-vm-connection.c:64
511460 msgid "No virtual machine found"
512 msgstr ""
461 msgstr "Keine virtuelle Maschine gefunden"
513462
514463 #: ../src/virt-viewer-vm-connection.c:93
515464 msgid "No virtual machine was chosen"
516 msgstr ""
517
518 #: ../src/virt-viewer-window.c:537
465 msgstr "Es wurde keine virtuelle Maschine ausgewählt"
466
467 #: ../src/virt-viewer-window.c:534
519468 msgid "Ctrl+Alt+_Del"
520469 msgstr "Strg+Alt+_Entf"
521470
522 #: ../src/virt-viewer-window.c:538
471 #: ../src/virt-viewer-window.c:535
523472 msgid "Ctrl+Alt+_Backspace"
524473 msgstr "Strg+Alt+_Rücktaste"
525474
526 #: ../src/virt-viewer-window.c:540
475 #: ../src/virt-viewer-window.c:537
527476 msgid "Ctrl+Alt+F_1"
528477 msgstr "Strg+Alt+F_1"
529478
530 #: ../src/virt-viewer-window.c:541
479 #: ../src/virt-viewer-window.c:538
531480 msgid "Ctrl+Alt+F_2"
532481 msgstr "Strg+Alt+F_2"
533482
534 #: ../src/virt-viewer-window.c:542
483 #: ../src/virt-viewer-window.c:539
535484 msgid "Ctrl+Alt+F_3"
536485 msgstr "Strg+Alt+F_3"
537486
538 #: ../src/virt-viewer-window.c:543
487 #: ../src/virt-viewer-window.c:540
539488 msgid "Ctrl+Alt+F_4"
540489 msgstr "Strg+Alt+F_4"
541490
542 #: ../src/virt-viewer-window.c:544
491 #: ../src/virt-viewer-window.c:541
543492 msgid "Ctrl+Alt+F_5"
544493 msgstr "Strg+Alt+F_5"
545494
546 #: ../src/virt-viewer-window.c:545
495 #: ../src/virt-viewer-window.c:542
547496 msgid "Ctrl+Alt+F_6"
548497 msgstr "Strg+Alt+F_6"
549498
550 #: ../src/virt-viewer-window.c:546
499 #: ../src/virt-viewer-window.c:543
551500 msgid "Ctrl+Alt+F_7"
552501 msgstr "Strg+Alt+F_7"
553502
554 #: ../src/virt-viewer-window.c:547
503 #: ../src/virt-viewer-window.c:544
555504 msgid "Ctrl+Alt+F_8"
556505 msgstr "Strg+Alt+F_8"
557506
558 #: ../src/virt-viewer-window.c:548
507 #: ../src/virt-viewer-window.c:545
559508 msgid "Ctrl+Alt+F_9"
560509 msgstr "Strg+Alt+F_9"
561510
562 #: ../src/virt-viewer-window.c:549
511 #: ../src/virt-viewer-window.c:546
563512 msgid "Ctrl+Alt+F1_0"
564513 msgstr "Strg+Alt+F1_0"
565514
566 #: ../src/virt-viewer-window.c:550
515 #: ../src/virt-viewer-window.c:547
567516 msgid "Ctrl+Alt+F11"
568517 msgstr "Strg+Alt+F11"
569518
570 #: ../src/virt-viewer-window.c:551
519 #: ../src/virt-viewer-window.c:548
571520 msgid "Ctrl+Alt+F12"
572521 msgstr "Strg+Alt+F12"
573522
574 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
523 #: ../src/virt-viewer-window.c:919
524 msgid "_Save"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:927
575528 msgid "Screenshot"
576529 msgstr "Screenshot"
577530
578 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
531 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
579532 msgid "Unknown"
580 msgstr ""
581
582 #: ../src/virt-viewer-window.c:1062
533 msgstr "Unbekannt"
534
535 #: ../src/virt-viewer-window.c:1071
583536 msgid "Disconnect"
584537 msgstr "Verbindung trennen"
585538
586 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
587 #: ../src/virt-viewer.xml.h:3
539 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
588540 msgid "USB device selection"
589541 msgstr "USB-Geräteauswahl"
590542
591 #: ../src/virt-viewer-window.c:1081
543 #: ../src/virt-viewer-window.c:1089
592544 msgid "Send key combination"
593545 msgstr "Tastenkombination senden"
594546
595 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
547 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
596548 msgid "Leave fullscreen"
597549 msgstr "Vollbildmodus verlassen"
598550
599 #: ../src/virt-viewer-window.c:1173
551 #: ../src/virt-viewer-window.c:1175
600552 msgid "Ctrl+Alt"
601553 msgstr "Strg+Alt"
602554
603 #: ../src/virt-viewer-window.c:1176
555 #: ../src/virt-viewer-window.c:1178
604556 #, c-format
605557 msgid "(Press %s to release pointer)"
606558 msgstr "(Drücken Sie %s, um den Mauszeiger freizugeben)"
609561 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
610562 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
611563 #.
612 #: ../src/virt-viewer-window.c:1187
564 #: ../src/virt-viewer-window.c:1189
613565 #, c-format
614566 msgid "%s%s%s - %s"
615567 msgstr "%s%s%s - %s"
616568
617569 #. translators: <space>
618 #: ../src/virt-viewer-window.c:1191
570 #: ../src/virt-viewer-window.c:1193
619571 msgid " "
620572 msgstr " "
621573
622 #: ../src/virt-viewer-file.c:825
574 #: ../src/virt-viewer-file.c:843
623575 #, c-format
624576 msgid ""
625577 "At least %s version %s is required to setup this connection, see %s for "
626578 "details"
627579 msgstr ""
628
629 #: ../src/virt-viewer-file.c:833
580 "Es wird mindestens %s in der Version %s benötigt, um eine Verbindung "
581 "aufzubauen, siehe %s für Details"
582
583 #: ../src/virt-viewer-file.c:851
630584 #, c-format
631585 msgid "At least %s version %s is required to setup this connection"
632586 msgstr ""
633587 "Es wird mindestens %s in der Version %s benötigt, um eine Verbindung "
634588 "aufzubauen"
635589
636 #: ../src/virt-viewer.c:163
590 #: ../src/virt-viewer.c:90
591 msgid "Direct connection with no automatic tunnels"
592 msgstr "Direkte Verbindung ohne automatische Tunnel"
593
594 #: ../src/virt-viewer.c:92
595 msgid "Attach to the local display using libvirt"
596 msgstr "Mit lokaler Anzeige verbinden mittels libvirt"
597
598 #: ../src/virt-viewer.c:94
599 msgid "Connect to hypervisor"
600 msgstr "Verbinden mit Hypervisor"
601
602 #: ../src/virt-viewer.c:96
603 msgid "Wait for domain to start"
604 msgstr "Warten auf Start der Domain"
605
606 #: ../src/virt-viewer.c:98
607 msgid "Reconnect to domain upon restart"
608 msgstr "Nach Neustart erneut mit Domain verbinden"
609
610 #: ../src/virt-viewer.c:105
611 msgid "Virtual machine graphical console"
612 msgstr "Grafische Konsole der virtuellen Maschine"
613
614 #: ../src/virt-viewer.c:124
615 #, c-format
616 msgid ""
617 "\n"
618 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
619 "\n"
620 msgstr ""
621
622 #: ../src/virt-viewer.c:136
623 #, c-format
624 msgid ""
625 "\n"
626 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
627 "\n"
628 msgstr ""
629 "\n"
630 "Es wurde keine DOMAIN-NAME|ID|UUID für »--wait« festgelegt\n"
631 "\n"
632
633 #: ../src/virt-viewer.c:250
637634 msgid "Waiting for guest domain to re-start"
638635 msgstr "Warten auf Neustart der Domain"
639636
640 #: ../src/virt-viewer.c:409
637 #: ../src/virt-viewer.c:496
641638 #, c-format
642639 msgid "Cannot determine the graphic type for the guest %s"
643640 msgstr "Grafiktyp für den Gast %s konnte nicht ermittelt werden "
644641
645 #: ../src/virt-viewer.c:448
642 #: ../src/virt-viewer.c:535
646643 #, c-format
647644 msgid "Cannot determine the host for the guest %s"
648645 msgstr "Host für den Gast %s konnte nicht ermittelt werden"
649646
650 #: ../src/virt-viewer.c:476
647 #: ../src/virt-viewer.c:563
651648 #, c-format
652649 msgid "Guest '%s' is not reachable"
653 msgstr ""
654
655 #: ../src/virt-viewer.c:697
650 msgstr "Gast »%s« ist nicht erreichbar"
651
652 #: ../src/virt-viewer.c:784
656653 #, c-format
657654 msgid "Virtual machine %s is not running"
658 msgstr ""
659
660 #: ../src/virt-viewer.c:720
655 msgstr "Virtuelle Maschine %s läuft nicht"
656
657 #: ../src/virt-viewer.c:807
661658 msgid "Waiting for libvirt to start"
662659 msgstr "Auf den Start von libvirt wird gewartet"
663660
664 #: ../src/virt-viewer.c:724
661 #: ../src/virt-viewer.c:811
665662 msgid "Finding guest domain"
666663 msgstr "Suchen der Gast-Domain"
667664
668 #: ../src/virt-viewer.c:728
665 #: ../src/virt-viewer.c:815
669666 msgid "Waiting for guest domain to be created"
670667 msgstr "Warten auf Erstellung der Gast-Domain"
671668
672 #: ../src/virt-viewer.c:750
669 #: ../src/virt-viewer.c:837
673670 msgid "Checking guest domain status"
674671 msgstr "Prüfen des Gast-Domain-Status"
675672
676 #: ../src/virt-viewer.c:753
673 #: ../src/virt-viewer.c:840
677674 msgid "Cannot get guest state"
678 msgstr ""
679
680 #: ../src/virt-viewer.c:759
675 msgstr "Gast-Status konnte nicht abgerufen werden"
676
677 #: ../src/virt-viewer.c:846
681678 msgid "Waiting for guest domain to start"
682679 msgstr "Warten auf Start der Gast-Domain"
683680
684 #: ../src/virt-viewer.c:863
681 #: ../src/virt-viewer.c:950
685682 #, c-format
686683 msgid "Unable to connect to libvirt with URI: %s."
687 msgstr ""
688
689 #: ../src/virt-viewer.c:864
684 msgstr "Verbindung zu libvirt mit URI: %s nicht möglich."
685
686 #: ../src/virt-viewer.c:951
690687 msgid "[none]"
691688 msgstr "[keine]"
692689
693 #: ../src/virt-viewer.c:871
690 #: ../src/virt-viewer.c:958
694691 msgid "Authentication failed."
695 msgstr ""
696
697 #: ../src/virt-viewer.c:931
692 msgstr "Authentifizierung fehlgeschlagen."
693
694 #: ../src/virt-viewer.c:1018
698695 msgid "Failed to connect: "
699 msgstr ""
696 msgstr "Verbindung fehlgeschlagen:"
700697
701698 #.
702699 #. * Local variables:
705702 #. * indent-tabs-mode: nil
706703 #. * End:
707704 #.
708 #: ../src/virt-viewer.xml.h:1
705 #: ../src/resources/ui/virt-viewer.ui.h:1
709706 msgid "_File"
710707 msgstr "_Datei"
711708
712 #: ../src/virt-viewer.xml.h:4
709 #: ../src/resources/ui/virt-viewer.ui.h:2
710 msgid "_Screenshot"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:3
714 msgid "_USB device selection"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:4
713718 msgid "Smartcard insertion"
714719 msgstr "Smartcard-Eingabe"
715720
716 #: ../src/virt-viewer.xml.h:5
721 #: ../src/resources/ui/virt-viewer.ui.h:5
717722 msgid "Smartcard removal"
718723 msgstr "Smartcard-Entfernung"
719724
720 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
721 msgid "Preferences"
722 msgstr ""
723
724 #: ../src/virt-viewer.xml.h:7
725 #: ../src/resources/ui/virt-viewer.ui.h:6
726 msgid "_Preferences"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:7
730 msgid "_Quit"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:8
725734 msgid "_View"
726735 msgstr "_Ansicht"
727736
728 #: ../src/virt-viewer.xml.h:8
729 msgid "Full screen"
730 msgstr "Vollbild"
731
732 #: ../src/virt-viewer.xml.h:9
737 #: ../src/resources/ui/virt-viewer.ui.h:9
738 msgid "_Full screen"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer.ui.h:10
733742 msgid "_Zoom"
734743 msgstr "_Zoom"
735744
736 #: ../src/virt-viewer.xml.h:10
737 msgid "Displays"
738 msgstr "Anzeigen"
739
740 #: ../src/virt-viewer.xml.h:11
745 #: ../src/resources/ui/virt-viewer.ui.h:11
746 msgid "Zoom _In"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer.ui.h:12
750 msgid "Zoom _Out"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer.ui.h:13
754 msgid "_Normal Size"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer.ui.h:14
758 msgid "_Displays"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer.ui.h:15
741762 msgid "Release cursor"
742763 msgstr "Cursor freigeben"
743764
744 #: ../src/virt-viewer.xml.h:12
765 #: ../src/resources/ui/virt-viewer.ui.h:16
745766 msgid "_Send key"
746767 msgstr "_Taste senden"
747768
748 #: ../src/virt-viewer.xml.h:13
769 #: ../src/resources/ui/virt-viewer.ui.h:17
749770 msgid "_Help"
750771 msgstr "_Hilfe"
751772
752 #: ../src/virt-viewer.xml.h:14
773 #: ../src/resources/ui/virt-viewer.ui.h:18
753774 msgid "_Guest Details"
754 msgstr ""
755
756 #: ../src/virt-viewer-guest-details.xml.h:1
775 msgstr "_Gast Details"
776
777 #: ../src/resources/ui/virt-viewer.ui.h:19
778 msgid "_About"
779 msgstr ""
780
781 #: ../src/resources/ui/virt-viewer.ui.h:20
782 msgid "_Change CD"
783 msgstr "_CD wechseln"
784
785 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
757786 msgid "Guest Details"
758 msgstr ""
759
760 #: ../src/virt-viewer-guest-details.xml.h:2
787 msgstr "Gast Details"
788
789 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
761790 msgid "Name:"
762 msgstr ""
763
764 #: ../src/virt-viewer-guest-details.xml.h:3
791 msgstr "Name:"
792
793 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
765794 msgid "GUID:"
766 msgstr ""
767
768 #: ../src/virt-viewer-vm-connection.xml.h:1
795 msgstr "GUID:"
796
797 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
769798 msgid "Choose a virtual machine"
770 msgstr ""
771
772 #: ../src/virt-viewer-vm-connection.xml.h:2
799 msgstr "Wählen Sie eine virtuelle Maschine"
800
801 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
773802 msgid "Name"
774 msgstr ""
775
776 #: ../src/virt-viewer-vm-connection.xml.h:3
803 msgstr "Name"
804
805 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
777806 msgid "Available virtual machines"
778 msgstr ""
779
780 #: ../src/virt-viewer-preferences.xml.h:2
807 msgstr "Verfügbare virtuelle Maschinen"
808
809 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
810 msgid "Preferences"
811 msgstr "Präferenzen"
812
813 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
781814 msgid "Folder sharing"
782 msgstr ""
783
784 #: ../src/virt-viewer-preferences.xml.h:3
815 msgstr "Ordnerfreigabe"
816
817 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
785818 msgid "Share folder"
786 msgstr ""
787
788 #: ../src/virt-viewer-preferences.xml.h:4
819 msgstr "Ordner freigeben"
820
821 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
789822 msgid "Read-only"
790 msgstr ""
791
792 #: ../src/virt-viewer-preferences.xml.h:5
823 msgstr "Schreibgeschützt"
824
825 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
793826 msgid "Spice"
794 msgstr ""
827 msgstr "Spice"
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: German (Switzerland)\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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/el.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: English (United Kingdom)\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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/eo.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+337
-313
po/es.po less more
1212 # Manuel Eduardo Ospina Sarmiento <mospina@localhost.localdomain>, 2010
1313 # Manuel Ospina <mospina@redhat.com>, 2010
1414 # Abdel G. Martínez L. <abdel.g.martinez.l@gmail.com>, 2015. #zanata
15 # Gladys Guerrero Lozano <gguerrer@redhat.com>, 2016. #zanata
1516 msgid ""
1617 msgstr ""
1718 "Project-Id-Version: PACKAGE VERSION\n"
1819 "Report-Msgid-Bugs-To: \n"
19 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
20 "PO-Revision-Date: 2015-04-17 10:00-0400\n"
21 "Last-Translator: Abdel G. Martínez L. <abdel.g.martinez.l@gmail.com>\n"
20 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
21 "PO-Revision-Date: 2016-02-17 10:54-0500\n"
22 "Last-Translator: Gladys Guerrero Lozano <gguerrer@redhat.com>\n"
2223 "Language-Team: Spanish (http://www.transifex.com/projects/p/virt-viewer/"
2324 "language/es/)\n"
2425 "Language: es\n"
2627 "Content-Type: text/plain; charset=UTF-8\n"
2728 "Content-Transfer-Encoding: 8bit\n"
2829 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
29 "X-Generator: Zanata 3.7.3\n"
30
31 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
30 "X-Generator: Zanata 3.8.4\n"
31
32 #: ../data/remote-viewer.appdata.xml.in.h:1
33 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
3234 msgid "Remote Viewer"
33 msgstr "Visor Remoto"
35 msgstr "Visor remoto"
36
37 #: ../data/remote-viewer.appdata.xml.in.h:2
38 msgid "Remotely access virtual machines"
39 msgstr ""
40
41 #: ../data/remote-viewer.appdata.xml.in.h:3
42 msgid ""
43 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
44 "time it supports guest OS using the VNC or SPICE protocols. Further "
45 "protocols may be supported in the future as user demand dictates. The viewer "
46 "can connect directly to both local and remotely hosted guest OS, optionally "
47 "using SSL/TLS encryption."
48 msgstr ""
3449
3550 #: ../data/remote-viewer.desktop.in.h:2
3651 msgid "Access remote desktops"
4055 msgid "Virt-Viewer connection file"
4156 msgstr "Fichero de conexión Virt-Viewer"
4257
43 #: ../src/gbinding.c:637
44 msgid "Source"
45 msgstr "Fuente"
46
47 #: ../src/gbinding.c:638
48 msgid "The source of the binding"
49 msgstr "La fuente de la conexión"
50
51 #: ../src/gbinding.c:652
52 msgid "Target"
53 msgstr "Destino"
54
55 #: ../src/gbinding.c:653
56 msgid "The target of the binding"
57 msgstr "El destino de la conexión"
58
59 #: ../src/gbinding.c:668
60 msgid "Source Property"
61 msgstr "Propiedad de la Fuente"
62
63 #: ../src/gbinding.c:669
64 msgid "The property on the source to bind"
65 msgstr "La propiedad en la fuente que va a conectar"
66
67 #: ../src/gbinding.c:684
68 msgid "Target Property"
69 msgstr "Propiedad de Destino"
70
71 #: ../src/gbinding.c:685
72 msgid "The property on the target to bind"
73 msgstr "La propiedad en la fuente que va a conectar"
74
75 #: ../src/gbinding.c:699
76 msgid "Flags"
77 msgstr "Indicadores"
78
79 #: ../src/gbinding.c:700
80 msgid "The binding flags"
81 msgstr "Indicadores de conexión"
82
83 #: ../src/remote-viewer-main.c:50
84 #, c-format
85 msgid "remote-viewer version %s"
86 msgstr ""
87
88 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
89 msgid "Display version information"
90 msgstr "Mostrar información de versión"
91
92 #: ../src/remote-viewer-main.c:105
58 #: ../src/remote-viewer.c:139
9359 msgid "Set window title"
9460 msgstr "Fijar el título de ventana"
9561
96 #: ../src/remote-viewer-main.c:108
62 #: ../src/remote-viewer.c:142
9763 msgid "Open connection using Spice controller communication"
9864 msgstr "Abra la conexión mediante el controlador de comunicación Spice "
9965
100 #: ../src/remote-viewer-main.c:120
66 #: ../src/remote-viewer.c:150
10167 msgid "Remote viewer client"
10268 msgstr "Cliente de visor remoto"
10369
104 #: ../src/remote-viewer-main.c:138
105 #, c-format
106 msgid ""
107 "%s\n"
108 "Run '%s --help' to see a full list of available command line options\n"
109 msgstr ""
110 "Ejecute '%s --help' para ver una lista completa de opciones de línea de "
111 "comandos disponibles\n"
112
113 #: ../src/remote-viewer-main.c:149
114 #, c-format
115 msgid "Error: extra arguments given while using Spice controller\n"
116 msgstr ""
117 "Error: argumentos adicionales proporcionados mediante el controlador de "
118 "Spice\n"
119 "\n"
120 "\n"
121 "\n"
122
123 #: ../src/remote-viewer-main.c:156
124 #, c-format
125 msgid "Error: can't handle multiple URIs\n"
126 msgstr "Error: no se puede manipular múltiples URIs\n"
127
128 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
70 #: ../src/remote-viewer.c:175
71 #, c-format
72 msgid ""
73 "\n"
74 "Error: can't handle multiple URIs\n"
75 "\n"
76 msgstr ""
77
78 #: ../src/remote-viewer.c:187
79 #, c-format
80 msgid ""
81 "\n"
82 "Error: extra arguments given while using Spice controller\n"
83 "\n"
84 msgstr ""
85
86 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
87 #, c-format
88 msgid "Run '%s --help' to see a full list of available command line options\n"
89 msgstr ""
90
91 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12992 msgid "Failed to initiate connection"
13093 msgstr "No se pudo inicializar la conexión"
13194
132 #: ../src/remote-viewer.c:313
95 #: ../src/remote-viewer.c:297
13396 msgid "Display disabled by controller"
13497 msgstr "Pantalla desactivada por el controlador"
13598
136 #: ../src/remote-viewer.c:609
99 #: ../src/remote-viewer.c:593
137100 #, c-format
138101 msgid "Controller connection failed: %s"
139102 msgstr "No se pudo conectar al controlador: %s"
140103
141 #: ../src/remote-viewer.c:755
142 msgid "_Change CD"
143 msgstr "_Cambiar CD"
144
145 #: ../src/remote-viewer.c:855
104 #: ../src/remote-viewer.c:848
146105 msgid "failed to parse ovirt uri"
147106 msgstr "fallo en análisis uri de ovirt"
148107
149 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
108 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
150109 msgid "Authentication was cancelled"
151 msgstr ""
152
153 #: ../src/remote-viewer.c:900
110 msgstr "La autenticación fue cancelada"
111
112 #: ../src/remote-viewer.c:893
154113 #, c-format
155114 msgid "oVirt VM %s is not running"
156115 msgstr "la MV oVirt %s no está ejecutándose"
157116
158 #: ../src/remote-viewer.c:914
117 #: ../src/remote-viewer.c:907
159118 #, c-format
160119 msgid "oVirt VM %s has no display"
161120 msgstr "la MV oVirt %s no tiene monitor"
162121
163 #: ../src/remote-viewer.c:940
122 #: ../src/remote-viewer.c:933
164123 #, c-format
165124 msgid "oVirt VM %s has no host information"
166 msgstr ""
167
168 #: ../src/remote-viewer.c:951
125 msgstr "oVirt VM %s no tiene información de host"
126
127 #: ../src/remote-viewer.c:944
169128 #, c-format
170129 msgid "oVirt VM %s has unknown display type: %d"
171130 msgstr "la MV oVirt %s tiene un tipo de monitor desconocido: %d"
172131
173 #: ../src/remote-viewer.c:1094
132 #: ../src/remote-viewer.c:1115
174133 msgid "Setting up Spice session..."
175134 msgstr "Configurando sesión de Spice…"
176135
177 #: ../src/remote-viewer.c:1102
136 #: ../src/remote-viewer.c:1123
178137 msgid "No connection was chosen"
179 msgstr ""
180
181 #: ../src/remote-viewer.c:1120
138 msgstr "No se seleccionó ninguna conexión"
139
140 #: ../src/remote-viewer.c:1141
182141 #, c-format
183142 msgid "Invalid file %s: "
184 msgstr ""
185
186 #: ../src/remote-viewer.c:1128
143 msgstr "Archivo no válido %s: "
144
145 #: ../src/remote-viewer.c:1149
187146 msgid "Cannot determine the connection type from URI"
188147 msgstr "No se puede determinar el tipo de conexión de la URI"
189148
190 #: ../src/remote-viewer.c:1134
149 #: ../src/remote-viewer.c:1155
191150 msgid "Couldn't open oVirt session: "
192 msgstr ""
151 msgstr "No se pudo abrir la sesión oVirt"
193152
194153 #.
195154 #. * Local variables:
198157 #. * indent-tabs-mode: nil
199158 #. * End:
200159 #.
201 #: ../src/remote-viewer-connect.xml.h:1
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
202161 msgid "Connection details"
203162 msgstr "Detalles de conexión"
204163
205 #: ../src/remote-viewer-connect.xml.h:2
206 msgid "Connection Address"
207 msgstr ""
208
209 #: ../src/remote-viewer-connect.xml.h:3
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
165 msgid "Connection _Address"
166 msgstr ""
167
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
210169 msgid "For example, spice://foo.example.org:5900"
211170 msgstr "Por ejemplo, spice://foo.example.org:5900"
212171
213 #: ../src/remote-viewer-connect.xml.h:4
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
214173 msgid "Recent connections"
215 msgstr ""
216
217 #: ../src/remote-viewer-connect.xml.h:5
218 msgid "Cancel"
219 msgstr ""
220
221 #: ../src/remote-viewer-connect.xml.h:6
222 msgid "Connect"
223 msgstr ""
224
225 #: ../src/virt-viewer-about.xml.h:1
226 msgid "About Glade"
227 msgstr "Acerca de Glade"
228
229 #: ../src/virt-viewer-about.xml.h:2
174 msgstr "Conexiones recientes"
175
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:918
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 msgid "_Cancel"
180 msgstr ""
181
182 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
183 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
184 msgid "C_onnect"
185 msgstr ""
186
187 #: ../src/resources/ui/virt-viewer-about.ui.h:1
188 msgid "About Virt-Viewer"
189 msgstr ""
190
191 #: ../src/resources/ui/virt-viewer-about.ui.h:2
230192 msgid ""
231193 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
232194 "Copyright (C) 2007-2014 Red Hat, Inc."
234196 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
235197 "Copyright (C) 2007-2014 Red Hat, Inc."
236198
237 #: ../src/virt-viewer-about.xml.h:4
199 #: ../src/resources/ui/virt-viewer-about.ui.h:4
238200 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
239201 msgstr ""
240202 "Un cliente de escritorio remoto creado con GTK-VNC, SPICE-GTK y libvirt"
241203
242 #: ../src/virt-viewer-about.xml.h:5
204 #: ../src/resources/ui/virt-viewer-about.ui.h:5
243205 msgid "virt-manager.org"
244206 msgstr "virt-manager.org"
245207
246 #: ../src/virt-viewer-about.xml.h:6
208 #: ../src/resources/ui/virt-viewer-about.ui.h:6
247209 msgid ""
248210 "This program is free software; you can redistribute it and/or modify\n"
249211 "it under the terms of the GNU General Public License as published by\n"
273235 "con este programa, si no, escriba a la Free Software Foundation, Inc., 59 "
274236 "Temple Place, Suite 330, Boston, MA 02111-1307 EE.UU. \n"
275237
276 #: ../src/virt-viewer-about.xml.h:20
238 #: ../src/resources/ui/virt-viewer-about.ui.h:20
277239 msgid "The Fedora Translation Team"
278240 msgstr "El Equipo de Traducción de Fedora"
279241
280 #: ../src/virt-viewer-app.c:526
242 #: ../src/virt-viewer-app.c:458
281243 msgid "Do you want to close the session?"
282244 msgstr "¿Quiere cerrar la sesión?"
283245
284 #: ../src/virt-viewer-app.c:528
246 #: ../src/virt-viewer-app.c:460
285247 msgid "Do not ask me again"
286248 msgstr "No me pregunte otra vez"
287249
288 #: ../src/virt-viewer-app.c:1008
250 #: ../src/virt-viewer-app.c:948
289251 #, c-format
290252 msgid "Waiting for display %d..."
291253 msgstr "Esperando el monitor %d…"
292254
293 #: ../src/virt-viewer-app.c:1117
255 #: ../src/virt-viewer-app.c:1055
294256 #, c-format
295257 msgid "Unsupported graphic type '%s'"
296 msgstr ""
297
298 #: ../src/virt-viewer-app.c:1200
258 msgstr "Tipo de gráfico sin soporte '%s'"
259
260 #: ../src/virt-viewer-app.c:1138
299261 msgid "Connect to ssh failed."
300262 msgstr "Falló la conexión a ssh."
301263
302 #: ../src/virt-viewer-app.c:1202
264 #: ../src/virt-viewer-app.c:1140
303265 msgid "Can't connect to channel, SSH only supported."
304266 msgstr "No se puede conectar al canal, solo se permite SSH."
305267
306 #: ../src/virt-viewer-app.c:1214
268 #: ../src/virt-viewer-app.c:1152
307269 msgid "Connect to channel unsupported."
308270 msgstr "La conexión al canal no está soportada."
309271
310 #: ../src/virt-viewer-app.c:1276
272 #: ../src/virt-viewer-app.c:1214
311273 msgid "Display can only be attached through libvirt with --attach"
312274 msgstr "La pantalla solo puede ser unida a través de libvirt con --attach"
313275
314 #: ../src/virt-viewer-app.c:1299
276 #: ../src/virt-viewer-app.c:1237
315277 msgid "Connecting to graphic server"
316278 msgstr "Conectando al servidor gráfico"
317279
318 #: ../src/virt-viewer-app.c:1398
280 #: ../src/virt-viewer-app.c:1336
319281 msgid "Guest domain has shutdown"
320282 msgstr "Dominio de huéspedes se ha apagado"
321283
322 #: ../src/virt-viewer-app.c:1459
284 #: ../src/virt-viewer-app.c:1397
323285 msgid "Connected to graphic server"
324286 msgstr "Conectado al servidor gráfico"
325287
326 #: ../src/virt-viewer-app.c:1486
288 #: ../src/virt-viewer-app.c:1424
327289 #, c-format
328290 msgid "Unable to connect to the graphic server %s"
329291 msgstr "No se pudo conectar al servidor gráfico %s"
330292
331 #: ../src/virt-viewer-app.c:1512
293 #: ../src/virt-viewer-app.c:1450
332294 #, c-format
333295 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
334 msgstr ""
335
336 #: ../src/virt-viewer-app.c:1525
296 msgstr "No se pudo autenticar con el servidor de escritorio remoto en %s: %s\n"
297
298 #: ../src/virt-viewer-app.c:1463
337299 #, c-format
338300 msgid "Unable to authenticate with remote desktop server: %s"
339301 msgstr "No se puede autenticar con el servidor del escritorio remoto: %s"
340302
341 #: ../src/virt-viewer-app.c:1533
303 #: ../src/virt-viewer-app.c:1471
342304 #, c-format
343305 msgid "USB redirection error: %s"
344306 msgstr "Error de redirección USB: %s"
345307
346 #: ../src/virt-viewer-app.c:1786
308 #: ../src/virt-viewer-app.c:1805
347309 #, c-format
348310 msgid "Zoom level must be within %d-%d\n"
349311 msgstr "Nivel de enfoque debe estar dentro de %d-%d\n"
350312
351 #: ../src/virt-viewer-app.c:2296
352 #, c-format
353 msgid "Display %d"
354 msgstr "Monitor %d"
355
356 #: ../src/virt-viewer-app.c:2552
313 #: ../src/virt-viewer-app.c:1858
314 #, c-format
315 msgid "%s\n"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:1868
319 #, c-format
320 msgid "%s version %s"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2292
324 #, c-format
325 msgid "Display _%d"
326 msgstr ""
327
328 #: ../src/virt-viewer-app.c:2548
357329 #, c-format
358330 msgid "Invalid kiosk-quit argument: %s"
359331 msgstr "Argumento kiosk-quit no válido: %s"
332
333 #: ../src/virt-viewer-app.c:2559
334 msgid "Display version information"
335 msgstr "Mostrar información de versión"
360336
361337 #: ../src/virt-viewer-app.c:2561
362338 msgid "Zoom level of window, in percentage"
392368 msgid "Display debugging information"
393369 msgstr "Mostrar información de depuración"
394370
395 #: ../src/virt-viewer-auth.c:88
371 #: ../src/virt-viewer-auth.c:89
396372 #, c-format
397373 msgid ""
398374 "Authentication is required for the %s connection to:\n"
405381 "<b>%s</b>\n"
406382 "\n"
407383
408 #: ../src/virt-viewer-auth.c:92
384 #: ../src/virt-viewer-auth.c:93
409385 #, c-format
410386 msgid "Authentication is required for the %s connection:\n"
411387 msgstr "Autenticación es requerida para la conexión %s:\n"
417393 #. * indent-tabs-mode: nil
418394 #. * End:
419395 #.
420 #: ../src/virt-viewer-auth.xml.h:1
396 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
421397 msgid "Authentication required"
422398 msgstr "Autenticación requerida"
423399
424 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
400 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
401 msgid "_OK"
402 msgstr ""
403
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
405 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
425406 msgid "label"
426407 msgstr "etiqueta"
427408
428 #: ../src/virt-viewer-auth.xml.h:3
409 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
429410 msgid "Password:"
430411 msgstr "Contraseña:"
431412
432 #: ../src/virt-viewer-auth.xml.h:4
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
433414 msgid "Username:"
434415 msgstr "Nombre de usuario:"
435416
436 #: ../src/virt-viewer-auth.xml.h:5
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
437418 msgid "Show password"
438419 msgstr "Mostrar contraseña"
439420
440 #: ../src/virt-viewer-display-vnc.c:133
421 #: ../src/virt-viewer-display-vnc.c:134
441422 msgid "VNC does not provide GUID"
423 msgstr "VNC no proporciona GUID"
424
425 #: ../src/virt-viewer-file-transfer-dialog.c:152
426 msgid "Cancel"
427 msgstr "Cancelar"
428
429 #: ../src/virt-viewer-file-transfer-dialog.c:163
430 msgid "File Transfers"
442431 msgstr ""
443432
444433 #: ../src/virt-viewer-main.c:38
445 #, c-format
446 msgid "%s version %s\n"
447 msgstr "%s versión %s\n"
448
449 #: ../src/virt-viewer-main.c:62
450 msgid "Direct connection with no automatic tunnels"
451 msgstr "Conexión directa sin túneles automáticos"
452
453 #: ../src/virt-viewer-main.c:64
454 msgid "Attach to the local display using libvirt"
455 msgstr "Añadir a la pantalla local mediante libvirt"
456
457 #: ../src/virt-viewer-main.c:66
458 msgid "Connect to hypervisor"
459 msgstr "Conectar al hipervisor"
460
461 #: ../src/virt-viewer-main.c:68
462 msgid "Wait for domain to start"
463 msgstr "Esperando a que inicie el dominio"
464
465 #: ../src/virt-viewer-main.c:70
466 msgid "Reconnect to domain upon restart"
467 msgstr "Reconéctese al dominio tras el reinicio"
468
469 #: ../src/virt-viewer-main.c:77
470434 msgid "Virt Viewer"
471435 msgstr "Virt Viewer"
472436
473 #: ../src/virt-viewer-main.c:80
474 #, c-format
475 msgid "Run '%s --help' to see a full list of available command line options"
476 msgstr ""
477 "Ejecutando ‘%s –help’ puede ver una lista completa de las opciones "
478 "disponibles de líneas de comando"
479
480 #: ../src/virt-viewer-main.c:86
481 msgid "Virtual machine graphical console"
482 msgstr "Consola gráfica de la máquina virtual"
483
484 #: ../src/virt-viewer-main.c:107
485 #, c-format
486 msgid ""
487 "\n"
488 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
489 "\n"
490 "%s\n"
491 "\n"
492 msgstr ""
493
494 #: ../src/virt-viewer-main.c:112
495 #, c-format
496 msgid ""
497 "\n"
498 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
499 "\n"
500 msgstr ""
501
502 #: ../src/virt-viewer-session-spice.c:694
437 #: ../src/virt-viewer-session-spice.c:705
503438 msgid "Invalid password"
504439 msgstr "Contraseña inválida"
505440
506441 #. Create the widgets
507 #: ../src/virt-viewer-session-spice.c:786
442 #: ../src/virt-viewer-session-spice.c:797
508443 msgid "Select USB devices for redirection"
509444 msgstr "Seleccione los dispositivos USB para redirigir"
510445
511 #: ../src/virt-viewer-session-vnc.c:153
446 #: ../src/virt-viewer-session-spice.c:799
447 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
448 msgid "_Close"
449 msgstr ""
450
451 #: ../src/virt-viewer-session-vnc.c:156
512452 #, c-format
513453 msgid "Unsupported authentication type %d"
514454 msgstr "Tipo de autenticación no compatible %d"
519459
520460 #: ../src/virt-viewer-vm-connection.c:93
521461 msgid "No virtual machine was chosen"
522 msgstr ""
523
524 #: ../src/virt-viewer-window.c:537
462 msgstr "No se ha elegido ninguna máquina virtual"
463
464 #: ../src/virt-viewer-window.c:534
525465 msgid "Ctrl+Alt+_Del"
526466 msgstr "Ctrl+Alt+_Supr"
527467
528 #: ../src/virt-viewer-window.c:538
468 #: ../src/virt-viewer-window.c:535
529469 msgid "Ctrl+Alt+_Backspace"
530470 msgstr "Ctrl+Alt+_Retroceso"
531471
532 #: ../src/virt-viewer-window.c:540
472 #: ../src/virt-viewer-window.c:537
533473 msgid "Ctrl+Alt+F_1"
534474 msgstr "Ctrl+Alt+F_1"
535475
536 #: ../src/virt-viewer-window.c:541
476 #: ../src/virt-viewer-window.c:538
537477 msgid "Ctrl+Alt+F_2"
538478 msgstr "Ctrl+Alt+F_2"
539479
540 #: ../src/virt-viewer-window.c:542
480 #: ../src/virt-viewer-window.c:539
541481 msgid "Ctrl+Alt+F_3"
542482 msgstr "Ctrl+Alt+F_3"
543483
544 #: ../src/virt-viewer-window.c:543
484 #: ../src/virt-viewer-window.c:540
545485 msgid "Ctrl+Alt+F_4"
546486 msgstr "Ctrl+Alt+F_4"
547487
548 #: ../src/virt-viewer-window.c:544
488 #: ../src/virt-viewer-window.c:541
549489 msgid "Ctrl+Alt+F_5"
550490 msgstr "Ctrl+Alt+F_5"
551491
552 #: ../src/virt-viewer-window.c:545
492 #: ../src/virt-viewer-window.c:542
553493 msgid "Ctrl+Alt+F_6"
554494 msgstr "Ctrl+Alt+F_6"
555495
556 #: ../src/virt-viewer-window.c:546
496 #: ../src/virt-viewer-window.c:543
557497 msgid "Ctrl+Alt+F_7"
558498 msgstr "Ctrl+Alt+F_7"
559499
560 #: ../src/virt-viewer-window.c:547
500 #: ../src/virt-viewer-window.c:544
561501 msgid "Ctrl+Alt+F_8"
562502 msgstr "Ctrl+Alt+F_8"
563503
564 #: ../src/virt-viewer-window.c:548
504 #: ../src/virt-viewer-window.c:545
565505 msgid "Ctrl+Alt+F_9"
566506 msgstr "Ctrl+Alt+F_9"
567507
568 #: ../src/virt-viewer-window.c:549
508 #: ../src/virt-viewer-window.c:546
569509 msgid "Ctrl+Alt+F1_0"
570510 msgstr "Ctrl+Alt+F1_0"
571511
572 #: ../src/virt-viewer-window.c:550
512 #: ../src/virt-viewer-window.c:547
573513 msgid "Ctrl+Alt+F11"
574514 msgstr "Ctrl+Alt+F11"
575515
576 #: ../src/virt-viewer-window.c:551
516 #: ../src/virt-viewer-window.c:548
577517 msgid "Ctrl+Alt+F12"
578518 msgstr "Ctrl+Alt+F12"
579519
580 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
520 #: ../src/virt-viewer-window.c:919
521 msgid "_Save"
522 msgstr ""
523
524 #: ../src/virt-viewer-window.c:927
581525 msgid "Screenshot"
582526 msgstr "Captura de pantalla"
583527
584 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
528 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
585529 msgid "Unknown"
586530 msgstr "Desconocido"
587531
588 #: ../src/virt-viewer-window.c:1062
532 #: ../src/virt-viewer-window.c:1071
589533 msgid "Disconnect"
590534 msgstr "Desconectar"
591535
592 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
593 #: ../src/virt-viewer.xml.h:3
536 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
594537 msgid "USB device selection"
595538 msgstr "Selección de dispositivos USB"
596539
597 #: ../src/virt-viewer-window.c:1081
540 #: ../src/virt-viewer-window.c:1089
598541 msgid "Send key combination"
599542 msgstr "Enviar combinación de teclas"
600543
601 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
544 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
602545 msgid "Leave fullscreen"
603546 msgstr "Salir de pantalla completa"
604547
605 #: ../src/virt-viewer-window.c:1173
548 #: ../src/virt-viewer-window.c:1175
606549 msgid "Ctrl+Alt"
607550 msgstr "Ctrl+Alt"
608551
609 #: ../src/virt-viewer-window.c:1176
552 #: ../src/virt-viewer-window.c:1178
610553 #, c-format
611554 msgid "(Press %s to release pointer)"
612555 msgstr "(Presione %s para liberar el puntero)"
615558 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
616559 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
617560 #.
618 #: ../src/virt-viewer-window.c:1187
561 #: ../src/virt-viewer-window.c:1189
619562 #, c-format
620563 msgid "%s%s%s - %s"
621564 msgstr "%s%s%s - %s"
622565
623566 #. translators: <space>
624 #: ../src/virt-viewer-window.c:1191
567 #: ../src/virt-viewer-window.c:1193
625568 msgid " "
626569 msgstr " "
627570
628 #: ../src/virt-viewer-file.c:825
571 #: ../src/virt-viewer-file.c:843
629572 #, c-format
630573 msgid ""
631574 "At least %s version %s is required to setup this connection, see %s for "
632575 "details"
633576 msgstr ""
634
635 #: ../src/virt-viewer-file.c:833
577 "Por lo menos %s versión %s se requiere para establecer esta conexión, "
578 "consulte %s para más información"
579
580 #: ../src/virt-viewer-file.c:851
636581 #, c-format
637582 msgid "At least %s version %s is required to setup this connection"
638583 msgstr "Al menos la %s versión %s es requerida para configurar esta conexión"
639584
640 #: ../src/virt-viewer.c:163
585 #: ../src/virt-viewer.c:90
586 msgid "Direct connection with no automatic tunnels"
587 msgstr "Conexión directa sin túneles automáticos"
588
589 #: ../src/virt-viewer.c:92
590 msgid "Attach to the local display using libvirt"
591 msgstr "Añadir a la pantalla local mediante libvirt"
592
593 #: ../src/virt-viewer.c:94
594 msgid "Connect to hypervisor"
595 msgstr "Conectar al hipervisor"
596
597 #: ../src/virt-viewer.c:96
598 msgid "Wait for domain to start"
599 msgstr "Esperando a que inicie el dominio"
600
601 #: ../src/virt-viewer.c:98
602 msgid "Reconnect to domain upon restart"
603 msgstr "Reconéctese al dominio tras el reinicio"
604
605 #: ../src/virt-viewer.c:105
606 msgid "Virtual machine graphical console"
607 msgstr "Consola gráfica de la máquina virtual"
608
609 #: ../src/virt-viewer.c:124
610 #, c-format
611 msgid ""
612 "\n"
613 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
614 "\n"
615 msgstr ""
616
617 #: ../src/virt-viewer.c:136
618 #, c-format
619 msgid ""
620 "\n"
621 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
622 "\n"
623 msgstr ""
624 "\n"
625 "No se ha especificado ningún DOMAIN-NAME|ID|UUID para '--wait'\n"
626 "\n"
627
628 #: ../src/virt-viewer.c:250
641629 msgid "Waiting for guest domain to re-start"
642630 msgstr "Esperando a que el dominio de huéspedes reinicie"
643631
644 #: ../src/virt-viewer.c:409
632 #: ../src/virt-viewer.c:496
645633 #, c-format
646634 msgid "Cannot determine the graphic type for the guest %s"
647635 msgstr "No se puede determinar el tipo de gráficos para el huésped %s"
648636
649 #: ../src/virt-viewer.c:448
637 #: ../src/virt-viewer.c:535
650638 #, c-format
651639 msgid "Cannot determine the host for the guest %s"
652640 msgstr "No se puede determinar el anfitrión para el huésped %s"
653641
654 #: ../src/virt-viewer.c:476
642 #: ../src/virt-viewer.c:563
655643 #, c-format
656644 msgid "Guest '%s' is not reachable"
657645 msgstr "Huésped '%s' no está alcanzable"
658646
659 #: ../src/virt-viewer.c:697
647 #: ../src/virt-viewer.c:784
660648 #, c-format
661649 msgid "Virtual machine %s is not running"
662650 msgstr "Máquina virtual %s no está en ejecución"
663651
664 #: ../src/virt-viewer.c:720
652 #: ../src/virt-viewer.c:807
665653 msgid "Waiting for libvirt to start"
666654 msgstr "Esperando a libvirt para inicio"
667655
668 #: ../src/virt-viewer.c:724
656 #: ../src/virt-viewer.c:811
669657 msgid "Finding guest domain"
670658 msgstr "Buscando dominio de huéspedes"
671659
672 #: ../src/virt-viewer.c:728
660 #: ../src/virt-viewer.c:815
673661 msgid "Waiting for guest domain to be created"
674662 msgstr "Esperando a que el dominio de huéspedes sea creado"
675663
676 #: ../src/virt-viewer.c:750
664 #: ../src/virt-viewer.c:837
677665 msgid "Checking guest domain status"
678666 msgstr "Comprobando el estatus del dominio de huéspedes"
679667
680 #: ../src/virt-viewer.c:753
668 #: ../src/virt-viewer.c:840
681669 msgid "Cannot get guest state"
682 msgstr ""
683
684 #: ../src/virt-viewer.c:759
670 msgstr "No es posible obtener estado de huésped"
671
672 #: ../src/virt-viewer.c:846
685673 msgid "Waiting for guest domain to start"
686674 msgstr "Esperando a que dominio de huéspedes inicie"
687675
688 #: ../src/virt-viewer.c:863
676 #: ../src/virt-viewer.c:950
689677 #, c-format
690678 msgid "Unable to connect to libvirt with URI: %s."
691679 msgstr "No puede conectarse a libvirt con URI: %s."
692680
693 #: ../src/virt-viewer.c:864
681 #: ../src/virt-viewer.c:951
694682 msgid "[none]"
695683 msgstr "[ninguno]"
696684
697 #: ../src/virt-viewer.c:871
685 #: ../src/virt-viewer.c:958
698686 msgid "Authentication failed."
699687 msgstr "Fallo de autenticación."
700688
701 #: ../src/virt-viewer.c:931
689 #: ../src/virt-viewer.c:1018
702690 msgid "Failed to connect: "
703 msgstr ""
691 msgstr "Falló al conectarse a:"
704692
705693 #.
706694 #. * Local variables:
709697 #. * indent-tabs-mode: nil
710698 #. * End:
711699 #.
712 #: ../src/virt-viewer.xml.h:1
700 #: ../src/resources/ui/virt-viewer.ui.h:1
713701 msgid "_File"
714702 msgstr "_Fichero"
715703
716 #: ../src/virt-viewer.xml.h:4
704 #: ../src/resources/ui/virt-viewer.ui.h:2
705 msgid "_Screenshot"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:3
709 msgid "_USB device selection"
710 msgstr ""
711
712 #: ../src/resources/ui/virt-viewer.ui.h:4
717713 msgid "Smartcard insertion"
718714 msgstr "Inserción de smartcard"
719715
720 #: ../src/virt-viewer.xml.h:5
716 #: ../src/resources/ui/virt-viewer.ui.h:5
721717 msgid "Smartcard removal"
722718 msgstr "Retiro de smartcard"
723719
724 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
725 msgid "Preferences"
726 msgstr ""
727
728 #: ../src/virt-viewer.xml.h:7
720 #: ../src/resources/ui/virt-viewer.ui.h:6
721 msgid "_Preferences"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:7
725 msgid "_Quit"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:8
729729 msgid "_View"
730730 msgstr "_Ver"
731731
732 #: ../src/virt-viewer.xml.h:8
733 msgid "Full screen"
734 msgstr "Pantalla completa"
735
736 #: ../src/virt-viewer.xml.h:9
732 #: ../src/resources/ui/virt-viewer.ui.h:9
733 msgid "_Full screen"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:10
737737 msgid "_Zoom"
738738 msgstr "_Enfoque"
739739
740 #: ../src/virt-viewer.xml.h:10
741 msgid "Displays"
742 msgstr "Pantallas"
743
744 #: ../src/virt-viewer.xml.h:11
740 #: ../src/resources/ui/virt-viewer.ui.h:11
741 msgid "Zoom _In"
742 msgstr ""
743
744 #: ../src/resources/ui/virt-viewer.ui.h:12
745 msgid "Zoom _Out"
746 msgstr ""
747
748 #: ../src/resources/ui/virt-viewer.ui.h:13
749 msgid "_Normal Size"
750 msgstr ""
751
752 #: ../src/resources/ui/virt-viewer.ui.h:14
753 msgid "_Displays"
754 msgstr ""
755
756 #: ../src/resources/ui/virt-viewer.ui.h:15
745757 msgid "Release cursor"
746758 msgstr "Liberar cursor"
747759
748 #: ../src/virt-viewer.xml.h:12
760 #: ../src/resources/ui/virt-viewer.ui.h:16
749761 msgid "_Send key"
750762 msgstr "_Enviar llave"
751763
752 #: ../src/virt-viewer.xml.h:13
764 #: ../src/resources/ui/virt-viewer.ui.h:17
753765 msgid "_Help"
754766 msgstr "_Ayuda"
755767
756 #: ../src/virt-viewer.xml.h:14
768 #: ../src/resources/ui/virt-viewer.ui.h:18
757769 msgid "_Guest Details"
758770 msgstr "_Detalles de Huésped"
759771
760 #: ../src/virt-viewer-guest-details.xml.h:1
772 #: ../src/resources/ui/virt-viewer.ui.h:19
773 msgid "_About"
774 msgstr ""
775
776 #: ../src/resources/ui/virt-viewer.ui.h:20
777 msgid "_Change CD"
778 msgstr "_Cambiar CD"
779
780 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
761781 msgid "Guest Details"
762782 msgstr "Detalles de Huésped"
763783
764 #: ../src/virt-viewer-guest-details.xml.h:2
784 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
765785 msgid "Name:"
766786 msgstr "Nombre:"
767787
768 #: ../src/virt-viewer-guest-details.xml.h:3
788 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
769789 msgid "GUID:"
770790 msgstr "GUID:"
771791
772 #: ../src/virt-viewer-vm-connection.xml.h:1
792 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
773793 msgid "Choose a virtual machine"
774794 msgstr "Elija una máquina virtual"
775795
776 #: ../src/virt-viewer-vm-connection.xml.h:2
796 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
777797 msgid "Name"
778798 msgstr "Nombre"
779799
780 #: ../src/virt-viewer-vm-connection.xml.h:3
800 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
781801 msgid "Available virtual machines"
782802 msgstr "Máquinas virtuales disponibles"
783803
784 #: ../src/virt-viewer-preferences.xml.h:2
804 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
805 msgid "Preferences"
806 msgstr "Preferencias"
807
808 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
785809 msgid "Folder sharing"
786 msgstr ""
787
788 #: ../src/virt-viewer-preferences.xml.h:3
810 msgstr "Compartición de carpeta"
811
812 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
789813 msgid "Share folder"
790 msgstr ""
791
792 #: ../src/virt-viewer-preferences.xml.h:4
814 msgstr "Compartir capr"
815
816 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
793817 msgid "Read-only"
794 msgstr ""
795
796 #: ../src/virt-viewer-preferences.xml.h:5
818 msgstr "Sólo lectura"
819
820 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
797821 msgid "Spice"
798 msgstr ""
822 msgstr "Spice"
+343
-316
po/et.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+310
-283
po/eu.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Basque (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
25 msgstr ""
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
2438 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Virt-Viewer connection file"
3246 msgstr ""
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr ""
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr ""
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr ""
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr ""
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr ""
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr ""
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr ""
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr ""
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr ""
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr ""
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "Bistaratu bertsio informazioa"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr ""
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr ""
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101
102 #: ../src/remote-viewer-main.c:149
103 #, c-format
104 msgid "Error: extra arguments given while using Spice controller\n"
105 msgstr ""
106
107 #: ../src/remote-viewer-main.c:156
108 #, c-format
109 msgid "Error: can't handle multiple URIs\n"
110 msgstr ""
111
112 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11382 msgid "Failed to initiate connection"
11483 msgstr ""
11584
116 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
11786 msgid "Display disabled by controller"
11887 msgstr ""
11988
120 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12190 #, c-format
12291 msgid "Controller connection failed: %s"
12392 msgstr ""
12493
125 #: ../src/remote-viewer.c:755
126 msgid "_Change CD"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13095 msgid "failed to parse ovirt uri"
13196 msgstr ""
13297
133 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13499 msgid "Authentication was cancelled"
135100 msgstr ""
136101
137 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
138103 #, c-format
139104 msgid "oVirt VM %s is not running"
140105 msgstr ""
141106
142 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
143108 #, c-format
144109 msgid "oVirt VM %s has no display"
145110 msgstr ""
146111
147 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
148113 #, c-format
149114 msgid "oVirt VM %s has no host information"
150115 msgstr ""
151116
152 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
153118 #, c-format
154119 msgid "oVirt VM %s has unknown display type: %d"
155120 msgstr ""
156121
157 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
158123 msgid "Setting up Spice session..."
159124 msgstr ""
160125
161 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
162127 msgid "No connection was chosen"
163128 msgstr ""
164129
165 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
166131 #, c-format
167132 msgid "Invalid file %s: "
168133 msgstr ""
169134
170 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
171136 msgid "Cannot determine the connection type from URI"
172137 msgstr ""
173138
174 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
175140 msgid "Couldn't open oVirt session: "
176141 msgstr ""
177142
182147 #. * indent-tabs-mode: nil
183148 #. * End:
184149 #.
185 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
186151 msgid "Connection details"
187152 msgstr ""
188153
189 #: ../src/remote-viewer-connect.xml.h:2
190 msgid "Connection Address"
191 msgstr ""
192
193 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
194159 msgid "For example, spice://foo.example.org:5900"
195160 msgstr ""
196161
197 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
198163 msgid "Recent connections"
199164 msgstr ""
200165
201 #: ../src/remote-viewer-connect.xml.h:5
202 msgid "Cancel"
203 msgstr ""
204
205 #: ../src/remote-viewer-connect.xml.h:6
206 msgid "Connect"
207 msgstr ""
208
209 #: ../src/virt-viewer-about.xml.h:1
210 msgid "About Glade"
211 msgstr "Glade-ri buruz"
212
213 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
214182 msgid ""
215183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216184 "Copyright (C) 2007-2014 Red Hat, Inc."
217185 msgstr ""
218186
219 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
220188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221189 msgstr ""
222190
223 #: ../src/virt-viewer-about.xml.h:5
191 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224192 msgid "virt-manager.org"
225193 msgstr ""
226194
227 #: ../src/virt-viewer-about.xml.h:6
195 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228196 msgid ""
229197 "This program is free software; you can redistribute it and/or modify\n"
230198 "it under the terms of the GNU General Public License as published by\n"
241209 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
242210 msgstr ""
243211
244 #: ../src/virt-viewer-about.xml.h:20
212 #: ../src/resources/ui/virt-viewer-about.ui.h:20
245213 msgid "The Fedora Translation Team"
246214 msgstr ""
247215
248 #: ../src/virt-viewer-app.c:526
216 #: ../src/virt-viewer-app.c:458
249217 msgid "Do you want to close the session?"
250218 msgstr ""
251219
252 #: ../src/virt-viewer-app.c:528
220 #: ../src/virt-viewer-app.c:460
253221 msgid "Do not ask me again"
254222 msgstr ""
255223
256 #: ../src/virt-viewer-app.c:1008
224 #: ../src/virt-viewer-app.c:948
257225 #, c-format
258226 msgid "Waiting for display %d..."
259227 msgstr ""
260228
261 #: ../src/virt-viewer-app.c:1117
229 #: ../src/virt-viewer-app.c:1055
262230 #, c-format
263231 msgid "Unsupported graphic type '%s'"
264232 msgstr ""
265233
266 #: ../src/virt-viewer-app.c:1200
234 #: ../src/virt-viewer-app.c:1138
267235 msgid "Connect to ssh failed."
268236 msgstr ""
269237
270 #: ../src/virt-viewer-app.c:1202
238 #: ../src/virt-viewer-app.c:1140
271239 msgid "Can't connect to channel, SSH only supported."
272240 msgstr ""
273241
242 #: ../src/virt-viewer-app.c:1152
243 msgid "Connect to channel unsupported."
244 msgstr ""
245
274246 #: ../src/virt-viewer-app.c:1214
275 msgid "Connect to channel unsupported."
276 msgstr ""
277
278 #: ../src/virt-viewer-app.c:1276
279247 msgid "Display can only be attached through libvirt with --attach"
280248 msgstr ""
281249
282 #: ../src/virt-viewer-app.c:1299
250 #: ../src/virt-viewer-app.c:1237
283251 msgid "Connecting to graphic server"
284252 msgstr ""
285253
286 #: ../src/virt-viewer-app.c:1398
254 #: ../src/virt-viewer-app.c:1336
287255 msgid "Guest domain has shutdown"
288256 msgstr ""
289257
290 #: ../src/virt-viewer-app.c:1459
258 #: ../src/virt-viewer-app.c:1397
291259 msgid "Connected to graphic server"
292260 msgstr ""
293261
294 #: ../src/virt-viewer-app.c:1486
262 #: ../src/virt-viewer-app.c:1424
295263 #, c-format
296264 msgid "Unable to connect to the graphic server %s"
297265 msgstr ""
298266
299 #: ../src/virt-viewer-app.c:1512
267 #: ../src/virt-viewer-app.c:1450
300268 #, c-format
301269 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
302270 msgstr ""
303271
304 #: ../src/virt-viewer-app.c:1525
272 #: ../src/virt-viewer-app.c:1463
305273 #, c-format
306274 msgid "Unable to authenticate with remote desktop server: %s"
307275 msgstr ""
308276
309 #: ../src/virt-viewer-app.c:1533
277 #: ../src/virt-viewer-app.c:1471
310278 #, c-format
311279 msgid "USB redirection error: %s"
312280 msgstr ""
313281
314 #: ../src/virt-viewer-app.c:1786
282 #: ../src/virt-viewer-app.c:1805
315283 #, c-format
316284 msgid "Zoom level must be within %d-%d\n"
317285 msgstr ""
318286
319 #: ../src/virt-viewer-app.c:2296
320 #, c-format
321 msgid "Display %d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2552
287 #: ../src/virt-viewer-app.c:1858
288 #, c-format
289 msgid "%s\n"
290 msgstr ""
291
292 #: ../src/virt-viewer-app.c:1868
293 #, c-format
294 msgid "%s version %s"
295 msgstr ""
296
297 #: ../src/virt-viewer-app.c:2292
298 #, c-format
299 msgid "Display _%d"
300 msgstr ""
301
302 #: ../src/virt-viewer-app.c:2548
325303 #, c-format
326304 msgid "Invalid kiosk-quit argument: %s"
327305 msgstr ""
306
307 #: ../src/virt-viewer-app.c:2559
308 msgid "Display version information"
309 msgstr "Bistaratu bertsio informazioa"
328310
329311 #: ../src/virt-viewer-app.c:2561
330312 msgid "Zoom level of window, in percentage"
358340 msgid "Display debugging information"
359341 msgstr "Bistaratu arazketa informazioa"
360342
361 #: ../src/virt-viewer-auth.c:88
343 #: ../src/virt-viewer-auth.c:89
362344 #, c-format
363345 msgid ""
364346 "Authentication is required for the %s connection to:\n"
367349 "\n"
368350 msgstr ""
369351
370 #: ../src/virt-viewer-auth.c:92
352 #: ../src/virt-viewer-auth.c:93
371353 #, c-format
372354 msgid "Authentication is required for the %s connection:\n"
373355 msgstr ""
379361 #. * indent-tabs-mode: nil
380362 #. * End:
381363 #.
382 #: ../src/virt-viewer-auth.xml.h:1
364 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
383365 msgid "Authentication required"
384366 msgstr ""
385367
386 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
368 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
369 msgid "_OK"
370 msgstr ""
371
372 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
373 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
387374 msgid "label"
388375 msgstr "etiketa"
389376
390 #: ../src/virt-viewer-auth.xml.h:3
377 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
391378 msgid "Password:"
392379 msgstr "Pasahitza:"
393380
394 #: ../src/virt-viewer-auth.xml.h:4
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
395382 msgid "Username:"
396383 msgstr "Erabiltzaile-izena:"
397384
398 #: ../src/virt-viewer-auth.xml.h:5
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
399386 msgid "Show password"
400387 msgstr ""
401388
402 #: ../src/virt-viewer-display-vnc.c:133
389 #: ../src/virt-viewer-display-vnc.c:134
403390 msgid "VNC does not provide GUID"
404391 msgstr ""
405392
393 #: ../src/virt-viewer-file-transfer-dialog.c:152
394 msgid "Cancel"
395 msgstr ""
396
397 #: ../src/virt-viewer-file-transfer-dialog.c:163
398 msgid "File Transfers"
399 msgstr ""
400
406401 #: ../src/virt-viewer-main.c:38
407 #, c-format
408 msgid "%s version %s\n"
409 msgstr "%s bertsioa %s\n"
410
411 #: ../src/virt-viewer-main.c:62
412 msgid "Direct connection with no automatic tunnels"
413 msgstr ""
414
415 #: ../src/virt-viewer-main.c:64
416 msgid "Attach to the local display using libvirt"
417 msgstr ""
418
419 #: ../src/virt-viewer-main.c:66
420 msgid "Connect to hypervisor"
421 msgstr ""
422
423 #: ../src/virt-viewer-main.c:68
424 msgid "Wait for domain to start"
425 msgstr ""
426
427 #: ../src/virt-viewer-main.c:70
428 msgid "Reconnect to domain upon restart"
429 msgstr ""
430
431 #: ../src/virt-viewer-main.c:77
432402 msgid "Virt Viewer"
433403 msgstr ""
434404
435 #: ../src/virt-viewer-main.c:80
436 #, c-format
437 msgid "Run '%s --help' to see a full list of available command line options"
438 msgstr ""
439
440 #: ../src/virt-viewer-main.c:86
441 msgid "Virtual machine graphical console"
442 msgstr ""
443
444 #: ../src/virt-viewer-main.c:107
445 #, c-format
446 msgid ""
447 "\n"
448 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
449 "\n"
450 "%s\n"
451 "\n"
452 msgstr ""
453
454 #: ../src/virt-viewer-main.c:112
455 #, c-format
456 msgid ""
457 "\n"
458 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
459 "\n"
460 msgstr ""
461
462 #: ../src/virt-viewer-session-spice.c:694
405 #: ../src/virt-viewer-session-spice.c:705
463406 msgid "Invalid password"
464407 msgstr ""
465408
466409 #. Create the widgets
467 #: ../src/virt-viewer-session-spice.c:786
410 #: ../src/virt-viewer-session-spice.c:797
468411 msgid "Select USB devices for redirection"
469412 msgstr ""
470413
471 #: ../src/virt-viewer-session-vnc.c:153
414 #: ../src/virt-viewer-session-spice.c:799
415 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
416 msgid "_Close"
417 msgstr ""
418
419 #: ../src/virt-viewer-session-vnc.c:156
472420 #, c-format
473421 msgid "Unsupported authentication type %d"
474422 msgstr ""
481429 msgid "No virtual machine was chosen"
482430 msgstr ""
483431
432 #: ../src/virt-viewer-window.c:534
433 msgid "Ctrl+Alt+_Del"
434 msgstr ""
435
436 #: ../src/virt-viewer-window.c:535
437 msgid "Ctrl+Alt+_Backspace"
438 msgstr ""
439
484440 #: ../src/virt-viewer-window.c:537
485 msgid "Ctrl+Alt+_Del"
441 msgid "Ctrl+Alt+F_1"
486442 msgstr ""
487443
488444 #: ../src/virt-viewer-window.c:538
489 msgid "Ctrl+Alt+_Backspace"
445 msgid "Ctrl+Alt+F_2"
446 msgstr ""
447
448 #: ../src/virt-viewer-window.c:539
449 msgid "Ctrl+Alt+F_3"
490450 msgstr ""
491451
492452 #: ../src/virt-viewer-window.c:540
493 msgid "Ctrl+Alt+F_1"
453 msgid "Ctrl+Alt+F_4"
494454 msgstr ""
495455
496456 #: ../src/virt-viewer-window.c:541
497 msgid "Ctrl+Alt+F_2"
457 msgid "Ctrl+Alt+F_5"
498458 msgstr ""
499459
500460 #: ../src/virt-viewer-window.c:542
501 msgid "Ctrl+Alt+F_3"
461 msgid "Ctrl+Alt+F_6"
502462 msgstr ""
503463
504464 #: ../src/virt-viewer-window.c:543
505 msgid "Ctrl+Alt+F_4"
465 msgid "Ctrl+Alt+F_7"
506466 msgstr ""
507467
508468 #: ../src/virt-viewer-window.c:544
509 msgid "Ctrl+Alt+F_5"
469 msgid "Ctrl+Alt+F_8"
510470 msgstr ""
511471
512472 #: ../src/virt-viewer-window.c:545
513 msgid "Ctrl+Alt+F_6"
473 msgid "Ctrl+Alt+F_9"
514474 msgstr ""
515475
516476 #: ../src/virt-viewer-window.c:546
517 msgid "Ctrl+Alt+F_7"
477 msgid "Ctrl+Alt+F1_0"
518478 msgstr ""
519479
520480 #: ../src/virt-viewer-window.c:547
521 msgid "Ctrl+Alt+F_8"
481 msgid "Ctrl+Alt+F11"
522482 msgstr ""
523483
524484 #: ../src/virt-viewer-window.c:548
525 msgid "Ctrl+Alt+F_9"
526 msgstr ""
527
528 #: ../src/virt-viewer-window.c:549
529 msgid "Ctrl+Alt+F1_0"
530 msgstr ""
531
532 #: ../src/virt-viewer-window.c:550
533 msgid "Ctrl+Alt+F11"
534 msgstr ""
535
536 #: ../src/virt-viewer-window.c:551
537485 msgid "Ctrl+Alt+F12"
538486 msgstr ""
539487
540 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
488 #: ../src/virt-viewer-window.c:919
489 msgid "_Save"
490 msgstr ""
491
492 #: ../src/virt-viewer-window.c:927
541493 msgid "Screenshot"
542494 msgstr "Pantaila-argazkia"
543495
544 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
496 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
545497 msgid "Unknown"
546498 msgstr ""
547499
548 #: ../src/virt-viewer-window.c:1062
500 #: ../src/virt-viewer-window.c:1071
549501 msgid "Disconnect"
550502 msgstr "Deskonektatu"
551503
552 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
553 #: ../src/virt-viewer.xml.h:3
504 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
554505 msgid "USB device selection"
555506 msgstr "USB gailuaren hautapena"
556507
557 #: ../src/virt-viewer-window.c:1081
508 #: ../src/virt-viewer-window.c:1089
558509 msgid "Send key combination"
559510 msgstr ""
560511
561 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
512 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
562513 msgid "Leave fullscreen"
563514 msgstr "Irten pantaila osotik"
564515
565 #: ../src/virt-viewer-window.c:1173
516 #: ../src/virt-viewer-window.c:1175
566517 msgid "Ctrl+Alt"
567518 msgstr ""
568519
569 #: ../src/virt-viewer-window.c:1176
520 #: ../src/virt-viewer-window.c:1178
570521 #, c-format
571522 msgid "(Press %s to release pointer)"
572523 msgstr ""
575526 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
576527 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
577528 #.
578 #: ../src/virt-viewer-window.c:1187
529 #: ../src/virt-viewer-window.c:1189
579530 #, c-format
580531 msgid "%s%s%s - %s"
581532 msgstr "%s%s%s - %s"
582533
583534 #. translators: <space>
584 #: ../src/virt-viewer-window.c:1191
535 #: ../src/virt-viewer-window.c:1193
585536 msgid " "
586537 msgstr " "
587538
588 #: ../src/virt-viewer-file.c:825
539 #: ../src/virt-viewer-file.c:843
589540 #, c-format
590541 msgid ""
591542 "At least %s version %s is required to setup this connection, see %s for "
592543 "details"
593544 msgstr ""
594545
595 #: ../src/virt-viewer-file.c:833
546 #: ../src/virt-viewer-file.c:851
596547 #, c-format
597548 msgid "At least %s version %s is required to setup this connection"
598549 msgstr ""
599550
600 #: ../src/virt-viewer.c:163
551 #: ../src/virt-viewer.c:90
552 msgid "Direct connection with no automatic tunnels"
553 msgstr ""
554
555 #: ../src/virt-viewer.c:92
556 msgid "Attach to the local display using libvirt"
557 msgstr ""
558
559 #: ../src/virt-viewer.c:94
560 msgid "Connect to hypervisor"
561 msgstr ""
562
563 #: ../src/virt-viewer.c:96
564 msgid "Wait for domain to start"
565 msgstr ""
566
567 #: ../src/virt-viewer.c:98
568 msgid "Reconnect to domain upon restart"
569 msgstr ""
570
571 #: ../src/virt-viewer.c:105
572 msgid "Virtual machine graphical console"
573 msgstr ""
574
575 #: ../src/virt-viewer.c:124
576 #, c-format
577 msgid ""
578 "\n"
579 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
580 "\n"
581 msgstr ""
582
583 #: ../src/virt-viewer.c:136
584 #, c-format
585 msgid ""
586 "\n"
587 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
588 "\n"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:250
601592 msgid "Waiting for guest domain to re-start"
602593 msgstr ""
603594
604 #: ../src/virt-viewer.c:409
595 #: ../src/virt-viewer.c:496
605596 #, c-format
606597 msgid "Cannot determine the graphic type for the guest %s"
607598 msgstr ""
608599
609 #: ../src/virt-viewer.c:448
600 #: ../src/virt-viewer.c:535
610601 #, c-format
611602 msgid "Cannot determine the host for the guest %s"
612603 msgstr ""
613604
614 #: ../src/virt-viewer.c:476
605 #: ../src/virt-viewer.c:563
615606 #, c-format
616607 msgid "Guest '%s' is not reachable"
617608 msgstr ""
618609
619 #: ../src/virt-viewer.c:697
610 #: ../src/virt-viewer.c:784
620611 #, c-format
621612 msgid "Virtual machine %s is not running"
622613 msgstr ""
623614
624 #: ../src/virt-viewer.c:720
615 #: ../src/virt-viewer.c:807
625616 msgid "Waiting for libvirt to start"
626617 msgstr ""
627618
628 #: ../src/virt-viewer.c:724
619 #: ../src/virt-viewer.c:811
629620 msgid "Finding guest domain"
630621 msgstr ""
631622
632 #: ../src/virt-viewer.c:728
623 #: ../src/virt-viewer.c:815
633624 msgid "Waiting for guest domain to be created"
634625 msgstr ""
635626
636 #: ../src/virt-viewer.c:750
627 #: ../src/virt-viewer.c:837
637628 msgid "Checking guest domain status"
638629 msgstr ""
639630
640 #: ../src/virt-viewer.c:753
631 #: ../src/virt-viewer.c:840
641632 msgid "Cannot get guest state"
642633 msgstr ""
643634
644 #: ../src/virt-viewer.c:759
635 #: ../src/virt-viewer.c:846
645636 msgid "Waiting for guest domain to start"
646637 msgstr ""
647638
648 #: ../src/virt-viewer.c:863
639 #: ../src/virt-viewer.c:950
649640 #, c-format
650641 msgid "Unable to connect to libvirt with URI: %s."
651642 msgstr ""
652643
653 #: ../src/virt-viewer.c:864
644 #: ../src/virt-viewer.c:951
654645 msgid "[none]"
655646 msgstr ""
656647
657 #: ../src/virt-viewer.c:871
648 #: ../src/virt-viewer.c:958
658649 msgid "Authentication failed."
659650 msgstr ""
660651
661 #: ../src/virt-viewer.c:931
652 #: ../src/virt-viewer.c:1018
662653 msgid "Failed to connect: "
663654 msgstr ""
664655
669660 #. * indent-tabs-mode: nil
670661 #. * End:
671662 #.
672 #: ../src/virt-viewer.xml.h:1
663 #: ../src/resources/ui/virt-viewer.ui.h:1
673664 msgid "_File"
674665 msgstr "_Fitxategia"
675666
676 #: ../src/virt-viewer.xml.h:4
667 #: ../src/resources/ui/virt-viewer.ui.h:2
668 msgid "_Screenshot"
669 msgstr ""
670
671 #: ../src/resources/ui/virt-viewer.ui.h:3
672 msgid "_USB device selection"
673 msgstr ""
674
675 #: ../src/resources/ui/virt-viewer.ui.h:4
677676 msgid "Smartcard insertion"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.xml.h:5
679 #: ../src/resources/ui/virt-viewer.ui.h:5
681680 msgid "Smartcard removal"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
685 msgid "Preferences"
686 msgstr ""
687
688 #: ../src/virt-viewer.xml.h:7
683 #: ../src/resources/ui/virt-viewer.ui.h:6
684 msgid "_Preferences"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:7
688 msgid "_Quit"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:8
689692 msgid "_View"
690693 msgstr "_Ikusi"
691694
692 #: ../src/virt-viewer.xml.h:8
693 msgid "Full screen"
694 msgstr "Pantaila osoa"
695
696 #: ../src/virt-viewer.xml.h:9
695 #: ../src/resources/ui/virt-viewer.ui.h:9
696 msgid "_Full screen"
697 msgstr ""
698
699 #: ../src/resources/ui/virt-viewer.ui.h:10
697700 msgid "_Zoom"
698701 msgstr "_Zooma"
699702
700 #: ../src/virt-viewer.xml.h:10
701 msgid "Displays"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:11
703 #: ../src/resources/ui/virt-viewer.ui.h:11
704 msgid "Zoom _In"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:12
708 msgid "Zoom _Out"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:13
712 msgid "_Normal Size"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:14
716 msgid "_Displays"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:15
705720 msgid "Release cursor"
706721 msgstr ""
707722
708 #: ../src/virt-viewer.xml.h:12
723 #: ../src/resources/ui/virt-viewer.ui.h:16
709724 msgid "_Send key"
710725 msgstr "_Bidali tekla"
711726
712 #: ../src/virt-viewer.xml.h:13
727 #: ../src/resources/ui/virt-viewer.ui.h:17
713728 msgid "_Help"
714729 msgstr "_Laguntza"
715730
716 #: ../src/virt-viewer.xml.h:14
731 #: ../src/resources/ui/virt-viewer.ui.h:18
717732 msgid "_Guest Details"
718733 msgstr ""
719734
720 #: ../src/virt-viewer-guest-details.xml.h:1
735 #: ../src/resources/ui/virt-viewer.ui.h:19
736 msgid "_About"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:20
740 msgid "_Change CD"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
721744 msgid "Guest Details"
722745 msgstr ""
723746
724 #: ../src/virt-viewer-guest-details.xml.h:2
747 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
725748 msgid "Name:"
726749 msgstr ""
727750
728 #: ../src/virt-viewer-guest-details.xml.h:3
751 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
729752 msgid "GUID:"
730753 msgstr ""
731754
732 #: ../src/virt-viewer-vm-connection.xml.h:1
755 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
733756 msgid "Choose a virtual machine"
734757 msgstr ""
735758
736 #: ../src/virt-viewer-vm-connection.xml.h:2
759 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
737760 msgid "Name"
738761 msgstr ""
739762
740 #: ../src/virt-viewer-vm-connection.xml.h:3
763 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
741764 msgid "Available virtual machines"
742765 msgstr ""
743766
744 #: ../src/virt-viewer-preferences.xml.h:2
767 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
768 msgid "Preferences"
769 msgstr ""
770
771 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
745772 msgid "Folder sharing"
746773 msgstr ""
747774
748 #: ../src/virt-viewer-preferences.xml.h:3
775 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
749776 msgid "Share folder"
750777 msgstr ""
751778
752 #: ../src/virt-viewer-preferences.xml.h:4
779 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
753780 msgid "Read-only"
754781 msgstr ""
755782
756 #: ../src/virt-viewer-preferences.xml.h:5
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
757784 msgid "Spice"
758785 msgstr ""
+343
-316
po/fa.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/fi.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+391
-354
po/fr.po less more
77 # Gé Baylard <inactive+Dralyab@transifex.com>, 2014
88 # Jérôme Fenal <jfenal@gmail.com>, 2012-2013
99 # Sam Friedmann <sam.friedmann@redhat.com>, 2010,2012
10 # Sam Friedmann <sfriedma@redhat.com>, 2016. #zanata
1011 msgid ""
1112 msgstr ""
1213 "Project-Id-Version: PACKAGE VERSION\n"
1314 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
15 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
16 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
15 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
16 "PO-Revision-Date: 2016-02-23 01:16-0500\n"
17 "Last-Translator: Sam Friedmann <sfriedma@redhat.com>\n"
1718 "Language-Team: French (http://www.transifex.com/projects/p/virt-viewer/"
1819 "language/fr/)\n"
1920 "Language: fr\n"
2122 "Content-Type: text/plain; charset=UTF-8\n"
2223 "Content-Transfer-Encoding: 8bit\n"
2324 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
24 "X-Generator: Zanata 3.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
25 "X-Generator: Zanata 3.8.4\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
2729 msgid "Remote Viewer"
2830 msgstr "Afficheur distant"
31
32 #: ../data/remote-viewer.appdata.xml.in.h:2
33 msgid "Remotely access virtual machines"
34 msgstr ""
35
36 #: ../data/remote-viewer.appdata.xml.in.h:3
37 msgid ""
38 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
39 "time it supports guest OS using the VNC or SPICE protocols. Further "
40 "protocols may be supported in the future as user demand dictates. The viewer "
41 "can connect directly to both local and remotely hosted guest OS, optionally "
42 "using SSL/TLS encryption."
43 msgstr ""
2944
3045 #: ../data/remote-viewer.desktop.in.h:2
3146 msgid "Access remote desktops"
3550 msgid "Virt-Viewer connection file"
3651 msgstr "Fichier de connexion Virt-Viewer"
3752
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "Source"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "Source de la liaison"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "Cible"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "Cible de la liaison"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "Propriétés de la source"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "Propriétés de la source à lier"
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "Propriétés de la cible"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "Propriétés de la cible à lier"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "Indicateurs"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "Indicateurs de liaison"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "Afficher les informations de version"
86
87 #: ../src/remote-viewer-main.c:105
53 #: ../src/remote-viewer.c:139
8854 msgid "Set window title"
8955 msgstr "Définir le titre de la fenêtre"
9056
91 #: ../src/remote-viewer-main.c:108
57 #: ../src/remote-viewer.c:142
9258 msgid "Open connection using Spice controller communication"
9359 msgstr ""
9460 "Ouvrir la connexion à l'aide d'une communication avec le contrôleur de Spice"
9561
96 #: ../src/remote-viewer-main.c:120
62 #: ../src/remote-viewer.c:150
9763 msgid "Remote viewer client"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:138
101 #, c-format
102 msgid ""
103 "%s\n"
104 "Run '%s --help' to see a full list of available command line options\n"
105 msgstr ""
106 "%s\n"
107 "Lancer '%s --help' pour voir la liste complète des options de ligne de "
108 "commande disponibles.\n"
109
110 #: ../src/remote-viewer-main.c:149
111 #, c-format
112 msgid "Error: extra arguments given while using Spice controller\n"
113 msgstr ""
114 "Erreur : arguments surnuméraires spécifiés lors de l'utilisation du "
115 "contrôleur Spice\n"
116
117 #: ../src/remote-viewer-main.c:156
118 #, c-format
119 msgid "Error: can't handle multiple URIs\n"
120 msgstr "Erreur : impossible de gérer plusieurs URI\n"
121
122 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
64 msgstr "Client Remote viewer"
65
66 #: ../src/remote-viewer.c:175
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: can't handle multiple URIs\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:187
75 #, c-format
76 msgid ""
77 "\n"
78 "Error: extra arguments given while using Spice controller\n"
79 "\n"
80 msgstr ""
81
82 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
83 #, c-format
84 msgid "Run '%s --help' to see a full list of available command line options\n"
85 msgstr ""
86
87 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12388 msgid "Failed to initiate connection"
12489 msgstr "Impossible d'initier la connexion"
12590
126 #: ../src/remote-viewer.c:313
91 #: ../src/remote-viewer.c:297
12792 msgid "Display disabled by controller"
12893 msgstr "Affichage désactivé par le contrôleur"
12994
130 #: ../src/remote-viewer.c:609
95 #: ../src/remote-viewer.c:593
13196 #, c-format
13297 msgid "Controller connection failed: %s"
13398 msgstr "Échec de la connexion du contrôleur : %s"
13499
135 #: ../src/remote-viewer.c:755
136 msgid "_Change CD"
137 msgstr ""
138
139 #: ../src/remote-viewer.c:855
100 #: ../src/remote-viewer.c:848
140101 msgid "failed to parse ovirt uri"
141 msgstr ""
142
143 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
102 msgstr "impossible d'analyser l'uri ovirt"
103
104 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
144105 msgid "Authentication was cancelled"
145 msgstr ""
146
147 #: ../src/remote-viewer.c:900
106 msgstr "L'authentification a été annulée"
107
108 #: ../src/remote-viewer.c:893
148109 #, c-format
149110 msgid "oVirt VM %s is not running"
150 msgstr ""
151
152 #: ../src/remote-viewer.c:914
111 msgstr "oVirt VM %s n'est pas en cours d'exécution"
112
113 #: ../src/remote-viewer.c:907
153114 #, c-format
154115 msgid "oVirt VM %s has no display"
155 msgstr ""
156
157 #: ../src/remote-viewer.c:940
116 msgstr "oVirt VM %s ne possède pas d'affichage"
117
118 #: ../src/remote-viewer.c:933
158119 #, c-format
159120 msgid "oVirt VM %s has no host information"
160 msgstr ""
161
162 #: ../src/remote-viewer.c:951
121 msgstr "oVirt VM %s ne possède pas d'informations sur l'hôte"
122
123 #: ../src/remote-viewer.c:944
163124 #, c-format
164125 msgid "oVirt VM %s has unknown display type: %d"
165 msgstr ""
166
167 #: ../src/remote-viewer.c:1094
126 msgstr "Le type d'affichage d'oVirt VM %s est inconnu : %d"
127
128 #: ../src/remote-viewer.c:1115
168129 msgid "Setting up Spice session..."
169130 msgstr "Mise en place d'une session Spice..."
170131
171 #: ../src/remote-viewer.c:1102
132 #: ../src/remote-viewer.c:1123
172133 msgid "No connection was chosen"
173 msgstr ""
174
175 #: ../src/remote-viewer.c:1120
134 msgstr "Aucune connexion choisie"
135
136 #: ../src/remote-viewer.c:1141
176137 #, c-format
177138 msgid "Invalid file %s: "
178 msgstr ""
179
180 #: ../src/remote-viewer.c:1128
139 msgstr "Fichier invalide %s  :"
140
141 #: ../src/remote-viewer.c:1149
181142 msgid "Cannot determine the connection type from URI"
182143 msgstr "Impossible de déterminer le type de la connexion à partir de l'URI"
183144
184 #: ../src/remote-viewer.c:1134
145 #: ../src/remote-viewer.c:1155
185146 msgid "Couldn't open oVirt session: "
186 msgstr ""
147 msgstr "Impossible d'ouvrir une session oVirt : "
187148
188149 #.
189150 #. * Local variables:
192153 #. * indent-tabs-mode: nil
193154 #. * End:
194155 #.
195 #: ../src/remote-viewer-connect.xml.h:1
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
196157 msgid "Connection details"
197158 msgstr "Détails de la connexion"
198159
199 #: ../src/remote-viewer-connect.xml.h:2
200 msgid "Connection Address"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:3
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
161 msgid "Connection _Address"
162 msgstr ""
163
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
204165 msgid "For example, spice://foo.example.org:5900"
205 msgstr ""
206
207 #: ../src/remote-viewer-connect.xml.h:4
166 msgstr "Par exemple, spice://foo.example.org:5900"
167
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
208169 msgid "Recent connections"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:5
212 msgid "Cancel"
213 msgstr ""
214
215 #: ../src/remote-viewer-connect.xml.h:6
216 msgid "Connect"
217 msgstr ""
218
219 #: ../src/virt-viewer-about.xml.h:1
220 msgid "About Glade"
221 msgstr "À propos de Glade"
222
223 #: ../src/virt-viewer-about.xml.h:2
170 msgstr "Connexions récentes"
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
173 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
174 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
175 msgid "_Cancel"
176 msgstr ""
177
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
180 msgid "C_onnect"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:1
184 msgid "About Virt-Viewer"
185 msgstr ""
186
187 #: ../src/resources/ui/virt-viewer-about.ui.h:2
224188 msgid ""
225189 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
226190 "Copyright (C) 2007-2014 Red Hat, Inc."
227191 msgstr ""
228
229 #: ../src/virt-viewer-about.xml.h:4
192 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
193 "Copyright (C) 2007-2014 Red Hat, Inc."
194
195 #: ../src/resources/ui/virt-viewer-about.ui.h:4
230196 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
231197 msgstr "Le client bureau distant créé avec GTK-VNC, SPICE-GTK et libvirt"
232198
233 #: ../src/virt-viewer-about.xml.h:5
199 #: ../src/resources/ui/virt-viewer-about.ui.h:5
234200 msgid "virt-manager.org"
235201 msgstr "virt-manager.org"
236202
237 #: ../src/virt-viewer-about.xml.h:6
203 #: ../src/resources/ui/virt-viewer-about.ui.h:6
238204 msgid ""
239205 "This program is free software; you can redistribute it and/or modify\n"
240206 "it under the terms of the GNU General Public License as published by\n"
264230 "along with this program; if not, write to the Free Software\n"
265231 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
266232
267 #: ../src/virt-viewer-about.xml.h:20
233 #: ../src/resources/ui/virt-viewer-about.ui.h:20
268234 msgid "The Fedora Translation Team"
269235 msgstr "L'équipe de traduction de Fedora"
270236
271 #: ../src/virt-viewer-app.c:526
237 #: ../src/virt-viewer-app.c:458
272238 msgid "Do you want to close the session?"
273239 msgstr "Êtes-vous sûr de vouloir mettre fin à la session?"
274240
275 #: ../src/virt-viewer-app.c:528
241 #: ../src/virt-viewer-app.c:460
276242 msgid "Do not ask me again"
277243 msgstr "Ne plus demander"
278244
279 #: ../src/virt-viewer-app.c:1008
245 #: ../src/virt-viewer-app.c:948
280246 #, c-format
281247 msgid "Waiting for display %d..."
282248 msgstr "En attente de l'affichage %d..."
283249
284 #: ../src/virt-viewer-app.c:1117
250 #: ../src/virt-viewer-app.c:1055
285251 #, c-format
286252 msgid "Unsupported graphic type '%s'"
287 msgstr ""
288
289 #: ../src/virt-viewer-app.c:1200
253 msgstr "Type d'affichage « %s » non pris en charge"
254
255 #: ../src/virt-viewer-app.c:1138
290256 msgid "Connect to ssh failed."
291257 msgstr "Échec de la connexion ssh."
292258
293 #: ../src/virt-viewer-app.c:1202
259 #: ../src/virt-viewer-app.c:1140
294260 msgid "Can't connect to channel, SSH only supported."
295261 msgstr ""
296262 "Impossible d'établir la connexion au canal, seul SSH est pris en charge."
297263
298 #: ../src/virt-viewer-app.c:1214
264 #: ../src/virt-viewer-app.c:1152
299265 msgid "Connect to channel unsupported."
300266 msgstr "La connexion au canal n'est pas prise en charge."
301267
302 #: ../src/virt-viewer-app.c:1276
268 #: ../src/virt-viewer-app.c:1214
303269 msgid "Display can only be attached through libvirt with --attach"
304270 msgstr ""
305
306 #: ../src/virt-viewer-app.c:1299
271 "L'affichage peut uniquement être attaché à travers libvirt avec --attach"
272
273 #: ../src/virt-viewer-app.c:1237
307274 msgid "Connecting to graphic server"
308275 msgstr "Connexion au serveur d'affichage"
309276
310 #: ../src/virt-viewer-app.c:1398
277 #: ../src/virt-viewer-app.c:1336
311278 msgid "Guest domain has shutdown"
312279 msgstr "Le domaine invité est fermé"
313280
314 #: ../src/virt-viewer-app.c:1459
281 #: ../src/virt-viewer-app.c:1397
315282 msgid "Connected to graphic server"
316283 msgstr "Connecté au serveur d'affichage"
317284
318 #: ../src/virt-viewer-app.c:1486
285 #: ../src/virt-viewer-app.c:1424
319286 #, c-format
320287 msgid "Unable to connect to the graphic server %s"
321288 msgstr "Impossible d'établir la connexion au serveur d'affichage %s"
322289
323 #: ../src/virt-viewer-app.c:1512
290 #: ../src/virt-viewer-app.c:1450
324291 #, c-format
325292 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
326293 msgstr ""
327
328 #: ../src/virt-viewer-app.c:1525
294 "Impossible d'authentifier la connexion avec le serveur de bureau distantsur "
295 "%s : %s\n"
296
297 #: ../src/virt-viewer-app.c:1463
329298 #, c-format
330299 msgid "Unable to authenticate with remote desktop server: %s"
331300 msgstr ""
332301 "Impossible d'authentifier la connexion avec le serveur de bureau distant : %s"
333302
334 #: ../src/virt-viewer-app.c:1533
303 #: ../src/virt-viewer-app.c:1471
335304 #, c-format
336305 msgid "USB redirection error: %s"
337306 msgstr "Erreur de redirection USB : %s"
338307
339 #: ../src/virt-viewer-app.c:1786
308 #: ../src/virt-viewer-app.c:1805
340309 #, c-format
341310 msgid "Zoom level must be within %d-%d\n"
342311 msgstr "Le niveau de zoom doit être dans la plage %d-%d\n"
343312
344 #: ../src/virt-viewer-app.c:2296
345 #, c-format
346 msgid "Display %d"
347 msgstr "Affichage %d"
348
349 #: ../src/virt-viewer-app.c:2552
313 #: ../src/virt-viewer-app.c:1858
314 #, c-format
315 msgid "%s\n"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:1868
319 #, c-format
320 msgid "%s version %s"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2292
324 #, c-format
325 msgid "Display _%d"
326 msgstr ""
327
328 #: ../src/virt-viewer-app.c:2548
350329 #, c-format
351330 msgid "Invalid kiosk-quit argument: %s"
352331 msgstr "Argument kiosk-quit invalide : %s"
332
333 #: ../src/virt-viewer-app.c:2559
334 msgid "Display version information"
335 msgstr "Afficher les informations de version"
353336
354337 #: ../src/virt-viewer-app.c:2561
355338 msgid "Zoom level of window, in percentage"
385368 msgid "Display debugging information"
386369 msgstr "Afficher les informations de débogage"
387370
388 #: ../src/virt-viewer-auth.c:88
371 #: ../src/virt-viewer-auth.c:89
389372 #, c-format
390373 msgid ""
391374 "Authentication is required for the %s connection to:\n"
393376 "<b>%s</b>\n"
394377 "\n"
395378 msgstr ""
396
397 #: ../src/virt-viewer-auth.c:92
379 "L'authentification est requise pour la connexion %s à :\n"
380 "\n"
381 "<b>%s</b>\n"
382 "\n"
383
384 #: ../src/virt-viewer-auth.c:93
398385 #, c-format
399386 msgid "Authentication is required for the %s connection:\n"
400387 msgstr ""
388 "L'authentification est requise pour la connexion %s :\n"
389 "\n"
401390
402391 #.
403392 #. * Local variables:
406395 #. * indent-tabs-mode: nil
407396 #. * End:
408397 #.
409 #: ../src/virt-viewer-auth.xml.h:1
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
410399 msgid "Authentication required"
411400 msgstr "Authentification requise"
412401
413 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
403 msgid "_OK"
404 msgstr ""
405
406 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
407 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
414408 msgid "label"
415409 msgstr "étiquette"
416410
417 #: ../src/virt-viewer-auth.xml.h:3
411 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
418412 msgid "Password:"
419413 msgstr "Mot de passe :"
420414
421 #: ../src/virt-viewer-auth.xml.h:4
415 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
422416 msgid "Username:"
423417 msgstr "Nom d'utilisateur :"
424418
425 #: ../src/virt-viewer-auth.xml.h:5
419 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
426420 msgid "Show password"
427 msgstr ""
428
429 #: ../src/virt-viewer-display-vnc.c:133
421 msgstr "Afficher le mot de passe"
422
423 #: ../src/virt-viewer-display-vnc.c:134
430424 msgid "VNC does not provide GUID"
425 msgstr "VNC ne fournit pas de GUID"
426
427 #: ../src/virt-viewer-file-transfer-dialog.c:152
428 msgid "Cancel"
429 msgstr "Annuler"
430
431 #: ../src/virt-viewer-file-transfer-dialog.c:163
432 msgid "File Transfers"
431433 msgstr ""
432434
433435 #: ../src/virt-viewer-main.c:38
434 #, c-format
435 msgid "%s version %s\n"
436 msgstr "%s version %s\n"
437
438 #: ../src/virt-viewer-main.c:62
439 msgid "Direct connection with no automatic tunnels"
440 msgstr "Connexion directe sans tunnels automatiques"
441
442 #: ../src/virt-viewer-main.c:64
443 msgid "Attach to the local display using libvirt"
444 msgstr "S'attacher à l'affichage local à l'aide de libvirt"
445
446 #: ../src/virt-viewer-main.c:66
447 msgid "Connect to hypervisor"
448 msgstr "Se connecter à l'hyperviseur"
449
450 #: ../src/virt-viewer-main.c:68
451 msgid "Wait for domain to start"
452 msgstr "En attente de démarrage du domaine"
453
454 #: ../src/virt-viewer-main.c:70
455 msgid "Reconnect to domain upon restart"
456 msgstr "Se reconnecter au domaine lors des redémarrages"
457
458 #: ../src/virt-viewer-main.c:77
459436 msgid "Virt Viewer"
460437 msgstr "Virt Viewer"
461438
462 #: ../src/virt-viewer-main.c:80
463 #, c-format
464 msgid "Run '%s --help' to see a full list of available command line options"
465 msgstr ""
466 "Lancer '%s --help' pour voir la liste complète des options de ligne de "
467 "commande disponibles."
468
469 #: ../src/virt-viewer-main.c:86
470 msgid "Virtual machine graphical console"
471 msgstr ""
472
473 #: ../src/virt-viewer-main.c:107
474 #, c-format
475 msgid ""
476 "\n"
477 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
478 "\n"
479 "%s\n"
480 "\n"
481 msgstr ""
482
483 #: ../src/virt-viewer-main.c:112
484 #, c-format
485 msgid ""
486 "\n"
487 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
488 "\n"
489 msgstr ""
490
491 #: ../src/virt-viewer-session-spice.c:694
439 #: ../src/virt-viewer-session-spice.c:705
492440 msgid "Invalid password"
493 msgstr ""
441 msgstr "Mot de passe invalide"
494442
495443 #. Create the widgets
496 #: ../src/virt-viewer-session-spice.c:786
444 #: ../src/virt-viewer-session-spice.c:797
497445 msgid "Select USB devices for redirection"
498446 msgstr "Sélectionnez les périphériques USB à rediriger"
499447
500 #: ../src/virt-viewer-session-vnc.c:153
448 #: ../src/virt-viewer-session-spice.c:799
449 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
450 msgid "_Close"
451 msgstr ""
452
453 #: ../src/virt-viewer-session-vnc.c:156
501454 #, c-format
502455 msgid "Unsupported authentication type %d"
503456 msgstr "Le type d'authentification %d n'est pas pris en charge"
504457
505458 #: ../src/virt-viewer-vm-connection.c:64
506459 msgid "No virtual machine found"
507 msgstr ""
460 msgstr "Aucune machine virtuelle trouvée"
508461
509462 #: ../src/virt-viewer-vm-connection.c:93
510463 msgid "No virtual machine was chosen"
511 msgstr ""
512
513 #: ../src/virt-viewer-window.c:537
464 msgstr "Aucune machine virtuelle choisie"
465
466 #: ../src/virt-viewer-window.c:534
514467 msgid "Ctrl+Alt+_Del"
515468 msgstr "Ctrl+Alt+_Suppr"
516469
517 #: ../src/virt-viewer-window.c:538
470 #: ../src/virt-viewer-window.c:535
518471 msgid "Ctrl+Alt+_Backspace"
519472 msgstr "Ctrl+Alt+_Effacer"
520473
521 #: ../src/virt-viewer-window.c:540
474 #: ../src/virt-viewer-window.c:537
522475 msgid "Ctrl+Alt+F_1"
523476 msgstr "Ctrl+Alt+F_1"
524477
525 #: ../src/virt-viewer-window.c:541
478 #: ../src/virt-viewer-window.c:538
526479 msgid "Ctrl+Alt+F_2"
527480 msgstr "Ctrl+Alt+F_2"
528481
529 #: ../src/virt-viewer-window.c:542
482 #: ../src/virt-viewer-window.c:539
530483 msgid "Ctrl+Alt+F_3"
531484 msgstr "Ctrl+Alt+F_3"
532485
533 #: ../src/virt-viewer-window.c:543
486 #: ../src/virt-viewer-window.c:540
534487 msgid "Ctrl+Alt+F_4"
535488 msgstr "Ctrl+Alt+F_4"
536489
537 #: ../src/virt-viewer-window.c:544
490 #: ../src/virt-viewer-window.c:541
538491 msgid "Ctrl+Alt+F_5"
539492 msgstr "Ctrl+Alt+F_5"
540493
541 #: ../src/virt-viewer-window.c:545
494 #: ../src/virt-viewer-window.c:542
542495 msgid "Ctrl+Alt+F_6"
543496 msgstr "Ctrl+Alt+F_6"
544497
545 #: ../src/virt-viewer-window.c:546
498 #: ../src/virt-viewer-window.c:543
546499 msgid "Ctrl+Alt+F_7"
547500 msgstr "Ctrl+Alt+F_7"
548501
549 #: ../src/virt-viewer-window.c:547
502 #: ../src/virt-viewer-window.c:544
550503 msgid "Ctrl+Alt+F_8"
551504 msgstr "Ctrl+Alt+F_8"
552505
553 #: ../src/virt-viewer-window.c:548
506 #: ../src/virt-viewer-window.c:545
554507 msgid "Ctrl+Alt+F_9"
555508 msgstr "Ctrl+Alt+F_9"
556509
557 #: ../src/virt-viewer-window.c:549
510 #: ../src/virt-viewer-window.c:546
558511 msgid "Ctrl+Alt+F1_0"
559512 msgstr "Ctrl+Alt+F1_0"
560513
561 #: ../src/virt-viewer-window.c:550
514 #: ../src/virt-viewer-window.c:547
562515 msgid "Ctrl+Alt+F11"
563516 msgstr "Ctrl+Alt+F11"
564517
565 #: ../src/virt-viewer-window.c:551
518 #: ../src/virt-viewer-window.c:548
566519 msgid "Ctrl+Alt+F12"
567520 msgstr "Ctrl+Alt+F12"
568521
569 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
522 #: ../src/virt-viewer-window.c:919
523 msgid "_Save"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:927
570527 msgid "Screenshot"
571528 msgstr "Capture d'écran"
572529
573 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
530 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
574531 msgid "Unknown"
575 msgstr ""
576
577 #: ../src/virt-viewer-window.c:1062
532 msgstr "Inconnu"
533
534 #: ../src/virt-viewer-window.c:1071
578535 msgid "Disconnect"
579536 msgstr "Déconnexion"
580537
581 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
582 #: ../src/virt-viewer.xml.h:3
538 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
583539 msgid "USB device selection"
584540 msgstr "Sélection du périphérique USB"
585541
586 #: ../src/virt-viewer-window.c:1081
542 #: ../src/virt-viewer-window.c:1089
587543 msgid "Send key combination"
588544 msgstr "Envoyer la combinaison de touches"
589545
590 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
546 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
591547 msgid "Leave fullscreen"
592548 msgstr "Quitter le plein écran"
593549
594 #: ../src/virt-viewer-window.c:1173
550 #: ../src/virt-viewer-window.c:1175
595551 msgid "Ctrl+Alt"
596552 msgstr "Ctrl+Alt"
597553
598 #: ../src/virt-viewer-window.c:1176
554 #: ../src/virt-viewer-window.c:1178
599555 #, c-format
600556 msgid "(Press %s to release pointer)"
601557 msgstr "(Appuyer sur %s pour libérer la souris)"
604560 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
605561 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
606562 #.
607 #: ../src/virt-viewer-window.c:1187
563 #: ../src/virt-viewer-window.c:1189
608564 #, c-format
609565 msgid "%s%s%s - %s"
610566 msgstr "%s%s%s - %s"
611567
612568 #. translators: <space>
613 #: ../src/virt-viewer-window.c:1191
569 #: ../src/virt-viewer-window.c:1193
614570 msgid " "
615571 msgstr " "
616572
617 #: ../src/virt-viewer-file.c:825
573 #: ../src/virt-viewer-file.c:843
618574 #, c-format
619575 msgid ""
620576 "At least %s version %s is required to setup this connection, see %s for "
621577 "details"
622578 msgstr ""
623
624 #: ../src/virt-viewer-file.c:833
579 "La configuration de cette connexion requiert au minimum %s version %s, "
580 "veuillez consulter %s pour plus de détails"
581
582 #: ../src/virt-viewer-file.c:851
625583 #, c-format
626584 msgid "At least %s version %s is required to setup this connection"
627 msgstr "La configuration de cette connexion nécessite au minimum %s version %s"
628
629 #: ../src/virt-viewer.c:163
585 msgstr "La configuration de cette connexion requiert au minimum %s version %s"
586
587 #: ../src/virt-viewer.c:90
588 msgid "Direct connection with no automatic tunnels"
589 msgstr "Connexion directe sans tunnels automatiques"
590
591 #: ../src/virt-viewer.c:92
592 msgid "Attach to the local display using libvirt"
593 msgstr "S'attacher à l'affichage local à l'aide de libvirt"
594
595 #: ../src/virt-viewer.c:94
596 msgid "Connect to hypervisor"
597 msgstr "Se connecter à l'hyperviseur"
598
599 #: ../src/virt-viewer.c:96
600 msgid "Wait for domain to start"
601 msgstr "En attente de démarrage du domaine"
602
603 #: ../src/virt-viewer.c:98
604 msgid "Reconnect to domain upon restart"
605 msgstr "Se reconnecter au domaine lors des redémarrages"
606
607 #: ../src/virt-viewer.c:105
608 msgid "Virtual machine graphical console"
609 msgstr "Console graphique de la machine virtuelle"
610
611 #: ../src/virt-viewer.c:124
612 #, c-format
613 msgid ""
614 "\n"
615 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
616 "\n"
617 msgstr ""
618
619 #: ../src/virt-viewer.c:136
620 #, c-format
621 msgid ""
622 "\n"
623 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
624 "\n"
625 msgstr ""
626 "\n"
627 "Aucun DOMAIN-NAME|ID|UUID n'a été spécifié pour « --wait »\n"
628 "\n"
629
630 #: ../src/virt-viewer.c:250
630631 msgid "Waiting for guest domain to re-start"
631632 msgstr "En attente du redémarrage du domaine invité"
632633
633 #: ../src/virt-viewer.c:409
634 #: ../src/virt-viewer.c:496
634635 #, c-format
635636 msgid "Cannot determine the graphic type for the guest %s"
636637 msgstr "Impossible de déterminer le type d'affichage de l'invité %s"
637638
638 #: ../src/virt-viewer.c:448
639 #: ../src/virt-viewer.c:535
639640 #, c-format
640641 msgid "Cannot determine the host for the guest %s"
641642 msgstr "Impossible de déterminer l'hôte de l'invité %s"
642643
643 #: ../src/virt-viewer.c:476
644 #: ../src/virt-viewer.c:563
644645 #, c-format
645646 msgid "Guest '%s' is not reachable"
646 msgstr ""
647
648 #: ../src/virt-viewer.c:697
647 msgstr "L'invité « %s » n'est pas joignable"
648
649 #: ../src/virt-viewer.c:784
649650 #, c-format
650651 msgid "Virtual machine %s is not running"
651 msgstr ""
652
653 #: ../src/virt-viewer.c:720
652 msgstr "La machine virtuelle %s n'est pas en cours d'exécution"
653
654 #: ../src/virt-viewer.c:807
654655 msgid "Waiting for libvirt to start"
655656 msgstr "En attente du démarrage de libvirt"
656657
657 #: ../src/virt-viewer.c:724
658 #: ../src/virt-viewer.c:811
658659 msgid "Finding guest domain"
659660 msgstr "Recherche du domaine invité"
660661
661 #: ../src/virt-viewer.c:728
662 #: ../src/virt-viewer.c:815
662663 msgid "Waiting for guest domain to be created"
663664 msgstr "En attente de la création du domaine invité"
664665
665 #: ../src/virt-viewer.c:750
666 #: ../src/virt-viewer.c:837
666667 msgid "Checking guest domain status"
667668 msgstr "Vérification du statut du domaine invité"
668669
669 #: ../src/virt-viewer.c:753
670 #: ../src/virt-viewer.c:840
670671 msgid "Cannot get guest state"
671 msgstr ""
672
673 #: ../src/virt-viewer.c:759
672 msgstr "Impossible d'obtenir l'état de l'invité"
673
674 #: ../src/virt-viewer.c:846
674675 msgid "Waiting for guest domain to start"
675676 msgstr "En attente du démarrage du domaine invité"
676677
677 #: ../src/virt-viewer.c:863
678 #: ../src/virt-viewer.c:950
678679 #, c-format
679680 msgid "Unable to connect to libvirt with URI: %s."
680 msgstr ""
681
682 #: ../src/virt-viewer.c:864
681 msgstr "Impossible d'établir la connexion à libvirt avec l'URI : %s"
682
683 #: ../src/virt-viewer.c:951
683684 msgid "[none]"
684685 msgstr "[aucun]"
685686
686 #: ../src/virt-viewer.c:871
687 #: ../src/virt-viewer.c:958
687688 msgid "Authentication failed."
688 msgstr ""
689
690 #: ../src/virt-viewer.c:931
689 msgstr "Échec de l'authentification."
690
691 #: ../src/virt-viewer.c:1018
691692 msgid "Failed to connect: "
692 msgstr ""
693 msgstr "Échec de connexion :"
693694
694695 #.
695696 #. * Local variables:
698699 #. * indent-tabs-mode: nil
699700 #. * End:
700701 #.
701 #: ../src/virt-viewer.xml.h:1
702 #: ../src/resources/ui/virt-viewer.ui.h:1
702703 msgid "_File"
703704 msgstr "_Fichier"
704705
705 #: ../src/virt-viewer.xml.h:4
706 #: ../src/resources/ui/virt-viewer.ui.h:2
707 msgid "_Screenshot"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:3
711 msgid "_USB device selection"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:4
706715 msgid "Smartcard insertion"
707716 msgstr "Insertion d'une Smartcard"
708717
709 #: ../src/virt-viewer.xml.h:5
718 #: ../src/resources/ui/virt-viewer.ui.h:5
710719 msgid "Smartcard removal"
711720 msgstr "Suppression d'une Smartcard"
712721
713 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
714 msgid "Preferences"
715 msgstr ""
716
717 #: ../src/virt-viewer.xml.h:7
722 #: ../src/resources/ui/virt-viewer.ui.h:6
723 msgid "_Preferences"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:7
727 msgid "_Quit"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:8
718731 msgid "_View"
719732 msgstr "_Affichage"
720733
721 #: ../src/virt-viewer.xml.h:8
722 msgid "Full screen"
723 msgstr "Plein écran"
724
725 #: ../src/virt-viewer.xml.h:9
734 #: ../src/resources/ui/virt-viewer.ui.h:9
735 msgid "_Full screen"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:10
726739 msgid "_Zoom"
727740 msgstr "_Zoom"
728741
729 #: ../src/virt-viewer.xml.h:10
730 msgid "Displays"
731 msgstr "Affichages"
732
733 #: ../src/virt-viewer.xml.h:11
742 #: ../src/resources/ui/virt-viewer.ui.h:11
743 msgid "Zoom _In"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer.ui.h:12
747 msgid "Zoom _Out"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer.ui.h:13
751 msgid "_Normal Size"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer.ui.h:14
755 msgid "_Displays"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer.ui.h:15
734759 msgid "Release cursor"
735760 msgstr "Libérer le curseur"
736761
737 #: ../src/virt-viewer.xml.h:12
762 #: ../src/resources/ui/virt-viewer.ui.h:16
738763 msgid "_Send key"
739764 msgstr "_Envoi de touches"
740765
741 #: ../src/virt-viewer.xml.h:13
766 #: ../src/resources/ui/virt-viewer.ui.h:17
742767 msgid "_Help"
743768 msgstr "_Aide"
744769
745 #: ../src/virt-viewer.xml.h:14
770 #: ../src/resources/ui/virt-viewer.ui.h:18
746771 msgid "_Guest Details"
747 msgstr ""
748
749 #: ../src/virt-viewer-guest-details.xml.h:1
772 msgstr "_Détails de l'invité"
773
774 #: ../src/resources/ui/virt-viewer.ui.h:19
775 msgid "_About"
776 msgstr ""
777
778 #: ../src/resources/ui/virt-viewer.ui.h:20
779 msgid "_Change CD"
780 msgstr "_Changer le CD"
781
782 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
750783 msgid "Guest Details"
751 msgstr ""
752
753 #: ../src/virt-viewer-guest-details.xml.h:2
784 msgstr "Détails de l'invité"
785
786 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
754787 msgid "Name:"
755 msgstr ""
756
757 #: ../src/virt-viewer-guest-details.xml.h:3
788 msgstr "Nom :"
789
790 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
758791 msgid "GUID:"
759 msgstr ""
760
761 #: ../src/virt-viewer-vm-connection.xml.h:1
792 msgstr "GUID :"
793
794 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
762795 msgid "Choose a virtual machine"
763 msgstr ""
764
765 #: ../src/virt-viewer-vm-connection.xml.h:2
796 msgstr "Choisissez une machine virtuelle"
797
798 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
766799 msgid "Name"
767 msgstr ""
768
769 #: ../src/virt-viewer-vm-connection.xml.h:3
800 msgstr "Nom"
801
802 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
770803 msgid "Available virtual machines"
771 msgstr ""
772
773 #: ../src/virt-viewer-preferences.xml.h:2
804 msgstr "Machines virtuelles disponibles"
805
806 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
807 msgid "Preferences"
808 msgstr "Préférences"
809
810 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
774811 msgid "Folder sharing"
775 msgstr ""
776
777 #: ../src/virt-viewer-preferences.xml.h:3
812 msgstr "Partage de dossier"
813
814 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
778815 msgid "Share folder"
779 msgstr ""
780
781 #: ../src/virt-viewer-preferences.xml.h:4
816 msgstr "Partager le dossier"
817
818 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
782819 msgid "Read-only"
783 msgstr ""
784
785 #: ../src/virt-viewer-preferences.xml.h:5
820 msgstr "Lecture seule"
821
822 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
786823 msgid "Spice"
787 msgstr ""
824 msgstr "Spice"
+343
-316
po/gl.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-275
po/gu.po less more
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1313 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1414 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1515 "Language-Team: Gujarati (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.7.3\n"
23
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
22 "X-Generator: Zanata 3.8.4\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
2526 msgid "Remote Viewer"
2627 msgstr "દૂરસ્થ દર્શક"
28
29 #: ../data/remote-viewer.appdata.xml.in.h:2
30 msgid "Remotely access virtual machines"
31 msgstr ""
32
33 #: ../data/remote-viewer.appdata.xml.in.h:3
34 msgid ""
35 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
36 "time it supports guest OS using the VNC or SPICE protocols. Further "
37 "protocols may be supported in the future as user demand dictates. The viewer "
38 "can connect directly to both local and remotely hosted guest OS, optionally "
39 "using SSL/TLS encryption."
40 msgstr ""
2741
2842 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Access remote desktops"
3347 msgid "Virt-Viewer connection file"
3448 msgstr "Virt-Viewer જોડાણ ફાઇલ"
3549
36 #: ../src/gbinding.c:637
37 msgid "Source"
38 msgstr "સ્ત્રોત"
39
40 #: ../src/gbinding.c:638
41 msgid "The source of the binding"
42 msgstr "બાઇન્ડીંગનુ સ્ત્રોત"
43
44 #: ../src/gbinding.c:652
45 msgid "Target"
46 msgstr "લક્ષ્ય"
47
48 #: ../src/gbinding.c:653
49 msgid "The target of the binding"
50 msgstr "બાઇન્ડીંગનુ લક્ષ્ય"
51
52 #: ../src/gbinding.c:668
53 msgid "Source Property"
54 msgstr "સ્ત્રોત ગુણધર્મ"
55
56 #: ../src/gbinding.c:669
57 msgid "The property on the source to bind"
58 msgstr "બાઇન્ડ કરવા માટે સ્ત્રોત પર ગુણધર્મ"
59
60 #: ../src/gbinding.c:684
61 msgid "Target Property"
62 msgstr "લક્ષ્ય ગુણધર્મ"
63
64 #: ../src/gbinding.c:685
65 msgid "The property on the target to bind"
66 msgstr "બાઇન્ડ કરવા માટે લક્ષ્ય પર ગુણધર્મ"
67
68 #: ../src/gbinding.c:699
69 msgid "Flags"
70 msgstr "ફ્લેગ"
71
72 #: ../src/gbinding.c:700
73 msgid "The binding flags"
74 msgstr "બાઇન્ડિંગ ફ્લેગ"
75
76 #: ../src/remote-viewer-main.c:50
77 #, c-format
78 msgid "remote-viewer version %s"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
82 msgid "Display version information"
83 msgstr "આવૃત્તિ જાણકારીને બતાવો"
84
85 #: ../src/remote-viewer-main.c:105
50 #: ../src/remote-viewer.c:139
8651 msgid "Set window title"
8752 msgstr "વિન્ડો શીર્ષક સુયોજિત કરો"
8853
89 #: ../src/remote-viewer-main.c:108
54 #: ../src/remote-viewer.c:142
9055 msgid "Open connection using Spice controller communication"
9156 msgstr "Spice નિયંત્રક વાર્તાલાપની મદદથી જોડાણને ખોલો"
9257
93 #: ../src/remote-viewer-main.c:120
58 #: ../src/remote-viewer.c:150
9459 msgid "Remote viewer client"
9560 msgstr "- દૂરસ્થ દર્શક ક્લાયન્ટ"
9661
97 #: ../src/remote-viewer-main.c:138
98 #, c-format
99 msgid ""
100 "%s\n"
101 "Run '%s --help' to see a full list of available command line options\n"
102 msgstr ""
103 "%s\n"
104 "ઉપલબ્ધ આદેશ વાક્ય વિકલ્પોની સંપૂર્ણ યાદીને જોવા માટે '%s --help' ચલાવો\n"
105
106 #: ../src/remote-viewer-main.c:149
107 #, c-format
108 msgid "Error: extra arguments given while using Spice controller\n"
109 msgstr "ભૂલ: વધારાની દલીલો આપેલ છે જ્યારે Spice નિયંત્રકને વાપરી રહ્યા હોય\n"
110
111 #: ../src/remote-viewer-main.c:156
112 #, c-format
113 msgid "Error: can't handle multiple URIs\n"
114 msgstr "ભૂલ: ઘણી URIs ને સંભાળી શકાતી નથી\n"
115
116 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
62 #: ../src/remote-viewer.c:175
63 #, c-format
64 msgid ""
65 "\n"
66 "Error: can't handle multiple URIs\n"
67 "\n"
68 msgstr ""
69
70 #: ../src/remote-viewer.c:187
71 #, c-format
72 msgid ""
73 "\n"
74 "Error: extra arguments given while using Spice controller\n"
75 "\n"
76 msgstr ""
77
78 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
79 #, c-format
80 msgid "Run '%s --help' to see a full list of available command line options\n"
81 msgstr ""
82
83 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11784 msgid "Failed to initiate connection"
11885 msgstr "જોડાણને પ્રારંભ કરવાનુ નિષ્ફળ"
11986
120 #: ../src/remote-viewer.c:313
87 #: ../src/remote-viewer.c:297
12188 msgid "Display disabled by controller"
12289 msgstr "નિયંત્રક દ્દારા નિષ્ક્રિય થયેલ બતાવો"
12390
124 #: ../src/remote-viewer.c:609
91 #: ../src/remote-viewer.c:593
12592 #, c-format
12693 msgid "Controller connection failed: %s"
12794 msgstr "નિયંત્રક જોડાણ નિષ્ફળ: %s"
12895
129 #: ../src/remote-viewer.c:755
130 msgid "_Change CD"
131 msgstr ""
132
133 #: ../src/remote-viewer.c:855
96 #: ../src/remote-viewer.c:848
13497 msgid "failed to parse ovirt uri"
13598 msgstr ""
13699
137 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
100 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
138101 msgid "Authentication was cancelled"
139102 msgstr ""
140103
141 #: ../src/remote-viewer.c:900
104 #: ../src/remote-viewer.c:893
142105 #, c-format
143106 msgid "oVirt VM %s is not running"
144107 msgstr ""
145108
146 #: ../src/remote-viewer.c:914
109 #: ../src/remote-viewer.c:907
147110 #, c-format
148111 msgid "oVirt VM %s has no display"
149112 msgstr ""
150113
151 #: ../src/remote-viewer.c:940
114 #: ../src/remote-viewer.c:933
152115 #, c-format
153116 msgid "oVirt VM %s has no host information"
154117 msgstr ""
155118
156 #: ../src/remote-viewer.c:951
119 #: ../src/remote-viewer.c:944
157120 #, c-format
158121 msgid "oVirt VM %s has unknown display type: %d"
159122 msgstr ""
160123
161 #: ../src/remote-viewer.c:1094
124 #: ../src/remote-viewer.c:1115
162125 msgid "Setting up Spice session..."
163126 msgstr "Spice સત્રને સુયોજિત કરી રહ્યા છે..."
164127
165 #: ../src/remote-viewer.c:1102
128 #: ../src/remote-viewer.c:1123
166129 msgid "No connection was chosen"
167130 msgstr ""
168131
169 #: ../src/remote-viewer.c:1120
132 #: ../src/remote-viewer.c:1141
170133 #, c-format
171134 msgid "Invalid file %s: "
172135 msgstr ""
173136
174 #: ../src/remote-viewer.c:1128
137 #: ../src/remote-viewer.c:1149
175138 msgid "Cannot determine the connection type from URI"
176139 msgstr "URI માંથી જોડાણ પ્રકારને નક્કી કરી શકાતુ નથી"
177140
178 #: ../src/remote-viewer.c:1134
141 #: ../src/remote-viewer.c:1155
179142 msgid "Couldn't open oVirt session: "
180143 msgstr ""
181144
186149 #. * indent-tabs-mode: nil
187150 #. * End:
188151 #.
189 #: ../src/remote-viewer-connect.xml.h:1
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
190153 msgid "Connection details"
191154 msgstr "જોડાણ વિગતો"
192155
193 #: ../src/remote-viewer-connect.xml.h:2
194 msgid "Connection Address"
195 msgstr ""
196
197 #: ../src/remote-viewer-connect.xml.h:3
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 msgid "Connection _Address"
158 msgstr ""
159
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
198161 msgid "For example, spice://foo.example.org:5900"
199162 msgstr "ઉદાહરણ તરીકે, spice://foo.example.org:5900"
200163
201 #: ../src/remote-viewer-connect.xml.h:4
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
202165 msgid "Recent connections"
203166 msgstr ""
204167
205 #: ../src/remote-viewer-connect.xml.h:5
206 msgid "Cancel"
207 msgstr ""
208
209 #: ../src/remote-viewer-connect.xml.h:6
210 msgid "Connect"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:1
214 msgid "About Glade"
215 msgstr "ગલૅડ વિશે"
216
217 #: ../src/virt-viewer-about.xml.h:2
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
169 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
170 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
171 msgid "_Cancel"
172 msgstr ""
173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
175 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 msgid "C_onnect"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:1
180 msgid "About Virt-Viewer"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:2
218184 msgid ""
219185 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
220186 "Copyright (C) 2007-2014 Red Hat, Inc."
222188 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
223189 "Copyright (C) 2007-2014 Red Hat, Inc."
224190
225 #: ../src/virt-viewer-about.xml.h:4
191 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226192 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227193 msgstr "GTK-VNC, SPICE-GTK અને libvirt સાથે દૂરસ્થ ડેસ્કટોપ ક્લાયન્ટને બનાવેલ છે"
228194
229 #: ../src/virt-viewer-about.xml.h:5
195 #: ../src/resources/ui/virt-viewer-about.ui.h:5
230196 msgid "virt-manager.org"
231197 msgstr "virt-manager.org"
232198
233 #: ../src/virt-viewer-about.xml.h:6
199 #: ../src/resources/ui/virt-viewer-about.ui.h:6
234200 msgid ""
235201 "This program is free software; you can redistribute it and/or modify\n"
236202 "it under the terms of the GNU General Public License as published by\n"
260226 "along with this program; if not, write to the Free Software\n"
261227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
262228
263 #: ../src/virt-viewer-about.xml.h:20
229 #: ../src/resources/ui/virt-viewer-about.ui.h:20
264230 msgid "The Fedora Translation Team"
265231 msgstr "Fedora અનુવાદ ટીમ"
266232
267 #: ../src/virt-viewer-app.c:526
233 #: ../src/virt-viewer-app.c:458
268234 msgid "Do you want to close the session?"
269235 msgstr "શું તમે આ સત્રને બંધ કરવા માંગો છો?"
270236
271 #: ../src/virt-viewer-app.c:528
237 #: ../src/virt-viewer-app.c:460
272238 msgid "Do not ask me again"
273239 msgstr "મને ફરી વાર પૂછશો નહિં"
274240
275 #: ../src/virt-viewer-app.c:1008
241 #: ../src/virt-viewer-app.c:948
276242 #, c-format
277243 msgid "Waiting for display %d..."
278244 msgstr "%d ને દર્શાવવા માટે રાહ જોઇ રહ્યા છે..."
279245
280 #: ../src/virt-viewer-app.c:1117
246 #: ../src/virt-viewer-app.c:1055
281247 #, c-format
282248 msgid "Unsupported graphic type '%s'"
283249 msgstr ""
284250
285 #: ../src/virt-viewer-app.c:1200
251 #: ../src/virt-viewer-app.c:1138
286252 msgid "Connect to ssh failed."
287253 msgstr "ssh સાથે જોડાવાનું નિષ્ફળ."
288254
289 #: ../src/virt-viewer-app.c:1202
255 #: ../src/virt-viewer-app.c:1140
290256 msgid "Can't connect to channel, SSH only supported."
291257 msgstr "ચેનલમાં જોડાઇ શકતા નથી, SSH ફક્ત આધારભૂત છે."
292258
293 #: ../src/virt-viewer-app.c:1214
259 #: ../src/virt-viewer-app.c:1152
294260 msgid "Connect to channel unsupported."
295261 msgstr "ચેનલમાં જોડાવાનુ બિનઆધારભૂત છે."
296262
297 #: ../src/virt-viewer-app.c:1276
263 #: ../src/virt-viewer-app.c:1214
298264 msgid "Display can only be attached through libvirt with --attach"
299265 msgstr ""
300266
301 #: ../src/virt-viewer-app.c:1299
267 #: ../src/virt-viewer-app.c:1237
302268 msgid "Connecting to graphic server"
303269 msgstr "ગ્રાફિક સર્વરમાં જોડાઇ રહ્યા છે"
304270
305 #: ../src/virt-viewer-app.c:1398
271 #: ../src/virt-viewer-app.c:1336
306272 msgid "Guest domain has shutdown"
307273 msgstr "મહેમાન ડોમેઇન બંધ થઇ ગયો"
308274
309 #: ../src/virt-viewer-app.c:1459
275 #: ../src/virt-viewer-app.c:1397
310276 msgid "Connected to graphic server"
311277 msgstr "ગ્રાફિક સર્વરમાં જોડાયેલ છે"
312278
313 #: ../src/virt-viewer-app.c:1486
279 #: ../src/virt-viewer-app.c:1424
314280 #, c-format
315281 msgid "Unable to connect to the graphic server %s"
316282 msgstr "ગ્રાફિક સર્વર %s માં જોડાવામાં અસમર્થ"
317283
318 #: ../src/virt-viewer-app.c:1512
284 #: ../src/virt-viewer-app.c:1450
319285 #, c-format
320286 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
321287 msgstr ""
322288
323 #: ../src/virt-viewer-app.c:1525
289 #: ../src/virt-viewer-app.c:1463
324290 #, c-format
325291 msgid "Unable to authenticate with remote desktop server: %s"
326292 msgstr "દૂરસ્થ ડેસ્કટોપ સર્વર સાથે સત્તાધિકરણ કરવાનું અસમર્થ: %s"
327293
328 #: ../src/virt-viewer-app.c:1533
294 #: ../src/virt-viewer-app.c:1471
329295 #, c-format
330296 msgid "USB redirection error: %s"
331297 msgstr "USB પુનર્નિર્દેશન ભૂલ: %s"
332298
333 #: ../src/virt-viewer-app.c:1786
299 #: ../src/virt-viewer-app.c:1805
334300 #, c-format
335301 msgid "Zoom level must be within %d-%d\n"
336302 msgstr "નાનું મોટુ કરવાનું લેવલ એ %d-%d માં હોવુ જ જોઇએ\n"
337303
338 #: ../src/virt-viewer-app.c:2296
339 #, c-format
340 msgid "Display %d"
341 msgstr "%d દર્શાવો"
342
343 #: ../src/virt-viewer-app.c:2552
304 #: ../src/virt-viewer-app.c:1858
305 #, c-format
306 msgid "%s\n"
307 msgstr ""
308
309 #: ../src/virt-viewer-app.c:1868
310 #, c-format
311 msgid "%s version %s"
312 msgstr ""
313
314 #: ../src/virt-viewer-app.c:2292
315 #, c-format
316 msgid "Display _%d"
317 msgstr ""
318
319 #: ../src/virt-viewer-app.c:2548
344320 #, c-format
345321 msgid "Invalid kiosk-quit argument: %s"
346322 msgstr "અયોગ્ય kiosk-quit દલીલ: %s"
323
324 #: ../src/virt-viewer-app.c:2559
325 msgid "Display version information"
326 msgstr "આવૃત્તિ જાણકારીને બતાવો"
347327
348328 #: ../src/virt-viewer-app.c:2561
349329 msgid "Zoom level of window, in percentage"
377357 msgid "Display debugging information"
378358 msgstr "ડિબગીંગ જાણકારીને બતાવો"
379359
380 #: ../src/virt-viewer-auth.c:88
360 #: ../src/virt-viewer-auth.c:89
381361 #, c-format
382362 msgid ""
383363 "Authentication is required for the %s connection to:\n"
386366 "\n"
387367 msgstr ""
388368
389 #: ../src/virt-viewer-auth.c:92
369 #: ../src/virt-viewer-auth.c:93
390370 #, c-format
391371 msgid "Authentication is required for the %s connection:\n"
392372 msgstr ""
398378 #. * indent-tabs-mode: nil
399379 #. * End:
400380 #.
401 #: ../src/virt-viewer-auth.xml.h:1
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
402382 msgid "Authentication required"
403383 msgstr "સત્તાધિકરણ જરૂરી છે"
404384
405 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
386 msgid "_OK"
387 msgstr ""
388
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
390 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
406391 msgid "label"
407392 msgstr "લેબલ"
408393
409 #: ../src/virt-viewer-auth.xml.h:3
394 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410395 msgid "Password:"
411396 msgstr "પાસવર્ડ:"
412397
413 #: ../src/virt-viewer-auth.xml.h:4
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414399 msgid "Username:"
415400 msgstr "વપરાશકર્તાનામ:"
416401
417 #: ../src/virt-viewer-auth.xml.h:5
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418403 msgid "Show password"
419404 msgstr ""
420405
421 #: ../src/virt-viewer-display-vnc.c:133
406 #: ../src/virt-viewer-display-vnc.c:134
422407 msgid "VNC does not provide GUID"
423408 msgstr ""
424409
410 #: ../src/virt-viewer-file-transfer-dialog.c:152
411 msgid "Cancel"
412 msgstr ""
413
414 #: ../src/virt-viewer-file-transfer-dialog.c:163
415 msgid "File Transfers"
416 msgstr ""
417
425418 #: ../src/virt-viewer-main.c:38
426 #, c-format
427 msgid "%s version %s\n"
428 msgstr "%s આવૃત્તિ %s\n"
429
430 #: ../src/virt-viewer-main.c:62
431 msgid "Direct connection with no automatic tunnels"
432 msgstr "સ્વયંસંચાલિત ટનલ સાથે સીધુ જોડાણ નથી"
433
434 #: ../src/virt-viewer-main.c:64
435 msgid "Attach to the local display using libvirt"
436 msgstr "libvirt ની મદદથી સ્થાનિક દર્શાવ સાથે જોડાવો"
437
438 #: ../src/virt-viewer-main.c:66
439 msgid "Connect to hypervisor"
440 msgstr "હાઇપરવિઝરમાં જોડાવો"
441
442 #: ../src/virt-viewer-main.c:68
443 msgid "Wait for domain to start"
444 msgstr "શરૂ કરવા ડોમેઇન માટે રાહ જુઓ"
445
446 #: ../src/virt-viewer-main.c:70
447 msgid "Reconnect to domain upon restart"
448 msgstr "પુનઃશરૂ કરવા પર ડોમેઇન પુનઃજોડાણ"
449
450 #: ../src/virt-viewer-main.c:77
451419 msgid "Virt Viewer"
452420 msgstr "Virt Viewer"
453421
454 #: ../src/virt-viewer-main.c:80
455 #, c-format
456 msgid "Run '%s --help' to see a full list of available command line options"
457 msgstr "ઉપલબ્ધ આદેશ વાક્ય વિકલ્પોની સંપૂર્ણ યાદીને જોવા માટે '%s --help' ચલાવો"
458
459 #: ../src/virt-viewer-main.c:86
460 msgid "Virtual machine graphical console"
461 msgstr "વર્ચ્યુઅલ મશીન ગ્રાફિકલ કન્સોલ"
462
463 #: ../src/virt-viewer-main.c:107
464 #, c-format
465 msgid ""
466 "\n"
467 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
468 "\n"
469 "%s\n"
470 "\n"
471 msgstr ""
472
473 #: ../src/virt-viewer-main.c:112
474 #, c-format
475 msgid ""
476 "\n"
477 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
478 "\n"
479 msgstr ""
480
481 #: ../src/virt-viewer-session-spice.c:694
422 #: ../src/virt-viewer-session-spice.c:705
482423 msgid "Invalid password"
483424 msgstr ""
484425
485426 #. Create the widgets
486 #: ../src/virt-viewer-session-spice.c:786
427 #: ../src/virt-viewer-session-spice.c:797
487428 msgid "Select USB devices for redirection"
488429 msgstr "પુનર્નિર્દેશન માટે USB ઉપકરણોને પસંદ કરો"
489430
490 #: ../src/virt-viewer-session-vnc.c:153
431 #: ../src/virt-viewer-session-spice.c:799
432 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
433 msgid "_Close"
434 msgstr ""
435
436 #: ../src/virt-viewer-session-vnc.c:156
491437 #, c-format
492438 msgid "Unsupported authentication type %d"
493439 msgstr "બિનઆધારભૂત સત્તાધિકરણ પ્રકાર %d"
500446 msgid "No virtual machine was chosen"
501447 msgstr ""
502448
503 #: ../src/virt-viewer-window.c:537
449 #: ../src/virt-viewer-window.c:534
504450 msgid "Ctrl+Alt+_Del"
505451 msgstr "Ctrl+Alt+_Del"
506452
507 #: ../src/virt-viewer-window.c:538
453 #: ../src/virt-viewer-window.c:535
508454 msgid "Ctrl+Alt+_Backspace"
509455 msgstr "Ctrl+Alt+_Backspace"
510456
511 #: ../src/virt-viewer-window.c:540
457 #: ../src/virt-viewer-window.c:537
512458 msgid "Ctrl+Alt+F_1"
513459 msgstr "Ctrl+Alt+F_1"
514460
515 #: ../src/virt-viewer-window.c:541
461 #: ../src/virt-viewer-window.c:538
516462 msgid "Ctrl+Alt+F_2"
517463 msgstr "Ctrl+Alt+F_2"
518464
519 #: ../src/virt-viewer-window.c:542
465 #: ../src/virt-viewer-window.c:539
520466 msgid "Ctrl+Alt+F_3"
521467 msgstr "Ctrl+Alt+F_3"
522468
523 #: ../src/virt-viewer-window.c:543
469 #: ../src/virt-viewer-window.c:540
524470 msgid "Ctrl+Alt+F_4"
525471 msgstr "Ctrl+Alt+F_4"
526472
527 #: ../src/virt-viewer-window.c:544
473 #: ../src/virt-viewer-window.c:541
528474 msgid "Ctrl+Alt+F_5"
529475 msgstr "Ctrl+Alt+F_5"
530476
531 #: ../src/virt-viewer-window.c:545
477 #: ../src/virt-viewer-window.c:542
532478 msgid "Ctrl+Alt+F_6"
533479 msgstr "Ctrl+Alt+F_6"
534480
535 #: ../src/virt-viewer-window.c:546
481 #: ../src/virt-viewer-window.c:543
536482 msgid "Ctrl+Alt+F_7"
537483 msgstr "Ctrl+Alt+F_7"
538484
539 #: ../src/virt-viewer-window.c:547
485 #: ../src/virt-viewer-window.c:544
540486 msgid "Ctrl+Alt+F_8"
541487 msgstr "Ctrl+Alt+F_8"
542488
543 #: ../src/virt-viewer-window.c:548
489 #: ../src/virt-viewer-window.c:545
544490 msgid "Ctrl+Alt+F_9"
545491 msgstr "Ctrl+Alt+F_9"
546492
547 #: ../src/virt-viewer-window.c:549
493 #: ../src/virt-viewer-window.c:546
548494 msgid "Ctrl+Alt+F1_0"
549495 msgstr "Ctrl+Alt+F1_0"
550496
551 #: ../src/virt-viewer-window.c:550
497 #: ../src/virt-viewer-window.c:547
552498 msgid "Ctrl+Alt+F11"
553499 msgstr "Ctrl+Alt+F11"
554500
555 #: ../src/virt-viewer-window.c:551
501 #: ../src/virt-viewer-window.c:548
556502 msgid "Ctrl+Alt+F12"
557503 msgstr "Ctrl+Alt+F12"
558504
559 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
505 #: ../src/virt-viewer-window.c:919
506 msgid "_Save"
507 msgstr ""
508
509 #: ../src/virt-viewer-window.c:927
560510 msgid "Screenshot"
561511 msgstr "સ્ક્રીનશોટ"
562512
563 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
513 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
564514 msgid "Unknown"
565515 msgstr ""
566516
567 #: ../src/virt-viewer-window.c:1062
517 #: ../src/virt-viewer-window.c:1071
568518 msgid "Disconnect"
569519 msgstr "જોડાણ તોડી નાંખો"
570520
571 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
572 #: ../src/virt-viewer.xml.h:3
521 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
573522 msgid "USB device selection"
574523 msgstr "USB ઉપકરણ પસંદગી"
575524
576 #: ../src/virt-viewer-window.c:1081
525 #: ../src/virt-viewer-window.c:1089
577526 msgid "Send key combination"
578527 msgstr "કી સંયોજન મોકલો"
579528
580 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
529 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
581530 msgid "Leave fullscreen"
582531 msgstr "પૂર્ણસ્ક્રીન છોડો"
583532
584 #: ../src/virt-viewer-window.c:1173
533 #: ../src/virt-viewer-window.c:1175
585534 msgid "Ctrl+Alt"
586535 msgstr "Ctrl+Alt"
587536
588 #: ../src/virt-viewer-window.c:1176
537 #: ../src/virt-viewer-window.c:1178
589538 #, c-format
590539 msgid "(Press %s to release pointer)"
591540 msgstr "(પોઇંટરને પ્રકાશિત કરવા માટે %s ને દબાવો)"
594543 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
595544 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
596545 #.
597 #: ../src/virt-viewer-window.c:1187
546 #: ../src/virt-viewer-window.c:1189
598547 #, c-format
599548 msgid "%s%s%s - %s"
600549 msgstr "%s%s%s - %s"
601550
602551 #. translators: <space>
603 #: ../src/virt-viewer-window.c:1191
552 #: ../src/virt-viewer-window.c:1193
604553 msgid " "
605554 msgstr " "
606555
607 #: ../src/virt-viewer-file.c:825
556 #: ../src/virt-viewer-file.c:843
608557 #, c-format
609558 msgid ""
610559 "At least %s version %s is required to setup this connection, see %s for "
611560 "details"
612561 msgstr ""
613562
614 #: ../src/virt-viewer-file.c:833
563 #: ../src/virt-viewer-file.c:851
615564 #, c-format
616565 msgid "At least %s version %s is required to setup this connection"
617566 msgstr "ઓછામાં ઓછી %s આવૃત્તિ %s ને આ જોડાણને સુયોજિત કરવાની જરૂરિયાત છે"
618567
619 #: ../src/virt-viewer.c:163
568 #: ../src/virt-viewer.c:90
569 msgid "Direct connection with no automatic tunnels"
570 msgstr "સ્વયંસંચાલિત ટનલ સાથે સીધુ જોડાણ નથી"
571
572 #: ../src/virt-viewer.c:92
573 msgid "Attach to the local display using libvirt"
574 msgstr "libvirt ની મદદથી સ્થાનિક દર્શાવ સાથે જોડાવો"
575
576 #: ../src/virt-viewer.c:94
577 msgid "Connect to hypervisor"
578 msgstr "હાઇપરવિઝરમાં જોડાવો"
579
580 #: ../src/virt-viewer.c:96
581 msgid "Wait for domain to start"
582 msgstr "શરૂ કરવા ડોમેઇન માટે રાહ જુઓ"
583
584 #: ../src/virt-viewer.c:98
585 msgid "Reconnect to domain upon restart"
586 msgstr "પુનઃશરૂ કરવા પર ડોમેઇન પુનઃજોડાણ"
587
588 #: ../src/virt-viewer.c:105
589 msgid "Virtual machine graphical console"
590 msgstr "વર્ચ્યુઅલ મશીન ગ્રાફિકલ કન્સોલ"
591
592 #: ../src/virt-viewer.c:124
593 #, c-format
594 msgid ""
595 "\n"
596 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
597 "\n"
598 msgstr ""
599
600 #: ../src/virt-viewer.c:136
601 #, c-format
602 msgid ""
603 "\n"
604 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
605 "\n"
606 msgstr ""
607
608 #: ../src/virt-viewer.c:250
620609 msgid "Waiting for guest domain to re-start"
621610 msgstr "પુન:શરૂ કરવા માટે મહેમાન ડોમેઇન માટે રાહ જોઇ રહ્યા છે"
622611
623 #: ../src/virt-viewer.c:409
612 #: ../src/virt-viewer.c:496
624613 #, c-format
625614 msgid "Cannot determine the graphic type for the guest %s"
626615 msgstr "મહેમાન %s માટે ગ્રાફિક પ્રકારને નક્કી કરી શકાતુ નથી"
627616
628 #: ../src/virt-viewer.c:448
617 #: ../src/virt-viewer.c:535
629618 #, c-format
630619 msgid "Cannot determine the host for the guest %s"
631620 msgstr "મહેમાન %s માટે યજમાનને નક્કી કરી શકાતુ નથી"
632621
633 #: ../src/virt-viewer.c:476
622 #: ../src/virt-viewer.c:563
634623 #, c-format
635624 msgid "Guest '%s' is not reachable"
636625 msgstr ""
637626
638 #: ../src/virt-viewer.c:697
627 #: ../src/virt-viewer.c:784
639628 #, c-format
640629 msgid "Virtual machine %s is not running"
641630 msgstr ""
642631
643 #: ../src/virt-viewer.c:720
632 #: ../src/virt-viewer.c:807
644633 msgid "Waiting for libvirt to start"
645634 msgstr "શરૂ થવા libvirt માટે રાહ જોઇ રહ્યા છે"
646635
647 #: ../src/virt-viewer.c:724
636 #: ../src/virt-viewer.c:811
648637 msgid "Finding guest domain"
649638 msgstr "મહેમાન ડોમેઇનને શોધી રહ્યા છે"
650639
651 #: ../src/virt-viewer.c:728
640 #: ../src/virt-viewer.c:815
652641 msgid "Waiting for guest domain to be created"
653642 msgstr "બનાવવા માટે મહેમાન ડોમેઇન માટે રાહ જોઇ રહ્યા છે"
654643
655 #: ../src/virt-viewer.c:750
644 #: ../src/virt-viewer.c:837
656645 msgid "Checking guest domain status"
657646 msgstr "મહેમાન ડોમેઇન પરિસ્થિતિને ચકાસી રહ્યા છે"
658647
659 #: ../src/virt-viewer.c:753
648 #: ../src/virt-viewer.c:840
660649 msgid "Cannot get guest state"
661650 msgstr ""
662651
663 #: ../src/virt-viewer.c:759
652 #: ../src/virt-viewer.c:846
664653 msgid "Waiting for guest domain to start"
665654 msgstr "શરૂ કરવા માટે મહેમાન ડોમેઇન માટે રાહ જોઇ રહ્યા છે"
666655
667 #: ../src/virt-viewer.c:863
656 #: ../src/virt-viewer.c:950
668657 #, c-format
669658 msgid "Unable to connect to libvirt with URI: %s."
670659 msgstr ""
671660
672 #: ../src/virt-viewer.c:864
661 #: ../src/virt-viewer.c:951
673662 msgid "[none]"
674663 msgstr "[કંઇ નહિં]"
675664
676 #: ../src/virt-viewer.c:871
665 #: ../src/virt-viewer.c:958
677666 msgid "Authentication failed."
678667 msgstr ""
679668
680 #: ../src/virt-viewer.c:931
669 #: ../src/virt-viewer.c:1018
681670 msgid "Failed to connect: "
682671 msgstr ""
683672
688677 #. * indent-tabs-mode: nil
689678 #. * End:
690679 #.
691 #: ../src/virt-viewer.xml.h:1
680 #: ../src/resources/ui/virt-viewer.ui.h:1
692681 msgid "_File"
693682 msgstr "ફાઇલ (_F)"
694683
695 #: ../src/virt-viewer.xml.h:4
684 #: ../src/resources/ui/virt-viewer.ui.h:2
685 msgid "_Screenshot"
686 msgstr ""
687
688 #: ../src/resources/ui/virt-viewer.ui.h:3
689 msgid "_USB device selection"
690 msgstr ""
691
692 #: ../src/resources/ui/virt-viewer.ui.h:4
696693 msgid "Smartcard insertion"
697694 msgstr "સ્માર્ટકાર્ડ નિવેશ"
698695
699 #: ../src/virt-viewer.xml.h:5
696 #: ../src/resources/ui/virt-viewer.ui.h:5
700697 msgid "Smartcard removal"
701698 msgstr "સ્માર્ટકાર્ડ નિરાકરણ"
702699
703 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
704 msgid "Preferences"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:7
700 #: ../src/resources/ui/virt-viewer.ui.h:6
701 msgid "_Preferences"
702 msgstr ""
703
704 #: ../src/resources/ui/virt-viewer.ui.h:7
705 msgid "_Quit"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:8
708709 msgid "_View"
709710 msgstr "દૃશ્ય (_V)"
710711
711 #: ../src/virt-viewer.xml.h:8
712 msgid "Full screen"
713 msgstr "પૂર્ણ સ્ક્રીન"
714
715 #: ../src/virt-viewer.xml.h:9
712 #: ../src/resources/ui/virt-viewer.ui.h:9
713 msgid "_Full screen"
714 msgstr ""
715
716 #: ../src/resources/ui/virt-viewer.ui.h:10
716717 msgid "_Zoom"
717718 msgstr "નાનુંમોટુ કરો (_Z)"
718719
719 #: ../src/virt-viewer.xml.h:10
720 msgid "Displays"
721 msgstr "દર્શાવે છે"
722
723 #: ../src/virt-viewer.xml.h:11
720 #: ../src/resources/ui/virt-viewer.ui.h:11
721 msgid "Zoom _In"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:12
725 msgid "Zoom _Out"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:13
729 msgid "_Normal Size"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:14
733 msgid "_Displays"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:15
724737 msgid "Release cursor"
725738 msgstr "પ્રકાશન કર્સર"
726739
727 #: ../src/virt-viewer.xml.h:12
740 #: ../src/resources/ui/virt-viewer.ui.h:16
728741 msgid "_Send key"
729742 msgstr "કી મોકલો (_S)"
730743
731 #: ../src/virt-viewer.xml.h:13
744 #: ../src/resources/ui/virt-viewer.ui.h:17
732745 msgid "_Help"
733746 msgstr "મદદ (_H)"
734747
735 #: ../src/virt-viewer.xml.h:14
748 #: ../src/resources/ui/virt-viewer.ui.h:18
736749 msgid "_Guest Details"
737750 msgstr ""
738751
739 #: ../src/virt-viewer-guest-details.xml.h:1
752 #: ../src/resources/ui/virt-viewer.ui.h:19
753 msgid "_About"
754 msgstr ""
755
756 #: ../src/resources/ui/virt-viewer.ui.h:20
757 msgid "_Change CD"
758 msgstr ""
759
760 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
740761 msgid "Guest Details"
741762 msgstr ""
742763
743 #: ../src/virt-viewer-guest-details.xml.h:2
764 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
744765 msgid "Name:"
745766 msgstr ""
746767
747 #: ../src/virt-viewer-guest-details.xml.h:3
768 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
748769 msgid "GUID:"
749770 msgstr ""
750771
751 #: ../src/virt-viewer-vm-connection.xml.h:1
772 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
752773 msgid "Choose a virtual machine"
753774 msgstr ""
754775
755 #: ../src/virt-viewer-vm-connection.xml.h:2
776 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
756777 msgid "Name"
757778 msgstr ""
758779
759 #: ../src/virt-viewer-vm-connection.xml.h:3
780 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
760781 msgid "Available virtual machines"
761782 msgstr ""
762783
763 #: ../src/virt-viewer-preferences.xml.h:2
784 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
785 msgid "Preferences"
786 msgstr ""
787
788 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
764789 msgid "Folder sharing"
765790 msgstr ""
766791
767 #: ../src/virt-viewer-preferences.xml.h:3
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
768793 msgid "Share folder"
769794 msgstr ""
770795
771 #: ../src/virt-viewer-preferences.xml.h:4
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
772797 msgid "Read-only"
773798 msgstr ""
774799
775 #: ../src/virt-viewer-preferences.xml.h:5
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
776801 msgid "Spice"
777802 msgstr ""
+343
-316
po/he.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Hebrew\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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-275
po/hi.po less more
1010 msgstr ""
1111 "Project-Id-Version: PACKAGE VERSION\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
13 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1414 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1515 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1616 "Language-Team: Hindi (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
24
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
23 "X-Generator: Zanata 3.8.4\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
2627 msgid "Remote Viewer"
2728 msgstr "दूरस्थ दर्शक"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 msgid ""
36 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
37 "time it supports guest OS using the VNC or SPICE protocols. Further "
38 "protocols may be supported in the future as user demand dictates. The viewer "
39 "can connect directly to both local and remotely hosted guest OS, optionally "
40 "using SSL/TLS encryption."
41 msgstr ""
2842
2943 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Access remote desktops"
3448 msgid "Virt-Viewer connection file"
3549 msgstr "Virt-Viewer कनेक्शन फ़ाइल"
3650
37 #: ../src/gbinding.c:637
38 msgid "Source"
39 msgstr "स्रोत"
40
41 #: ../src/gbinding.c:638
42 msgid "The source of the binding"
43 msgstr "बाइंडिंग का स्रोत"
44
45 #: ../src/gbinding.c:652
46 msgid "Target"
47 msgstr "लक्ष्य"
48
49 #: ../src/gbinding.c:653
50 msgid "The target of the binding"
51 msgstr "बाइंडिंग का लक्ष्य"
52
53 #: ../src/gbinding.c:668
54 msgid "Source Property"
55 msgstr "स्रोत गुण"
56
57 #: ../src/gbinding.c:669
58 msgid "The property on the source to bind"
59 msgstr "बाइंड करने के लिए स्रोत पर गुण"
60
61 #: ../src/gbinding.c:684
62 msgid "Target Property"
63 msgstr "लक्ष्य गुण"
64
65 #: ../src/gbinding.c:685
66 msgid "The property on the target to bind"
67 msgstr "बाइंड करने के लिए लक्ष्य पर गुण"
68
69 #: ../src/gbinding.c:699
70 msgid "Flags"
71 msgstr "फ्लैग"
72
73 #: ../src/gbinding.c:700
74 msgid "The binding flags"
75 msgstr "बाइंडिंग फ्लैग"
76
77 #: ../src/remote-viewer-main.c:50
78 #, c-format
79 msgid "remote-viewer version %s"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
83 msgid "Display version information"
84 msgstr "संस्करण की जानकारी दिखाता है"
85
86 #: ../src/remote-viewer-main.c:105
51 #: ../src/remote-viewer.c:139
8752 msgid "Set window title"
8853 msgstr "विंडो शीर्षक सेट करें"
8954
90 #: ../src/remote-viewer-main.c:108
55 #: ../src/remote-viewer.c:142
9156 msgid "Open connection using Spice controller communication"
9257 msgstr "स्पाइस संचार नियंत्रक का उपयोग करते हुए कनेक्शन खोलें"
9358
94 #: ../src/remote-viewer-main.c:120
59 #: ../src/remote-viewer.c:150
9560 msgid "Remote viewer client"
9661 msgstr ""
9762
98 #: ../src/remote-viewer-main.c:138
99 #, c-format
100 msgid ""
101 "%s\n"
102 "Run '%s --help' to see a full list of available command line options\n"
103 msgstr ""
104 "%s\n"
105 "'%s --help' को उपलब्ध कमांड लाइन की पूरी सूची देखने के लिए देखें.\n"
106
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr "त्रुटि: स्पाइस कंट्रोलर के उपयोग के दौरान अतिरिक्त वितर्क दिए गए\n"
111
112 #: ../src/remote-viewer-main.c:156
113 #, c-format
114 msgid "Error: can't handle multiple URIs\n"
115 msgstr "त्रुटि: बहुल URI को नियंत्रित नहीं कर सकता है\n"
116
117 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
63 #: ../src/remote-viewer.c:175
64 #, c-format
65 msgid ""
66 "\n"
67 "Error: can't handle multiple URIs\n"
68 "\n"
69 msgstr ""
70
71 #: ../src/remote-viewer.c:187
72 #, c-format
73 msgid ""
74 "\n"
75 "Error: extra arguments given while using Spice controller\n"
76 "\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
80 #, c-format
81 msgid "Run '%s --help' to see a full list of available command line options\n"
82 msgstr ""
83
84 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11885 msgid "Failed to initiate connection"
11986 msgstr "कनेक्शन आरंभ करने में विफल"
12087
121 #: ../src/remote-viewer.c:313
88 #: ../src/remote-viewer.c:297
12289 msgid "Display disabled by controller"
12390 msgstr "नियंत्रक के द्वारा प्रदर्शन अक्षम"
12491
125 #: ../src/remote-viewer.c:609
92 #: ../src/remote-viewer.c:593
12693 #, c-format
12794 msgid "Controller connection failed: %s"
12895 msgstr "नियंत्रक कनेक्शन में विफल रहा है : %s"
12996
130 #: ../src/remote-viewer.c:755
131 msgid "_Change CD"
132 msgstr ""
133
134 #: ../src/remote-viewer.c:855
97 #: ../src/remote-viewer.c:848
13598 msgid "failed to parse ovirt uri"
13699 msgstr ""
137100
138 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
101 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
139102 msgid "Authentication was cancelled"
140103 msgstr ""
141104
142 #: ../src/remote-viewer.c:900
105 #: ../src/remote-viewer.c:893
143106 #, c-format
144107 msgid "oVirt VM %s is not running"
145108 msgstr ""
146109
147 #: ../src/remote-viewer.c:914
110 #: ../src/remote-viewer.c:907
148111 #, c-format
149112 msgid "oVirt VM %s has no display"
150113 msgstr ""
151114
152 #: ../src/remote-viewer.c:940
115 #: ../src/remote-viewer.c:933
153116 #, c-format
154117 msgid "oVirt VM %s has no host information"
155118 msgstr ""
156119
157 #: ../src/remote-viewer.c:951
120 #: ../src/remote-viewer.c:944
158121 #, c-format
159122 msgid "oVirt VM %s has unknown display type: %d"
160123 msgstr ""
161124
162 #: ../src/remote-viewer.c:1094
125 #: ../src/remote-viewer.c:1115
163126 msgid "Setting up Spice session..."
164127 msgstr "स्पाइस सत्र की सेटिंग कर रहा है ..."
165128
166 #: ../src/remote-viewer.c:1102
129 #: ../src/remote-viewer.c:1123
167130 msgid "No connection was chosen"
168131 msgstr ""
169132
170 #: ../src/remote-viewer.c:1120
133 #: ../src/remote-viewer.c:1141
171134 #, c-format
172135 msgid "Invalid file %s: "
173136 msgstr ""
174137
175 #: ../src/remote-viewer.c:1128
138 #: ../src/remote-viewer.c:1149
176139 msgid "Cannot determine the connection type from URI"
177140 msgstr "यूआरआइ से कनेक्शन के प्रकार को तय नहीं कर सकता है"
178141
179 #: ../src/remote-viewer.c:1134
142 #: ../src/remote-viewer.c:1155
180143 msgid "Couldn't open oVirt session: "
181144 msgstr ""
182145
187150 #. * indent-tabs-mode: nil
188151 #. * End:
189152 #.
190 #: ../src/remote-viewer-connect.xml.h:1
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
191154 msgid "Connection details"
192155 msgstr "संबंध विवरण"
193156
194 #: ../src/remote-viewer-connect.xml.h:2
195 msgid "Connection Address"
196 msgstr ""
197
198 #: ../src/remote-viewer-connect.xml.h:3
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 msgid "Connection _Address"
159 msgstr ""
160
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
199162 msgid "For example, spice://foo.example.org:5900"
200163 msgstr ""
201164
202 #: ../src/remote-viewer-connect.xml.h:4
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
203166 msgid "Recent connections"
204167 msgstr ""
205168
206 #: ../src/remote-viewer-connect.xml.h:5
207 msgid "Cancel"
208 msgstr ""
209
210 #: ../src/remote-viewer-connect.xml.h:6
211 msgid "Connect"
212 msgstr ""
213
214 #: ../src/virt-viewer-about.xml.h:1
215 msgid "About Glade"
216 msgstr "ग्लेड के बारे में"
217
218 #: ../src/virt-viewer-about.xml.h:2
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
170 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
172 msgid "_Cancel"
173 msgstr ""
174
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
176 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 msgid "C_onnect"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:1
181 msgid "About Virt-Viewer"
182 msgstr ""
183
184 #: ../src/resources/ui/virt-viewer-about.ui.h:2
219185 msgid ""
220186 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
221187 "Copyright (C) 2007-2014 Red Hat, Inc."
222188 msgstr ""
223189
224 #: ../src/virt-viewer-about.xml.h:4
190 #: ../src/resources/ui/virt-viewer-about.ui.h:4
225191 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
226192 msgstr "एक दूरस्थ डेस्कटॉप ग्राहक जीतीके-वीएनसी, स्पाइस-जीटीके और लिब्विर्ट के साथ निर्मित"
227193
228 #: ../src/virt-viewer-about.xml.h:5
194 #: ../src/resources/ui/virt-viewer-about.ui.h:5
229195 msgid "virt-manager.org"
230196 msgstr "virt-manager.org"
231197
232 #: ../src/virt-viewer-about.xml.h:6
198 #: ../src/resources/ui/virt-viewer-about.ui.h:6
233199 msgid ""
234200 "This program is free software; you can redistribute it and/or modify\n"
235201 "it under the terms of the GNU General Public License as published by\n"
257223 "नहीं, फ्री सॉफ्टवेयर फाउंडेशन को लिखे, Inc. 59 मंदिर प्लेस, 330 सूट, बोस्टन, एमए "
258224 "02111-1307, संयुक्त राज्य अमेरिका\n"
259225
260 #: ../src/virt-viewer-about.xml.h:20
226 #: ../src/resources/ui/virt-viewer-about.ui.h:20
261227 msgid "The Fedora Translation Team"
262228 msgstr "फेडोरा अनुवाद टीम"
263229
264 #: ../src/virt-viewer-app.c:526
230 #: ../src/virt-viewer-app.c:458
265231 msgid "Do you want to close the session?"
266232 msgstr "क्या आप इस सत्र को आयात बंद करना चाहते हैं?"
267233
268 #: ../src/virt-viewer-app.c:528
234 #: ../src/virt-viewer-app.c:460
269235 msgid "Do not ask me again"
270236 msgstr "मुझे फिर मत पूछें"
271237
272 #: ../src/virt-viewer-app.c:1008
238 #: ../src/virt-viewer-app.c:948
273239 #, c-format
274240 msgid "Waiting for display %d..."
275241 msgstr " %d प्रदर्शन के लिए प्रतीक्षा कर रहा है ..."
276242
277 #: ../src/virt-viewer-app.c:1117
243 #: ../src/virt-viewer-app.c:1055
278244 #, c-format
279245 msgid "Unsupported graphic type '%s'"
280246 msgstr ""
281247
282 #: ../src/virt-viewer-app.c:1200
248 #: ../src/virt-viewer-app.c:1138
283249 msgid "Connect to ssh failed."
284250 msgstr "सश से कनेक्ट करने में विफल."
285251
286 #: ../src/virt-viewer-app.c:1202
252 #: ../src/virt-viewer-app.c:1140
287253 msgid "Can't connect to channel, SSH only supported."
288254 msgstr "चैनल से कनेक्ट नहीं हो सकता, केवल सश समर्थित."
289255
290 #: ../src/virt-viewer-app.c:1214
256 #: ../src/virt-viewer-app.c:1152
291257 msgid "Connect to channel unsupported."
292258 msgstr " चैनल से कनेक्ट करना असहायक"
293259
294 #: ../src/virt-viewer-app.c:1276
260 #: ../src/virt-viewer-app.c:1214
295261 msgid "Display can only be attached through libvirt with --attach"
296262 msgstr ""
297263
298 #: ../src/virt-viewer-app.c:1299
264 #: ../src/virt-viewer-app.c:1237
299265 msgid "Connecting to graphic server"
300266 msgstr "ग्राफ़िक सर्वर से कनेक्ट हो रहा है."
301267
302 #: ../src/virt-viewer-app.c:1398
268 #: ../src/virt-viewer-app.c:1336
303269 msgid "Guest domain has shutdown"
304270 msgstr "अतिथि के डोमेन को शटडाउन किया है"
305271
306 #: ../src/virt-viewer-app.c:1459
272 #: ../src/virt-viewer-app.c:1397
307273 msgid "Connected to graphic server"
308274 msgstr "ग्राफ़िक सर्वर से जुड़ा"
309275
310 #: ../src/virt-viewer-app.c:1486
276 #: ../src/virt-viewer-app.c:1424
311277 #, c-format
312278 msgid "Unable to connect to the graphic server %s"
313279 msgstr "%s ग्राफ़िक सर्वर से कनेक्ट करने में असमर्थ"
314280
315 #: ../src/virt-viewer-app.c:1512
281 #: ../src/virt-viewer-app.c:1450
316282 #, c-format
317283 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318284 msgstr ""
319285
320 #: ../src/virt-viewer-app.c:1525
286 #: ../src/virt-viewer-app.c:1463
321287 #, c-format
322288 msgid "Unable to authenticate with remote desktop server: %s"
323289 msgstr "दूरस्थ डेस्कटॉप सर्वर के साथ सत्यापन करने में असमर्थ : %s"
324290
325 #: ../src/virt-viewer-app.c:1533
291 #: ../src/virt-viewer-app.c:1471
326292 #, c-format
327293 msgid "USB redirection error: %s"
328294 msgstr "यूएसबी पुनर्निर्देशन त्रुटि : %s"
329295
330 #: ../src/virt-viewer-app.c:1786
296 #: ../src/virt-viewer-app.c:1805
331297 #, c-format
332298 msgid "Zoom level must be within %d-%d\n"
333299 msgstr ""
334300
335 #: ../src/virt-viewer-app.c:2296
336 #, c-format
337 msgid "Display %d"
338 msgstr "प्रदर्शन %d"
339
340 #: ../src/virt-viewer-app.c:2552
301 #: ../src/virt-viewer-app.c:1858
302 #, c-format
303 msgid "%s\n"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:1868
307 #, c-format
308 msgid "%s version %s"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:2292
312 #, c-format
313 msgid "Display _%d"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2548
341317 #, c-format
342318 msgid "Invalid kiosk-quit argument: %s"
343319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:2559
322 msgid "Display version information"
323 msgstr "संस्करण की जानकारी दिखाता है"
344324
345325 #: ../src/virt-viewer-app.c:2561
346326 msgid "Zoom level of window, in percentage"
374354 msgid "Display debugging information"
375355 msgstr "डिबगिंग सूचना दिखाता है"
376356
377 #: ../src/virt-viewer-auth.c:88
357 #: ../src/virt-viewer-auth.c:89
378358 #, c-format
379359 msgid ""
380360 "Authentication is required for the %s connection to:\n"
383363 "\n"
384364 msgstr ""
385365
386 #: ../src/virt-viewer-auth.c:92
366 #: ../src/virt-viewer-auth.c:93
387367 #, c-format
388368 msgid "Authentication is required for the %s connection:\n"
389369 msgstr ""
395375 #. * indent-tabs-mode: nil
396376 #. * End:
397377 #.
398 #: ../src/virt-viewer-auth.xml.h:1
378 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
399379 msgid "Authentication required"
400380 msgstr "सत्यापन की आवश्यकता"
401381
402 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
382 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
383 msgid "_OK"
384 msgstr ""
385
386 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
387 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
403388 msgid "label"
404389 msgstr "लेबल"
405390
406 #: ../src/virt-viewer-auth.xml.h:3
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
407392 msgid "Password:"
408393 msgstr "कूटशब्द:"
409394
410 #: ../src/virt-viewer-auth.xml.h:4
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
411396 msgid "Username:"
412397 msgstr "उपयोगकर्ता नाम:"
413398
414 #: ../src/virt-viewer-auth.xml.h:5
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
415400 msgid "Show password"
416401 msgstr ""
417402
418 #: ../src/virt-viewer-display-vnc.c:133
403 #: ../src/virt-viewer-display-vnc.c:134
419404 msgid "VNC does not provide GUID"
420405 msgstr ""
421406
407 #: ../src/virt-viewer-file-transfer-dialog.c:152
408 msgid "Cancel"
409 msgstr ""
410
411 #: ../src/virt-viewer-file-transfer-dialog.c:163
412 msgid "File Transfers"
413 msgstr ""
414
422415 #: ../src/virt-viewer-main.c:38
423 #, c-format
424 msgid "%s version %s\n"
425 msgstr "%s संस्करण %s\n"
426
427 #: ../src/virt-viewer-main.c:62
428 msgid "Direct connection with no automatic tunnels"
429 msgstr " स्वचालित सुरंगों के साथ कोई भी प्रत्यक्ष कनेक्शन नहीं "
430
431 #: ../src/virt-viewer-main.c:64
432 msgid "Attach to the local display using libvirt"
433 msgstr "लिब्विर्ट का उपयोग करके स्थानीय डिस्प्ले का संलग्न करें"
434
435 #: ../src/virt-viewer-main.c:66
436 msgid "Connect to hypervisor"
437 msgstr "हाइपरविजर से कनेक्ट करें"
438
439 #: ../src/virt-viewer-main.c:68
440 msgid "Wait for domain to start"
441 msgstr "डोमेन को प्रारंभ करने के लिए प्रतीक्षा करें"
442
443 #: ../src/virt-viewer-main.c:70
444 msgid "Reconnect to domain upon restart"
445 msgstr "पुनः आरंभ होने पर डोमेन को फिर से जुड़ें"
446
447 #: ../src/virt-viewer-main.c:77
448416 msgid "Virt Viewer"
449417 msgstr "वर्चुअल व्यूअर"
450418
451 #: ../src/virt-viewer-main.c:80
452 #, c-format
453 msgid "Run '%s --help' to see a full list of available command line options"
454 msgstr "'%s --help' को उपलब्ध कमांड लाइन की पूरी सूची देखने के लिए चलाएँ"
455
456 #: ../src/virt-viewer-main.c:86
457 msgid "Virtual machine graphical console"
458 msgstr ""
459
460 #: ../src/virt-viewer-main.c:107
461 #, c-format
462 msgid ""
463 "\n"
464 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
465 "\n"
466 "%s\n"
467 "\n"
468 msgstr ""
469
470 #: ../src/virt-viewer-main.c:112
471 #, c-format
472 msgid ""
473 "\n"
474 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
475 "\n"
476 msgstr ""
477
478 #: ../src/virt-viewer-session-spice.c:694
419 #: ../src/virt-viewer-session-spice.c:705
479420 msgid "Invalid password"
480421 msgstr ""
481422
482423 #. Create the widgets
483 #: ../src/virt-viewer-session-spice.c:786
424 #: ../src/virt-viewer-session-spice.c:797
484425 msgid "Select USB devices for redirection"
485426 msgstr "पुनर्निर्देशन के लिए यूएसबी उपकरणों का चयन करें"
486427
487 #: ../src/virt-viewer-session-vnc.c:153
428 #: ../src/virt-viewer-session-spice.c:799
429 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
430 msgid "_Close"
431 msgstr ""
432
433 #: ../src/virt-viewer-session-vnc.c:156
488434 #, c-format
489435 msgid "Unsupported authentication type %d"
490436 msgstr "असहायक सत्यापन के प्रकार %d"
497443 msgid "No virtual machine was chosen"
498444 msgstr ""
499445
500 #: ../src/virt-viewer-window.c:537
446 #: ../src/virt-viewer-window.c:534
501447 msgid "Ctrl+Alt+_Del"
502448 msgstr "Ctrl+Alt+_Del"
503449
504 #: ../src/virt-viewer-window.c:538
450 #: ../src/virt-viewer-window.c:535
505451 msgid "Ctrl+Alt+_Backspace"
506452 msgstr "Ctrl+Alt+_Backspace"
507453
508 #: ../src/virt-viewer-window.c:540
454 #: ../src/virt-viewer-window.c:537
509455 msgid "Ctrl+Alt+F_1"
510456 msgstr "Ctrl+Alt+F_1"
511457
512 #: ../src/virt-viewer-window.c:541
458 #: ../src/virt-viewer-window.c:538
513459 msgid "Ctrl+Alt+F_2"
514460 msgstr "Ctrl+Alt+F_2"
515461
516 #: ../src/virt-viewer-window.c:542
462 #: ../src/virt-viewer-window.c:539
517463 msgid "Ctrl+Alt+F_3"
518464 msgstr "Ctrl+Alt+F_3"
519465
520 #: ../src/virt-viewer-window.c:543
466 #: ../src/virt-viewer-window.c:540
521467 msgid "Ctrl+Alt+F_4"
522468 msgstr "Ctrl+Alt+F_4"
523469
524 #: ../src/virt-viewer-window.c:544
470 #: ../src/virt-viewer-window.c:541
525471 msgid "Ctrl+Alt+F_5"
526472 msgstr "Ctrl+Alt+F_5"
527473
528 #: ../src/virt-viewer-window.c:545
474 #: ../src/virt-viewer-window.c:542
529475 msgid "Ctrl+Alt+F_6"
530476 msgstr "Ctrl+Alt+F_6"
531477
532 #: ../src/virt-viewer-window.c:546
478 #: ../src/virt-viewer-window.c:543
533479 msgid "Ctrl+Alt+F_7"
534480 msgstr "Ctrl+Alt+F_7"
535481
536 #: ../src/virt-viewer-window.c:547
482 #: ../src/virt-viewer-window.c:544
537483 msgid "Ctrl+Alt+F_8"
538484 msgstr "Ctrl+Alt+F_8"
539485
540 #: ../src/virt-viewer-window.c:548
486 #: ../src/virt-viewer-window.c:545
541487 msgid "Ctrl+Alt+F_9"
542488 msgstr "Ctrl+Alt+F_9"
543489
544 #: ../src/virt-viewer-window.c:549
490 #: ../src/virt-viewer-window.c:546
545491 msgid "Ctrl+Alt+F1_0"
546492 msgstr "Ctrl+Alt+F1_0"
547493
548 #: ../src/virt-viewer-window.c:550
494 #: ../src/virt-viewer-window.c:547
549495 msgid "Ctrl+Alt+F11"
550496 msgstr "Ctrl+Alt+F11"
551497
552 #: ../src/virt-viewer-window.c:551
498 #: ../src/virt-viewer-window.c:548
553499 msgid "Ctrl+Alt+F12"
554500 msgstr "Ctrl+Alt+F12"
555501
556 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
502 #: ../src/virt-viewer-window.c:919
503 msgid "_Save"
504 msgstr ""
505
506 #: ../src/virt-viewer-window.c:927
557507 msgid "Screenshot"
558508 msgstr "स्क्रीनशॉट"
559509
560 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
510 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
561511 msgid "Unknown"
562512 msgstr ""
563513
564 #: ../src/virt-viewer-window.c:1062
514 #: ../src/virt-viewer-window.c:1071
565515 msgid "Disconnect"
566516 msgstr "डिस्कनेक्ट करें"
567517
568 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
569 #: ../src/virt-viewer.xml.h:3
518 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
570519 msgid "USB device selection"
571520 msgstr "यूएसबी उपकरण चयन"
572521
573 #: ../src/virt-viewer-window.c:1081
522 #: ../src/virt-viewer-window.c:1089
574523 msgid "Send key combination"
575524 msgstr "कुंजी संयोजन भेजें"
576525
577 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
526 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
578527 msgid "Leave fullscreen"
579528 msgstr "फुल स्क्रीन छोड़ दें"
580529
581 #: ../src/virt-viewer-window.c:1173
530 #: ../src/virt-viewer-window.c:1175
582531 msgid "Ctrl+Alt"
583532 msgstr "Ctrl+Alt"
584533
585 #: ../src/virt-viewer-window.c:1176
534 #: ../src/virt-viewer-window.c:1178
586535 #, c-format
587536 msgid "(Press %s to release pointer)"
588537 msgstr "(सूचक जारी करने के लिए %s दबाएँ)"
591540 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
592541 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
593542 #.
594 #: ../src/virt-viewer-window.c:1187
543 #: ../src/virt-viewer-window.c:1189
595544 #, c-format
596545 msgid "%s%s%s - %s"
597546 msgstr "%s%s%s - %s"
598547
599548 #. translators: <space>
600 #: ../src/virt-viewer-window.c:1191
549 #: ../src/virt-viewer-window.c:1193
601550 msgid " "
602551 msgstr " "
603552
604 #: ../src/virt-viewer-file.c:825
553 #: ../src/virt-viewer-file.c:843
605554 #, c-format
606555 msgid ""
607556 "At least %s version %s is required to setup this connection, see %s for "
608557 "details"
609558 msgstr ""
610559
611 #: ../src/virt-viewer-file.c:833
560 #: ../src/virt-viewer-file.c:851
612561 #, c-format
613562 msgid "At least %s version %s is required to setup this connection"
614563 msgstr "कम से कम %s संस्करण %s इस कनेक्शन के सेटअप के लिए जरूरी है"
615564
616 #: ../src/virt-viewer.c:163
565 #: ../src/virt-viewer.c:90
566 msgid "Direct connection with no automatic tunnels"
567 msgstr " स्वचालित सुरंगों के साथ कोई भी प्रत्यक्ष कनेक्शन नहीं "
568
569 #: ../src/virt-viewer.c:92
570 msgid "Attach to the local display using libvirt"
571 msgstr "लिब्विर्ट का उपयोग करके स्थानीय डिस्प्ले का संलग्न करें"
572
573 #: ../src/virt-viewer.c:94
574 msgid "Connect to hypervisor"
575 msgstr "हाइपरविजर से कनेक्ट करें"
576
577 #: ../src/virt-viewer.c:96
578 msgid "Wait for domain to start"
579 msgstr "डोमेन को प्रारंभ करने के लिए प्रतीक्षा करें"
580
581 #: ../src/virt-viewer.c:98
582 msgid "Reconnect to domain upon restart"
583 msgstr "पुनः आरंभ होने पर डोमेन को फिर से जुड़ें"
584
585 #: ../src/virt-viewer.c:105
586 msgid "Virtual machine graphical console"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:124
590 #, c-format
591 msgid ""
592 "\n"
593 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
594 "\n"
595 msgstr ""
596
597 #: ../src/virt-viewer.c:136
598 #, c-format
599 msgid ""
600 "\n"
601 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
602 "\n"
603 msgstr ""
604
605 #: ../src/virt-viewer.c:250
617606 msgid "Waiting for guest domain to re-start"
618607 msgstr "अतिथि डोमेन को फिर से प्रारंभ करने के लिए प्रतीक्षा करे "
619608
620 #: ../src/virt-viewer.c:409
609 #: ../src/virt-viewer.c:496
621610 #, c-format
622611 msgid "Cannot determine the graphic type for the guest %s"
623612 msgstr "%s अतिथि के लिए ग्राफ़िक प्रकार निर्धारित नहीं कर सकते है "
624613
625 #: ../src/virt-viewer.c:448
614 #: ../src/virt-viewer.c:535
626615 #, c-format
627616 msgid "Cannot determine the host for the guest %s"
628617 msgstr "%s अतिथि के लिए होस्ट का निर्धारण नहीं कर सकते है "
629618
630 #: ../src/virt-viewer.c:476
619 #: ../src/virt-viewer.c:563
631620 #, c-format
632621 msgid "Guest '%s' is not reachable"
633622 msgstr ""
634623
635 #: ../src/virt-viewer.c:697
624 #: ../src/virt-viewer.c:784
636625 #, c-format
637626 msgid "Virtual machine %s is not running"
638627 msgstr ""
639628
640 #: ../src/virt-viewer.c:720
629 #: ../src/virt-viewer.c:807
641630 msgid "Waiting for libvirt to start"
642631 msgstr "libvirt शुरू करने के लिए प्रतीक्षा की जा रही है"
643632
644 #: ../src/virt-viewer.c:724
633 #: ../src/virt-viewer.c:811
645634 msgid "Finding guest domain"
646635 msgstr "अतिथि डोमेन को खोज रहा है "
647636
648 #: ../src/virt-viewer.c:728
637 #: ../src/virt-viewer.c:815
649638 msgid "Waiting for guest domain to be created"
650639 msgstr "अतिथि डोमेन बनाई जाने प्रतीक्षा के लिए की जा रही है"
651640
652 #: ../src/virt-viewer.c:750
641 #: ../src/virt-viewer.c:837
653642 msgid "Checking guest domain status"
654643 msgstr "अतिथि डोमेन की स्थिति की जाँच हो रही है"
655644
656 #: ../src/virt-viewer.c:753
645 #: ../src/virt-viewer.c:840
657646 msgid "Cannot get guest state"
658647 msgstr ""
659648
660 #: ../src/virt-viewer.c:759
649 #: ../src/virt-viewer.c:846
661650 msgid "Waiting for guest domain to start"
662651 msgstr " अतिथि डोमेन शुरू करने के लिए प्रतीक्षा की जा रही है "
663652
664 #: ../src/virt-viewer.c:863
653 #: ../src/virt-viewer.c:950
665654 #, c-format
666655 msgid "Unable to connect to libvirt with URI: %s."
667656 msgstr ""
668657
669 #: ../src/virt-viewer.c:864
658 #: ../src/virt-viewer.c:951
670659 msgid "[none]"
671660 msgstr "कुछ नहीं"
672661
673 #: ../src/virt-viewer.c:871
662 #: ../src/virt-viewer.c:958
674663 msgid "Authentication failed."
675664 msgstr ""
676665
677 #: ../src/virt-viewer.c:931
666 #: ../src/virt-viewer.c:1018
678667 msgid "Failed to connect: "
679668 msgstr ""
680669
685674 #. * indent-tabs-mode: nil
686675 #. * End:
687676 #.
688 #: ../src/virt-viewer.xml.h:1
677 #: ../src/resources/ui/virt-viewer.ui.h:1
689678 msgid "_File"
690679 msgstr "फाइल (_F)"
691680
692 #: ../src/virt-viewer.xml.h:4
681 #: ../src/resources/ui/virt-viewer.ui.h:2
682 msgid "_Screenshot"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:3
686 msgid "_USB device selection"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:4
693690 msgid "Smartcard insertion"
694691 msgstr "स्मार्टकार्ड प्रवेश"
695692
696 #: ../src/virt-viewer.xml.h:5
693 #: ../src/resources/ui/virt-viewer.ui.h:5
697694 msgid "Smartcard removal"
698695 msgstr "स्मार्टकार्ड हटाना"
699696
700 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
701 msgid "Preferences"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:7
697 #: ../src/resources/ui/virt-viewer.ui.h:6
698 msgid "_Preferences"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:7
702 msgid "_Quit"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:8
705706 msgid "_View"
706707 msgstr "दृश्य (_V)"
707708
708 #: ../src/virt-viewer.xml.h:8
709 msgid "Full screen"
710 msgstr "फुल स्क्रीन"
711
712 #: ../src/virt-viewer.xml.h:9
709 #: ../src/resources/ui/virt-viewer.ui.h:9
710 msgid "_Full screen"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:10
713714 msgid "_Zoom"
714715 msgstr "ज़ूम (_Z)"
715716
716 #: ../src/virt-viewer.xml.h:10
717 msgid "Displays"
718 msgstr "प्रदर्शित करे "
719
720 #: ../src/virt-viewer.xml.h:11
717 #: ../src/resources/ui/virt-viewer.ui.h:11
718 msgid "Zoom _In"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:12
722 msgid "Zoom _Out"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:13
726 msgid "_Normal Size"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:14
730 msgid "_Displays"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:15
721734 msgid "Release cursor"
722735 msgstr "रिलीज कर्सर"
723736
724 #: ../src/virt-viewer.xml.h:12
737 #: ../src/resources/ui/virt-viewer.ui.h:16
725738 msgid "_Send key"
726739 msgstr "कुंजी भेजें (_S)"
727740
728 #: ../src/virt-viewer.xml.h:13
741 #: ../src/resources/ui/virt-viewer.ui.h:17
729742 msgid "_Help"
730743 msgstr "सहायता (_H)"
731744
732 #: ../src/virt-viewer.xml.h:14
745 #: ../src/resources/ui/virt-viewer.ui.h:18
733746 msgid "_Guest Details"
734747 msgstr ""
735748
736 #: ../src/virt-viewer-guest-details.xml.h:1
749 #: ../src/resources/ui/virt-viewer.ui.h:19
750 msgid "_About"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer.ui.h:20
754 msgid "_Change CD"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
737758 msgid "Guest Details"
738759 msgstr ""
739760
740 #: ../src/virt-viewer-guest-details.xml.h:2
761 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
741762 msgid "Name:"
742763 msgstr ""
743764
744 #: ../src/virt-viewer-guest-details.xml.h:3
765 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
745766 msgid "GUID:"
746767 msgstr ""
747768
748 #: ../src/virt-viewer-vm-connection.xml.h:1
769 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
749770 msgid "Choose a virtual machine"
750771 msgstr ""
751772
752 #: ../src/virt-viewer-vm-connection.xml.h:2
773 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
753774 msgid "Name"
754775 msgstr ""
755776
756 #: ../src/virt-viewer-vm-connection.xml.h:3
777 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
757778 msgid "Available virtual machines"
758779 msgstr ""
759780
760 #: ../src/virt-viewer-preferences.xml.h:2
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
782 msgid "Preferences"
783 msgstr ""
784
785 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
761786 msgid "Folder sharing"
762787 msgstr ""
763788
764 #: ../src/virt-viewer-preferences.xml.h:3
789 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
765790 msgid "Share folder"
766791 msgstr ""
767792
768 #: ../src/virt-viewer-preferences.xml.h:4
793 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
769794 msgid "Read-only"
770795 msgstr ""
771796
772 #: ../src/virt-viewer-preferences.xml.h:5
797 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
773798 msgid "Spice"
774799 msgstr ""
+343
-316
po/hr.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+463
-428
po/hu.po less more
55 # Nikolas Slivka <snicore@gmail.com>, 2010
66 # Szabo Attila <atekka@gmail.com>, 2013
77 # Zoltan Hoppár <zoltanh721@fedoraproject.org>, 2012-2013
8 # Porcsin László <dzsolly85@gmail.com>, 2015. #zanata
8 # Meskó Balázs <meskobalazs@gmail.com>, 2016. #zanata
99 msgid ""
1010 msgstr ""
1111 "Project-Id-Version: PACKAGE VERSION\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
14 "PO-Revision-Date: 2015-02-22 10:54-0500\n"
15 "Last-Translator: Porcsin László <dzsolly85@gmail.com>\n"
13 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
14 "PO-Revision-Date: 2016-03-09 01:08-0500\n"
15 "Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
1616 "Language-Team: Hungarian (http://www.transifex.com/projects/p/virt-viewer/"
1717 "language/hu/)\n"
1818 "Language: hu\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.7.3\n"
24
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
23 "X-Generator: Zanata 3.8.4\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
2627 msgid "Remote Viewer"
2728 msgstr "Távoli megjelenítő"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 msgid ""
36 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
37 "time it supports guest OS using the VNC or SPICE protocols. Further "
38 "protocols may be supported in the future as user demand dictates. The viewer "
39 "can connect directly to both local and remotely hosted guest OS, optionally "
40 "using SSL/TLS encryption."
41 msgstr ""
2842
2943 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Access remote desktops"
3246
3347 #: ../data/virt-viewer-mime.xml.in.h:1
3448 msgid "Virt-Viewer connection file"
35 msgstr "Virt-Nézőke konnekciós fájl"
36
37 #: ../src/gbinding.c:637
38 msgid "Source"
39 msgstr "Forrás"
40
41 #: ../src/gbinding.c:638
42 msgid "The source of the binding"
43 msgstr "A forrás kapcsolódási pontja"
44
45 #: ../src/gbinding.c:652
46 msgid "Target"
47 msgstr "Cél"
48
49 #: ../src/gbinding.c:653
50 msgid "The target of the binding"
51 msgstr "A kapcsolódási cél"
52
53 #: ../src/gbinding.c:668
54 msgid "Source Property"
55 msgstr "Forrás tulajdonos"
56
57 #: ../src/gbinding.c:669
58 msgid "The property on the source to bind"
59 msgstr "A tulajdon a forráson a bind-hoz"
60
61 #: ../src/gbinding.c:684
62 msgid "Target Property"
63 msgstr "Cél Tulajdonos"
64
65 #: ../src/gbinding.c:685
66 msgid "The property on the target to bind"
67 msgstr "A tulajdon a célon a bind-hoz"
68
69 #: ../src/gbinding.c:699
70 msgid "Flags"
71 msgstr "Jelzők"
72
73 #: ../src/gbinding.c:700
74 msgid "The binding flags"
75 msgstr "Kötési jelzők"
76
77 #: ../src/remote-viewer-main.c:50
78 #, c-format
79 msgid "remote-viewer version %s"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
83 msgid "Display version information"
84 msgstr "Verzió információk megjelenítése"
85
86 #: ../src/remote-viewer-main.c:105
49 msgstr "Virt-Viewer kapcsolódási fájl"
50
51 #: ../src/remote-viewer.c:139
8752 msgid "Set window title"
8853 msgstr "Ablak címének megadása"
8954
90 #: ../src/remote-viewer-main.c:108
55 #: ../src/remote-viewer.c:142
9156 msgid "Open connection using Spice controller communication"
92 msgstr "Kapcsolat megnyitása a Spice vezérlő kommunikációjában"
93
94 #: ../src/remote-viewer-main.c:120
57 msgstr "Kapcsolat megnyitása Spice vezérlő kommunikációval"
58
59 #: ../src/remote-viewer.c:150
9560 msgid "Remote viewer client"
9661 msgstr "Távoli megjelenítő kliens"
9762
98 #: ../src/remote-viewer-main.c:138
99 #, c-format
100 msgid ""
101 "%s\n"
102 "Run '%s --help' to see a full list of available command line options\n"
103 msgstr ""
104 "%s\n"
105 "Futtassa a '%s --help' parancsot a teljes elérhető parancssori opciókért\n"
106
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr ""
111 "Hiba: külön paraméterek kerültek megadásra a Spice vezérlő használatakor\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "Hiba: több URI nem kezelhető egyszerre\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
63 #: ../src/remote-viewer.c:175
64 #, c-format
65 msgid ""
66 "\n"
67 "Error: can't handle multiple URIs\n"
68 "\n"
69 msgstr ""
70
71 #: ../src/remote-viewer.c:187
72 #, c-format
73 msgid ""
74 "\n"
75 "Error: extra arguments given while using Spice controller\n"
76 "\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
80 #, c-format
81 msgid "Run '%s --help' to see a full list of available command line options\n"
82 msgstr ""
83
84 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11985 msgid "Failed to initiate connection"
120 msgstr "Sikertelen kapcsolat indítás"
121
122 #: ../src/remote-viewer.c:313
86 msgstr "Sikertelen kapcsolatindítás"
87
88 #: ../src/remote-viewer.c:297
12389 msgid "Display disabled by controller"
12490 msgstr "Kijelző kikapcsolva a vezérlő által"
12591
126 #: ../src/remote-viewer.c:609
92 #: ../src/remote-viewer.c:593
12793 #, c-format
12894 msgid "Controller connection failed: %s"
12995 msgstr "Vezérlő kapcsolat sikertelen: %s"
13096
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr "_CD váltás"
134
135 #: ../src/remote-viewer.c:855
97 #: ../src/remote-viewer.c:848
13698 msgid "failed to parse ovirt uri"
137 msgstr ""
138
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
99 msgstr "nem sikerült feldolgozni az ovirt URI-t"
100
101 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140102 msgid "Authentication was cancelled"
141 msgstr ""
142
143 #: ../src/remote-viewer.c:900
103 msgstr "A hitelesítés meg lett szakítva"
104
105 #: ../src/remote-viewer.c:893
144106 #, c-format
145107 msgid "oVirt VM %s is not running"
146 msgstr ""
147
148 #: ../src/remote-viewer.c:914
108 msgstr "A(z) %s oVirt VM nem fut"
109
110 #: ../src/remote-viewer.c:907
149111 #, c-format
150112 msgid "oVirt VM %s has no display"
151 msgstr ""
152
153 #: ../src/remote-viewer.c:940
113 msgstr "A(z) %s oVirt VM-nek nincs kijelzője"
114
115 #: ../src/remote-viewer.c:933
154116 #, c-format
155117 msgid "oVirt VM %s has no host information"
156 msgstr ""
157
158 #: ../src/remote-viewer.c:951
118 msgstr "A(z) %s oVirt VM-nek nincsenek gazda információi"
119
120 #: ../src/remote-viewer.c:944
159121 #, c-format
160122 msgid "oVirt VM %s has unknown display type: %d"
161 msgstr ""
162
163 #: ../src/remote-viewer.c:1094
123 msgstr "A(z) %s oVirt VM-nek ismeretlen a megjelenítő típusa: %d"
124
125 #: ../src/remote-viewer.c:1115
164126 msgid "Setting up Spice session..."
165 msgstr "Spice folyamat beállítása..."
166
167 #: ../src/remote-viewer.c:1102
127 msgstr "Spice munkamenet beállítása…"
128
129 #: ../src/remote-viewer.c:1123
168130 msgid "No connection was chosen"
169 msgstr ""
170
171 #: ../src/remote-viewer.c:1120
131 msgstr "Nem került kiválasztásra kapcsolat"
132
133 #: ../src/remote-viewer.c:1141
172134 #, c-format
173135 msgid "Invalid file %s: "
174 msgstr ""
175
176 #: ../src/remote-viewer.c:1128
136 msgstr "Érvénytelen fájl %s:"
137
138 #: ../src/remote-viewer.c:1149
177139 msgid "Cannot determine the connection type from URI"
178 msgstr "Kapcsolattípus nem meghatározható az URI-ról "
179
180 #: ../src/remote-viewer.c:1134
140 msgstr "A kapcsolattípus nem határozható meg az URI-ból"
141
142 #: ../src/remote-viewer.c:1155
181143 msgid "Couldn't open oVirt session: "
182 msgstr ""
144 msgstr "Az oVirt munkamenet nem nyitható meg: "
183145
184146 #.
185147 #. * Local variables:
188150 #. * indent-tabs-mode: nil
189151 #. * End:
190152 #.
191 #: ../src/remote-viewer-connect.xml.h:1
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192154 msgid "Connection details"
193155 msgstr "Kapcsolat részletei"
194156
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr ""
198
199 #: ../src/remote-viewer-connect.xml.h:3
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 msgid "Connection _Address"
159 msgstr ""
160
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200162 msgid "For example, spice://foo.example.org:5900"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:4
163 msgstr "Például spice://valami.pelda.hu:5900"
164
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204166 msgid "Recent connections"
205 msgstr ""
206
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr ""
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "A Glade-ről"
218
219 #: ../src/virt-viewer-about.xml.h:2
167 msgstr "Előző kapcsolatok"
168
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
170 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
172 msgid "_Cancel"
173 msgstr ""
174
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
176 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 msgid "C_onnect"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:1
181 msgid "About Virt-Viewer"
182 msgstr ""
183
184 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220185 msgid ""
221186 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222187 "Copyright (C) 2007-2014 Red Hat, Inc."
223188 msgstr ""
224
225 #: ../src/virt-viewer-about.xml.h:4
189 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
190 "Copyright (C) 2007-2014 Red Hat, Inc."
191
192 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226193 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227194 msgstr ""
228 "Távoli vezérlésű asztal kliens beépített GTK-VNC, SPICE-GTK és libvirt "
229 "támogatással"
230
231 #: ../src/virt-viewer-about.xml.h:5
195 "Egy távoli asztal kliens beépített GTK-VNC, SPICE-GTK és libvirt támogatással"
196
197 #: ../src/resources/ui/virt-viewer-about.ui.h:5
232198 msgid "virt-manager.org"
233199 msgstr "virt-manager.org"
234200
235 #: ../src/virt-viewer-about.xml.h:6
201 #: ../src/resources/ui/virt-viewer-about.ui.h:6
236202 msgid ""
237203 "This program is free software; you can redistribute it and/or modify\n"
238204 "it under the terms of the GNU General Public License as published by\n"
248214 "along with this program; if not, write to the Free Software\n"
249215 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
250216 msgstr ""
251 "This program is free software; you can redistribute it and/or modify\n"
252 "it under the terms of the GNU General Public License as published by\n"
253 "the Free Software Foundation; either version 2 of the License, or\n"
254 "(at your option) any later version.\n"
255 "\n"
256 "This program is distributed in the hope that it will be useful,\n"
257 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
258 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
259 "GNU General Public License for more details.\n"
260 "\n"
261 "You should have received a copy of the GNU General Public License\n"
262 "along with this program; if not, write to the Free Software\n"
263 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
264
265 #: ../src/virt-viewer-about.xml.h:20
217 "Ez egy szabad szoftver, terjesztheti és/vagy módosíthatja a Free Software "
218 "Foundation által kiadott GNU General Public License második (vagy bármely "
219 "későbbi) változatában foglaltak alapján.\n"
220 "\n"
221 "Ezt a programot abban a reményben terjesztjük, hogy hasznos lesz, de nem "
222 "vállalunk SEMMIFÉLE GARANCIÁT, még olyan értelemben sem, hogy a program "
223 "alkalmas-e a KÖZREADÁSRA vagy EGY BIZONYOS FELADAT ELVÉGZÉSÉRE. További "
224 "részletekért tanulmányozza a GNU GPL licencet.\n"
225 "\n"
226 "A programhoz a GNU General Public License egy példánya is jár, ha nem kapta "
227 "meg, írjon a Free Software Foundation Inc.-nek. Levélcímük: 59 Temple Place, "
228 "Suite 330, Boston, MA 02111-1307 USA\n"
229
230 #: ../src/resources/ui/virt-viewer-about.ui.h:20
266231 msgid "The Fedora Translation Team"
267 msgstr "A Fedora Fordítói csapata"
268
269 #: ../src/virt-viewer-app.c:526
232 msgstr "A Fedora fordítói csapata"
233
234 #: ../src/virt-viewer-app.c:458
270235 msgid "Do you want to close the session?"
271 msgstr "Biztos vagy abban hogy be akarod zárni ezt a kapcsolatot?"
272
273 #: ../src/virt-viewer-app.c:528
236 msgstr "Biztosan le akarja zárni ezt a munkamenetet?"
237
238 #: ../src/virt-viewer-app.c:460
274239 msgid "Do not ask me again"
275240 msgstr "Ne kérdezze meg többet"
276241
277 #: ../src/virt-viewer-app.c:1008
242 #: ../src/virt-viewer-app.c:948
278243 #, c-format
279244 msgid "Waiting for display %d..."
280 msgstr "Várakozás a %d kijelzőre..."
281
282 #: ../src/virt-viewer-app.c:1117
245 msgstr "Várakozás a(z) %d. kijelzőre…"
246
247 #: ../src/virt-viewer-app.c:1055
283248 #, c-format
284249 msgid "Unsupported graphic type '%s'"
285 msgstr ""
286
287 #: ../src/virt-viewer-app.c:1200
250 msgstr "Nem támogatott '%s' grafikus mód típus"
251
252 #: ../src/virt-viewer-app.c:1138
288253 msgid "Connect to ssh failed."
289254 msgstr "SSH kapcsolat sikertelen."
290255
291 #: ../src/virt-viewer-app.c:1202
256 #: ../src/virt-viewer-app.c:1140
292257 msgid "Can't connect to channel, SSH only supported."
293 msgstr "Csatornára való csatlakozás meghiúsult, kizárólag SSH támogatott."
258 msgstr "Csatornához való csatlakozás meghiúsult, kizárólag az SSH támogatott."
259
260 #: ../src/virt-viewer-app.c:1152
261 msgid "Connect to channel unsupported."
262 msgstr "A csatornához kapcsolódás nem támogatott."
294263
295264 #: ../src/virt-viewer-app.c:1214
296 msgid "Connect to channel unsupported."
297 msgstr "Kapcsolódás egy nem támogatott csatornához."
298
299 #: ../src/virt-viewer-app.c:1276
300265 msgid "Display can only be attached through libvirt with --attach"
301266 msgstr ""
302
303 #: ../src/virt-viewer-app.c:1299
267 "A kijelző a libvirt-en keresztül csak az --attach-csal kapcsolható össze"
268
269 #: ../src/virt-viewer-app.c:1237
304270 msgid "Connecting to graphic server"
305 msgstr "Csatlakozás egy grafikus kiszolgálóhoz"
306
307 #: ../src/virt-viewer-app.c:1398
271 msgstr "Csatlakozás a grafikus kiszolgálóhoz"
272
273 #: ../src/virt-viewer-app.c:1336
308274 msgid "Guest domain has shutdown"
309 msgstr "Vendég tartomány leáll"
310
311 #: ../src/virt-viewer-app.c:1459
275 msgstr "A vendég tartomány leállt"
276
277 #: ../src/virt-viewer-app.c:1397
312278 msgid "Connected to graphic server"
313279 msgstr "Csatlakozva a grafikus kiszolgálóhoz"
314280
315 #: ../src/virt-viewer-app.c:1486
281 #: ../src/virt-viewer-app.c:1424
316282 #, c-format
317283 msgid "Unable to connect to the graphic server %s"
318 msgstr "%s grafikus kiszolgálóhoz a kapcsolódás nem lehetséges"
319
320 #: ../src/virt-viewer-app.c:1512
284 msgstr "A(z) %s grafikus kiszolgálóhoz kapcsolódás nem lehetséges"
285
286 #: ../src/virt-viewer-app.c:1450
321287 #, c-format
322288 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
323 msgstr ""
324
325 #: ../src/virt-viewer-app.c:1525
289 msgstr "Nem lehetséges a hitelesítés a(z) %s távoli asztal kiszolgálóhoz: %s\n"
290
291 #: ../src/virt-viewer-app.c:1463
326292 #, c-format
327293 msgid "Unable to authenticate with remote desktop server: %s"
328 msgstr "Bejelentkezés sikertelen a távoli kiszolgálónál: %s"
329
330 #: ../src/virt-viewer-app.c:1533
294 msgstr "Hitelesítés sikertelen a távoli asztal kiszolgálóhoz: %s"
295
296 #: ../src/virt-viewer-app.c:1471
331297 #, c-format
332298 msgid "USB redirection error: %s"
333299 msgstr "USB átirányítási hiba: %s"
334300
335 #: ../src/virt-viewer-app.c:1786
301 #: ../src/virt-viewer-app.c:1805
336302 #, c-format
337303 msgid "Zoom level must be within %d-%d\n"
338 msgstr ""
339
340 #: ../src/virt-viewer-app.c:2296
341 #, c-format
342 msgid "Display %d"
343 msgstr "%d kijelző"
344
345 #: ../src/virt-viewer-app.c:2552
304 msgstr "A nagyítási szint %d-%d között kell legyen\n"
305
306 #: ../src/virt-viewer-app.c:1858
307 #, c-format
308 msgid "%s\n"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:1868
312 #, c-format
313 msgid "%s version %s"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2292
317 #, c-format
318 msgid "Display _%d"
319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:2548
346322 #, c-format
347323 msgid "Invalid kiosk-quit argument: %s"
348 msgstr ""
324 msgstr "Érvénytelen kioszk-kilépési argumentum: %s"
325
326 #: ../src/virt-viewer-app.c:2559
327 msgid "Display version information"
328 msgstr "Verzió információk megjelenítése"
349329
350330 #: ../src/virt-viewer-app.c:2561
351331 msgid "Zoom level of window, in percentage"
352 msgstr "Ablak nagyítási fokozata, százalékban"
332 msgstr "Ablak nagyítási szintje, százalékban"
353333
354334 #: ../src/virt-viewer-app.c:2563
355335 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
356336 msgstr ""
337 "Megnyitás teljes képernyős módban (vendég felbontásának igazítása a "
338 "klienshez)"
357339
358340 #: ../src/virt-viewer-app.c:2565
359341 msgid "Customise hotkeys"
361343
362344 #: ../src/virt-viewer-app.c:2567
363345 msgid "Enable kiosk mode"
364 msgstr ""
346 msgstr "Kioszk mód engedélyezése"
365347
366348 #: ../src/virt-viewer-app.c:2569
367349 msgid "Quit on given condition in kiosk mode"
368 msgstr ""
350 msgstr "A megadott feltétel esetén kilépés kioszk módból"
369351
370352 #: ../src/virt-viewer-app.c:2569
371353 msgid "<never|on-disconnect>"
372 msgstr ""
354 msgstr "<never|on-disconnect>"
373355
374356 #: ../src/virt-viewer-app.c:2571
375357 msgid "Display verbose information"
379361 msgid "Display debugging information"
380362 msgstr "Hibakeresési információk megjelenítése"
381363
382 #: ../src/virt-viewer-auth.c:88
364 #: ../src/virt-viewer-auth.c:89
383365 #, c-format
384366 msgid ""
385367 "Authentication is required for the %s connection to:\n"
387369 "<b>%s</b>\n"
388370 "\n"
389371 msgstr ""
390
391 #: ../src/virt-viewer-auth.c:92
372 "Hitelesítés szükséges a(z) %s kapcsolatnál ehhez:\n"
373 "\n"
374 "<b>%s</b>\n"
375 "\n"
376
377 #: ../src/virt-viewer-auth.c:93
392378 #, c-format
393379 msgid "Authentication is required for the %s connection:\n"
394 msgstr ""
380 msgstr "Hitelesítés szükséges a(z) %s kapcsolathoz:\n"
395381
396382 #.
397383 #. * Local variables:
400386 #. * indent-tabs-mode: nil
401387 #. * End:
402388 #.
403 #: ../src/virt-viewer-auth.xml.h:1
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
404390 msgid "Authentication required"
405 msgstr "Azonosítás szükséges"
406
407 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
391 msgstr "Hitelesítés szükséges"
392
393 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
394 msgid "_OK"
395 msgstr ""
396
397 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
398 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
408399 msgid "label"
409 msgstr "cimke"
410
411 #: ../src/virt-viewer-auth.xml.h:3
400 msgstr "címke"
401
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
412403 msgid "Password:"
413404 msgstr "Jelszó:"
414405
415 #: ../src/virt-viewer-auth.xml.h:4
406 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
416407 msgid "Username:"
417 msgstr "Felhasználói név:"
418
419 #: ../src/virt-viewer-auth.xml.h:5
408 msgstr "Felhasználónév:"
409
410 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
420411 msgid "Show password"
421 msgstr ""
422
423 #: ../src/virt-viewer-display-vnc.c:133
412 msgstr "Jelszó megjelenítése"
413
414 #: ../src/virt-viewer-display-vnc.c:134
424415 msgid "VNC does not provide GUID"
416 msgstr "A VNC nem szolgáltat GUID-ot"
417
418 #: ../src/virt-viewer-file-transfer-dialog.c:152
419 msgid "Cancel"
420 msgstr "Mégse"
421
422 #: ../src/virt-viewer-file-transfer-dialog.c:163
423 msgid "File Transfers"
425424 msgstr ""
426425
427426 #: ../src/virt-viewer-main.c:38
428 #, c-format
429 msgid "%s version %s\n"
430 msgstr "%s verzió %s\n"
431
432 #: ../src/virt-viewer-main.c:62
433 msgid "Direct connection with no automatic tunnels"
434 msgstr "Közvetlen kapcsolat automata átjárók nélkül"
435
436 #: ../src/virt-viewer-main.c:64
437 msgid "Attach to the local display using libvirt"
438 msgstr "Csatlakoztassa a helyi kijelzőt a libvirt segítségével"
439
440 #: ../src/virt-viewer-main.c:66
441 msgid "Connect to hypervisor"
442 msgstr "Csatlakozás a hypervisorhoz"
443
444 #: ../src/virt-viewer-main.c:68
445 msgid "Wait for domain to start"
446 msgstr "Várakozás a tartomány elindulásáig"
447
448 #: ../src/virt-viewer-main.c:70
449 msgid "Reconnect to domain upon restart"
450 msgstr "Csatlakozzon újra a tartományhoz újraindításkor"
451
452 #: ../src/virt-viewer-main.c:77
453427 msgid "Virt Viewer"
454428 msgstr "Virt Viewer"
455429
456 #: ../src/virt-viewer-main.c:80
457 #, c-format
458 msgid "Run '%s --help' to see a full list of available command line options"
459 msgstr ""
460 "Futtassa a '%s --help' parancsot a teljes elérhető parancssori opciókért"
461
462 #: ../src/virt-viewer-main.c:86
463 msgid "Virtual machine graphical console"
464 msgstr ""
465
466 #: ../src/virt-viewer-main.c:107
467 #, c-format
468 msgid ""
469 "\n"
470 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
471 "\n"
472 "%s\n"
473 "\n"
474 msgstr ""
475
476 #: ../src/virt-viewer-main.c:112
477 #, c-format
478 msgid ""
479 "\n"
480 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
481 "\n"
482 msgstr ""
483
484 #: ../src/virt-viewer-session-spice.c:694
430 #: ../src/virt-viewer-session-spice.c:705
485431 msgid "Invalid password"
486 msgstr ""
432 msgstr "Érvénytelen jelszó"
487433
488434 #. Create the widgets
489 #: ../src/virt-viewer-session-spice.c:786
435 #: ../src/virt-viewer-session-spice.c:797
490436 msgid "Select USB devices for redirection"
491437 msgstr "Válasszon USB eszközöket az átirányításhoz"
492438
493 #: ../src/virt-viewer-session-vnc.c:153
439 #: ../src/virt-viewer-session-spice.c:799
440 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
441 msgid "_Close"
442 msgstr ""
443
444 #: ../src/virt-viewer-session-vnc.c:156
494445 #, c-format
495446 msgid "Unsupported authentication type %d"
496447 msgstr "Nem támogatott azonosítási mód: %d"
497448
498449 #: ../src/virt-viewer-vm-connection.c:64
499450 msgid "No virtual machine found"
500 msgstr ""
451 msgstr "Nem található virtuális gép"
501452
502453 #: ../src/virt-viewer-vm-connection.c:93
503454 msgid "No virtual machine was chosen"
504 msgstr ""
505
506 #: ../src/virt-viewer-window.c:537
455 msgstr "Nincs virtuális gép kiválasztva"
456
457 #: ../src/virt-viewer-window.c:534
507458 msgid "Ctrl+Alt+_Del"
508459 msgstr "Ctrl+Alt+_Del"
509460
510 #: ../src/virt-viewer-window.c:538
461 #: ../src/virt-viewer-window.c:535
511462 msgid "Ctrl+Alt+_Backspace"
512463 msgstr "Ctrl+Alt+_Backspace"
513464
514 #: ../src/virt-viewer-window.c:540
465 #: ../src/virt-viewer-window.c:537
515466 msgid "Ctrl+Alt+F_1"
516467 msgstr "Ctrl+Alt+F_1"
517468
518 #: ../src/virt-viewer-window.c:541
469 #: ../src/virt-viewer-window.c:538
519470 msgid "Ctrl+Alt+F_2"
520471 msgstr "Ctrl+Alt+F_2"
521472
522 #: ../src/virt-viewer-window.c:542
473 #: ../src/virt-viewer-window.c:539
523474 msgid "Ctrl+Alt+F_3"
524475 msgstr "Ctrl+Alt+F_3"
525476
526 #: ../src/virt-viewer-window.c:543
477 #: ../src/virt-viewer-window.c:540
527478 msgid "Ctrl+Alt+F_4"
528479 msgstr "Ctrl+Alt+F_4"
529480
530 #: ../src/virt-viewer-window.c:544
481 #: ../src/virt-viewer-window.c:541
531482 msgid "Ctrl+Alt+F_5"
532483 msgstr "Ctrl+Alt+F_5"
533484
534 #: ../src/virt-viewer-window.c:545
485 #: ../src/virt-viewer-window.c:542
535486 msgid "Ctrl+Alt+F_6"
536487 msgstr "Ctrl+Alt+F_6"
537488
538 #: ../src/virt-viewer-window.c:546
489 #: ../src/virt-viewer-window.c:543
539490 msgid "Ctrl+Alt+F_7"
540491 msgstr "Ctrl+Alt+F_7"
541492
542 #: ../src/virt-viewer-window.c:547
493 #: ../src/virt-viewer-window.c:544
543494 msgid "Ctrl+Alt+F_8"
544495 msgstr "Ctrl+Alt+F_8"
545496
546 #: ../src/virt-viewer-window.c:548
497 #: ../src/virt-viewer-window.c:545
547498 msgid "Ctrl+Alt+F_9"
548499 msgstr "Ctrl+Alt+F_9"
549500
550 #: ../src/virt-viewer-window.c:549
501 #: ../src/virt-viewer-window.c:546
551502 msgid "Ctrl+Alt+F1_0"
552503 msgstr "Ctrl+Alt+F1_0"
553504
554 #: ../src/virt-viewer-window.c:550
505 #: ../src/virt-viewer-window.c:547
555506 msgid "Ctrl+Alt+F11"
556507 msgstr "Ctrl+Alt+F11"
557508
558 #: ../src/virt-viewer-window.c:551
509 #: ../src/virt-viewer-window.c:548
559510 msgid "Ctrl+Alt+F12"
560511 msgstr "Ctrl+Alt+F12"
561512
562 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
513 #: ../src/virt-viewer-window.c:919
514 msgid "_Save"
515 msgstr ""
516
517 #: ../src/virt-viewer-window.c:927
563518 msgid "Screenshot"
564519 msgstr "Képernyőkép"
565520
566 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
521 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
567522 msgid "Unknown"
568 msgstr ""
569
570 #: ../src/virt-viewer-window.c:1062
523 msgstr "Ismeretlen"
524
525 #: ../src/virt-viewer-window.c:1071
571526 msgid "Disconnect"
572527 msgstr "Leválasztás"
573528
574 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
575 #: ../src/virt-viewer.xml.h:3
529 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
576530 msgid "USB device selection"
577 msgstr "USB eszköz kiválasztás"
578
579 #: ../src/virt-viewer-window.c:1081
531 msgstr "USB eszköz kiválasztása"
532
533 #: ../src/virt-viewer-window.c:1089
580534 msgid "Send key combination"
581535 msgstr "Billentyűkombináció küldése"
582536
583 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
537 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
584538 msgid "Leave fullscreen"
585539 msgstr "Teljes képernyő elhagyása"
586540
587 #: ../src/virt-viewer-window.c:1173
541 #: ../src/virt-viewer-window.c:1175
588542 msgid "Ctrl+Alt"
589543 msgstr "Ctrl+Alt"
590544
591 #: ../src/virt-viewer-window.c:1176
545 #: ../src/virt-viewer-window.c:1178
592546 #, c-format
593547 msgid "(Press %s to release pointer)"
594 msgstr "(Nyomjon %s billentyűt hogy kiszabadítsa a mutatót)"
548 msgstr "(Nyomja meg a(z) %s billentyűt a mutató eleresztéséhez)"
595549
596550 #. translators:
597551 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598552 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599553 #.
600 #: ../src/virt-viewer-window.c:1187
554 #: ../src/virt-viewer-window.c:1189
601555 #, c-format
602556 msgid "%s%s%s - %s"
603557 msgstr "%s%s%s - %s"
604558
605559 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1191
560 #: ../src/virt-viewer-window.c:1193
607561 msgid " "
608562 msgstr " "
609563
610 #: ../src/virt-viewer-file.c:825
564 #: ../src/virt-viewer-file.c:843
611565 #, c-format
612566 msgid ""
613567 "At least %s version %s is required to setup this connection, see %s for "
614568 "details"
615569 msgstr ""
616
617 #: ../src/virt-viewer-file.c:833
570 "Legalább a(z) %s %s. verziója szükséges a kapcsolat beállításához, "
571 "részletekért lásd: %s"
572
573 #: ../src/virt-viewer-file.c:851
618574 #, c-format
619575 msgid "At least %s version %s is required to setup this connection"
620 msgstr "Minimum %s verzió %s szükséges hogy beállítsd ezt a kapcsolatot"
621
622 #: ../src/virt-viewer.c:163
576 msgstr "Legalább a(z) %s %s verziója szükséges a kapcsolat beállításához"
577
578 #: ../src/virt-viewer.c:90
579 msgid "Direct connection with no automatic tunnels"
580 msgstr "Közvetlen kapcsolat automatikus átjárók nélkül"
581
582 #: ../src/virt-viewer.c:92
583 msgid "Attach to the local display using libvirt"
584 msgstr "Csatlakoztatás a helyi kijelzőhöz a libvirt segítségével"
585
586 #: ../src/virt-viewer.c:94
587 msgid "Connect to hypervisor"
588 msgstr "Csatlakozás a hypervisorhoz"
589
590 #: ../src/virt-viewer.c:96
591 msgid "Wait for domain to start"
592 msgstr "Várakozás a tartomány elindulásáig"
593
594 #: ../src/virt-viewer.c:98
595 msgid "Reconnect to domain upon restart"
596 msgstr "Újracsatlakozás a tartományhoz újraindításkor"
597
598 #: ../src/virt-viewer.c:105
599 msgid "Virtual machine graphical console"
600 msgstr "Virtuális gép grafikus konzol"
601
602 #: ../src/virt-viewer.c:124
603 #, c-format
604 msgid ""
605 "\n"
606 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
607 "\n"
608 msgstr ""
609
610 #: ../src/virt-viewer.c:136
611 #, c-format
612 msgid ""
613 "\n"
614 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
615 "\n"
616 msgstr ""
617 "\n"
618 "Nem lett TARTOMÁNY-NÉV|AZONOSÍTÓ|UUID megadva a '--wait' opcióhoz\n"
619 "\n"
620
621 #: ../src/virt-viewer.c:250
623622 msgid "Waiting for guest domain to re-start"
624623 msgstr "Várakozás a vendégtartomány újraindulására"
625624
626 #: ../src/virt-viewer.c:409
625 #: ../src/virt-viewer.c:496
627626 #, c-format
628627 msgid "Cannot determine the graphic type for the guest %s"
629 msgstr "A vendég grafikus része nem meghatározható %s"
630
631 #: ../src/virt-viewer.c:448
628 msgstr "A(z) %s vendég grafikus mód típusa nem meghatározható"
629
630 #: ../src/virt-viewer.c:535
632631 #, c-format
633632 msgid "Cannot determine the host for the guest %s"
634 msgstr "A vendég részére kiszolgáló nem meghatározható %s"
635
636 #: ../src/virt-viewer.c:476
633 msgstr "A(z) %s vendég gazdagépe nem határozható meg"
634
635 #: ../src/virt-viewer.c:563
637636 #, c-format
638637 msgid "Guest '%s' is not reachable"
639 msgstr ""
640
641 #: ../src/virt-viewer.c:697
638 msgstr "A(z) '%s' vendég nem elérhető"
639
640 #: ../src/virt-viewer.c:784
642641 #, c-format
643642 msgid "Virtual machine %s is not running"
644 msgstr ""
645
646 #: ../src/virt-viewer.c:720
643 msgstr "A(z) %s virtuális gép nem fut"
644
645 #: ../src/virt-viewer.c:807
647646 msgid "Waiting for libvirt to start"
648647 msgstr "Várakozás a libvirt elindulásáig"
649648
650 #: ../src/virt-viewer.c:724
649 #: ../src/virt-viewer.c:811
651650 msgid "Finding guest domain"
652651 msgstr "Vendég tartomány keresése"
653652
654 #: ../src/virt-viewer.c:728
653 #: ../src/virt-viewer.c:815
655654 msgid "Waiting for guest domain to be created"
656 msgstr "Várakozás a vendég tartomány elkészülésére"
657
658 #: ../src/virt-viewer.c:750
655 msgstr "Várakozás a vendég tartomány létrehozására"
656
657 #: ../src/virt-viewer.c:837
659658 msgid "Checking guest domain status"
660 msgstr "Vendég tartomány állapot ellenőrzése"
661
662 #: ../src/virt-viewer.c:753
659 msgstr "Vendég tartomány állapotellenőrzése"
660
661 #: ../src/virt-viewer.c:840
663662 msgid "Cannot get guest state"
664 msgstr ""
665
666 #: ../src/virt-viewer.c:759
663 msgstr "A vendég állapota nem kérdezhető le"
664
665 #: ../src/virt-viewer.c:846
667666 msgid "Waiting for guest domain to start"
668667 msgstr "Várakozás a vendég tartomány indítására"
669668
670 #: ../src/virt-viewer.c:863
669 #: ../src/virt-viewer.c:950
671670 #, c-format
672671 msgid "Unable to connect to libvirt with URI: %s."
673 msgstr ""
674
675 #: ../src/virt-viewer.c:864
672 msgstr "Nem lehet kapcsolódni a libvirthez az URI-val: %s."
673
674 #: ../src/virt-viewer.c:951
676675 msgid "[none]"
677676 msgstr "[nincs]"
678677
679 #: ../src/virt-viewer.c:871
678 #: ../src/virt-viewer.c:958
680679 msgid "Authentication failed."
681 msgstr ""
682
683 #: ../src/virt-viewer.c:931
680 msgstr "Hitelesítés sikertelen."
681
682 #: ../src/virt-viewer.c:1018
684683 msgid "Failed to connect: "
685 msgstr ""
684 msgstr "Kapcsolódás sikertelen:"
686685
687686 #.
688687 #. * Local variables:
691690 #. * indent-tabs-mode: nil
692691 #. * End:
693692 #.
694 #: ../src/virt-viewer.xml.h:1
693 #: ../src/resources/ui/virt-viewer.ui.h:1
695694 msgid "_File"
696695 msgstr "_Fájl"
697696
698 #: ../src/virt-viewer.xml.h:4
697 #: ../src/resources/ui/virt-viewer.ui.h:2
698 msgid "_Screenshot"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:3
702 msgid "_USB device selection"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:4
699706 msgid "Smartcard insertion"
700707 msgstr "Smartcard behelyezése"
701708
702 #: ../src/virt-viewer.xml.h:5
709 #: ../src/resources/ui/virt-viewer.ui.h:5
703710 msgid "Smartcard removal"
704711 msgstr "Smartcard eltávolítása"
705712
706 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
707 msgid "Preferences"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:7
713 #: ../src/resources/ui/virt-viewer.ui.h:6
714 msgid "_Preferences"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:7
718 msgid "_Quit"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:8
711722 msgid "_View"
712 msgstr "Nézet"
713
714 #: ../src/virt-viewer.xml.h:8
715 msgid "Full screen"
716 msgstr "Teljes képernyő"
717
718 #: ../src/virt-viewer.xml.h:9
723 msgstr "_Nézet"
724
725 #: ../src/resources/ui/virt-viewer.ui.h:9
726 msgid "_Full screen"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:10
719730 msgid "_Zoom"
720 msgstr "Nagyítás"
721
722 #: ../src/virt-viewer.xml.h:10
723 msgid "Displays"
724 msgstr "Kijelzők"
725
726 #: ../src/virt-viewer.xml.h:11
731 msgstr "Nagyí_tás"
732
733 #: ../src/resources/ui/virt-viewer.ui.h:11
734 msgid "Zoom _In"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:12
738 msgid "Zoom _Out"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer.ui.h:13
742 msgid "_Normal Size"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer.ui.h:14
746 msgid "_Displays"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer.ui.h:15
727750 msgid "Release cursor"
728751 msgstr "Kurzor eleresztése"
729752
730 #: ../src/virt-viewer.xml.h:12
753 #: ../src/resources/ui/virt-viewer.ui.h:16
731754 msgid "_Send key"
732 msgstr "Billentyű leütés"
733
734 #: ../src/virt-viewer.xml.h:13
755 msgstr "_Billentyű leütése"
756
757 #: ../src/resources/ui/virt-viewer.ui.h:17
735758 msgid "_Help"
736 msgstr "Súgó"
737
738 #: ../src/virt-viewer.xml.h:14
759 msgstr "_Súgó"
760
761 #: ../src/resources/ui/virt-viewer.ui.h:18
739762 msgid "_Guest Details"
740 msgstr ""
741
742 #: ../src/virt-viewer-guest-details.xml.h:1
763 msgstr "_Vendég részletei"
764
765 #: ../src/resources/ui/virt-viewer.ui.h:19
766 msgid "_About"
767 msgstr ""
768
769 #: ../src/resources/ui/virt-viewer.ui.h:20
770 msgid "_Change CD"
771 msgstr "_CD váltás"
772
773 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743774 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/virt-viewer-guest-details.xml.h:2
775 msgstr "Vendég részletei"
776
777 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747778 msgid "Name:"
748 msgstr ""
749
750 #: ../src/virt-viewer-guest-details.xml.h:3
779 msgstr "Név:"
780
781 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751782 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/virt-viewer-vm-connection.xml.h:1
783 msgstr "GUID:"
784
785 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755786 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/virt-viewer-vm-connection.xml.h:2
787 msgstr "Válasszon egy virtuális gépet"
788
789 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759790 msgid "Name"
760 msgstr ""
761
762 #: ../src/virt-viewer-vm-connection.xml.h:3
791 msgstr "Név"
792
793 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763794 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/virt-viewer-preferences.xml.h:2
795 msgstr "Elérhető virtuális gépek"
796
797 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
798 msgid "Preferences"
799 msgstr "Beállítások"
800
801 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
767802 msgid "Folder sharing"
768 msgstr ""
769
770 #: ../src/virt-viewer-preferences.xml.h:3
803 msgstr "Mappamegosztás"
804
805 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
771806 msgid "Share folder"
772 msgstr ""
773
774 #: ../src/virt-viewer-preferences.xml.h:4
807 msgstr "Mappa megosztása"
808
809 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
775810 msgid "Read-only"
776 msgstr ""
777
778 #: ../src/virt-viewer-preferences.xml.h:5
811 msgstr "Csak olvasható"
812
813 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
779814 msgid "Spice"
780 msgstr ""
815 msgstr "Spice"
+343
-316
po/ia.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/id.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/is.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+391
-352
po/it.po less more
99 # Gianluca Sforna <giallu@fedoraproject.org>, 2010
1010 # Guido Grazioli <guido.grazioli@gmail.com>, 2013
1111 # Silvio Pierro <perplesso82@gmail.com>, 2012
12 # Francesco Valente <fvalen@redhat.com>, 2016. #zanata
1213 msgid ""
1314 msgstr ""
1415 "Project-Id-Version: PACKAGE VERSION\n"
1516 "Report-Msgid-Bugs-To: \n"
16 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
17 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
18 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
17 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
18 "PO-Revision-Date: 2016-02-09 08:27-0500\n"
19 "Last-Translator: Francesco Valente <fvalen@redhat.com>\n"
1920 "Language-Team: Italian (http://www.transifex.com/projects/p/virt-viewer/"
2021 "language/it/)\n"
2122 "Language: it\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.7.3\n"
27
28 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
27 "X-Generator: Zanata 3.8.4\n"
28
29 #: ../data/remote-viewer.appdata.xml.in.h:1
30 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
2931 msgid "Remote Viewer"
3032 msgstr "Visualizzatore remoto"
33
34 #: ../data/remote-viewer.appdata.xml.in.h:2
35 msgid "Remotely access virtual machines"
36 msgstr ""
37
38 #: ../data/remote-viewer.appdata.xml.in.h:3
39 msgid ""
40 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
41 "time it supports guest OS using the VNC or SPICE protocols. Further "
42 "protocols may be supported in the future as user demand dictates. The viewer "
43 "can connect directly to both local and remotely hosted guest OS, optionally "
44 "using SSL/TLS encryption."
45 msgstr ""
3146
3247 #: ../data/remote-viewer.desktop.in.h:2
3348 msgid "Access remote desktops"
3752 msgid "Virt-Viewer connection file"
3853 msgstr "File di connessione Virt-Viewer"
3954
40 #: ../src/gbinding.c:637
41 msgid "Source"
42 msgstr "Sorgente"
43
44 #: ../src/gbinding.c:638
45 msgid "The source of the binding"
46 msgstr "Il sorgente dell'associazione"
47
48 #: ../src/gbinding.c:652
49 msgid "Target"
50 msgstr "Target"
51
52 #: ../src/gbinding.c:653
53 msgid "The target of the binding"
54 msgstr "Il target dell'associazione"
55
56 #: ../src/gbinding.c:668
57 msgid "Source Property"
58 msgstr "Proprietà sorgente"
59
60 #: ../src/gbinding.c:669
61 msgid "The property on the source to bind"
62 msgstr "La proprietà sulla sorgente da associare"
63
64 #: ../src/gbinding.c:684
65 msgid "Target Property"
66 msgstr "Proprietà target"
67
68 #: ../src/gbinding.c:685
69 msgid "The property on the target to bind"
70 msgstr "La proprietà target da associare"
71
72 #: ../src/gbinding.c:699
73 msgid "Flags"
74 msgstr "Flag"
75
76 #: ../src/gbinding.c:700
77 msgid "The binding flags"
78 msgstr "I flag per l'associazione"
79
80 #: ../src/remote-viewer-main.c:50
81 #, c-format
82 msgid "remote-viewer version %s"
83 msgstr ""
84
85 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
86 msgid "Display version information"
87 msgstr "Mostra informazioni sulla versione"
88
89 #: ../src/remote-viewer-main.c:105
55 #: ../src/remote-viewer.c:139
9056 msgid "Set window title"
9157 msgstr "Imposta il titolo della finestra"
9258
93 #: ../src/remote-viewer-main.c:108
59 #: ../src/remote-viewer.c:142
9460 msgid "Open connection using Spice controller communication"
9561 msgstr "Apri collegamento usando una comunicazione SPICE"
9662
97 #: ../src/remote-viewer-main.c:120
63 #: ../src/remote-viewer.c:150
9864 msgid "Remote viewer client"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:138
102 #, c-format
103 msgid ""
104 "%s\n"
105 "Run '%s --help' to see a full list of available command line options\n"
106 msgstr ""
107 "%s\n"
108 "Eseguire '%s --help' per avere un elenco completo di opzioni della linea di "
109 "comando disponibili\n"
110
111 #: ../src/remote-viewer-main.c:149
112 #, c-format
113 msgid "Error: extra arguments given while using Spice controller\n"
114 msgstr ""
115 "Errore: presenti troppi argomenti durante l'uso del controllore Spice\n"
116
117 #: ../src/remote-viewer-main.c:156
118 #, c-format
119 msgid "Error: can't handle multiple URIs\n"
120 msgstr "Errore: impossibile gestire URI multipli\n"
121
122 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
65 msgstr "Client visualizzatore remoto"
66
67 #: ../src/remote-viewer.c:175
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: can't handle multiple URIs\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:187
76 #, c-format
77 msgid ""
78 "\n"
79 "Error: extra arguments given while using Spice controller\n"
80 "\n"
81 msgstr ""
82
83 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
84 #, c-format
85 msgid "Run '%s --help' to see a full list of available command line options\n"
86 msgstr ""
87
88 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12389 msgid "Failed to initiate connection"
12490 msgstr "Inizializzazione connessione fallita"
12591
126 #: ../src/remote-viewer.c:313
92 #: ../src/remote-viewer.c:297
12793 msgid "Display disabled by controller"
12894 msgstr "Schermo disabilitato dal controller"
12995
130 #: ../src/remote-viewer.c:609
96 #: ../src/remote-viewer.c:593
13197 #, c-format
13298 msgid "Controller connection failed: %s"
13399 msgstr "Connessione controller fallita: %s"
134100
135 #: ../src/remote-viewer.c:755
136 msgid "_Change CD"
137 msgstr ""
138
139 #: ../src/remote-viewer.c:855
101 #: ../src/remote-viewer.c:848
140102 msgid "failed to parse ovirt uri"
141 msgstr ""
142
143 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
103 msgstr "impossibile analizzare ovirt uri"
104
105 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
144106 msgid "Authentication was cancelled"
145 msgstr ""
146
147 #: ../src/remote-viewer.c:900
107 msgstr "L'autenticazione è stata cancellata"
108
109 #: ../src/remote-viewer.c:893
148110 #, c-format
149111 msgid "oVirt VM %s is not running"
150 msgstr ""
151
152 #: ../src/remote-viewer.c:914
112 msgstr "oVirt VM %s non è in esecuzione"
113
114 #: ../src/remote-viewer.c:907
153115 #, c-format
154116 msgid "oVirt VM %s has no display"
155 msgstr ""
156
157 #: ../src/remote-viewer.c:940
117 msgstr "oVirt VM %s non ha alcun display"
118
119 #: ../src/remote-viewer.c:933
158120 #, c-format
159121 msgid "oVirt VM %s has no host information"
160 msgstr ""
161
162 #: ../src/remote-viewer.c:951
122 msgstr "oVirt VM %s non ha informazioni sull'host"
123
124 #: ../src/remote-viewer.c:944
163125 #, c-format
164126 msgid "oVirt VM %s has unknown display type: %d"
165 msgstr ""
166
167 #: ../src/remote-viewer.c:1094
127 msgstr "oVirt VM %s presenta un tipo di display sconosciuto: %d"
128
129 #: ../src/remote-viewer.c:1115
168130 msgid "Setting up Spice session..."
169131 msgstr "Impostazione sessione Spice in corso..."
170132
171 #: ../src/remote-viewer.c:1102
133 #: ../src/remote-viewer.c:1123
172134 msgid "No connection was chosen"
173 msgstr ""
174
175 #: ../src/remote-viewer.c:1120
135 msgstr "Nessuna connessione selezionata"
136
137 #: ../src/remote-viewer.c:1141
176138 #, c-format
177139 msgid "Invalid file %s: "
178 msgstr ""
179
180 #: ../src/remote-viewer.c:1128
140 msgstr "File %s non valido"
141
142 #: ../src/remote-viewer.c:1149
181143 msgid "Cannot determine the connection type from URI"
182144 msgstr "Impossibile determinare il tipo di connessione dall'URI"
183145
184 #: ../src/remote-viewer.c:1134
146 #: ../src/remote-viewer.c:1155
185147 msgid "Couldn't open oVirt session: "
186 msgstr ""
148 msgstr "impossibile aprire la sessione oVirt:"
187149
188150 #.
189151 #. * Local variables:
192154 #. * indent-tabs-mode: nil
193155 #. * End:
194156 #.
195 #: ../src/remote-viewer-connect.xml.h:1
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
196158 msgid "Connection details"
197159 msgstr "Dettagli connessione"
198160
199 #: ../src/remote-viewer-connect.xml.h:2
200 msgid "Connection Address"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:3
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
162 msgid "Connection _Address"
163 msgstr ""
164
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
204166 msgid "For example, spice://foo.example.org:5900"
205 msgstr ""
206
207 #: ../src/remote-viewer-connect.xml.h:4
167 msgstr "Per esempio, spice://foo.example.org:5900"
168
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
208170 msgid "Recent connections"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:5
212 msgid "Cancel"
213 msgstr ""
214
215 #: ../src/remote-viewer-connect.xml.h:6
216 msgid "Connect"
217 msgstr ""
218
219 #: ../src/virt-viewer-about.xml.h:1
220 msgid "About Glade"
221 msgstr "Informazioni su Glade"
222
223 #: ../src/virt-viewer-about.xml.h:2
171 msgstr "Connessioni recenti"
172
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
174 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
175 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
176 msgid "_Cancel"
177 msgstr ""
178
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
181 msgid "C_onnect"
182 msgstr ""
183
184 #: ../src/resources/ui/virt-viewer-about.ui.h:1
185 msgid "About Virt-Viewer"
186 msgstr ""
187
188 #: ../src/resources/ui/virt-viewer-about.ui.h:2
224189 msgid ""
225190 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
226191 "Copyright (C) 2007-2014 Red Hat, Inc."
227192 msgstr ""
228
229 #: ../src/virt-viewer-about.xml.h:4
193 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
194 "Copyright (C) 2007-2014 Red Hat, Inc."
195
196 #: ../src/resources/ui/virt-viewer-about.ui.h:4
230197 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
231198 msgstr "Un client desktop remoto creato con GTK-VNC, SPICE-GTK e libvirt"
232199
233 #: ../src/virt-viewer-about.xml.h:5
200 #: ../src/resources/ui/virt-viewer-about.ui.h:5
234201 msgid "virt-manager.org"
235202 msgstr "virt-manager.org"
236203
237 #: ../src/virt-viewer-about.xml.h:6
204 #: ../src/resources/ui/virt-viewer-about.ui.h:6
238205 msgid ""
239206 "This program is free software; you can redistribute it and/or modify\n"
240207 "it under the terms of the GNU General Public License as published by\n"
264231 "Public License; in caso contrario scrivere alla Free Software Foundation, "
265232 "Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
266233
267 #: ../src/virt-viewer-about.xml.h:20
234 #: ../src/resources/ui/virt-viewer-about.ui.h:20
268235 msgid "The Fedora Translation Team"
269236 msgstr "Il Fedora Translation Team"
270237
271 #: ../src/virt-viewer-app.c:526
238 #: ../src/virt-viewer-app.c:458
272239 msgid "Do you want to close the session?"
273240 msgstr "Desideri terminare la sessione?"
274241
275 #: ../src/virt-viewer-app.c:528
242 #: ../src/virt-viewer-app.c:460
276243 msgid "Do not ask me again"
277244 msgstr "Non chiedermelo più"
278245
279 #: ../src/virt-viewer-app.c:1008
246 #: ../src/virt-viewer-app.c:948
280247 #, c-format
281248 msgid "Waiting for display %d..."
282249 msgstr "In attesa del display %d..."
283250
284 #: ../src/virt-viewer-app.c:1117
251 #: ../src/virt-viewer-app.c:1055
285252 #, c-format
286253 msgid "Unsupported graphic type '%s'"
287 msgstr ""
288
289 #: ../src/virt-viewer-app.c:1200
254 msgstr "Tipo di grafico '%s' non supportato"
255
256 #: ../src/virt-viewer-app.c:1138
290257 msgid "Connect to ssh failed."
291258 msgstr "Connessione a ssh fallita."
292259
293 #: ../src/virt-viewer-app.c:1202
260 #: ../src/virt-viewer-app.c:1140
294261 msgid "Can't connect to channel, SSH only supported."
295262 msgstr "Impossibile connettersi al canale, è supportato solo SSH."
296263
297 #: ../src/virt-viewer-app.c:1214
264 #: ../src/virt-viewer-app.c:1152
298265 msgid "Connect to channel unsupported."
299266 msgstr "Connessione al canale non supportata."
300267
301 #: ../src/virt-viewer-app.c:1276
268 #: ../src/virt-viewer-app.c:1214
302269 msgid "Display can only be attached through libvirt with --attach"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:1299
270 msgstr "Il display può essere assegnato solo usando libvirt con --attach"
271
272 #: ../src/virt-viewer-app.c:1237
306273 msgid "Connecting to graphic server"
307274 msgstr "Connessione al server grafico in corso"
308275
309 #: ../src/virt-viewer-app.c:1398
276 #: ../src/virt-viewer-app.c:1336
310277 msgid "Guest domain has shutdown"
311278 msgstr "Il dominio del guest si è arrestato"
312279
313 #: ../src/virt-viewer-app.c:1459
280 #: ../src/virt-viewer-app.c:1397
314281 msgid "Connected to graphic server"
315282 msgstr "Connesso al server grafico"
316283
317 #: ../src/virt-viewer-app.c:1486
284 #: ../src/virt-viewer-app.c:1424
318285 #, c-format
319286 msgid "Unable to connect to the graphic server %s"
320287 msgstr "Impossibile connettersi al server grafico %s"
321288
322 #: ../src/virt-viewer-app.c:1512
289 #: ../src/virt-viewer-app.c:1450
323290 #, c-format
324291 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
325292 msgstr ""
326
327 #: ../src/virt-viewer-app.c:1525
293 "Impossibile eseguire l'autenticazione con il server desktop remoto su %s: "
294 "%s\n"
295
296 #: ../src/virt-viewer-app.c:1463
328297 #, c-format
329298 msgid "Unable to authenticate with remote desktop server: %s"
330299 msgstr ""
331300 "Impossibile eseguire l'autenticazione con il server desktop remoto su: %s"
332301
333 #: ../src/virt-viewer-app.c:1533
302 #: ../src/virt-viewer-app.c:1471
334303 #, c-format
335304 msgid "USB redirection error: %s"
336305 msgstr "Errore di reindirizzamento USB: %s"
337306
338 #: ../src/virt-viewer-app.c:1786
307 #: ../src/virt-viewer-app.c:1805
339308 #, c-format
340309 msgid "Zoom level must be within %d-%d\n"
341310 msgstr "Livello di Zoom deve essere tra %d-%d\n"
342311
343 #: ../src/virt-viewer-app.c:2296
344 #, c-format
345 msgid "Display %d"
346 msgstr "Visualizza %d"
347
348 #: ../src/virt-viewer-app.c:2552
312 #: ../src/virt-viewer-app.c:1858
313 #, c-format
314 msgid "%s\n"
315 msgstr ""
316
317 #: ../src/virt-viewer-app.c:1868
318 #, c-format
319 msgid "%s version %s"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2292
323 #, c-format
324 msgid "Display _%d"
325 msgstr ""
326
327 #: ../src/virt-viewer-app.c:2548
349328 #, c-format
350329 msgid "Invalid kiosk-quit argument: %s"
351330 msgstr "Argomento kiosk-quit invalido: %s"
331
332 #: ../src/virt-viewer-app.c:2559
333 msgid "Display version information"
334 msgstr "Mostra informazioni sulla versione"
352335
353336 #: ../src/virt-viewer-app.c:2561
354337 msgid "Zoom level of window, in percentage"
357340 #: ../src/virt-viewer-app.c:2563
358341 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
359342 msgstr ""
343 "Apri in modalità schermo intero (modificare la risoluzione del guest per "
344 "adattarla al client)"
360345
361346 #: ../src/virt-viewer-app.c:2565
362347 msgid "Customise hotkeys"
382367 msgid "Display debugging information"
383368 msgstr "Mostra le informazioni di debug"
384369
385 #: ../src/virt-viewer-auth.c:88
370 #: ../src/virt-viewer-auth.c:89
386371 #, c-format
387372 msgid ""
388373 "Authentication is required for the %s connection to:\n"
390375 "<b>%s</b>\n"
391376 "\n"
392377 msgstr ""
393
394 #: ../src/virt-viewer-auth.c:92
378 "Autenticazione necessaria per la connessione %s a:\n"
379 "\n"
380 "<b>%s</b>\n"
381 "\n"
382
383 #: ../src/virt-viewer-auth.c:93
395384 #, c-format
396385 msgid "Authentication is required for the %s connection:\n"
397 msgstr ""
386 msgstr "Autenticazione necessaria per la connessione %s:\n"
398387
399388 #.
400389 #. * Local variables:
403392 #. * indent-tabs-mode: nil
404393 #. * End:
405394 #.
406 #: ../src/virt-viewer-auth.xml.h:1
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
407396 msgid "Authentication required"
408397 msgstr "Autenticazione necessaria"
409398
410 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
400 msgid "_OK"
401 msgstr ""
402
403 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
404 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
411405 msgid "label"
412406 msgstr "etichetta"
413407
414 #: ../src/virt-viewer-auth.xml.h:3
408 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
415409 msgid "Password:"
416410 msgstr "Password:"
417411
418 #: ../src/virt-viewer-auth.xml.h:4
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
419413 msgid "Username:"
420414 msgstr "Nome utente:"
421415
422 #: ../src/virt-viewer-auth.xml.h:5
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
423417 msgid "Show password"
424 msgstr ""
425
426 #: ../src/virt-viewer-display-vnc.c:133
418 msgstr "Mostra password"
419
420 #: ../src/virt-viewer-display-vnc.c:134
427421 msgid "VNC does not provide GUID"
422 msgstr "VNC non fornisce il GUID"
423
424 #: ../src/virt-viewer-file-transfer-dialog.c:152
425 msgid "Cancel"
426 msgstr "Annulla"
427
428 #: ../src/virt-viewer-file-transfer-dialog.c:163
429 msgid "File Transfers"
428430 msgstr ""
429431
430432 #: ../src/virt-viewer-main.c:38
431 #, c-format
432 msgid "%s version %s\n"
433 msgstr "%s versione %s\n"
434
435 #: ../src/virt-viewer-main.c:62
436 msgid "Direct connection with no automatic tunnels"
437 msgstr "Connessione diretta con nessun tunnel automatico"
438
439 #: ../src/virt-viewer-main.c:64
440 msgid "Attach to the local display using libvirt"
441 msgstr "Allega al display locale usando libvirt"
442
443 #: ../src/virt-viewer-main.c:66
444 msgid "Connect to hypervisor"
445 msgstr "Connetti con l'hypervisor"
446
447 #: ../src/virt-viewer-main.c:68
448 msgid "Wait for domain to start"
449 msgstr "Attendi l'avvio del dominio"
450
451 #: ../src/virt-viewer-main.c:70
452 msgid "Reconnect to domain upon restart"
453 msgstr "Riconnetti con il dominio previo riavvio"
454
455 #: ../src/virt-viewer-main.c:77
456433 msgid "Virt Viewer"
457434 msgstr "Virt Viewer"
458435
459 #: ../src/virt-viewer-main.c:80
460 #, c-format
461 msgid "Run '%s --help' to see a full list of available command line options"
462 msgstr ""
463 "Eseguire '%s --help' per avere un elenco completo di opzioni della linea di "
464 "comando disponibili"
465
466 #: ../src/virt-viewer-main.c:86
467 msgid "Virtual machine graphical console"
468 msgstr ""
469
470 #: ../src/virt-viewer-main.c:107
471 #, c-format
472 msgid ""
473 "\n"
474 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
475 "\n"
476 "%s\n"
477 "\n"
478 msgstr ""
479
480 #: ../src/virt-viewer-main.c:112
481 #, c-format
482 msgid ""
483 "\n"
484 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
485 "\n"
486 msgstr ""
487
488 #: ../src/virt-viewer-session-spice.c:694
436 #: ../src/virt-viewer-session-spice.c:705
489437 msgid "Invalid password"
490 msgstr ""
438 msgstr "Passoword non valida"
491439
492440 #. Create the widgets
493 #: ../src/virt-viewer-session-spice.c:786
441 #: ../src/virt-viewer-session-spice.c:797
494442 msgid "Select USB devices for redirection"
495443 msgstr "Seleziona i dispositivi USB per il reindirizzamento"
496444
497 #: ../src/virt-viewer-session-vnc.c:153
445 #: ../src/virt-viewer-session-spice.c:799
446 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
447 msgid "_Close"
448 msgstr ""
449
450 #: ../src/virt-viewer-session-vnc.c:156
498451 #, c-format
499452 msgid "Unsupported authentication type %d"
500453 msgstr "Tipo di autenticazione %d non supportata"
501454
502455 #: ../src/virt-viewer-vm-connection.c:64
503456 msgid "No virtual machine found"
504 msgstr ""
457 msgstr "Nessuna macchina virtuale trovata"
505458
506459 #: ../src/virt-viewer-vm-connection.c:93
507460 msgid "No virtual machine was chosen"
508 msgstr ""
509
510 #: ../src/virt-viewer-window.c:537
461 msgstr "Nessuna macchina virtuale selezionata"
462
463 #: ../src/virt-viewer-window.c:534
511464 msgid "Ctrl+Alt+_Del"
512465 msgstr "Ctrl+Alt+_Del"
513466
514 #: ../src/virt-viewer-window.c:538
467 #: ../src/virt-viewer-window.c:535
515468 msgid "Ctrl+Alt+_Backspace"
516469 msgstr "Ctrl+Alt+_Backspace"
517470
518 #: ../src/virt-viewer-window.c:540
471 #: ../src/virt-viewer-window.c:537
519472 msgid "Ctrl+Alt+F_1"
520473 msgstr "Ctrl+Alt+F_1"
521474
522 #: ../src/virt-viewer-window.c:541
475 #: ../src/virt-viewer-window.c:538
523476 msgid "Ctrl+Alt+F_2"
524477 msgstr "Ctrl+Alt+F_2"
525478
526 #: ../src/virt-viewer-window.c:542
479 #: ../src/virt-viewer-window.c:539
527480 msgid "Ctrl+Alt+F_3"
528481 msgstr "Ctrl+Alt+F_3"
529482
530 #: ../src/virt-viewer-window.c:543
483 #: ../src/virt-viewer-window.c:540
531484 msgid "Ctrl+Alt+F_4"
532485 msgstr "Ctrl+Alt+F_4"
533486
534 #: ../src/virt-viewer-window.c:544
487 #: ../src/virt-viewer-window.c:541
535488 msgid "Ctrl+Alt+F_5"
536489 msgstr "Ctrl+Alt+F_5"
537490
538 #: ../src/virt-viewer-window.c:545
491 #: ../src/virt-viewer-window.c:542
539492 msgid "Ctrl+Alt+F_6"
540493 msgstr "Ctrl+Alt+F_6"
541494
542 #: ../src/virt-viewer-window.c:546
495 #: ../src/virt-viewer-window.c:543
543496 msgid "Ctrl+Alt+F_7"
544497 msgstr "Ctrl+Alt+F_7"
545498
546 #: ../src/virt-viewer-window.c:547
499 #: ../src/virt-viewer-window.c:544
547500 msgid "Ctrl+Alt+F_8"
548501 msgstr "Ctrl+Alt+F_8"
549502
550 #: ../src/virt-viewer-window.c:548
503 #: ../src/virt-viewer-window.c:545
551504 msgid "Ctrl+Alt+F_9"
552505 msgstr "Ctrl+Alt+F_9"
553506
554 #: ../src/virt-viewer-window.c:549
507 #: ../src/virt-viewer-window.c:546
555508 msgid "Ctrl+Alt+F1_0"
556509 msgstr "Ctrl+Alt+F1_0"
557510
558 #: ../src/virt-viewer-window.c:550
511 #: ../src/virt-viewer-window.c:547
559512 msgid "Ctrl+Alt+F11"
560513 msgstr "Ctrl+Alt+F11"
561514
562 #: ../src/virt-viewer-window.c:551
515 #: ../src/virt-viewer-window.c:548
563516 msgid "Ctrl+Alt+F12"
564517 msgstr "Ctrl+Alt+F12"
565518
566 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
519 #: ../src/virt-viewer-window.c:919
520 msgid "_Save"
521 msgstr ""
522
523 #: ../src/virt-viewer-window.c:927
567524 msgid "Screenshot"
568525 msgstr "Schermata"
569526
570 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
527 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
571528 msgid "Unknown"
572 msgstr ""
573
574 #: ../src/virt-viewer-window.c:1062
529 msgstr "Sconosciuto"
530
531 #: ../src/virt-viewer-window.c:1071
575532 msgid "Disconnect"
576533 msgstr "Scollega"
577534
578 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
579 #: ../src/virt-viewer.xml.h:3
535 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
580536 msgid "USB device selection"
581537 msgstr "Selezione dispositivo USB"
582538
583 #: ../src/virt-viewer-window.c:1081
539 #: ../src/virt-viewer-window.c:1089
584540 msgid "Send key combination"
585541 msgstr "Invia combinazione di tasti"
586542
587 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
543 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
588544 msgid "Leave fullscreen"
589545 msgstr "Lascia a schermo intero"
590546
591 #: ../src/virt-viewer-window.c:1173
547 #: ../src/virt-viewer-window.c:1175
592548 msgid "Ctrl+Alt"
593549 msgstr "Ctrl+Alt"
594550
595 #: ../src/virt-viewer-window.c:1176
551 #: ../src/virt-viewer-window.c:1178
596552 #, c-format
597553 msgid "(Press %s to release pointer)"
598554 msgstr "(Premere %s per rilasciare il puntatore)"
601557 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
602558 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
603559 #.
604 #: ../src/virt-viewer-window.c:1187
560 #: ../src/virt-viewer-window.c:1189
605561 #, c-format
606562 msgid "%s%s%s - %s"
607563 msgstr "%s%s%s - %s"
608564
609565 #. translators: <space>
610 #: ../src/virt-viewer-window.c:1191
566 #: ../src/virt-viewer-window.c:1193
611567 msgid " "
612568 msgstr " "
613569
614 #: ../src/virt-viewer-file.c:825
570 #: ../src/virt-viewer-file.c:843
615571 #, c-format
616572 msgid ""
617573 "At least %s version %s is required to setup this connection, see %s for "
618574 "details"
619575 msgstr ""
620
621 #: ../src/virt-viewer-file.c:833
576 "Per impostare questa connessione è necessario almeno %s versione %s, per "
577 "informazioni consultare %s"
578
579 #: ../src/virt-viewer-file.c:851
622580 #, c-format
623581 msgid "At least %s version %s is required to setup this connection"
624582 msgstr "%s versione %s è requisito minimo per configurare questa connessione"
625583
626 #: ../src/virt-viewer.c:163
584 #: ../src/virt-viewer.c:90
585 msgid "Direct connection with no automatic tunnels"
586 msgstr "Connessione diretta con nessun tunnel automatico"
587
588 #: ../src/virt-viewer.c:92
589 msgid "Attach to the local display using libvirt"
590 msgstr "Allega al display locale usando libvirt"
591
592 #: ../src/virt-viewer.c:94
593 msgid "Connect to hypervisor"
594 msgstr "Connetti con l'hypervisor"
595
596 #: ../src/virt-viewer.c:96
597 msgid "Wait for domain to start"
598 msgstr "Attendi l'avvio del dominio"
599
600 #: ../src/virt-viewer.c:98
601 msgid "Reconnect to domain upon restart"
602 msgstr "Riconnetti con il dominio previo riavvio"
603
604 #: ../src/virt-viewer.c:105
605 msgid "Virtual machine graphical console"
606 msgstr "Console grafica della macchina virtuale"
607
608 #: ../src/virt-viewer.c:124
609 #, c-format
610 msgid ""
611 "\n"
612 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
613 "\n"
614 msgstr ""
615
616 #: ../src/virt-viewer.c:136
617 #, c-format
618 msgid ""
619 "\n"
620 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
621 "\n"
622 msgstr ""
623 "\n"
624 "Non è stato specificato alcun DOMAIN-NAME|ID|UUID per '--wait'\n"
625 "\n"
626
627 #: ../src/virt-viewer.c:250
627628 msgid "Waiting for guest domain to re-start"
628629 msgstr "In attesa del riavvio del dominio guest"
629630
630 #: ../src/virt-viewer.c:409
631 #: ../src/virt-viewer.c:496
631632 #, c-format
632633 msgid "Cannot determine the graphic type for the guest %s"
633634 msgstr "Impossibile determinare il tipo grafico per il guest %s"
634635
635 #: ../src/virt-viewer.c:448
636 #: ../src/virt-viewer.c:535
636637 #, c-format
637638 msgid "Cannot determine the host for the guest %s"
638639 msgstr "Impossibile determinare l'host per il guest %s"
639640
640 #: ../src/virt-viewer.c:476
641 #: ../src/virt-viewer.c:563
641642 #, c-format
642643 msgid "Guest '%s' is not reachable"
643 msgstr ""
644
645 #: ../src/virt-viewer.c:697
644 msgstr "Il guest '%s' non è raggiungibile"
645
646 #: ../src/virt-viewer.c:784
646647 #, c-format
647648 msgid "Virtual machine %s is not running"
648 msgstr ""
649
650 #: ../src/virt-viewer.c:720
649 msgstr "La macchina virtuale %s non è in esecuzione"
650
651 #: ../src/virt-viewer.c:807
651652 msgid "Waiting for libvirt to start"
652653 msgstr "In attesa dell'avvio di libvirt"
653654
654 #: ../src/virt-viewer.c:724
655 #: ../src/virt-viewer.c:811
655656 msgid "Finding guest domain"
656657 msgstr "Ricerca dominio guest in corso"
657658
658 #: ../src/virt-viewer.c:728
659 #: ../src/virt-viewer.c:815
659660 msgid "Waiting for guest domain to be created"
660661 msgstr "In attesa di creazione del dominio guest"
661662
662 #: ../src/virt-viewer.c:750
663 #: ../src/virt-viewer.c:837
663664 msgid "Checking guest domain status"
664665 msgstr "Controllo stato del dominio guest in corso"
665666
666 #: ../src/virt-viewer.c:753
667 #: ../src/virt-viewer.c:840
667668 msgid "Cannot get guest state"
668 msgstr ""
669
670 #: ../src/virt-viewer.c:759
669 msgstr "Impossibile ottenere lo stato del guest"
670
671 #: ../src/virt-viewer.c:846
671672 msgid "Waiting for guest domain to start"
672673 msgstr "In attesa dell'avvio del dominio guest"
673674
674 #: ../src/virt-viewer.c:863
675 #: ../src/virt-viewer.c:950
675676 #, c-format
676677 msgid "Unable to connect to libvirt with URI: %s."
677 msgstr ""
678
679 #: ../src/virt-viewer.c:864
678 msgstr "Impossibile connettersi a libvirt con URI: %s."
679
680 #: ../src/virt-viewer.c:951
680681 msgid "[none]"
681682 msgstr "[nessuno]"
682683
683 #: ../src/virt-viewer.c:871
684 #: ../src/virt-viewer.c:958
684685 msgid "Authentication failed."
685 msgstr ""
686
687 #: ../src/virt-viewer.c:931
686 msgstr "Autenticazione fallita."
687
688 #: ../src/virt-viewer.c:1018
688689 msgid "Failed to connect: "
689 msgstr ""
690 msgstr "Impossibile collegarsi:"
690691
691692 #.
692693 #. * Local variables:
695696 #. * indent-tabs-mode: nil
696697 #. * End:
697698 #.
698 #: ../src/virt-viewer.xml.h:1
699 #: ../src/resources/ui/virt-viewer.ui.h:1
699700 msgid "_File"
700701 msgstr "_File"
701702
702 #: ../src/virt-viewer.xml.h:4
703 #: ../src/resources/ui/virt-viewer.ui.h:2
704 msgid "_Screenshot"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:3
708 msgid "_USB device selection"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:4
703712 msgid "Smartcard insertion"
704713 msgstr "Inserimento Smartcard"
705714
706 #: ../src/virt-viewer.xml.h:5
715 #: ../src/resources/ui/virt-viewer.ui.h:5
707716 msgid "Smartcard removal"
708717 msgstr "Rimozione Smartcard"
709718
710 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
711 msgid "Preferences"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:7
719 #: ../src/resources/ui/virt-viewer.ui.h:6
720 msgid "_Preferences"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:7
724 msgid "_Quit"
725 msgstr ""
726
727 #: ../src/resources/ui/virt-viewer.ui.h:8
715728 msgid "_View"
716729 msgstr "_Visualizza"
717730
718 #: ../src/virt-viewer.xml.h:8
719 msgid "Full screen"
720 msgstr "Schermo intero"
721
722 #: ../src/virt-viewer.xml.h:9
731 #: ../src/resources/ui/virt-viewer.ui.h:9
732 msgid "_Full screen"
733 msgstr ""
734
735 #: ../src/resources/ui/virt-viewer.ui.h:10
723736 msgid "_Zoom"
724737 msgstr "_Zoom"
725738
726 #: ../src/virt-viewer.xml.h:10
727 msgid "Displays"
728 msgstr "Display"
729
730 #: ../src/virt-viewer.xml.h:11
739 #: ../src/resources/ui/virt-viewer.ui.h:11
740 msgid "Zoom _In"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer.ui.h:12
744 msgid "Zoom _Out"
745 msgstr ""
746
747 #: ../src/resources/ui/virt-viewer.ui.h:13
748 msgid "_Normal Size"
749 msgstr ""
750
751 #: ../src/resources/ui/virt-viewer.ui.h:14
752 msgid "_Displays"
753 msgstr ""
754
755 #: ../src/resources/ui/virt-viewer.ui.h:15
731756 msgid "Release cursor"
732757 msgstr "Rilascia il cursore"
733758
734 #: ../src/virt-viewer.xml.h:12
759 #: ../src/resources/ui/virt-viewer.ui.h:16
735760 msgid "_Send key"
736761 msgstr "_Invia combinazione tasti"
737762
738 #: ../src/virt-viewer.xml.h:13
763 #: ../src/resources/ui/virt-viewer.ui.h:17
739764 msgid "_Help"
740765 msgstr "_Aiuto"
741766
742 #: ../src/virt-viewer.xml.h:14
767 #: ../src/resources/ui/virt-viewer.ui.h:18
743768 msgid "_Guest Details"
744769 msgstr ""
745
746 #: ../src/virt-viewer-guest-details.xml.h:1
770 "Dettagli del _Guest\n"
771 " "
772
773 #: ../src/resources/ui/virt-viewer.ui.h:19
774 msgid "_About"
775 msgstr ""
776
777 #: ../src/resources/ui/virt-viewer.ui.h:20
778 msgid "_Change CD"
779 msgstr "_Cambia CD"
780
781 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
747782 msgid "Guest Details"
748 msgstr ""
749
750 #: ../src/virt-viewer-guest-details.xml.h:2
783 msgstr "Dettagli del guest"
784
785 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
751786 msgid "Name:"
752 msgstr ""
753
754 #: ../src/virt-viewer-guest-details.xml.h:3
787 msgstr "Nome:"
788
789 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
755790 msgid "GUID:"
756 msgstr ""
757
758 #: ../src/virt-viewer-vm-connection.xml.h:1
791 msgstr "GUID:"
792
793 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
759794 msgid "Choose a virtual machine"
760 msgstr ""
761
762 #: ../src/virt-viewer-vm-connection.xml.h:2
795 msgstr "Seleziona una macchina virtuale"
796
797 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
763798 msgid "Name"
764 msgstr ""
765
766 #: ../src/virt-viewer-vm-connection.xml.h:3
799 msgstr "Nome"
800
801 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
767802 msgid "Available virtual machines"
768 msgstr ""
769
770 #: ../src/virt-viewer-preferences.xml.h:2
803 msgstr "Macchina virtuale disponibile"
804
805 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
806 msgid "Preferences"
807 msgstr "Preferenze"
808
809 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
771810 msgid "Folder sharing"
772 msgstr ""
773
774 #: ../src/virt-viewer-preferences.xml.h:3
811 msgstr "Condivisione cartella"
812
813 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
775814 msgid "Share folder"
776 msgstr ""
777
778 #: ../src/virt-viewer-preferences.xml.h:4
815 msgstr "Condividi cartella"
816
817 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
779818 msgid "Read-only"
780 msgstr ""
781
782 #: ../src/virt-viewer-preferences.xml.h:5
819 msgstr "Sola-lettura"
820
821 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
783822 msgid "Spice"
784 msgstr ""
823 msgstr "Spice"
+336
-320
po/ja.po less more
1111 msgstr ""
1212 "Project-Id-Version: PACKAGE VERSION\n"
1313 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
14 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1515 "PO-Revision-Date: 2015-12-08 10:06-0500\n"
1616 "Last-Translator: Hajime Taira <htaira@fedoraproject.org>\n"
1717 "Language-Team: Japanese (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
24 "X-Generator: Zanata 3.8.4\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
2728 msgid "Remote Viewer"
2829 msgstr "リモートビューアー"
30
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 msgid "Remotely access virtual machines"
33 msgstr ""
34
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 msgid ""
37 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
38 "time it supports guest OS using the VNC or SPICE protocols. Further "
39 "protocols may be supported in the future as user demand dictates. The viewer "
40 "can connect directly to both local and remotely hosted guest OS, optionally "
41 "using SSL/TLS encryption."
42 msgstr ""
2943
3044 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Access remote desktops"
3549 msgid "Virt-Viewer connection file"
3650 msgstr "Virt-Viewer 接続ファイル"
3751
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "ソース"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "バインディングのソース"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "ターゲット"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "バインディングのターゲット"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "ソースのプロパティー"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "バインドするソースのプロパティー"
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "ターゲットのプロパティー"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "バインドするターゲットのプロパティー"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "フラグ"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "バインディングのフラグ"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr "remote-viewer バージョン %s"
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "バージョン情報を表示します"
86
87 #: ../src/remote-viewer-main.c:105
52 #: ../src/remote-viewer.c:139
8853 msgid "Set window title"
8954 msgstr "ウィンドウタイトルの設定"
9055
91 #: ../src/remote-viewer-main.c:108
56 #: ../src/remote-viewer.c:142
9257 msgid "Open connection using Spice controller communication"
9358 msgstr "Spice コントローラー通信を使用して接続を開く"
9459
95 #: ../src/remote-viewer-main.c:120
60 #: ../src/remote-viewer.c:150
9661 msgid "Remote viewer client"
9762 msgstr "リモートビューアークライアント"
9863
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "利用可能なコマンドラインオプションの完全な一覧を確認するには '%s --help' を実"
107 "行してください\n"
108
109 #: ../src/remote-viewer-main.c:149
110 #, c-format
111 msgid "Error: extra arguments given while using Spice controller\n"
112 msgstr ""
113 "エラー: Spice コントローラーを使用しているときに余計な引数が指定されました\n"
114
115 #: ../src/remote-viewer-main.c:156
116 #, c-format
117 msgid "Error: can't handle multiple URIs\n"
118 msgstr "Error: 複数の URI を処理できません\n"
119
120 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
64 #: ../src/remote-viewer.c:175
65 #, c-format
66 msgid ""
67 "\n"
68 "Error: can't handle multiple URIs\n"
69 "\n"
70 msgstr ""
71
72 #: ../src/remote-viewer.c:187
73 #, c-format
74 msgid ""
75 "\n"
76 "Error: extra arguments given while using Spice controller\n"
77 "\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
81 #, c-format
82 msgid "Run '%s --help' to see a full list of available command line options\n"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12186 msgid "Failed to initiate connection"
12287 msgstr "接続の初期化に失敗しました"
12388
124 #: ../src/remote-viewer.c:313
89 #: ../src/remote-viewer.c:297
12590 msgid "Display disabled by controller"
12691 msgstr "ディスプレイがコントローラーにより無効化されました"
12792
128 #: ../src/remote-viewer.c:609
93 #: ../src/remote-viewer.c:593
12994 #, c-format
13095 msgid "Controller connection failed: %s"
13196 msgstr "コントローラーの接続に失敗しました: %s"
13297
133 #: ../src/remote-viewer.c:755
134 msgid "_Change CD"
135 msgstr "CDの変更(_C)"
136
137 #: ../src/remote-viewer.c:855
98 #: ../src/remote-viewer.c:848
13899 msgid "failed to parse ovirt uri"
139100 msgstr "oVirt URI の構文解析に失敗しました"
140101
141 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
102 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
142103 msgid "Authentication was cancelled"
143104 msgstr "認証が取り消されました"
144105
145 #: ../src/remote-viewer.c:900
106 #: ../src/remote-viewer.c:893
146107 #, c-format
147108 msgid "oVirt VM %s is not running"
148109 msgstr "oVirt上の仮想マシン %s は稼働していません"
149110
150 #: ../src/remote-viewer.c:914
111 #: ../src/remote-viewer.c:907
151112 #, c-format
152113 msgid "oVirt VM %s has no display"
153114 msgstr "oVirt上の仮想マシン %s にはディスプレイがありません"
154115
155 #: ../src/remote-viewer.c:940
116 #: ../src/remote-viewer.c:933
156117 #, c-format
157118 msgid "oVirt VM %s has no host information"
158119 msgstr "oVirt 上の仮想マシン %s はホストの情報がありません"
159120
160 #: ../src/remote-viewer.c:951
121 #: ../src/remote-viewer.c:944
161122 #, c-format
162123 msgid "oVirt VM %s has unknown display type: %d"
163124 msgstr "oVirt上の仮想マシン %s は不明なディスプレイタイプ: %d を搭載しています"
164125
165 #: ../src/remote-viewer.c:1094
126 #: ../src/remote-viewer.c:1115
166127 msgid "Setting up Spice session..."
167128 msgstr "Spice セッションのセットアップ中..."
168129
169 #: ../src/remote-viewer.c:1102
130 #: ../src/remote-viewer.c:1123
170131 msgid "No connection was chosen"
171132 msgstr "接続が選択されていません"
172133
173 #: ../src/remote-viewer.c:1120
134 #: ../src/remote-viewer.c:1141
174135 #, c-format
175136 msgid "Invalid file %s: "
176137 msgstr "無効なファイル %s:"
177138
178 #: ../src/remote-viewer.c:1128
139 #: ../src/remote-viewer.c:1149
179140 msgid "Cannot determine the connection type from URI"
180141 msgstr "URI から接続の種類を決定できません"
181142
182 #: ../src/remote-viewer.c:1134
143 #: ../src/remote-viewer.c:1155
183144 msgid "Couldn't open oVirt session: "
184145 msgstr "oVirt セッションを開けません:"
185146
190151 #. * indent-tabs-mode: nil
191152 #. * End:
192153 #.
193 #: ../src/remote-viewer-connect.xml.h:1
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
194155 msgid "Connection details"
195156 msgstr "接続の詳細"
196157
197 #: ../src/remote-viewer-connect.xml.h:2
198 msgid "Connection Address"
199 msgstr "接続アドレス"
200
201 #: ../src/remote-viewer-connect.xml.h:3
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 msgid "Connection _Address"
160 msgstr ""
161
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
202163 msgid "For example, spice://foo.example.org:5900"
203164 msgstr "例: spice://foo.example.org:5900"
204165
205 #: ../src/remote-viewer-connect.xml.h:4
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
206167 msgid "Recent connections"
207168 msgstr "最近の接続"
208169
209 #: ../src/remote-viewer-connect.xml.h:5
210 msgid "Cancel"
211 msgstr "取り消し"
212
213 #: ../src/remote-viewer-connect.xml.h:6
214 msgid "Connect"
215 msgstr "接続"
216
217 #: ../src/virt-viewer-about.xml.h:1
218 msgid "About Glade"
219 msgstr "Glade について"
220
221 #: ../src/virt-viewer-about.xml.h:2
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
171 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
173 msgid "_Cancel"
174 msgstr ""
175
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
177 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 msgid "C_onnect"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:1
182 msgid "About Virt-Viewer"
183 msgstr ""
184
185 #: ../src/resources/ui/virt-viewer-about.ui.h:2
222186 msgid ""
223187 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
224188 "Copyright (C) 2007-2014 Red Hat, Inc."
226190 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
227191 "Copyright (C) 2007-2014 Red Hat, Inc."
228192
229 #: ../src/virt-viewer-about.xml.h:4
193 #: ../src/resources/ui/virt-viewer-about.ui.h:4
230194 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
231195 msgstr ""
232196 "GTK-VNC, SPICE-GTK および libvirt でビルドされたリモートデスクトップクライア"
233197 "ント"
234198
235 #: ../src/virt-viewer-about.xml.h:5
199 #: ../src/resources/ui/virt-viewer-about.ui.h:5
236200 msgid "virt-manager.org"
237201 msgstr "virt-manager.org"
238202
239 #: ../src/virt-viewer-about.xml.h:6
203 #: ../src/resources/ui/virt-viewer-about.ui.h:6
240204 msgid ""
241205 "This program is free software; you can redistribute it and/or modify\n"
242206 "it under the terms of the GNU General Public License as published by\n"
266230 "along with this program; if not, write to the Free Software\n"
267231 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
268232
269 #: ../src/virt-viewer-about.xml.h:20
233 #: ../src/resources/ui/virt-viewer-about.ui.h:20
270234 msgid "The Fedora Translation Team"
271235 msgstr "The Fedora Translation Team"
272236
273 #: ../src/virt-viewer-app.c:526
237 #: ../src/virt-viewer-app.c:458
274238 msgid "Do you want to close the session?"
275239 msgstr "セッションを閉じますか?"
276240
277 #: ../src/virt-viewer-app.c:528
241 #: ../src/virt-viewer-app.c:460
278242 msgid "Do not ask me again"
279243 msgstr "二度と確認しない"
280244
281 #: ../src/virt-viewer-app.c:1008
245 #: ../src/virt-viewer-app.c:948
282246 #, c-format
283247 msgid "Waiting for display %d..."
284248 msgstr "ディスプレイ %d を待機中..."
285249
286 #: ../src/virt-viewer-app.c:1117
250 #: ../src/virt-viewer-app.c:1055
287251 #, c-format
288252 msgid "Unsupported graphic type '%s'"
289253 msgstr "サポートされないグラフィックス形式 '%s' です"
290254
291 #: ../src/virt-viewer-app.c:1200
255 #: ../src/virt-viewer-app.c:1138
292256 msgid "Connect to ssh failed."
293257 msgstr "SSH への接続に失敗しました。"
294258
295 #: ../src/virt-viewer-app.c:1202
259 #: ../src/virt-viewer-app.c:1140
296260 msgid "Can't connect to channel, SSH only supported."
297261 msgstr "チャンネルに接続できません、SSH のみがサポートされます。"
298262
299 #: ../src/virt-viewer-app.c:1214
263 #: ../src/virt-viewer-app.c:1152
300264 msgid "Connect to channel unsupported."
301265 msgstr "サポートされないチャネルに接続します。"
302266
303 #: ../src/virt-viewer-app.c:1276
267 #: ../src/virt-viewer-app.c:1214
304268 msgid "Display can only be attached through libvirt with --attach"
305269 msgstr "ディスプレイは libvirt にて --attach を指定する場合にのみ付与できます"
306270
307 #: ../src/virt-viewer-app.c:1299
271 #: ../src/virt-viewer-app.c:1237
308272 msgid "Connecting to graphic server"
309273 msgstr "グラフィックサーバーに接続中"
310274
311 #: ../src/virt-viewer-app.c:1398
275 #: ../src/virt-viewer-app.c:1336
312276 msgid "Guest domain has shutdown"
313277 msgstr "仮想マシンがシャットダウンしました"
314278
315 #: ../src/virt-viewer-app.c:1459
279 #: ../src/virt-viewer-app.c:1397
316280 msgid "Connected to graphic server"
317281 msgstr "グラフィックサーバーに接続"
318282
319 #: ../src/virt-viewer-app.c:1486
283 #: ../src/virt-viewer-app.c:1424
320284 #, c-format
321285 msgid "Unable to connect to the graphic server %s"
322286 msgstr "グラフィックサーバー %s に接続できません"
323287
324 #: ../src/virt-viewer-app.c:1512
288 #: ../src/virt-viewer-app.c:1450
325289 #, c-format
326290 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
327291 msgstr "%s 上のリモートデスクトップサーバーの認証で失敗しました: %s\n"
328292
329 #: ../src/virt-viewer-app.c:1525
293 #: ../src/virt-viewer-app.c:1463
330294 #, c-format
331295 msgid "Unable to authenticate with remote desktop server: %s"
332296 msgstr "リモートデスクトップサーバーの認証で失敗しました: %s"
333297
334 #: ../src/virt-viewer-app.c:1533
298 #: ../src/virt-viewer-app.c:1471
335299 #, c-format
336300 msgid "USB redirection error: %s"
337301 msgstr "USB リダイレクトエラー: %s"
338302
339 #: ../src/virt-viewer-app.c:1786
303 #: ../src/virt-viewer-app.c:1805
340304 #, c-format
341305 msgid "Zoom level must be within %d-%d\n"
342306 msgstr "ズームレベルは %d-%d の範囲内でなければいけません\n"
343307
344 #: ../src/virt-viewer-app.c:2296
345 #, c-format
346 msgid "Display %d"
347 msgstr "ディスプレイ %d"
348
349 #: ../src/virt-viewer-app.c:2552
308 #: ../src/virt-viewer-app.c:1858
309 #, c-format
310 msgid "%s\n"
311 msgstr ""
312
313 #: ../src/virt-viewer-app.c:1868
314 #, c-format
315 msgid "%s version %s"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:2292
319 #, c-format
320 msgid "Display _%d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2548
350324 #, c-format
351325 msgid "Invalid kiosk-quit argument: %s"
352326 msgstr "無効な kiosk-quit の引数: %s"
327
328 #: ../src/virt-viewer-app.c:2559
329 msgid "Display version information"
330 msgstr "バージョン情報を表示します"
353331
354332 #: ../src/virt-viewer-app.c:2561
355333 msgid "Zoom level of window, in percentage"
385363 msgid "Display debugging information"
386364 msgstr "デバッグ情報を表示します"
387365
388 #: ../src/virt-viewer-auth.c:88
366 #: ../src/virt-viewer-auth.c:89
389367 #, c-format
390368 msgid ""
391369 "Authentication is required for the %s connection to:\n"
398376 "<b>%s</b>\n"
399377 "\n"
400378
401 #: ../src/virt-viewer-auth.c:92
379 #: ../src/virt-viewer-auth.c:93
402380 #, c-format
403381 msgid "Authentication is required for the %s connection:\n"
404382 msgstr "%s 接続のために認証が必要です:\n"
410388 #. * indent-tabs-mode: nil
411389 #. * End:
412390 #.
413 #: ../src/virt-viewer-auth.xml.h:1
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
414392 msgid "Authentication required"
415393 msgstr "認証が必要です"
416394
417 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
396 msgid "_OK"
397 msgstr ""
398
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
400 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
418401 msgid "label"
419402 msgstr "ラベル"
420403
421 #: ../src/virt-viewer-auth.xml.h:3
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
422405 msgid "Password:"
423406 msgstr "パスワード:"
424407
425 #: ../src/virt-viewer-auth.xml.h:4
408 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
426409 msgid "Username:"
427410 msgstr "ユーザー名:"
428411
429 #: ../src/virt-viewer-auth.xml.h:5
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
430413 msgid "Show password"
431414 msgstr "パスワードの表示"
432415
433 #: ../src/virt-viewer-display-vnc.c:133
416 #: ../src/virt-viewer-display-vnc.c:134
434417 msgid "VNC does not provide GUID"
435418 msgstr "VNC が GUID を提供していません"
436419
420 #: ../src/virt-viewer-file-transfer-dialog.c:152
421 msgid "Cancel"
422 msgstr "取り消し"
423
424 #: ../src/virt-viewer-file-transfer-dialog.c:163
425 msgid "File Transfers"
426 msgstr ""
427
437428 #: ../src/virt-viewer-main.c:38
438 #, c-format
439 msgid "%s version %s\n"
440 msgstr "%sバージョン %s\n"
441
442 #: ../src/virt-viewer-main.c:62
443 msgid "Direct connection with no automatic tunnels"
444 msgstr "自動的にトンネリングせず直接接続する"
445
446 #: ../src/virt-viewer-main.c:64
447 msgid "Attach to the local display using libvirt"
448 msgstr "libvirt を使用してローカルディスプレイに接続"
449
450 #: ../src/virt-viewer-main.c:66
451 msgid "Connect to hypervisor"
452 msgstr "ハイパーバイザーに接続"
453
454 #: ../src/virt-viewer-main.c:68
455 msgid "Wait for domain to start"
456 msgstr "仮想マシンの起動を待つ"
457
458 #: ../src/virt-viewer-main.c:70
459 msgid "Reconnect to domain upon restart"
460 msgstr "再起動時に仮想マシンに再接続"
461
462 #: ../src/virt-viewer-main.c:77
463429 msgid "Virt Viewer"
464430 msgstr "仮想マシンビューアー"
465431
466 #: ../src/virt-viewer-main.c:80
467 #, c-format
468 msgid "Run '%s --help' to see a full list of available command line options"
469 msgstr ""
470 "利用可能なコマンドラインオプションの完全な一覧を確認するには '%s --help' を実"
471 "行してください"
472
473 #: ../src/virt-viewer-main.c:86
474 msgid "Virtual machine graphical console"
475 msgstr "仮想マシングラフィカルコンソール"
476
477 #: ../src/virt-viewer-main.c:107
478 #, c-format
479 msgid ""
480 "\n"
481 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
482 "\n"
483 "%s\n"
484 "\n"
485 msgstr ""
486 "\n"
487 "使用法: %s [オプション] [ドメイン名|ID|UUID]\n"
488 "\n"
489 "%s\n"
490 "\n"
491
492 #: ../src/virt-viewer-main.c:112
493 #, c-format
494 msgid ""
495 "\n"
496 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
497 "\n"
498 msgstr ""
499 "\n"
500 "'--wait' に対して ドメイン名|ID|UUID が指定されていません\n"
501 "\n"
502
503 #: ../src/virt-viewer-session-spice.c:694
432 #: ../src/virt-viewer-session-spice.c:705
504433 msgid "Invalid password"
505434 msgstr "無効なパスワード"
506435
507436 #. Create the widgets
508 #: ../src/virt-viewer-session-spice.c:786
437 #: ../src/virt-viewer-session-spice.c:797
509438 msgid "Select USB devices for redirection"
510439 msgstr "リダイレクトする USB デバイスを選択"
511440
512 #: ../src/virt-viewer-session-vnc.c:153
441 #: ../src/virt-viewer-session-spice.c:799
442 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
443 msgid "_Close"
444 msgstr ""
445
446 #: ../src/virt-viewer-session-vnc.c:156
513447 #, c-format
514448 msgid "Unsupported authentication type %d"
515449 msgstr "サポートしていない認証の種類 %d"
522456 msgid "No virtual machine was chosen"
523457 msgstr "仮想マシンが何も選択されていません"
524458
525 #: ../src/virt-viewer-window.c:537
459 #: ../src/virt-viewer-window.c:534
526460 msgid "Ctrl+Alt+_Del"
527461 msgstr "Ctrl+Alt+Del(_D)"
528462
529 #: ../src/virt-viewer-window.c:538
463 #: ../src/virt-viewer-window.c:535
530464 msgid "Ctrl+Alt+_Backspace"
531465 msgstr "Ctrl+Alt+Backspace(_B)"
532466
533 #: ../src/virt-viewer-window.c:540
467 #: ../src/virt-viewer-window.c:537
534468 msgid "Ctrl+Alt+F_1"
535469 msgstr "Ctrl+Alt+F1(_1)"
536470
537 #: ../src/virt-viewer-window.c:541
471 #: ../src/virt-viewer-window.c:538
538472 msgid "Ctrl+Alt+F_2"
539473 msgstr "Ctrl+Alt+F2(_2)"
540474
541 #: ../src/virt-viewer-window.c:542
475 #: ../src/virt-viewer-window.c:539
542476 msgid "Ctrl+Alt+F_3"
543477 msgstr "Ctrl+Alt+F3(_3)"
544478
545 #: ../src/virt-viewer-window.c:543
479 #: ../src/virt-viewer-window.c:540
546480 msgid "Ctrl+Alt+F_4"
547481 msgstr "Ctrl+Alt+F4(_4)"
548482
549 #: ../src/virt-viewer-window.c:544
483 #: ../src/virt-viewer-window.c:541
550484 msgid "Ctrl+Alt+F_5"
551485 msgstr "Ctrl+Alt+F5(_5)"
552486
553 #: ../src/virt-viewer-window.c:545
487 #: ../src/virt-viewer-window.c:542
554488 msgid "Ctrl+Alt+F_6"
555489 msgstr "Ctrl+Alt+F6(_6)"
556490
557 #: ../src/virt-viewer-window.c:546
491 #: ../src/virt-viewer-window.c:543
558492 msgid "Ctrl+Alt+F_7"
559493 msgstr "Ctrl+Alt+F7(_7)"
560494
561 #: ../src/virt-viewer-window.c:547
495 #: ../src/virt-viewer-window.c:544
562496 msgid "Ctrl+Alt+F_8"
563497 msgstr "Ctrl+Alt+F8(_8)"
564498
565 #: ../src/virt-viewer-window.c:548
499 #: ../src/virt-viewer-window.c:545
566500 msgid "Ctrl+Alt+F_9"
567501 msgstr "Ctrl+Alt+F9(_9)"
568502
569 #: ../src/virt-viewer-window.c:549
503 #: ../src/virt-viewer-window.c:546
570504 msgid "Ctrl+Alt+F1_0"
571505 msgstr "Ctrl+Alt+F10(_0)"
572506
573 #: ../src/virt-viewer-window.c:550
507 #: ../src/virt-viewer-window.c:547
574508 msgid "Ctrl+Alt+F11"
575509 msgstr "Ctrl+Alt+F11"
576510
577 #: ../src/virt-viewer-window.c:551
511 #: ../src/virt-viewer-window.c:548
578512 msgid "Ctrl+Alt+F12"
579513 msgstr "Ctrl+Alt+F12"
580514
581 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
515 #: ../src/virt-viewer-window.c:919
516 msgid "_Save"
517 msgstr ""
518
519 #: ../src/virt-viewer-window.c:927
582520 msgid "Screenshot"
583521 msgstr "スクリーンショット"
584522
585 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
523 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
586524 msgid "Unknown"
587525 msgstr "不明"
588526
589 #: ../src/virt-viewer-window.c:1062
527 #: ../src/virt-viewer-window.c:1071
590528 msgid "Disconnect"
591529 msgstr "切断"
592530
593 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
594 #: ../src/virt-viewer.xml.h:3
531 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
595532 msgid "USB device selection"
596533 msgstr "USB デバイスの選択"
597534
598 #: ../src/virt-viewer-window.c:1081
535 #: ../src/virt-viewer-window.c:1089
599536 msgid "Send key combination"
600537 msgstr "組み合わせキーの送信"
601538
602 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
539 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
603540 msgid "Leave fullscreen"
604541 msgstr "フルスクリーンの解除"
605542
606 #: ../src/virt-viewer-window.c:1173
543 #: ../src/virt-viewer-window.c:1175
607544 msgid "Ctrl+Alt"
608545 msgstr "Ctrl+Alt"
609546
610 #: ../src/virt-viewer-window.c:1176
547 #: ../src/virt-viewer-window.c:1178
611548 #, c-format
612549 msgid "(Press %s to release pointer)"
613550 msgstr "(ポインターを開放するには %s を押します)"
616553 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
617554 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
618555 #.
619 #: ../src/virt-viewer-window.c:1187
556 #: ../src/virt-viewer-window.c:1189
620557 #, c-format
621558 msgid "%s%s%s - %s"
622559 msgstr "%s%s%s - %s"
623560
624561 #. translators: <space>
625 #: ../src/virt-viewer-window.c:1191
562 #: ../src/virt-viewer-window.c:1193
626563 msgid " "
627564 msgstr " "
628565
629 #: ../src/virt-viewer-file.c:825
566 #: ../src/virt-viewer-file.c:843
630567 #, c-format
631568 msgid ""
632569 "At least %s version %s is required to setup this connection, see %s for "
635572 "この接続を確立するために少なくとも %s バージョン %s が必要です。詳しくは %s "
636573 "をご確認下さい。"
637574
638 #: ../src/virt-viewer-file.c:833
575 #: ../src/virt-viewer-file.c:851
639576 #, c-format
640577 msgid "At least %s version %s is required to setup this connection"
641578 msgstr "この接続を確立するために少なくとも %s バージョン %s が必要です。"
642579
643 #: ../src/virt-viewer.c:163
580 #: ../src/virt-viewer.c:90
581 msgid "Direct connection with no automatic tunnels"
582 msgstr "自動的にトンネリングせず直接接続する"
583
584 #: ../src/virt-viewer.c:92
585 msgid "Attach to the local display using libvirt"
586 msgstr "libvirt を使用してローカルディスプレイに接続"
587
588 #: ../src/virt-viewer.c:94
589 msgid "Connect to hypervisor"
590 msgstr "ハイパーバイザーに接続"
591
592 #: ../src/virt-viewer.c:96
593 msgid "Wait for domain to start"
594 msgstr "仮想マシンの起動を待つ"
595
596 #: ../src/virt-viewer.c:98
597 msgid "Reconnect to domain upon restart"
598 msgstr "再起動時に仮想マシンに再接続"
599
600 #: ../src/virt-viewer.c:105
601 msgid "Virtual machine graphical console"
602 msgstr "仮想マシングラフィカルコンソール"
603
604 #: ../src/virt-viewer.c:124
605 #, c-format
606 msgid ""
607 "\n"
608 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
609 "\n"
610 msgstr ""
611
612 #: ../src/virt-viewer.c:136
613 #, c-format
614 msgid ""
615 "\n"
616 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
617 "\n"
618 msgstr ""
619 "\n"
620 "'--wait' に対して ドメイン名|ID|UUID が指定されていません\n"
621 "\n"
622
623 #: ../src/virt-viewer.c:250
644624 msgid "Waiting for guest domain to re-start"
645625 msgstr "仮想マシンが再起動するのを待機中"
646626
647 #: ../src/virt-viewer.c:409
627 #: ../src/virt-viewer.c:496
648628 #, c-format
649629 msgid "Cannot determine the graphic type for the guest %s"
650630 msgstr "仮想マシン %s のグラフィックの種類を決定できません"
651631
652 #: ../src/virt-viewer.c:448
632 #: ../src/virt-viewer.c:535
653633 #, c-format
654634 msgid "Cannot determine the host for the guest %s"
655635 msgstr "仮想マシン %s のホストを決定できません"
656636
657 #: ../src/virt-viewer.c:476
637 #: ../src/virt-viewer.c:563
658638 #, c-format
659639 msgid "Guest '%s' is not reachable"
660640 msgstr "ゲスト '%s' が応答しません"
661641
662 #: ../src/virt-viewer.c:697
642 #: ../src/virt-viewer.c:784
663643 #, c-format
664644 msgid "Virtual machine %s is not running"
665645 msgstr "仮想マシン %s は稼働していません"
666646
667 #: ../src/virt-viewer.c:720
647 #: ../src/virt-viewer.c:807
668648 msgid "Waiting for libvirt to start"
669649 msgstr "libvirt の起動を待つ"
670650
671 #: ../src/virt-viewer.c:724
651 #: ../src/virt-viewer.c:811
672652 msgid "Finding guest domain"
673653 msgstr "仮想マシンを検索中"
674654
675 #: ../src/virt-viewer.c:728
655 #: ../src/virt-viewer.c:815
676656 msgid "Waiting for guest domain to be created"
677657 msgstr "仮想マシンが作成されるのを待機中"
678658
679 #: ../src/virt-viewer.c:750
659 #: ../src/virt-viewer.c:837
680660 msgid "Checking guest domain status"
681661 msgstr "仮想マシンの状態を確認中"
682662
683 #: ../src/virt-viewer.c:753
663 #: ../src/virt-viewer.c:840
684664 msgid "Cannot get guest state"
685665 msgstr "ゲストの状態を取得できませんでした"
686666
687 #: ../src/virt-viewer.c:759
667 #: ../src/virt-viewer.c:846
688668 msgid "Waiting for guest domain to start"
689669 msgstr "仮想マシンが開始するのを待機中"
690670
691 #: ../src/virt-viewer.c:863
671 #: ../src/virt-viewer.c:950
692672 #, c-format
693673 msgid "Unable to connect to libvirt with URI: %s."
694674 msgstr "libvirt URI に接続できません: %s"
695675
696 #: ../src/virt-viewer.c:864
676 #: ../src/virt-viewer.c:951
697677 msgid "[none]"
698678 msgstr "[なし]"
699679
700 #: ../src/virt-viewer.c:871
680 #: ../src/virt-viewer.c:958
701681 msgid "Authentication failed."
702682 msgstr "認証に失敗しました。"
703683
704 #: ../src/virt-viewer.c:931
684 #: ../src/virt-viewer.c:1018
705685 msgid "Failed to connect: "
706686 msgstr "接続に失敗しました:"
707687
712692 #. * indent-tabs-mode: nil
713693 #. * End:
714694 #.
715 #: ../src/virt-viewer.xml.h:1
695 #: ../src/resources/ui/virt-viewer.ui.h:1
716696 msgid "_File"
717697 msgstr "ファイル(_F)"
718698
719 #: ../src/virt-viewer.xml.h:4
699 #: ../src/resources/ui/virt-viewer.ui.h:2
700 msgid "_Screenshot"
701 msgstr ""
702
703 #: ../src/resources/ui/virt-viewer.ui.h:3
704 msgid "_USB device selection"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:4
720708 msgid "Smartcard insertion"
721709 msgstr "スマートカードの挿入"
722710
723 #: ../src/virt-viewer.xml.h:5
711 #: ../src/resources/ui/virt-viewer.ui.h:5
724712 msgid "Smartcard removal"
725713 msgstr "スマートカードの抜き取り"
726714
727 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
715 #: ../src/resources/ui/virt-viewer.ui.h:6
716 msgid "_Preferences"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:7
720 msgid "_Quit"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:8
724 msgid "_View"
725 msgstr "表示(_V)"
726
727 #: ../src/resources/ui/virt-viewer.ui.h:9
728 msgid "_Full screen"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:10
732 msgid "_Zoom"
733 msgstr "ズーム(_Z)"
734
735 #: ../src/resources/ui/virt-viewer.ui.h:11
736 msgid "Zoom _In"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:12
740 msgid "Zoom _Out"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer.ui.h:13
744 msgid "_Normal Size"
745 msgstr ""
746
747 #: ../src/resources/ui/virt-viewer.ui.h:14
748 msgid "_Displays"
749 msgstr ""
750
751 #: ../src/resources/ui/virt-viewer.ui.h:15
752 msgid "Release cursor"
753 msgstr "カーソルの開放"
754
755 #: ../src/resources/ui/virt-viewer.ui.h:16
756 msgid "_Send key"
757 msgstr "キーを送信(_S)"
758
759 #: ../src/resources/ui/virt-viewer.ui.h:17
760 msgid "_Help"
761 msgstr "ヘルプ(_H)"
762
763 #: ../src/resources/ui/virt-viewer.ui.h:18
764 msgid "_Guest Details"
765 msgstr "仮想マシンの詳細(_G)"
766
767 #: ../src/resources/ui/virt-viewer.ui.h:19
768 msgid "_About"
769 msgstr ""
770
771 #: ../src/resources/ui/virt-viewer.ui.h:20
772 msgid "_Change CD"
773 msgstr "CDの変更(_C)"
774
775 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
776 msgid "Guest Details"
777 msgstr "仮想マシンの詳細"
778
779 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
780 msgid "Name:"
781 msgstr "名前:"
782
783 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
784 msgid "GUID:"
785 msgstr "GUID:"
786
787 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
788 msgid "Choose a virtual machine"
789 msgstr "仮想マシンの選択"
790
791 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
792 msgid "Name"
793 msgstr "名前"
794
795 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
796 msgid "Available virtual machines"
797 msgstr "利用可能な仮想マシン"
798
799 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
728800 msgid "Preferences"
729801 msgstr "個人設定"
730802
731 #: ../src/virt-viewer.xml.h:7
732 msgid "_View"
733 msgstr "表示(_V)"
734
735 #: ../src/virt-viewer.xml.h:8
736 msgid "Full screen"
737 msgstr "フルスクリーン"
738
739 #: ../src/virt-viewer.xml.h:9
740 msgid "_Zoom"
741 msgstr "ズーム(_Z)"
742
743 #: ../src/virt-viewer.xml.h:10
744 msgid "Displays"
745 msgstr "ディスプレイ"
746
747 #: ../src/virt-viewer.xml.h:11
748 msgid "Release cursor"
749 msgstr "カーソルの開放"
750
751 #: ../src/virt-viewer.xml.h:12
752 msgid "_Send key"
753 msgstr "キーを送信(_S)"
754
755 #: ../src/virt-viewer.xml.h:13
756 msgid "_Help"
757 msgstr "ヘルプ(_H)"
758
759 #: ../src/virt-viewer.xml.h:14
760 msgid "_Guest Details"
761 msgstr "仮想マシンの詳細(_G)"
762
763 #: ../src/virt-viewer-guest-details.xml.h:1
764 msgid "Guest Details"
765 msgstr "仮想マシンの詳細"
766
767 #: ../src/virt-viewer-guest-details.xml.h:2
768 msgid "Name:"
769 msgstr "名前:"
770
771 #: ../src/virt-viewer-guest-details.xml.h:3
772 msgid "GUID:"
773 msgstr "GUID:"
774
775 #: ../src/virt-viewer-vm-connection.xml.h:1
776 msgid "Choose a virtual machine"
777 msgstr "仮想マシンの選択"
778
779 #: ../src/virt-viewer-vm-connection.xml.h:2
780 msgid "Name"
781 msgstr "名前"
782
783 #: ../src/virt-viewer-vm-connection.xml.h:3
784 msgid "Available virtual machines"
785 msgstr "利用可能な仮想マシン"
786
787 #: ../src/virt-viewer-preferences.xml.h:2
803 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
788804 msgid "Folder sharing"
789805 msgstr "フォルダー共有"
790806
791 #: ../src/virt-viewer-preferences.xml.h:3
807 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
792808 msgid "Share folder"
793809 msgstr "共有フォルダー"
794810
795 #: ../src/virt-viewer-preferences.xml.h:4
811 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
796812 msgid "Read-only"
797813 msgstr "読み込み専用"
798814
799 #: ../src/virt-viewer-preferences.xml.h:5
815 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
800816 msgid "Spice"
801817 msgstr "Spice"
+343
-316
po/ka.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/kk.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/km.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-275
po/kn.po less more
1111 msgstr ""
1212 "Project-Id-Version: PACKAGE VERSION\n"
1313 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
14 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1515 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1616 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1717 "Language-Team: Kannada (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
24 "X-Generator: Zanata 3.8.4\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
2728 msgid "Remote Viewer"
2829 msgstr "ದೂರಸ್ಥ ವೀಕ್ಷಕ"
30
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 msgid "Remotely access virtual machines"
33 msgstr ""
34
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 msgid ""
37 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
38 "time it supports guest OS using the VNC or SPICE protocols. Further "
39 "protocols may be supported in the future as user demand dictates. The viewer "
40 "can connect directly to both local and remotely hosted guest OS, optionally "
41 "using SSL/TLS encryption."
42 msgstr ""
2943
3044 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Access remote desktops"
3549 msgid "Virt-Viewer connection file"
3650 msgstr "Virt-Viewer ಸಂಪರ್ಕ ಕಡತ"
3751
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "ಮೂಲ"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "ಬೈಂಡಿಂಗಿನ ಮೂಲ"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "ಗುರಿ"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "ಬೈಂಡಿಂಗಿನ ಗುರಿ"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "ಆಕರದ ಗುಣ"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "ಬೈಂಡ್‌ ಮಾಡಬೇಕಿರುವ ಮೂಲದ ಗುಣ"
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "ಗುರಿಯ ಗುಣ"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "ಬೈಂಡ್‌ ಆಗಬೇಕಿರುವ ಗುರಿಯ ಗುಣ"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "ಗುರುತುಗಳು"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "ಬೈಂಡಿಂಗ್ ಫ್ಲಾಗ್‌ಗಳು"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "ಪ್ರದರ್ಶನ ಆವೃತ್ತಿ ಮಾಹಿತಿ"
86
87 #: ../src/remote-viewer-main.c:105
52 #: ../src/remote-viewer.c:139
8853 msgid "Set window title"
8954 msgstr "ಕಿಟಕಿಯ ಶೀರ್ಷಿಕೆಯನ್ನು ಹೊಂದಿಸು"
9055
91 #: ../src/remote-viewer-main.c:108
56 #: ../src/remote-viewer.c:142
9257 msgid "Open connection using Spice controller communication"
9358 msgstr "ಸ್ಪೈಸ್ ನಿಯಂತ್ರಣ ವ್ಯವಹಾರವನ್ನು ಬಳಸಿಕೊಂಡು ಸಂಪರ್ಕವನ್ನು ತೆರೆ"
9459
95 #: ../src/remote-viewer-main.c:120
60 #: ../src/remote-viewer.c:150
9661 msgid "Remote viewer client"
9762 msgstr "- ದೂರದ ವೀಕ್ಷಕದ ಕ್ಲೈಂಟ್"
9863
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "ಲಭ್ಯವಿರುವ ಆಜ್ಞಾಸಾಲಿನ ಆಯ್ಕೆಗಳ ಸಂಪೂರ್ಣ ಪಟ್ಟಿಗಾಗಿ '%s --help' ಅನ್ನು ಚಲಾಯಿಸಿ\n"
107
108 #: ../src/remote-viewer-main.c:149
109 #, c-format
110 msgid "Error: extra arguments given while using Spice controller\n"
111 msgstr "ದೋಷ: ಸ್ಪೈಸ್‌ ನಿಯಂತ್ರಕವನ್ನು ಬಳಸುವಾಗ ಹೆಚ್ಚುವರಿ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳು\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "ದೋಷ: ಅನೇಕ URLಗಳನ್ನು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
64 #: ../src/remote-viewer.c:175
65 #, c-format
66 msgid ""
67 "\n"
68 "Error: can't handle multiple URIs\n"
69 "\n"
70 msgstr ""
71
72 #: ../src/remote-viewer.c:187
73 #, c-format
74 msgid ""
75 "\n"
76 "Error: extra arguments given while using Spice controller\n"
77 "\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
81 #, c-format
82 msgid "Run '%s --help' to see a full list of available command line options\n"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11986 msgid "Failed to initiate connection"
12087 msgstr "ಸಂಪರ್ಕವನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ"
12188
122 #: ../src/remote-viewer.c:313
89 #: ../src/remote-viewer.c:297
12390 msgid "Display disabled by controller"
12491 msgstr "ನಿಯಂತ್ರಕದಿಂದ ಪ್ರದರ್ಶಕವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
12592
126 #: ../src/remote-viewer.c:609
93 #: ../src/remote-viewer.c:593
12794 #, c-format
12895 msgid "Controller connection failed: %s"
12996 msgstr "ನಿಯಂತ್ರಕದ ಸಂಪರ್ಕವು ವಿಫಲಗೊಂಡಿದೆ: %s"
13097
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr ""
134
135 #: ../src/remote-viewer.c:855
98 #: ../src/remote-viewer.c:848
13699 msgid "failed to parse ovirt uri"
137100 msgstr ""
138101
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
102 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140103 msgid "Authentication was cancelled"
141104 msgstr ""
142105
143 #: ../src/remote-viewer.c:900
106 #: ../src/remote-viewer.c:893
144107 #, c-format
145108 msgid "oVirt VM %s is not running"
146109 msgstr ""
147110
148 #: ../src/remote-viewer.c:914
111 #: ../src/remote-viewer.c:907
149112 #, c-format
150113 msgid "oVirt VM %s has no display"
151114 msgstr ""
152115
153 #: ../src/remote-viewer.c:940
116 #: ../src/remote-viewer.c:933
154117 #, c-format
155118 msgid "oVirt VM %s has no host information"
156119 msgstr ""
157120
158 #: ../src/remote-viewer.c:951
121 #: ../src/remote-viewer.c:944
159122 #, c-format
160123 msgid "oVirt VM %s has unknown display type: %d"
161124 msgstr ""
162125
163 #: ../src/remote-viewer.c:1094
126 #: ../src/remote-viewer.c:1115
164127 msgid "Setting up Spice session..."
165128 msgstr "ಸ್ಪೈಸ್ ಅಧಿವೇಶನವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗುತ್ತಿದೆ..."
166129
167 #: ../src/remote-viewer.c:1102
130 #: ../src/remote-viewer.c:1123
168131 msgid "No connection was chosen"
169132 msgstr ""
170133
171 #: ../src/remote-viewer.c:1120
134 #: ../src/remote-viewer.c:1141
172135 #, c-format
173136 msgid "Invalid file %s: "
174137 msgstr ""
175138
176 #: ../src/remote-viewer.c:1128
139 #: ../src/remote-viewer.c:1149
177140 msgid "Cannot determine the connection type from URI"
178141 msgstr "URI ಇಂದ ಸಂಪರ್ಕದ ಬಗೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
179142
180 #: ../src/remote-viewer.c:1134
143 #: ../src/remote-viewer.c:1155
181144 msgid "Couldn't open oVirt session: "
182145 msgstr ""
183146
188151 #. * indent-tabs-mode: nil
189152 #. * End:
190153 #.
191 #: ../src/remote-viewer-connect.xml.h:1
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192155 msgid "Connection details"
193156 msgstr "ಸಂಪರ್ಕ ವಿವರಗಳು"
194157
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr ""
198
199 #: ../src/remote-viewer-connect.xml.h:3
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 msgid "Connection _Address"
160 msgstr ""
161
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200163 msgid "For example, spice://foo.example.org:5900"
201164 msgstr "ಉದಾಹರಣೆಗೆ, spice://foo.example.org:5900"
202165
203 #: ../src/remote-viewer-connect.xml.h:4
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204167 msgid "Recent connections"
205168 msgstr ""
206169
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr ""
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "ಗ್ಲೇಡ್ ಕುರಿತು"
218
219 #: ../src/virt-viewer-about.xml.h:2
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
171 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
173 msgid "_Cancel"
174 msgstr ""
175
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
177 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 msgid "C_onnect"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:1
182 msgid "About Virt-Viewer"
183 msgstr ""
184
185 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220186 msgid ""
221187 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222188 "Copyright (C) 2007-2014 Red Hat, Inc."
224190 "ಹಕ್ಕು (C) 2007-2012 Daniel P. Berrange\n"
225191 "ಹಕ್ಕು (C) 2007-2014 Red Hat, Inc."
226192
227 #: ../src/virt-viewer-about.xml.h:4
193 #: ../src/resources/ui/virt-viewer-about.ui.h:4
228194 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
229195 msgstr "GTK-VNC, SPICE-GTK ಮತ್ತು libvirt ನೊಂದಿಗೆ ನಿರ್ಮಿಸಲಾದ ದೂರಸ್ಥ ಗಣಕತೆರೆ ಕ್ಲೈಂಟ್"
230196
231 #: ../src/virt-viewer-about.xml.h:5
197 #: ../src/resources/ui/virt-viewer-about.ui.h:5
232198 msgid "virt-manager.org"
233199 msgstr "virt-manager.org"
234200
235 #: ../src/virt-viewer-about.xml.h:6
201 #: ../src/resources/ui/virt-viewer-about.ui.h:6
236202 msgid ""
237203 "This program is free software; you can redistribute it and/or modify\n"
238204 "it under the terms of the GNU General Public License as published by\n"
262228 "along with this program; if not, write to the Free Software\n"
263229 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
264230
265 #: ../src/virt-viewer-about.xml.h:20
231 #: ../src/resources/ui/virt-viewer-about.ui.h:20
266232 msgid "The Fedora Translation Team"
267233 msgstr "ಫೆಡೋರ ಟ್ರಾನ್ಸಲೇಶನ್ ಟೀಮ್"
268234
269 #: ../src/virt-viewer-app.c:526
235 #: ../src/virt-viewer-app.c:458
270236 msgid "Do you want to close the session?"
271237 msgstr "ನೀವು ಈ ಅಧಿವೇಶನವನ್ನು ಮುಚ್ಚಲು ಬಯಸುವಿರಾ?"
272238
273 #: ../src/virt-viewer-app.c:528
239 #: ../src/virt-viewer-app.c:460
274240 msgid "Do not ask me again"
275241 msgstr "ಪುನಃ ನನ್ನನ್ನು ಕೇಳಬೇಡ"
276242
277 #: ../src/virt-viewer-app.c:1008
243 #: ../src/virt-viewer-app.c:948
278244 #, c-format
279245 msgid "Waiting for display %d..."
280246 msgstr "%d ಪ್ರದರ್ಶಕಕ್ಕಾಗಿ ಕಾಯಲಾಗುತ್ತಿದೆ..."
281247
282 #: ../src/virt-viewer-app.c:1117
248 #: ../src/virt-viewer-app.c:1055
283249 #, c-format
284250 msgid "Unsupported graphic type '%s'"
285251 msgstr ""
286252
287 #: ../src/virt-viewer-app.c:1200
253 #: ../src/virt-viewer-app.c:1138
288254 msgid "Connect to ssh failed."
289255 msgstr "ssh ಗೆ ಸಂಪರ್ಕವು ವಿಫಲಗೊಂಡಿದೆ."
290256
291 #: ../src/virt-viewer-app.c:1202
257 #: ../src/virt-viewer-app.c:1140
292258 msgid "Can't connect to channel, SSH only supported."
293259 msgstr "ಚಾನಲ್‌ನೊಂದಿಗೆ ಸಂಪರ್ಕಸಾಧಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ, SSH ಅನ್ನು ಮಾತ್ರ ಬೆಂಬಲಿಸಲಾಗುತ್ತದೆ."
294260
295 #: ../src/virt-viewer-app.c:1214
261 #: ../src/virt-viewer-app.c:1152
296262 msgid "Connect to channel unsupported."
297263 msgstr "ಚಾನಲ್‌ನೊಂದಿಗೆ ಸಂಪರ್ಕಸಾಧಿಸುವುದನ್ನು ಬೆಂಬಲಿಸಲಾಗುತ್ತದೆ."
298264
299 #: ../src/virt-viewer-app.c:1276
265 #: ../src/virt-viewer-app.c:1214
300266 msgid "Display can only be attached through libvirt with --attach"
301267 msgstr ""
302268
303 #: ../src/virt-viewer-app.c:1299
269 #: ../src/virt-viewer-app.c:1237
304270 msgid "Connecting to graphic server"
305271 msgstr "ಗ್ರಾಫಿಕ್ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ಸಂಪರ್ಕಸಾಧಿಸಲಾಗುತ್ತಿದೆ"
306272
307 #: ../src/virt-viewer-app.c:1398
273 #: ../src/virt-viewer-app.c:1336
308274 msgid "Guest domain has shutdown"
309275 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲಾಗಿದೆ"
310276
311 #: ../src/virt-viewer-app.c:1459
277 #: ../src/virt-viewer-app.c:1397
312278 msgid "Connected to graphic server"
313279 msgstr "ಗ್ರಾಫಿಕ್ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ಸಂಪರ್ಕಿತಗೊಂಡಿದೆ"
314280
315 #: ../src/virt-viewer-app.c:1486
281 #: ../src/virt-viewer-app.c:1424
316282 #, c-format
317283 msgid "Unable to connect to the graphic server %s"
318284 msgstr "%s ಎಂಬ ಗ್ರಾಫಿಕ್ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ಸಂಪರ್ಕಿತಗೊಂಡಿದೆ"
319285
320 #: ../src/virt-viewer-app.c:1512
286 #: ../src/virt-viewer-app.c:1450
321287 #, c-format
322288 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
323289 msgstr ""
324290
325 #: ../src/virt-viewer-app.c:1525
291 #: ../src/virt-viewer-app.c:1463
326292 #, c-format
327293 msgid "Unable to authenticate with remote desktop server: %s"
328294 msgstr "ದೂರದ ಗಣಕತೆರೆ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ದೃಢೀಕರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s"
329295
330 #: ../src/virt-viewer-app.c:1533
296 #: ../src/virt-viewer-app.c:1471
331297 #, c-format
332298 msgid "USB redirection error: %s"
333299 msgstr "USB ಮರುನಿರ್ದೇಶನ ದೋಷ: %s"
334300
335 #: ../src/virt-viewer-app.c:1786
301 #: ../src/virt-viewer-app.c:1805
336302 #, c-format
337303 msgid "Zoom level must be within %d-%d\n"
338304 msgstr "ಗಾತ್ರ ಬದಲಾವಣೆ ಮಟ್ಟವು %d-%d ರ ನಡುವೆ ಇರಬೇಕು\n"
339305
340 #: ../src/virt-viewer-app.c:2296
341 #, c-format
342 msgid "Display %d"
343 msgstr "%d ಅನ್ನು ತೋರಿಸು"
344
345 #: ../src/virt-viewer-app.c:2552
306 #: ../src/virt-viewer-app.c:1858
307 #, c-format
308 msgid "%s\n"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:1868
312 #, c-format
313 msgid "%s version %s"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2292
317 #, c-format
318 msgid "Display _%d"
319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:2548
346322 #, c-format
347323 msgid "Invalid kiosk-quit argument: %s"
348324 msgstr "ಅಮಾನ್ಯವಾದ ಕಿಯೋಸ್ಕ್-ನಿರ್ಗಮನದ ಆರ್ಗ್ಯುಮೆಂಟ್: %s"
325
326 #: ../src/virt-viewer-app.c:2559
327 msgid "Display version information"
328 msgstr "ಪ್ರದರ್ಶನ ಆವೃತ್ತಿ ಮಾಹಿತಿ"
349329
350330 #: ../src/virt-viewer-app.c:2561
351331 msgid "Zoom level of window, in percentage"
381361 msgid "Display debugging information"
382362 msgstr "ದೋಷನಿದಾನ ಮಾಹಿತಿಯನ್ನು ತೋರಿಸು"
383363
384 #: ../src/virt-viewer-auth.c:88
364 #: ../src/virt-viewer-auth.c:89
385365 #, c-format
386366 msgid ""
387367 "Authentication is required for the %s connection to:\n"
390370 "\n"
391371 msgstr ""
392372
393 #: ../src/virt-viewer-auth.c:92
373 #: ../src/virt-viewer-auth.c:93
394374 #, c-format
395375 msgid "Authentication is required for the %s connection:\n"
396376 msgstr ""
402382 #. * indent-tabs-mode: nil
403383 #. * End:
404384 #.
405 #: ../src/virt-viewer-auth.xml.h:1
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
406386 msgid "Authentication required"
407387 msgstr "ದೃಢೀಕರಣದ ಅಗತ್ಯವಿದೆ"
408388
409 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
390 msgid "_OK"
391 msgstr ""
392
393 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
394 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
410395 msgid "label"
411396 msgstr "ಲೇಬಲ್"
412397
413 #: ../src/virt-viewer-auth.xml.h:3
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
414399 msgid "Password:"
415400 msgstr "ಗುಪ್ತಪದ:"
416401
417 #: ../src/virt-viewer-auth.xml.h:4
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
418403 msgid "Username:"
419404 msgstr "ಬಳಕೆದಾರ ಹೆಸರು:"
420405
421 #: ../src/virt-viewer-auth.xml.h:5
406 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
422407 msgid "Show password"
423408 msgstr ""
424409
425 #: ../src/virt-viewer-display-vnc.c:133
410 #: ../src/virt-viewer-display-vnc.c:134
426411 msgid "VNC does not provide GUID"
427412 msgstr ""
428413
414 #: ../src/virt-viewer-file-transfer-dialog.c:152
415 msgid "Cancel"
416 msgstr ""
417
418 #: ../src/virt-viewer-file-transfer-dialog.c:163
419 msgid "File Transfers"
420 msgstr ""
421
429422 #: ../src/virt-viewer-main.c:38
430 #, c-format
431 msgid "%s version %s\n"
432 msgstr "%s ಆವೃತ್ತಿ %s\n"
433
434 #: ../src/virt-viewer-main.c:62
435 msgid "Direct connection with no automatic tunnels"
436 msgstr "ಯಾವುದೆ ಸ್ವಯಂಚಾಲಿತ ಟನಲ್‌ಗಳ ನೇರವಾದ ಸಂಪರ್ಕ "
437
438 #: ../src/virt-viewer-main.c:64
439 msgid "Attach to the local display using libvirt"
440 msgstr "libvirt ಅನ್ನು ಬಳಸಿಕೊಂಡು ಸ್ಥಳೀಯ ಪ್ರದರ್ಶಕಕ್ಕೆ ಲಗತ್ತಿಸು"
441
442 #: ../src/virt-viewer-main.c:66
443 msgid "Connect to hypervisor"
444 msgstr "ಹೈಪರ್ವೈಸರಿನೊಂದಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸು"
445
446 #: ../src/virt-viewer-main.c:68
447 msgid "Wait for domain to start"
448 msgstr "ಡೊಮೈನ್ ಆರಂಭಗೊಳ್ಳುವವರೆಗೆ ನಿರೀಕ್ಷಿಸು"
449
450 #: ../src/virt-viewer-main.c:70
451 msgid "Reconnect to domain upon restart"
452 msgstr "ಮರಳಿ ಆರಂಭಗೊಂಡ ನಂತರ ಮರಳಿ ಸಂಪರ್ಕ ಜೋಡಿಸು"
453
454 #: ../src/virt-viewer-main.c:77
455423 msgid "Virt Viewer"
456424 msgstr "Virt Viewer"
457425
458 #: ../src/virt-viewer-main.c:80
459 #, c-format
460 msgid "Run '%s --help' to see a full list of available command line options"
461 msgstr "ಲಭ್ಯವಿರುವ ಆಜ್ಞಾಸಾಲಿನ ಆಯ್ಕೆಗಳ ಸಂಪೂರ್ಣ ಪಟ್ಟಿಗಾಗಿ '%s --help' ಅನ್ನು ಚಲಾಯಿಸಿ"
462
463 #: ../src/virt-viewer-main.c:86
464 msgid "Virtual machine graphical console"
465 msgstr "- ವರ್ಚುವಲ್ ಗಣಕದ ಗ್ರಾಫಿಕಲ್‌ ಕನ್ಸೋಲ್"
466
467 #: ../src/virt-viewer-main.c:107
468 #, c-format
469 msgid ""
470 "\n"
471 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
472 "\n"
473 "%s\n"
474 "\n"
475 msgstr ""
476
477 #: ../src/virt-viewer-main.c:112
478 #, c-format
479 msgid ""
480 "\n"
481 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
482 "\n"
483 msgstr ""
484
485 #: ../src/virt-viewer-session-spice.c:694
426 #: ../src/virt-viewer-session-spice.c:705
486427 msgid "Invalid password"
487428 msgstr ""
488429
489430 #. Create the widgets
490 #: ../src/virt-viewer-session-spice.c:786
431 #: ../src/virt-viewer-session-spice.c:797
491432 msgid "Select USB devices for redirection"
492433 msgstr "ಮರುನಿರ್ದೇಶನಕ್ಕಾಗಿ USB ಸಾಧನಗಳನ್ನು ಆರಿಸಿ"
493434
494 #: ../src/virt-viewer-session-vnc.c:153
435 #: ../src/virt-viewer-session-spice.c:799
436 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
437 msgid "_Close"
438 msgstr ""
439
440 #: ../src/virt-viewer-session-vnc.c:156
495441 #, c-format
496442 msgid "Unsupported authentication type %d"
497443 msgstr "ಬೆಂಬಲವಿರದ ದೃಢೀಕರಣದ ಬಗೆ %d"
504450 msgid "No virtual machine was chosen"
505451 msgstr ""
506452
507 #: ../src/virt-viewer-window.c:537
453 #: ../src/virt-viewer-window.c:534
508454 msgid "Ctrl+Alt+_Del"
509455 msgstr "Ctrl+Alt+_Del"
510456
511 #: ../src/virt-viewer-window.c:538
457 #: ../src/virt-viewer-window.c:535
512458 msgid "Ctrl+Alt+_Backspace"
513459 msgstr "Ctrl+Alt+_Backspace"
514460
515 #: ../src/virt-viewer-window.c:540
461 #: ../src/virt-viewer-window.c:537
516462 msgid "Ctrl+Alt+F_1"
517463 msgstr "Ctrl+Alt+F_1"
518464
519 #: ../src/virt-viewer-window.c:541
465 #: ../src/virt-viewer-window.c:538
520466 msgid "Ctrl+Alt+F_2"
521467 msgstr "Ctrl+Alt+F_2"
522468
523 #: ../src/virt-viewer-window.c:542
469 #: ../src/virt-viewer-window.c:539
524470 msgid "Ctrl+Alt+F_3"
525471 msgstr "Ctrl+Alt+F_3"
526472
527 #: ../src/virt-viewer-window.c:543
473 #: ../src/virt-viewer-window.c:540
528474 msgid "Ctrl+Alt+F_4"
529475 msgstr "Ctrl+Alt+F_4"
530476
531 #: ../src/virt-viewer-window.c:544
477 #: ../src/virt-viewer-window.c:541
532478 msgid "Ctrl+Alt+F_5"
533479 msgstr "Ctrl+Alt+F_5"
534480
535 #: ../src/virt-viewer-window.c:545
481 #: ../src/virt-viewer-window.c:542
536482 msgid "Ctrl+Alt+F_6"
537483 msgstr "Ctrl+Alt+F_6"
538484
539 #: ../src/virt-viewer-window.c:546
485 #: ../src/virt-viewer-window.c:543
540486 msgid "Ctrl+Alt+F_7"
541487 msgstr "Ctrl+Alt+F_7"
542488
543 #: ../src/virt-viewer-window.c:547
489 #: ../src/virt-viewer-window.c:544
544490 msgid "Ctrl+Alt+F_8"
545491 msgstr "Ctrl+Alt+F_8"
546492
547 #: ../src/virt-viewer-window.c:548
493 #: ../src/virt-viewer-window.c:545
548494 msgid "Ctrl+Alt+F_9"
549495 msgstr "Ctrl+Alt+F_9"
550496
551 #: ../src/virt-viewer-window.c:549
497 #: ../src/virt-viewer-window.c:546
552498 msgid "Ctrl+Alt+F1_0"
553499 msgstr "Ctrl+Alt+F1_0"
554500
555 #: ../src/virt-viewer-window.c:550
501 #: ../src/virt-viewer-window.c:547
556502 msgid "Ctrl+Alt+F11"
557503 msgstr "Ctrl+Alt+F11"
558504
559 #: ../src/virt-viewer-window.c:551
505 #: ../src/virt-viewer-window.c:548
560506 msgid "Ctrl+Alt+F12"
561507 msgstr "Ctrl+Alt+F12"
562508
563 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
509 #: ../src/virt-viewer-window.c:919
510 msgid "_Save"
511 msgstr ""
512
513 #: ../src/virt-viewer-window.c:927
564514 msgid "Screenshot"
565515 msgstr "ತೆರೆಚಿತ್ರ"
566516
567 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
517 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
568518 msgid "Unknown"
569519 msgstr ""
570520
571 #: ../src/virt-viewer-window.c:1062
521 #: ../src/virt-viewer-window.c:1071
572522 msgid "Disconnect"
573523 msgstr "ಸಂಪರ್ಕ ಕಡಿದುಹಾಕು"
574524
575 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
576 #: ../src/virt-viewer.xml.h:3
525 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
577526 msgid "USB device selection"
578527 msgstr "USB ಸಾಧನವನ್ನು ಆರಿಸುವಿಕೆ"
579528
580 #: ../src/virt-viewer-window.c:1081
529 #: ../src/virt-viewer-window.c:1089
581530 msgid "Send key combination"
582531 msgstr "ಕೀಲಿಯ ಸಂಯೋಜನೆಯನ್ನು ಕಳುಹಿಸು"
583532
584 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
533 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
585534 msgid "Leave fullscreen"
586535 msgstr "ಪೂರ್ಣತೆರೆಯಿಂದ ನಿರ್ಗಮಿಸು"
587536
588 #: ../src/virt-viewer-window.c:1173
537 #: ../src/virt-viewer-window.c:1175
589538 msgid "Ctrl+Alt"
590539 msgstr "Ctrl+Alt"
591540
592 #: ../src/virt-viewer-window.c:1176
541 #: ../src/virt-viewer-window.c:1178
593542 #, c-format
594543 msgid "(Press %s to release pointer)"
595544 msgstr "(ಸೂಚಕವನ್ನು ಮುಕ್ತಗೊಳಿಸಲು %s ಅನ್ನು ಒತ್ತಿ)"
598547 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599548 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600549 #.
601 #: ../src/virt-viewer-window.c:1187
550 #: ../src/virt-viewer-window.c:1189
602551 #, c-format
603552 msgid "%s%s%s - %s"
604553 msgstr "%s%s%s - %s"
605554
606555 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1191
556 #: ../src/virt-viewer-window.c:1193
608557 msgid " "
609558 msgstr " "
610559
611 #: ../src/virt-viewer-file.c:825
560 #: ../src/virt-viewer-file.c:843
612561 #, c-format
613562 msgid ""
614563 "At least %s version %s is required to setup this connection, see %s for "
615564 "details"
616565 msgstr ""
617566
618 #: ../src/virt-viewer-file.c:833
567 #: ../src/virt-viewer-file.c:851
619568 #, c-format
620569 msgid "At least %s version %s is required to setup this connection"
621570 msgstr "ಈ ಸಂಪರ್ಕವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲು ಕನಿಷ್ಟ %s ಆವೃತ್ತಿ %s ಅಗತ್ಯವಿದೆ"
622571
623 #: ../src/virt-viewer.c:163
572 #: ../src/virt-viewer.c:90
573 msgid "Direct connection with no automatic tunnels"
574 msgstr "ಯಾವುದೆ ಸ್ವಯಂಚಾಲಿತ ಟನಲ್‌ಗಳ ನೇರವಾದ ಸಂಪರ್ಕ "
575
576 #: ../src/virt-viewer.c:92
577 msgid "Attach to the local display using libvirt"
578 msgstr "libvirt ಅನ್ನು ಬಳಸಿಕೊಂಡು ಸ್ಥಳೀಯ ಪ್ರದರ್ಶಕಕ್ಕೆ ಲಗತ್ತಿಸು"
579
580 #: ../src/virt-viewer.c:94
581 msgid "Connect to hypervisor"
582 msgstr "ಹೈಪರ್ವೈಸರಿನೊಂದಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸು"
583
584 #: ../src/virt-viewer.c:96
585 msgid "Wait for domain to start"
586 msgstr "ಡೊಮೈನ್ ಆರಂಭಗೊಳ್ಳುವವರೆಗೆ ನಿರೀಕ್ಷಿಸು"
587
588 #: ../src/virt-viewer.c:98
589 msgid "Reconnect to domain upon restart"
590 msgstr "ಮರಳಿ ಆರಂಭಗೊಂಡ ನಂತರ ಮರಳಿ ಸಂಪರ್ಕ ಜೋಡಿಸು"
591
592 #: ../src/virt-viewer.c:105
593 msgid "Virtual machine graphical console"
594 msgstr "- ವರ್ಚುವಲ್ ಗಣಕದ ಗ್ರಾಫಿಕಲ್‌ ಕನ್ಸೋಲ್"
595
596 #: ../src/virt-viewer.c:124
597 #, c-format
598 msgid ""
599 "\n"
600 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
601 "\n"
602 msgstr ""
603
604 #: ../src/virt-viewer.c:136
605 #, c-format
606 msgid ""
607 "\n"
608 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
609 "\n"
610 msgstr ""
611
612 #: ../src/virt-viewer.c:250
624613 msgid "Waiting for guest domain to re-start"
625614 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಮರಳಿ-ಆರಂಭಗೊಳ್ಳಲು ಕಾಯಲಾಗುತ್ತಿದೆ"
626615
627 #: ../src/virt-viewer.c:409
616 #: ../src/virt-viewer.c:496
628617 #, c-format
629618 msgid "Cannot determine the graphic type for the guest %s"
630619 msgstr "%s ಎಂಬ ಅತಿಥಿಗಾಗಿ ಗ್ರಾಫಿಕ್‌ನ ಬಗೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
631620
632 #: ../src/virt-viewer.c:448
621 #: ../src/virt-viewer.c:535
633622 #, c-format
634623 msgid "Cannot determine the host for the guest %s"
635624 msgstr "%s ಎಂಬ ಅತಿಥಿಗಾಗಿ ಆತಿಥೇಯವನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
636625
637 #: ../src/virt-viewer.c:476
626 #: ../src/virt-viewer.c:563
638627 #, c-format
639628 msgid "Guest '%s' is not reachable"
640629 msgstr ""
641630
642 #: ../src/virt-viewer.c:697
631 #: ../src/virt-viewer.c:784
643632 #, c-format
644633 msgid "Virtual machine %s is not running"
645634 msgstr ""
646635
647 #: ../src/virt-viewer.c:720
636 #: ../src/virt-viewer.c:807
648637 msgid "Waiting for libvirt to start"
649638 msgstr "libvirt ಆರಂಭಗೊಳ್ಳುವವರೆಗೆ ಕಾಯಲಾಗುತ್ತಿದೆ"
650639
651 #: ../src/virt-viewer.c:724
640 #: ../src/virt-viewer.c:811
652641 msgid "Finding guest domain"
653642 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಅನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗುತ್ತಿದೆ"
654643
655 #: ../src/virt-viewer.c:728
644 #: ../src/virt-viewer.c:815
656645 msgid "Waiting for guest domain to be created"
657646 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ನಿರ್ಮಾಣಗೊಳ್ಳಲು ಕಾಯಲಾಗುತ್ತಿದೆ"
658647
659 #: ../src/virt-viewer.c:750
648 #: ../src/virt-viewer.c:837
660649 msgid "Checking guest domain status"
661650 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಸ್ಥಿತಿಯನ್ನು ಪರಿಶೀಲಿಸಲಾಗುತ್ತಿದೆ"
662651
663 #: ../src/virt-viewer.c:753
652 #: ../src/virt-viewer.c:840
664653 msgid "Cannot get guest state"
665654 msgstr ""
666655
667 #: ../src/virt-viewer.c:759
656 #: ../src/virt-viewer.c:846
668657 msgid "Waiting for guest domain to start"
669658 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಮರಳಿ-ಆರಂಭಗೊಳ್ಳಲು ಕಾಯಲಾಗುತ್ತಿದೆ"
670659
671 #: ../src/virt-viewer.c:863
660 #: ../src/virt-viewer.c:950
672661 #, c-format
673662 msgid "Unable to connect to libvirt with URI: %s."
674663 msgstr ""
675664
676 #: ../src/virt-viewer.c:864
665 #: ../src/virt-viewer.c:951
677666 msgid "[none]"
678667 msgstr "[ಯಾವುದೂ ಇಲ್ಲ]"
679668
680 #: ../src/virt-viewer.c:871
669 #: ../src/virt-viewer.c:958
681670 msgid "Authentication failed."
682671 msgstr ""
683672
684 #: ../src/virt-viewer.c:931
673 #: ../src/virt-viewer.c:1018
685674 msgid "Failed to connect: "
686675 msgstr ""
687676
692681 #. * indent-tabs-mode: nil
693682 #. * End:
694683 #.
695 #: ../src/virt-viewer.xml.h:1
684 #: ../src/resources/ui/virt-viewer.ui.h:1
696685 msgid "_File"
697686 msgstr "ಕಡತ (_F)"
698687
699 #: ../src/virt-viewer.xml.h:4
688 #: ../src/resources/ui/virt-viewer.ui.h:2
689 msgid "_Screenshot"
690 msgstr ""
691
692 #: ../src/resources/ui/virt-viewer.ui.h:3
693 msgid "_USB device selection"
694 msgstr ""
695
696 #: ../src/resources/ui/virt-viewer.ui.h:4
700697 msgid "Smartcard insertion"
701698 msgstr "ಸ್ಮಾರ್ಟ್ ಕಾರ್ಡ್ ಸೇರಿಸುವಿಕೆ"
702699
703 #: ../src/virt-viewer.xml.h:5
700 #: ../src/resources/ui/virt-viewer.ui.h:5
704701 msgid "Smartcard removal"
705702 msgstr "ಸ್ಮಾರ್ಟ್ ಕಾರ್ಡ್ ತೆಗೆದುಹಾಕುವಿಕೆ"
706703
707 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
708 msgid "Preferences"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:7
704 #: ../src/resources/ui/virt-viewer.ui.h:6
705 msgid "_Preferences"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:7
709 msgid "_Quit"
710 msgstr ""
711
712 #: ../src/resources/ui/virt-viewer.ui.h:8
712713 msgid "_View"
713714 msgstr "ನೋಟ (_V)"
714715
715 #: ../src/virt-viewer.xml.h:8
716 msgid "Full screen"
717 msgstr "ಪೂರ್ಣ ತೆರೆ"
718
719 #: ../src/virt-viewer.xml.h:9
716 #: ../src/resources/ui/virt-viewer.ui.h:9
717 msgid "_Full screen"
718 msgstr ""
719
720 #: ../src/resources/ui/virt-viewer.ui.h:10
720721 msgid "_Zoom"
721722 msgstr "ಹಿಗ್ಗಿಸು/ಕುಗ್ಗಿಸು (_Z)"
722723
723 #: ../src/virt-viewer.xml.h:10
724 msgid "Displays"
725 msgstr "ಪ್ರದರ್ಶಕಗಳು"
726
727 #: ../src/virt-viewer.xml.h:11
724 #: ../src/resources/ui/virt-viewer.ui.h:11
725 msgid "Zoom _In"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:12
729 msgid "Zoom _Out"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:13
733 msgid "_Normal Size"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:14
737 msgid "_Displays"
738 msgstr ""
739
740 #: ../src/resources/ui/virt-viewer.ui.h:15
728741 msgid "Release cursor"
729742 msgstr "ತೆರೆಸೂಚಕವನ್ನು ಮುಕ್ತಗೊಳಿಸು"
730743
731 #: ../src/virt-viewer.xml.h:12
744 #: ../src/resources/ui/virt-viewer.ui.h:16
732745 msgid "_Send key"
733746 msgstr "ಕಳುಹಿಸುವ ಕೀಲಿ (_S)"
734747
735 #: ../src/virt-viewer.xml.h:13
748 #: ../src/resources/ui/virt-viewer.ui.h:17
736749 msgid "_Help"
737750 msgstr "ನೆರವು (_H)"
738751
739 #: ../src/virt-viewer.xml.h:14
752 #: ../src/resources/ui/virt-viewer.ui.h:18
740753 msgid "_Guest Details"
741754 msgstr ""
742755
743 #: ../src/virt-viewer-guest-details.xml.h:1
756 #: ../src/resources/ui/virt-viewer.ui.h:19
757 msgid "_About"
758 msgstr ""
759
760 #: ../src/resources/ui/virt-viewer.ui.h:20
761 msgid "_Change CD"
762 msgstr ""
763
764 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
744765 msgid "Guest Details"
745766 msgstr ""
746767
747 #: ../src/virt-viewer-guest-details.xml.h:2
768 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
748769 msgid "Name:"
749770 msgstr ""
750771
751 #: ../src/virt-viewer-guest-details.xml.h:3
772 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
752773 msgid "GUID:"
753774 msgstr ""
754775
755 #: ../src/virt-viewer-vm-connection.xml.h:1
776 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
756777 msgid "Choose a virtual machine"
757778 msgstr ""
758779
759 #: ../src/virt-viewer-vm-connection.xml.h:2
780 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
760781 msgid "Name"
761782 msgstr ""
762783
763 #: ../src/virt-viewer-vm-connection.xml.h:3
784 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
764785 msgid "Available virtual machines"
765786 msgstr ""
766787
767 #: ../src/virt-viewer-preferences.xml.h:2
788 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
789 msgid "Preferences"
790 msgstr ""
791
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
768793 msgid "Folder sharing"
769794 msgstr ""
770795
771 #: ../src/virt-viewer-preferences.xml.h:3
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
772797 msgid "Share folder"
773798 msgstr ""
774799
775 #: ../src/virt-viewer-preferences.xml.h:4
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
776801 msgid "Read-only"
777802 msgstr ""
778803
779 #: ../src/virt-viewer-preferences.xml.h:5
804 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
780805 msgid "Spice"
781806 msgstr ""
+300
-276
po/ko.po less more
1111 msgstr ""
1212 "Project-Id-Version: PACKAGE VERSION\n"
1313 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
14 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1515 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1616 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1717 "Language-Team: Korean (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
24 "X-Generator: Zanata 3.8.4\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
2728 msgid "Remote Viewer"
2829 msgstr "원격 뷰어"
30
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 msgid "Remotely access virtual machines"
33 msgstr ""
34
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 msgid ""
37 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
38 "time it supports guest OS using the VNC or SPICE protocols. Further "
39 "protocols may be supported in the future as user demand dictates. The viewer "
40 "can connect directly to both local and remotely hosted guest OS, optionally "
41 "using SSL/TLS encryption."
42 msgstr ""
2943
3044 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Access remote desktops"
3549 msgid "Virt-Viewer connection file"
3650 msgstr "Virt-Viewer 연결 파일 "
3751
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "소스 "
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "바인딩 소스 "
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "대상 "
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "바인딩 대상 "
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "소스 속성 "
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "바인드할 소스 속성 "
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "대상 속성 "
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "바인드할 대상 속성 "
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "플래그 "
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "바인딩 플래그 "
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "버전 정보 보기 "
86
87 #: ../src/remote-viewer-main.c:105
52 #: ../src/remote-viewer.c:139
8853 msgid "Set window title"
8954 msgstr "창 제목 설정 "
9055
91 #: ../src/remote-viewer-main.c:108
56 #: ../src/remote-viewer.c:142
9257 msgid "Open connection using Spice controller communication"
9358 msgstr "Spice 컨트롤러 통신을 사용하여 연결을 오픈합니다 "
9459
95 #: ../src/remote-viewer-main.c:120
60 #: ../src/remote-viewer.c:150
9661 msgid "Remote viewer client"
9762 msgstr ""
9863
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "사용 가능한 명령행 옵션의 전체 목록을 보려면 '%s --help'를 실행하십시오\n"
107
108 #: ../src/remote-viewer-main.c:149
109 #, c-format
110 msgid "Error: extra arguments given while using Spice controller\n"
111 msgstr "오류: Spice 컨트롤러를 사용하는 도중 불필요한 인수가 지정되었습니다\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "오류: 여러 URI를 처리할 수 없습니다\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
64 #: ../src/remote-viewer.c:175
65 #, c-format
66 msgid ""
67 "\n"
68 "Error: can't handle multiple URIs\n"
69 "\n"
70 msgstr ""
71
72 #: ../src/remote-viewer.c:187
73 #, c-format
74 msgid ""
75 "\n"
76 "Error: extra arguments given while using Spice controller\n"
77 "\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
81 #, c-format
82 msgid "Run '%s --help' to see a full list of available command line options\n"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11986 msgid "Failed to initiate connection"
12087 msgstr "연결 초기화 실패 "
12188
122 #: ../src/remote-viewer.c:313
89 #: ../src/remote-viewer.c:297
12390 msgid "Display disabled by controller"
12491 msgstr "컨트롤러에 의해 디스플레이가 비활성화됨 "
12592
126 #: ../src/remote-viewer.c:609
93 #: ../src/remote-viewer.c:593
12794 #, c-format
12895 msgid "Controller connection failed: %s"
12996 msgstr "컨트롤러 연결에 실패함: %s"
13097
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr ""
134
135 #: ../src/remote-viewer.c:855
98 #: ../src/remote-viewer.c:848
13699 msgid "failed to parse ovirt uri"
137100 msgstr ""
138101
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
102 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140103 msgid "Authentication was cancelled"
141104 msgstr ""
142105
143 #: ../src/remote-viewer.c:900
106 #: ../src/remote-viewer.c:893
144107 #, c-format
145108 msgid "oVirt VM %s is not running"
146109 msgstr ""
147110
148 #: ../src/remote-viewer.c:914
111 #: ../src/remote-viewer.c:907
149112 #, c-format
150113 msgid "oVirt VM %s has no display"
151114 msgstr ""
152115
153 #: ../src/remote-viewer.c:940
116 #: ../src/remote-viewer.c:933
154117 #, c-format
155118 msgid "oVirt VM %s has no host information"
156119 msgstr ""
157120
158 #: ../src/remote-viewer.c:951
121 #: ../src/remote-viewer.c:944
159122 #, c-format
160123 msgid "oVirt VM %s has unknown display type: %d"
161124 msgstr ""
162125
163 #: ../src/remote-viewer.c:1094
126 #: ../src/remote-viewer.c:1115
164127 msgid "Setting up Spice session..."
165128 msgstr "Spice 세션 설정 중..."
166129
167 #: ../src/remote-viewer.c:1102
130 #: ../src/remote-viewer.c:1123
168131 msgid "No connection was chosen"
169132 msgstr ""
170133
171 #: ../src/remote-viewer.c:1120
134 #: ../src/remote-viewer.c:1141
172135 #, c-format
173136 msgid "Invalid file %s: "
174137 msgstr ""
175138
176 #: ../src/remote-viewer.c:1128
139 #: ../src/remote-viewer.c:1149
177140 msgid "Cannot determine the connection type from URI"
178141 msgstr "URI에서 연결 유형을 지정할 수 없음 "
179142
180 #: ../src/remote-viewer.c:1134
143 #: ../src/remote-viewer.c:1155
181144 msgid "Couldn't open oVirt session: "
182145 msgstr ""
183146
188151 #. * indent-tabs-mode: nil
189152 #. * End:
190153 #.
191 #: ../src/remote-viewer-connect.xml.h:1
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192155 msgid "Connection details"
193156 msgstr "상세 연결 정보"
194157
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr ""
198
199 #: ../src/remote-viewer-connect.xml.h:3
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 msgid "Connection _Address"
160 msgstr ""
161
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200163 msgid "For example, spice://foo.example.org:5900"
201164 msgstr ""
202165
203 #: ../src/remote-viewer-connect.xml.h:4
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204167 msgid "Recent connections"
205168 msgstr ""
206169
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr ""
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "Glade에 관하여 "
218
219 #: ../src/virt-viewer-about.xml.h:2
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
171 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
173 msgid "_Cancel"
174 msgstr ""
175
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
177 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 msgid "C_onnect"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:1
182 msgid "About Virt-Viewer"
183 msgstr ""
184
185 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220186 msgid ""
221187 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222188 "Copyright (C) 2007-2014 Red Hat, Inc."
223189 msgstr ""
224190
225 #: ../src/virt-viewer-about.xml.h:4
191 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226192 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227193 msgstr "GTK-VNC, SPICE-GTK, libvirt로 빌드된 원격 데스크톱 클라이언트 "
228194
229 #: ../src/virt-viewer-about.xml.h:5
195 #: ../src/resources/ui/virt-viewer-about.ui.h:5
230196 msgid "virt-manager.org"
231197 msgstr "virt-manager.org"
232198
233 #: ../src/virt-viewer-about.xml.h:6
199 #: ../src/resources/ui/virt-viewer-about.ui.h:6
234200 msgid ""
235201 "This program is free software; you can redistribute it and/or modify\n"
236202 "it under the terms of the GNU General Public License as published by\n"
260226 "along with this program; if not, write to the Free Software\n"
261227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
262228
263 #: ../src/virt-viewer-about.xml.h:20
229 #: ../src/resources/ui/virt-viewer-about.ui.h:20
264230 msgid "The Fedora Translation Team"
265231 msgstr "Fedora 번역팀 "
266232
267 #: ../src/virt-viewer-app.c:526
233 #: ../src/virt-viewer-app.c:458
268234 msgid "Do you want to close the session?"
269235 msgstr "세션을 종료하시겠습니까?"
270236
271 #: ../src/virt-viewer-app.c:528
237 #: ../src/virt-viewer-app.c:460
272238 msgid "Do not ask me again"
273239 msgstr "다시 묻지 않습니다 "
274240
275 #: ../src/virt-viewer-app.c:1008
241 #: ../src/virt-viewer-app.c:948
276242 #, c-format
277243 msgid "Waiting for display %d..."
278244 msgstr "디스플레이 %d를 기다리는 중..."
279245
280 #: ../src/virt-viewer-app.c:1117
246 #: ../src/virt-viewer-app.c:1055
281247 #, c-format
282248 msgid "Unsupported graphic type '%s'"
283249 msgstr ""
284250
285 #: ../src/virt-viewer-app.c:1200
251 #: ../src/virt-viewer-app.c:1138
286252 msgid "Connect to ssh failed."
287253 msgstr "ssh 연결을 실패했습니다. "
288254
289 #: ../src/virt-viewer-app.c:1202
255 #: ../src/virt-viewer-app.c:1140
290256 msgid "Can't connect to channel, SSH only supported."
291257 msgstr "채널에 연결할 수 없습니다, SSH만 지원됩니다. "
292258
293 #: ../src/virt-viewer-app.c:1214
259 #: ../src/virt-viewer-app.c:1152
294260 msgid "Connect to channel unsupported."
295261 msgstr "지원되지 않는 채널에 연결합니다. "
296262
297 #: ../src/virt-viewer-app.c:1276
263 #: ../src/virt-viewer-app.c:1214
298264 msgid "Display can only be attached through libvirt with --attach"
299265 msgstr ""
300266
301 #: ../src/virt-viewer-app.c:1299
267 #: ../src/virt-viewer-app.c:1237
302268 msgid "Connecting to graphic server"
303269 msgstr "그래픽 서버에 연결 중 "
304270
305 #: ../src/virt-viewer-app.c:1398
271 #: ../src/virt-viewer-app.c:1336
306272 msgid "Guest domain has shutdown"
307273 msgstr "게스트 도메인이 종료되었습니다 "
308274
309 #: ../src/virt-viewer-app.c:1459
275 #: ../src/virt-viewer-app.c:1397
310276 msgid "Connected to graphic server"
311277 msgstr "그래픽 서버에 연결 "
312278
313 #: ../src/virt-viewer-app.c:1486
279 #: ../src/virt-viewer-app.c:1424
314280 #, c-format
315281 msgid "Unable to connect to the graphic server %s"
316282 msgstr "그래픽 서버 %s에 연결할 수 없음 "
317283
318 #: ../src/virt-viewer-app.c:1512
284 #: ../src/virt-viewer-app.c:1450
319285 #, c-format
320286 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
321287 msgstr ""
322288
323 #: ../src/virt-viewer-app.c:1525
289 #: ../src/virt-viewer-app.c:1463
324290 #, c-format
325291 msgid "Unable to authenticate with remote desktop server: %s"
326292 msgstr "원격 데스크탑 서버로 인증할 수 없음: %s"
327293
328 #: ../src/virt-viewer-app.c:1533
294 #: ../src/virt-viewer-app.c:1471
329295 #, c-format
330296 msgid "USB redirection error: %s"
331297 msgstr "USB 리디렉션 오류: %s"
332298
333 #: ../src/virt-viewer-app.c:1786
299 #: ../src/virt-viewer-app.c:1805
334300 #, c-format
335301 msgid "Zoom level must be within %d-%d\n"
336302 msgstr ""
337303
338 #: ../src/virt-viewer-app.c:2296
339 #, c-format
340 msgid "Display %d"
341 msgstr "디스플레이 %d"
342
343 #: ../src/virt-viewer-app.c:2552
304 #: ../src/virt-viewer-app.c:1858
305 #, c-format
306 msgid "%s\n"
307 msgstr ""
308
309 #: ../src/virt-viewer-app.c:1868
310 #, c-format
311 msgid "%s version %s"
312 msgstr ""
313
314 #: ../src/virt-viewer-app.c:2292
315 #, c-format
316 msgid "Display _%d"
317 msgstr ""
318
319 #: ../src/virt-viewer-app.c:2548
344320 #, c-format
345321 msgid "Invalid kiosk-quit argument: %s"
346322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2559
325 msgid "Display version information"
326 msgstr "버전 정보 보기 "
347327
348328 #: ../src/virt-viewer-app.c:2561
349329 msgid "Zoom level of window, in percentage"
377357 msgid "Display debugging information"
378358 msgstr "디버그 정보 보기 "
379359
380 #: ../src/virt-viewer-auth.c:88
360 #: ../src/virt-viewer-auth.c:89
381361 #, c-format
382362 msgid ""
383363 "Authentication is required for the %s connection to:\n"
386366 "\n"
387367 msgstr ""
388368
389 #: ../src/virt-viewer-auth.c:92
369 #: ../src/virt-viewer-auth.c:93
390370 #, c-format
391371 msgid "Authentication is required for the %s connection:\n"
392372 msgstr ""
398378 #. * indent-tabs-mode: nil
399379 #. * End:
400380 #.
401 #: ../src/virt-viewer-auth.xml.h:1
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
402382 msgid "Authentication required"
403383 msgstr "인증이 필요함 "
404384
405 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
386 msgid "_OK"
387 msgstr ""
388
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
390 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
406391 msgid "label"
407392 msgstr "레이블 "
408393
409 #: ../src/virt-viewer-auth.xml.h:3
394 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410395 msgid "Password:"
411396 msgstr "암호: "
412397
413 #: ../src/virt-viewer-auth.xml.h:4
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414399 msgid "Username:"
415400 msgstr "사용자 이름 "
416401
417 #: ../src/virt-viewer-auth.xml.h:5
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418403 msgid "Show password"
419404 msgstr ""
420405
421 #: ../src/virt-viewer-display-vnc.c:133
406 #: ../src/virt-viewer-display-vnc.c:134
422407 msgid "VNC does not provide GUID"
423408 msgstr ""
424409
410 #: ../src/virt-viewer-file-transfer-dialog.c:152
411 msgid "Cancel"
412 msgstr ""
413
414 #: ../src/virt-viewer-file-transfer-dialog.c:163
415 msgid "File Transfers"
416 msgstr ""
417
425418 #: ../src/virt-viewer-main.c:38
426 #, c-format
427 msgid "%s version %s\n"
428 msgstr "%s 버전 %s\n"
429
430 #: ../src/virt-viewer-main.c:62
431 msgid "Direct connection with no automatic tunnels"
432 msgstr "자동으로 터널링하지 않고 직접 연결 "
433
434 #: ../src/virt-viewer-main.c:64
435 msgid "Attach to the local display using libvirt"
436 msgstr "libvirt를 사용하여 로컬 디스플레이에 연결 "
437
438 #: ../src/virt-viewer-main.c:66
439 msgid "Connect to hypervisor"
440 msgstr "하이퍼바이저에 연결 "
441
442 #: ../src/virt-viewer-main.c:68
443 msgid "Wait for domain to start"
444 msgstr "도메인 시작을 기다립니다 "
445
446 #: ../src/virt-viewer-main.c:70
447 msgid "Reconnect to domain upon restart"
448 msgstr "다시 시작시 도메인에 다시 연결 "
449
450 #: ../src/virt-viewer-main.c:77
451419 msgid "Virt Viewer"
452420 msgstr "가상 머신 뷰어 "
453421
454 #: ../src/virt-viewer-main.c:80
455 #, c-format
456 msgid "Run '%s --help' to see a full list of available command line options"
457 msgstr ""
458 "사용 가능한 명령행 옵션의 전체 목록을 보려면 '%s --help'를 실행하십시오 "
459
460 #: ../src/virt-viewer-main.c:86
461 msgid "Virtual machine graphical console"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:107
465 #, c-format
466 msgid ""
467 "\n"
468 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
469 "\n"
470 "%s\n"
471 "\n"
472 msgstr ""
473
474 #: ../src/virt-viewer-main.c:112
475 #, c-format
476 msgid ""
477 "\n"
478 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
479 "\n"
480 msgstr ""
481
482 #: ../src/virt-viewer-session-spice.c:694
422 #: ../src/virt-viewer-session-spice.c:705
483423 msgid "Invalid password"
484424 msgstr ""
485425
486426 #. Create the widgets
487 #: ../src/virt-viewer-session-spice.c:786
427 #: ../src/virt-viewer-session-spice.c:797
488428 msgid "Select USB devices for redirection"
489429 msgstr "리디렉션을 위한 USB 장치 선택 "
490430
491 #: ../src/virt-viewer-session-vnc.c:153
431 #: ../src/virt-viewer-session-spice.c:799
432 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
433 msgid "_Close"
434 msgstr ""
435
436 #: ../src/virt-viewer-session-vnc.c:156
492437 #, c-format
493438 msgid "Unsupported authentication type %d"
494439 msgstr "지원되지 않는 인증 유형 %d"
501446 msgid "No virtual machine was chosen"
502447 msgstr ""
503448
504 #: ../src/virt-viewer-window.c:537
449 #: ../src/virt-viewer-window.c:534
505450 msgid "Ctrl+Alt+_Del"
506451 msgstr "Ctrl+Alt+Del(_D) "
507452
508 #: ../src/virt-viewer-window.c:538
453 #: ../src/virt-viewer-window.c:535
509454 msgid "Ctrl+Alt+_Backspace"
510455 msgstr "Ctrl+Alt+Backspace(_B)"
511456
512 #: ../src/virt-viewer-window.c:540
457 #: ../src/virt-viewer-window.c:537
513458 msgid "Ctrl+Alt+F_1"
514459 msgstr "Ctrl+Alt+F_1"
515460
516 #: ../src/virt-viewer-window.c:541
461 #: ../src/virt-viewer-window.c:538
517462 msgid "Ctrl+Alt+F_2"
518463 msgstr "Ctrl+Alt+F_2"
519464
520 #: ../src/virt-viewer-window.c:542
465 #: ../src/virt-viewer-window.c:539
521466 msgid "Ctrl+Alt+F_3"
522467 msgstr "Ctrl+Alt+F_3"
523468
524 #: ../src/virt-viewer-window.c:543
469 #: ../src/virt-viewer-window.c:540
525470 msgid "Ctrl+Alt+F_4"
526471 msgstr "Ctrl+Alt+F_4"
527472
528 #: ../src/virt-viewer-window.c:544
473 #: ../src/virt-viewer-window.c:541
529474 msgid "Ctrl+Alt+F_5"
530475 msgstr "Ctrl+Alt+F_5"
531476
532 #: ../src/virt-viewer-window.c:545
477 #: ../src/virt-viewer-window.c:542
533478 msgid "Ctrl+Alt+F_6"
534479 msgstr "Ctrl+Alt+F_6"
535480
536 #: ../src/virt-viewer-window.c:546
481 #: ../src/virt-viewer-window.c:543
537482 msgid "Ctrl+Alt+F_7"
538483 msgstr "Ctrl+Alt+F_7"
539484
540 #: ../src/virt-viewer-window.c:547
485 #: ../src/virt-viewer-window.c:544
541486 msgid "Ctrl+Alt+F_8"
542487 msgstr "Ctrl+Alt+F_8"
543488
544 #: ../src/virt-viewer-window.c:548
489 #: ../src/virt-viewer-window.c:545
545490 msgid "Ctrl+Alt+F_9"
546491 msgstr "Ctrl+Alt+F_9"
547492
548 #: ../src/virt-viewer-window.c:549
493 #: ../src/virt-viewer-window.c:546
549494 msgid "Ctrl+Alt+F1_0"
550495 msgstr "Ctrl+Alt+F1_0"
551496
552 #: ../src/virt-viewer-window.c:550
497 #: ../src/virt-viewer-window.c:547
553498 msgid "Ctrl+Alt+F11"
554499 msgstr "Ctrl+Alt+F11"
555500
556 #: ../src/virt-viewer-window.c:551
501 #: ../src/virt-viewer-window.c:548
557502 msgid "Ctrl+Alt+F12"
558503 msgstr "Ctrl+Alt+F12"
559504
560 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
505 #: ../src/virt-viewer-window.c:919
506 msgid "_Save"
507 msgstr ""
508
509 #: ../src/virt-viewer-window.c:927
561510 msgid "Screenshot"
562511 msgstr "스크린샷 "
563512
564 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
513 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
565514 msgid "Unknown"
566515 msgstr ""
567516
568 #: ../src/virt-viewer-window.c:1062
517 #: ../src/virt-viewer-window.c:1071
569518 msgid "Disconnect"
570519 msgstr "연결 해제 "
571520
572 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
573 #: ../src/virt-viewer.xml.h:3
521 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
574522 msgid "USB device selection"
575523 msgstr "USB 장치 선택 "
576524
577 #: ../src/virt-viewer-window.c:1081
525 #: ../src/virt-viewer-window.c:1089
578526 msgid "Send key combination"
579527 msgstr "조합 키 전송"
580528
581 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
529 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
582530 msgid "Leave fullscreen"
583531 msgstr "전체 화면 해제 "
584532
585 #: ../src/virt-viewer-window.c:1173
533 #: ../src/virt-viewer-window.c:1175
586534 msgid "Ctrl+Alt"
587535 msgstr "Ctrl+Alt"
588536
589 #: ../src/virt-viewer-window.c:1176
537 #: ../src/virt-viewer-window.c:1178
590538 #, c-format
591539 msgid "(Press %s to release pointer)"
592540 msgstr "(포인터를 개방하려면 %s를 누르십시오)"
595543 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596544 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597545 #.
598 #: ../src/virt-viewer-window.c:1187
546 #: ../src/virt-viewer-window.c:1189
599547 #, c-format
600548 msgid "%s%s%s - %s"
601549 msgstr "%s%s%s - %s"
602550
603551 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1191
552 #: ../src/virt-viewer-window.c:1193
605553 msgid " "
606554 msgstr " "
607555
608 #: ../src/virt-viewer-file.c:825
556 #: ../src/virt-viewer-file.c:843
609557 #, c-format
610558 msgid ""
611559 "At least %s version %s is required to setup this connection, see %s for "
612560 "details"
613561 msgstr ""
614562
615 #: ../src/virt-viewer-file.c:833
563 #: ../src/virt-viewer-file.c:851
616564 #, c-format
617565 msgid "At least %s version %s is required to setup this connection"
618566 msgstr ""
619567
620 #: ../src/virt-viewer.c:163
568 #: ../src/virt-viewer.c:90
569 msgid "Direct connection with no automatic tunnels"
570 msgstr "자동으로 터널링하지 않고 직접 연결 "
571
572 #: ../src/virt-viewer.c:92
573 msgid "Attach to the local display using libvirt"
574 msgstr "libvirt를 사용하여 로컬 디스플레이에 연결 "
575
576 #: ../src/virt-viewer.c:94
577 msgid "Connect to hypervisor"
578 msgstr "하이퍼바이저에 연결 "
579
580 #: ../src/virt-viewer.c:96
581 msgid "Wait for domain to start"
582 msgstr "도메인 시작을 기다립니다 "
583
584 #: ../src/virt-viewer.c:98
585 msgid "Reconnect to domain upon restart"
586 msgstr "다시 시작시 도메인에 다시 연결 "
587
588 #: ../src/virt-viewer.c:105
589 msgid "Virtual machine graphical console"
590 msgstr ""
591
592 #: ../src/virt-viewer.c:124
593 #, c-format
594 msgid ""
595 "\n"
596 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
597 "\n"
598 msgstr ""
599
600 #: ../src/virt-viewer.c:136
601 #, c-format
602 msgid ""
603 "\n"
604 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
605 "\n"
606 msgstr ""
607
608 #: ../src/virt-viewer.c:250
621609 msgid "Waiting for guest domain to re-start"
622610 msgstr "다시 시작할 게스트 도메인을 기다리는 중 "
623611
624 #: ../src/virt-viewer.c:409
612 #: ../src/virt-viewer.c:496
625613 #, c-format
626614 msgid "Cannot determine the graphic type for the guest %s"
627615 msgstr "게스트 %s의 그래픽 유형을 지정할 수 없음 "
628616
629 #: ../src/virt-viewer.c:448
617 #: ../src/virt-viewer.c:535
630618 #, c-format
631619 msgid "Cannot determine the host for the guest %s"
632620 msgstr "게스트 %s의 호스트를 지정할 수 없음 "
633621
634 #: ../src/virt-viewer.c:476
622 #: ../src/virt-viewer.c:563
635623 #, c-format
636624 msgid "Guest '%s' is not reachable"
637625 msgstr ""
638626
639 #: ../src/virt-viewer.c:697
627 #: ../src/virt-viewer.c:784
640628 #, c-format
641629 msgid "Virtual machine %s is not running"
642630 msgstr ""
643631
644 #: ../src/virt-viewer.c:720
632 #: ../src/virt-viewer.c:807
645633 msgid "Waiting for libvirt to start"
646634 msgstr "libvirt 시작을 기다리는 중 "
647635
648 #: ../src/virt-viewer.c:724
636 #: ../src/virt-viewer.c:811
649637 msgid "Finding guest domain"
650638 msgstr "게스트 도메인 검색 중 "
651639
652 #: ../src/virt-viewer.c:728
640 #: ../src/virt-viewer.c:815
653641 msgid "Waiting for guest domain to be created"
654642 msgstr "게스트 도메인이 생성되기를 기다리는 중 "
655643
656 #: ../src/virt-viewer.c:750
644 #: ../src/virt-viewer.c:837
657645 msgid "Checking guest domain status"
658646 msgstr "게스트 도메인 상태 확인 중 "
659647
660 #: ../src/virt-viewer.c:753
648 #: ../src/virt-viewer.c:840
661649 msgid "Cannot get guest state"
662650 msgstr ""
663651
664 #: ../src/virt-viewer.c:759
652 #: ../src/virt-viewer.c:846
665653 msgid "Waiting for guest domain to start"
666654 msgstr "시작할 게스트 도메인을 기다리는 중 "
667655
668 #: ../src/virt-viewer.c:863
656 #: ../src/virt-viewer.c:950
669657 #, c-format
670658 msgid "Unable to connect to libvirt with URI: %s."
671659 msgstr ""
672660
673 #: ../src/virt-viewer.c:864
661 #: ../src/virt-viewer.c:951
674662 msgid "[none]"
675663 msgstr "[없음]"
676664
677 #: ../src/virt-viewer.c:871
665 #: ../src/virt-viewer.c:958
678666 msgid "Authentication failed."
679667 msgstr ""
680668
681 #: ../src/virt-viewer.c:931
669 #: ../src/virt-viewer.c:1018
682670 msgid "Failed to connect: "
683671 msgstr ""
684672
689677 #. * indent-tabs-mode: nil
690678 #. * End:
691679 #.
692 #: ../src/virt-viewer.xml.h:1
680 #: ../src/resources/ui/virt-viewer.ui.h:1
693681 msgid "_File"
694682 msgstr "파일(_F)"
695683
696 #: ../src/virt-viewer.xml.h:4
684 #: ../src/resources/ui/virt-viewer.ui.h:2
685 msgid "_Screenshot"
686 msgstr ""
687
688 #: ../src/resources/ui/virt-viewer.ui.h:3
689 msgid "_USB device selection"
690 msgstr ""
691
692 #: ../src/resources/ui/virt-viewer.ui.h:4
697693 msgid "Smartcard insertion"
698694 msgstr "스마트카드 삽입 "
699695
700 #: ../src/virt-viewer.xml.h:5
696 #: ../src/resources/ui/virt-viewer.ui.h:5
701697 msgid "Smartcard removal"
702698 msgstr "스마트카드 제거 "
703699
704 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
705 msgid "Preferences"
706 msgstr ""
707
708 #: ../src/virt-viewer.xml.h:7
700 #: ../src/resources/ui/virt-viewer.ui.h:6
701 msgid "_Preferences"
702 msgstr ""
703
704 #: ../src/resources/ui/virt-viewer.ui.h:7
705 msgid "_Quit"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:8
709709 msgid "_View"
710710 msgstr "보기(_V)"
711711
712 #: ../src/virt-viewer.xml.h:8
713 msgid "Full screen"
714 msgstr "전체 화면 "
715
716 #: ../src/virt-viewer.xml.h:9
712 #: ../src/resources/ui/virt-viewer.ui.h:9
713 msgid "_Full screen"
714 msgstr ""
715
716 #: ../src/resources/ui/virt-viewer.ui.h:10
717717 msgid "_Zoom"
718718 msgstr "줌(_Z) "
719719
720 #: ../src/virt-viewer.xml.h:10
721 msgid "Displays"
722 msgstr "디스플레이 "
723
724 #: ../src/virt-viewer.xml.h:11
720 #: ../src/resources/ui/virt-viewer.ui.h:11
721 msgid "Zoom _In"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:12
725 msgid "Zoom _Out"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:13
729 msgid "_Normal Size"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:14
733 msgid "_Displays"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:15
725737 msgid "Release cursor"
726738 msgstr "커서 개방 "
727739
728 #: ../src/virt-viewer.xml.h:12
740 #: ../src/resources/ui/virt-viewer.ui.h:16
729741 msgid "_Send key"
730742 msgstr "키 전송(_S)"
731743
732 #: ../src/virt-viewer.xml.h:13
744 #: ../src/resources/ui/virt-viewer.ui.h:17
733745 msgid "_Help"
734746 msgstr "도움말(_H) "
735747
736 #: ../src/virt-viewer.xml.h:14
748 #: ../src/resources/ui/virt-viewer.ui.h:18
737749 msgid "_Guest Details"
738750 msgstr ""
739751
740 #: ../src/virt-viewer-guest-details.xml.h:1
752 #: ../src/resources/ui/virt-viewer.ui.h:19
753 msgid "_About"
754 msgstr ""
755
756 #: ../src/resources/ui/virt-viewer.ui.h:20
757 msgid "_Change CD"
758 msgstr ""
759
760 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
741761 msgid "Guest Details"
742762 msgstr ""
743763
744 #: ../src/virt-viewer-guest-details.xml.h:2
764 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
745765 msgid "Name:"
746766 msgstr ""
747767
748 #: ../src/virt-viewer-guest-details.xml.h:3
768 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
749769 msgid "GUID:"
750770 msgstr ""
751771
752 #: ../src/virt-viewer-vm-connection.xml.h:1
772 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
753773 msgid "Choose a virtual machine"
754774 msgstr ""
755775
756 #: ../src/virt-viewer-vm-connection.xml.h:2
776 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
757777 msgid "Name"
758778 msgstr ""
759779
760 #: ../src/virt-viewer-vm-connection.xml.h:3
780 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
761781 msgid "Available virtual machines"
762782 msgstr ""
763783
764 #: ../src/virt-viewer-preferences.xml.h:2
784 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
785 msgid "Preferences"
786 msgstr ""
787
788 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
765789 msgid "Folder sharing"
766790 msgstr ""
767791
768 #: ../src/virt-viewer-preferences.xml.h:3
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
769793 msgid "Share folder"
770794 msgstr ""
771795
772 #: ../src/virt-viewer-preferences.xml.h:4
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
773797 msgid "Read-only"
774798 msgstr ""
775799
776 #: ../src/virt-viewer-preferences.xml.h:5
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
777801 msgid "Spice"
778802 msgstr ""
+343
-316
po/kw.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (United Kingdom)\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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+343
-316
po/ky.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Kirghiz\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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/lt.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Lithuanian\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 "%100<10 or n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+343
-316
po/lv.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/mk.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-277
po/ml.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Malayalam (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
2425 msgstr "റിമോട്ട് വ്യൂവര്‍"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
38 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
2741 msgid "Access remote desktops"
3145 msgid "Virt-Viewer connection file"
3246 msgstr "Virt-Viewer കണക്ഷന്‍ ഫയല്‍"
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr "ശ്രോതസ്സ്"
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr "ബൈന്‍ഡിങിനുള്ള ശ്രോതസ്സ്"
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr "ടാര്‍ഗറ്റ്"
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr "ബൈന്‍ഡിങിനുള്ള ടാര്‍ഗറ്റ്"
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr "സോഴ്സ് പ്രോപര്‍ട്ടി"
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr "ബൈന്‍ഡ് ചെയ്യുവാനുള്ള ശ്രോതസ്സിലുള്ള പ്രോപര്‍ട്ടി"
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr "ടാര്‍ഗറ്റ് പ്രോപര്‍ട്ടി"
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr "ബൈന്‍ഡ് ചെയ്യുന്നതിനായി ടാര്‍ഗറ്റിലുള്ള പ്രോപര്‍ട്ടി"
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr "ഫ്ലാഗുകള്‍"
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr "ബൈന്‍ഡ് ചെയ്യുന്ന ഫ്ലാഗുകള്‍"
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "പതിപ്പിനെപ്പറ്റിയുള്ള വിവരം കാണിയ്ക്കുക"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr "ജാലകത്തിന്റെ തലക്കെട്ട് സജ്ജമാക്കുക"
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr "സ്പയിസ് കണ്ട്രോളര്‍ ആശയവിനിമയം ഉപയോഗിച്ചു് കണക്ഷന്‍ തുറക്കുക"
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr "റിമോട്ട് വ്യൂവര്‍ ക്ലയന്റ്"
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101 "%s\n"
102 "ലഭ്യമായ കമാന്‍ഡ് ലൈന്‍ ഐച്ഛികങ്ങളുടെ പൂര്‍ണ്ണ പട്ടിക കാണുന്നതിനായി '%s --help' "
103 "പ്രവര്‍ത്തിപ്പിയ്ക്കുക\n"
104
105 #: ../src/remote-viewer-main.c:149
106 #, c-format
107 msgid "Error: extra arguments given while using Spice controller\n"
108 msgstr "പിശക്: സ്പയിസ് കണ്ട്രോളര്‍ ഉപയോഗിയ്ക്കുമ്പോള്‍ നല്‍കുന്ന അധികമായ ആര്‍ഗ്യുമെന്റുകള്‍\n"
109
110 #: ../src/remote-viewer-main.c:156
111 #, c-format
112 msgid "Error: can't handle multiple URIs\n"
113 msgstr "പിശക്: അനവധി യുആര്‍ഐ കൈകാര്യം ചെയ്യുവാന്‍ സാധ്യമല്ല\n"
114
115 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11682 msgid "Failed to initiate connection"
11783 msgstr "കണക്ഷന്‍ ആരംഭിയ്ക്കുന്നതില്‍ പരാജയം"
11884
119 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
12086 msgid "Display disabled by controller"
12187 msgstr "കണ്ട്രോളര്‍ പ്രദര്‍ശനം പ്രവര്‍ത്തന രഹിതമാക്കിയിരിയ്ക്കുന്നു"
12288
123 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12490 #, c-format
12591 msgid "Controller connection failed: %s"
12692 msgstr "കണ്ട്രോളറിനുള്ള കണക്ഷന്‍ പരാജയപ്പെട്ടു: %s"
12793
128 #: ../src/remote-viewer.c:755
129 msgid "_Change CD"
130 msgstr ""
131
132 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13395 msgid "failed to parse ovirt uri"
13496 msgstr ""
13597
136 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13799 msgid "Authentication was cancelled"
138100 msgstr ""
139101
140 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
141103 #, c-format
142104 msgid "oVirt VM %s is not running"
143105 msgstr ""
144106
145 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
146108 #, c-format
147109 msgid "oVirt VM %s has no display"
148110 msgstr ""
149111
150 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
151113 #, c-format
152114 msgid "oVirt VM %s has no host information"
153115 msgstr ""
154116
155 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
156118 #, c-format
157119 msgid "oVirt VM %s has unknown display type: %d"
158120 msgstr ""
159121
160 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
161123 msgid "Setting up Spice session..."
162124 msgstr "സ്പയിസ് സെഷന്‍ സജ്ജമാക്കുന്നു..."
163125
164 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
165127 msgid "No connection was chosen"
166128 msgstr ""
167129
168 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
169131 #, c-format
170132 msgid "Invalid file %s: "
171133 msgstr ""
172134
173 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
174136 msgid "Cannot determine the connection type from URI"
175137 msgstr "യുആര്‍ഐയില്‍ നിന്നും കണക്ഷന്‍ രീതി കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല"
176138
177 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
178140 msgid "Couldn't open oVirt session: "
179141 msgstr ""
180142
185147 #. * indent-tabs-mode: nil
186148 #. * End:
187149 #.
188 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
189151 msgid "Connection details"
190152 msgstr "കണക്ഷന്‍ വിശദാംശങ്ങള്‍"
191153
192 #: ../src/remote-viewer-connect.xml.h:2
193 msgid "Connection Address"
194 msgstr ""
195
196 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
197159 msgid "For example, spice://foo.example.org:5900"
198160 msgstr "ഉദാഹരണത്തിനു്, spice://foo.example.org:5900"
199161
200 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
201163 msgid "Recent connections"
202164 msgstr ""
203165
204 #: ../src/remote-viewer-connect.xml.h:5
205 msgid "Cancel"
206 msgstr ""
207
208 #: ../src/remote-viewer-connect.xml.h:6
209 msgid "Connect"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:1
213 msgid "About Glade"
214 msgstr "ഗ്ലേഡിനെപ്പറ്റി"
215
216 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
217182 msgid ""
218183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219184 "Copyright (C) 2007-2014 Red Hat, Inc."
221186 "പകര്‍പ്പവകാശം (C) 2007-2012 ഡാനിയല്‍ പി. ബറെയിഞ്ച്\n"
222187 "പകര്‍പ്പവകാശം (C) 2007-2014 Red Hat, Inc."
223188
224 #: ../src/virt-viewer-about.xml.h:4
189 #: ../src/resources/ui/virt-viewer-about.ui.h:4
225190 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
226191 msgstr "GTK-VNC, SPICE-GTK, libvirt എന്നിവ ഉപയോഗിച്ചുള്ളൊരു റിമോട്ട് ഡസ്ക്ടോപ്പ് ക്ലയന്റ്"
227192
228 #: ../src/virt-viewer-about.xml.h:5
193 #: ../src/resources/ui/virt-viewer-about.ui.h:5
229194 msgid "virt-manager.org"
230195 msgstr "virt-manager.org"
231196
232 #: ../src/virt-viewer-about.xml.h:6
197 #: ../src/resources/ui/virt-viewer-about.ui.h:6
233198 msgid ""
234199 "This program is free software; you can redistribute it and/or modify\n"
235200 "it under the terms of the GNU General Public License as published by\n"
257222 "ഇല്ലായെങ്കില്‍, ‌താഴെ പറയുന്ന മേല്‍വിലാസത്തിലേക്ക് എഴുതുക: Free Software\n"
258223 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
259224
260 #: ../src/virt-viewer-about.xml.h:20
225 #: ../src/resources/ui/virt-viewer-about.ui.h:20
261226 msgid "The Fedora Translation Team"
262227 msgstr "ഫെഡോറാ പ്രാദേശികവത്കരണ സംഘം"
263228
264 #: ../src/virt-viewer-app.c:526
229 #: ../src/virt-viewer-app.c:458
265230 msgid "Do you want to close the session?"
266231 msgstr "ഈ സെഷന്‍ അടയ്ക്കണമോ?"
267232
268 #: ../src/virt-viewer-app.c:528
233 #: ../src/virt-viewer-app.c:460
269234 msgid "Do not ask me again"
270235 msgstr "ഇനി ചോദിയ്ക്കരുതു്"
271236
272 #: ../src/virt-viewer-app.c:1008
237 #: ../src/virt-viewer-app.c:948
273238 #, c-format
274239 msgid "Waiting for display %d..."
275240 msgstr "%d പ്രദര്‍ശനത്തിനായി കാത്തിരിയ്ക്കുന്നു..."
276241
277 #: ../src/virt-viewer-app.c:1117
242 #: ../src/virt-viewer-app.c:1055
278243 #, c-format
279244 msgid "Unsupported graphic type '%s'"
280245 msgstr ""
281246
282 #: ../src/virt-viewer-app.c:1200
247 #: ../src/virt-viewer-app.c:1138
283248 msgid "Connect to ssh failed."
284249 msgstr "ssh-ലേക്കുള്ള കണക്ഷന്‍ പരാജയപ്പെട്ടു."
285250
286 #: ../src/virt-viewer-app.c:1202
251 #: ../src/virt-viewer-app.c:1140
287252 msgid "Can't connect to channel, SSH only supported."
288253 msgstr "ചാനലിലേക്കു് കണക്ട് ചെയ്യുവാന്‍ സാധ്യമല്ല, എസ്എസ്എചിനു് മാത്രം പിന്തുണ ലഭ്യമുള്ളൂ."
289254
290 #: ../src/virt-viewer-app.c:1214
255 #: ../src/virt-viewer-app.c:1152
291256 msgid "Connect to channel unsupported."
292257 msgstr "ചാനലിലേക്കുള്ള കണക്ഷനു് പിന്തുണയില്ല."
293258
294 #: ../src/virt-viewer-app.c:1276
259 #: ../src/virt-viewer-app.c:1214
295260 msgid "Display can only be attached through libvirt with --attach"
296261 msgstr ""
297262
298 #: ../src/virt-viewer-app.c:1299
263 #: ../src/virt-viewer-app.c:1237
299264 msgid "Connecting to graphic server"
300265 msgstr "ഗ്രാഫിക് സര്‍വറിലേക്കു് കണക്ട് ചെയ്യുന്നു"
301266
302 #: ../src/virt-viewer-app.c:1398
267 #: ../src/virt-viewer-app.c:1336
303268 msgid "Guest domain has shutdown"
304269 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ അടച്ചുപൂട്ടിയിരിയ്ക്കുന്നു"
305270
306 #: ../src/virt-viewer-app.c:1459
271 #: ../src/virt-viewer-app.c:1397
307272 msgid "Connected to graphic server"
308273 msgstr "ഗ്രാഫിക് സര്‍വറിലേക്കു് കണക്ട് ചെയ്തിരിയ്ക്കുന്നു"
309274
310 #: ../src/virt-viewer-app.c:1486
275 #: ../src/virt-viewer-app.c:1424
311276 #, c-format
312277 msgid "Unable to connect to the graphic server %s"
313278 msgstr "ഗ്രാഫിക് സര്‍വര്‍ %s-ലേക്കു് കണക്ട് ചെയ്യുവാന്‍ സാധ്യമല്ല"
314279
315 #: ../src/virt-viewer-app.c:1512
280 #: ../src/virt-viewer-app.c:1450
316281 #, c-format
317282 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318283 msgstr ""
319284
320 #: ../src/virt-viewer-app.c:1525
285 #: ../src/virt-viewer-app.c:1463
321286 #, c-format
322287 msgid "Unable to authenticate with remote desktop server: %s"
323288 msgstr "റിമോട്ട് ഡസ്ക്ടോപ്പ് സര്‍വറിനൊപ്പം ആധികാരികത ഉറപ്പാക്കുവാന്‍ സാധ്യമല്ല: %s"
324289
325 #: ../src/virt-viewer-app.c:1533
290 #: ../src/virt-viewer-app.c:1471
326291 #, c-format
327292 msgid "USB redirection error: %s"
328293 msgstr "യുഎസ്ബി റീഡയറക്ഷന്‍ പിശക്: %s"
329294
330 #: ../src/virt-viewer-app.c:1786
295 #: ../src/virt-viewer-app.c:1805
331296 #, c-format
332297 msgid "Zoom level must be within %d-%d\n"
333298 msgstr "സൂം ലവല്‍ %d-%d ആയിരിയ്ക്കണം\n"
334299
335 #: ../src/virt-viewer-app.c:2296
336 #, c-format
337 msgid "Display %d"
338 msgstr "%d പ്രദര്‍ശിപ്പിയ്ക്കുക"
339
340 #: ../src/virt-viewer-app.c:2552
300 #: ../src/virt-viewer-app.c:1858
301 #, c-format
302 msgid "%s\n"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:1868
306 #, c-format
307 msgid "%s version %s"
308 msgstr ""
309
310 #: ../src/virt-viewer-app.c:2292
311 #, c-format
312 msgid "Display _%d"
313 msgstr ""
314
315 #: ../src/virt-viewer-app.c:2548
341316 #, c-format
342317 msgid "Invalid kiosk-quit argument: %s"
343318 msgstr "തെറ്റായ kiosk-quit ആര്‍ഗ്യുമെന്റ്: %s"
319
320 #: ../src/virt-viewer-app.c:2559
321 msgid "Display version information"
322 msgstr "പതിപ്പിനെപ്പറ്റിയുള്ള വിവരം കാണിയ്ക്കുക"
344323
345324 #: ../src/virt-viewer-app.c:2561
346325 msgid "Zoom level of window, in percentage"
374353 msgid "Display debugging information"
375354 msgstr "ഡീബഗ്ഗിങ് വിവരം കാണിയ്ക്കുക"
376355
377 #: ../src/virt-viewer-auth.c:88
356 #: ../src/virt-viewer-auth.c:89
378357 #, c-format
379358 msgid ""
380359 "Authentication is required for the %s connection to:\n"
383362 "\n"
384363 msgstr ""
385364
386 #: ../src/virt-viewer-auth.c:92
365 #: ../src/virt-viewer-auth.c:93
387366 #, c-format
388367 msgid "Authentication is required for the %s connection:\n"
389368 msgstr ""
395374 #. * indent-tabs-mode: nil
396375 #. * End:
397376 #.
398 #: ../src/virt-viewer-auth.xml.h:1
377 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
399378 msgid "Authentication required"
400379 msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ ആവശ്യമുണ്ടു്"
401380
402 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
382 msgid "_OK"
383 msgstr ""
384
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
386 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
403387 msgid "label"
404388 msgstr "ലേബല്‍"
405389
406 #: ../src/virt-viewer-auth.xml.h:3
390 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
407391 msgid "Password:"
408392 msgstr "രഹസ്യവാക്ക്:"
409393
410 #: ../src/virt-viewer-auth.xml.h:4
394 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
411395 msgid "Username:"
412396 msgstr "ഉപയോക്തൃനാമം:"
413397
414 #: ../src/virt-viewer-auth.xml.h:5
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
415399 msgid "Show password"
416400 msgstr ""
417401
418 #: ../src/virt-viewer-display-vnc.c:133
402 #: ../src/virt-viewer-display-vnc.c:134
419403 msgid "VNC does not provide GUID"
420404 msgstr ""
421405
406 #: ../src/virt-viewer-file-transfer-dialog.c:152
407 msgid "Cancel"
408 msgstr ""
409
410 #: ../src/virt-viewer-file-transfer-dialog.c:163
411 msgid "File Transfers"
412 msgstr ""
413
422414 #: ../src/virt-viewer-main.c:38
423 #, c-format
424 msgid "%s version %s\n"
425 msgstr "%s ലക്കം %s\n"
426
427 #: ../src/virt-viewer-main.c:62
428 msgid "Direct connection with no automatic tunnels"
429 msgstr "ഓട്ടോമാറ്റിക് ടണലുകള്‍ ഇല്ലാത്ത നേരിട്ടുള്ള കണക്ഷന്‍"
430
431 #: ../src/virt-viewer-main.c:64
432 msgid "Attach to the local display using libvirt"
433 msgstr "libvirt ഉപയോഗിച്ചു് പ്രാദേശിക പ്രദര്‍ശനത്തിലേക്കു് ഘടിപ്പിയ്ക്കുക"
434
435 #: ../src/virt-viewer-main.c:66
436 msgid "Connect to hypervisor"
437 msgstr "ഹൈപ്പര്‍വൈസറിലേക്കു് കണക്ട് ചെയ്യുക"
438
439 #: ../src/virt-viewer-main.c:68
440 msgid "Wait for domain to start"
441 msgstr "ആരംഭിയ്ക്കുന്നതിനായി ഡൊമെയിനുവേണ്ടി കാത്തിരിയ്ക്കുക"
442
443 #: ../src/virt-viewer-main.c:70
444 msgid "Reconnect to domain upon restart"
445 msgstr "വീണ്ടും ആരംഭിയ്ക്കുമ്പോള്‍ ഡൊമെയിനിലേക്കു് വീണ്ടും കണക്ട് ചെയ്യുക"
446
447 #: ../src/virt-viewer-main.c:77
448415 msgid "Virt Viewer"
449416 msgstr "വിര്‍ട്ട് വ്യൂവര്‍"
450417
451 #: ../src/virt-viewer-main.c:80
452 #, c-format
453 msgid "Run '%s --help' to see a full list of available command line options"
454 msgstr ""
455 "ലഭ്യമായ കമാന്‍ഡ് ലൈന്‍ ഐച്ഛികങ്ങളുടെ പൂര്‍ണ്ണ പട്ടിക കാണുന്നതിനായി '%s --help' പ്രവര്‍ത്തിപ്പിയ്ക്കുക"
456
457 #: ../src/virt-viewer-main.c:86
458 msgid "Virtual machine graphical console"
459 msgstr "വിര്‍ച്ച്വല്‍ മഷീന്‍ ഗ്രാഫിക്കല്‍ കണ്‍സോള്‍"
460
461 #: ../src/virt-viewer-main.c:107
462 #, c-format
463 msgid ""
464 "\n"
465 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
466 "\n"
467 "%s\n"
468 "\n"
469 msgstr ""
470
471 #: ../src/virt-viewer-main.c:112
472 #, c-format
473 msgid ""
474 "\n"
475 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
476 "\n"
477 msgstr ""
478
479 #: ../src/virt-viewer-session-spice.c:694
418 #: ../src/virt-viewer-session-spice.c:705
480419 msgid "Invalid password"
481420 msgstr ""
482421
483422 #. Create the widgets
484 #: ../src/virt-viewer-session-spice.c:786
423 #: ../src/virt-viewer-session-spice.c:797
485424 msgid "Select USB devices for redirection"
486425 msgstr "യുഎസ്ബി ഡിവൈസുകള്‍ തെരഞ്ഞെടുക്കുക"
487426
488 #: ../src/virt-viewer-session-vnc.c:153
427 #: ../src/virt-viewer-session-spice.c:799
428 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
429 msgid "_Close"
430 msgstr ""
431
432 #: ../src/virt-viewer-session-vnc.c:156
489433 #, c-format
490434 msgid "Unsupported authentication type %d"
491435 msgstr "പിന്തുണയില്ലാത്ത ആധികാരികത ഉറപ്പാക്കല്‍ രീതി %d"
498442 msgid "No virtual machine was chosen"
499443 msgstr ""
500444
501 #: ../src/virt-viewer-window.c:537
445 #: ../src/virt-viewer-window.c:534
502446 msgid "Ctrl+Alt+_Del"
503447 msgstr "Ctrl+Alt+_Del"
504448
505 #: ../src/virt-viewer-window.c:538
449 #: ../src/virt-viewer-window.c:535
506450 msgid "Ctrl+Alt+_Backspace"
507451 msgstr "Ctrl+Alt+_Backspace"
508452
509 #: ../src/virt-viewer-window.c:540
453 #: ../src/virt-viewer-window.c:537
510454 msgid "Ctrl+Alt+F_1"
511455 msgstr "Ctrl+Alt+F_1"
512456
513 #: ../src/virt-viewer-window.c:541
457 #: ../src/virt-viewer-window.c:538
514458 msgid "Ctrl+Alt+F_2"
515459 msgstr "Ctrl+Alt+F_2"
516460
517 #: ../src/virt-viewer-window.c:542
461 #: ../src/virt-viewer-window.c:539
518462 msgid "Ctrl+Alt+F_3"
519463 msgstr "Ctrl+Alt+F_3"
520464
521 #: ../src/virt-viewer-window.c:543
465 #: ../src/virt-viewer-window.c:540
522466 msgid "Ctrl+Alt+F_4"
523467 msgstr "Ctrl+Alt+F_4"
524468
525 #: ../src/virt-viewer-window.c:544
469 #: ../src/virt-viewer-window.c:541
526470 msgid "Ctrl+Alt+F_5"
527471 msgstr "Ctrl+Alt+F_5"
528472
529 #: ../src/virt-viewer-window.c:545
473 #: ../src/virt-viewer-window.c:542
530474 msgid "Ctrl+Alt+F_6"
531475 msgstr "Ctrl+Alt+F_6"
532476
533 #: ../src/virt-viewer-window.c:546
477 #: ../src/virt-viewer-window.c:543
534478 msgid "Ctrl+Alt+F_7"
535479 msgstr "Ctrl+Alt+F_7"
536480
537 #: ../src/virt-viewer-window.c:547
481 #: ../src/virt-viewer-window.c:544
538482 msgid "Ctrl+Alt+F_8"
539483 msgstr "Ctrl+Alt+F_8"
540484
541 #: ../src/virt-viewer-window.c:548
485 #: ../src/virt-viewer-window.c:545
542486 msgid "Ctrl+Alt+F_9"
543487 msgstr "Ctrl+Alt+F_9"
544488
545 #: ../src/virt-viewer-window.c:549
489 #: ../src/virt-viewer-window.c:546
546490 msgid "Ctrl+Alt+F1_0"
547491 msgstr "Ctrl+Alt+F1_0"
548492
549 #: ../src/virt-viewer-window.c:550
493 #: ../src/virt-viewer-window.c:547
550494 msgid "Ctrl+Alt+F11"
551495 msgstr "Ctrl+Alt+F11"
552496
553 #: ../src/virt-viewer-window.c:551
497 #: ../src/virt-viewer-window.c:548
554498 msgid "Ctrl+Alt+F12"
555499 msgstr "Ctrl+Alt+F12"
556500
557 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
501 #: ../src/virt-viewer-window.c:919
502 msgid "_Save"
503 msgstr ""
504
505 #: ../src/virt-viewer-window.c:927
558506 msgid "Screenshot"
559507 msgstr "സ്ക്രീന്‍ഷോട്ട്"
560508
561 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
509 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
562510 msgid "Unknown"
563511 msgstr ""
564512
565 #: ../src/virt-viewer-window.c:1062
513 #: ../src/virt-viewer-window.c:1071
566514 msgid "Disconnect"
567515 msgstr "കണക്ഷന്‍ വിഛേദിയ്ക്കുക"
568516
569 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
570 #: ../src/virt-viewer.xml.h:3
517 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
571518 msgid "USB device selection"
572519 msgstr "യുഎസ്ബി ഡിവൈസ് തെരഞ്ഞെടുക്കല്‍"
573520
574 #: ../src/virt-viewer-window.c:1081
521 #: ../src/virt-viewer-window.c:1089
575522 msgid "Send key combination"
576523 msgstr "കീ കൂട്ടം അയയ്ക്കുക"
577524
578 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
525 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
579526 msgid "Leave fullscreen"
580527 msgstr "പൂര്‍ണ്ണസ്ക്രീനില്‍ നിന്നും മാറുക"
581528
582 #: ../src/virt-viewer-window.c:1173
529 #: ../src/virt-viewer-window.c:1175
583530 msgid "Ctrl+Alt"
584531 msgstr "Ctrl+Alt"
585532
586 #: ../src/virt-viewer-window.c:1176
533 #: ../src/virt-viewer-window.c:1178
587534 #, c-format
588535 msgid "(Press %s to release pointer)"
589536 msgstr "(പോയിന്റര്‍ വിടുന്നതിനായി %s അമര്‍ത്തുക)"
592539 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
593540 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
594541 #.
595 #: ../src/virt-viewer-window.c:1187
542 #: ../src/virt-viewer-window.c:1189
596543 #, c-format
597544 msgid "%s%s%s - %s"
598545 msgstr "%s%s%s - %s"
599546
600547 #. translators: <space>
601 #: ../src/virt-viewer-window.c:1191
548 #: ../src/virt-viewer-window.c:1193
602549 msgid " "
603550 msgstr " "
604551
605 #: ../src/virt-viewer-file.c:825
552 #: ../src/virt-viewer-file.c:843
606553 #, c-format
607554 msgid ""
608555 "At least %s version %s is required to setup this connection, see %s for "
609556 "details"
610557 msgstr ""
611558
612 #: ../src/virt-viewer-file.c:833
559 #: ../src/virt-viewer-file.c:851
613560 #, c-format
614561 msgid "At least %s version %s is required to setup this connection"
615562 msgstr "ഈ കണക്ഷന്‍ സജ്ജമാക്കുന്നതിനായി കുറഞ്ഞതു് %s പതിപ്പു് %s ആവശ്യമുണ്ടു്"
616563
617 #: ../src/virt-viewer.c:163
564 #: ../src/virt-viewer.c:90
565 msgid "Direct connection with no automatic tunnels"
566 msgstr "ഓട്ടോമാറ്റിക് ടണലുകള്‍ ഇല്ലാത്ത നേരിട്ടുള്ള കണക്ഷന്‍"
567
568 #: ../src/virt-viewer.c:92
569 msgid "Attach to the local display using libvirt"
570 msgstr "libvirt ഉപയോഗിച്ചു് പ്രാദേശിക പ്രദര്‍ശനത്തിലേക്കു് ഘടിപ്പിയ്ക്കുക"
571
572 #: ../src/virt-viewer.c:94
573 msgid "Connect to hypervisor"
574 msgstr "ഹൈപ്പര്‍വൈസറിലേക്കു് കണക്ട് ചെയ്യുക"
575
576 #: ../src/virt-viewer.c:96
577 msgid "Wait for domain to start"
578 msgstr "ആരംഭിയ്ക്കുന്നതിനായി ഡൊമെയിനുവേണ്ടി കാത്തിരിയ്ക്കുക"
579
580 #: ../src/virt-viewer.c:98
581 msgid "Reconnect to domain upon restart"
582 msgstr "വീണ്ടും ആരംഭിയ്ക്കുമ്പോള്‍ ഡൊമെയിനിലേക്കു് വീണ്ടും കണക്ട് ചെയ്യുക"
583
584 #: ../src/virt-viewer.c:105
585 msgid "Virtual machine graphical console"
586 msgstr "വിര്‍ച്ച്വല്‍ മഷീന്‍ ഗ്രാഫിക്കല്‍ കണ്‍സോള്‍"
587
588 #: ../src/virt-viewer.c:124
589 #, c-format
590 msgid ""
591 "\n"
592 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
593 "\n"
594 msgstr ""
595
596 #: ../src/virt-viewer.c:136
597 #, c-format
598 msgid ""
599 "\n"
600 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
601 "\n"
602 msgstr ""
603
604 #: ../src/virt-viewer.c:250
618605 msgid "Waiting for guest domain to re-start"
619606 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ വീണ്ടും ആരംഭിയ്ക്കുന്നതിനായി കാത്തിരിയ്ക്കുന്നു"
620607
621 #: ../src/virt-viewer.c:409
608 #: ../src/virt-viewer.c:496
622609 #, c-format
623610 msgid "Cannot determine the graphic type for the guest %s"
624611 msgstr "%s ഗസ്റ്റിനുള്ള ഗ്രാഫിക് രീതി കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല"
625612
626 #: ../src/virt-viewer.c:448
613 #: ../src/virt-viewer.c:535
627614 #, c-format
628615 msgid "Cannot determine the host for the guest %s"
629616 msgstr "ഗസ്റ്റ് %s-നുള്ള ഹോസ്റ്റ് കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല"
630617
631 #: ../src/virt-viewer.c:476
618 #: ../src/virt-viewer.c:563
632619 #, c-format
633620 msgid "Guest '%s' is not reachable"
634621 msgstr ""
635622
636 #: ../src/virt-viewer.c:697
623 #: ../src/virt-viewer.c:784
637624 #, c-format
638625 msgid "Virtual machine %s is not running"
639626 msgstr ""
640627
641 #: ../src/virt-viewer.c:720
628 #: ../src/virt-viewer.c:807
642629 msgid "Waiting for libvirt to start"
643630 msgstr "ആരംഭിയ്ക്കുന്നതിനായി libvirt-നു് വേണ്ടി കാത്തിരിയ്ക്കുന്നു"
644631
645 #: ../src/virt-viewer.c:724
632 #: ../src/virt-viewer.c:811
646633 msgid "Finding guest domain"
647634 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ കണ്ടുപിടിയ്ക്കുന്നു"
648635
649 #: ../src/virt-viewer.c:728
636 #: ../src/virt-viewer.c:815
650637 msgid "Waiting for guest domain to be created"
651638 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ തയ്യാറാക്കുന്നതിനായി കാത്തിരിയ്ക്കുന്നു"
652639
653 #: ../src/virt-viewer.c:750
640 #: ../src/virt-viewer.c:837
654641 msgid "Checking guest domain status"
655642 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ അവസ്ഥ പരിശോധിയ്ക്കുന്നു"
656643
657 #: ../src/virt-viewer.c:753
644 #: ../src/virt-viewer.c:840
658645 msgid "Cannot get guest state"
659646 msgstr ""
660647
661 #: ../src/virt-viewer.c:759
648 #: ../src/virt-viewer.c:846
662649 msgid "Waiting for guest domain to start"
663650 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ ആരംഭിയ്ക്കുന്നതിനായി കാത്തിരിയ്ക്കുന്നു"
664651
665 #: ../src/virt-viewer.c:863
652 #: ../src/virt-viewer.c:950
666653 #, c-format
667654 msgid "Unable to connect to libvirt with URI: %s."
668655 msgstr ""
669656
670 #: ../src/virt-viewer.c:864
657 #: ../src/virt-viewer.c:951
671658 msgid "[none]"
672659 msgstr "[ഒന്നുമില്ല]"
673660
674 #: ../src/virt-viewer.c:871
661 #: ../src/virt-viewer.c:958
675662 msgid "Authentication failed."
676663 msgstr ""
677664
678 #: ../src/virt-viewer.c:931
665 #: ../src/virt-viewer.c:1018
679666 msgid "Failed to connect: "
680667 msgstr ""
681668
686673 #. * indent-tabs-mode: nil
687674 #. * End:
688675 #.
689 #: ../src/virt-viewer.xml.h:1
676 #: ../src/resources/ui/virt-viewer.ui.h:1
690677 msgid "_File"
691678 msgstr "_ഫയല്‍"
692679
693 #: ../src/virt-viewer.xml.h:4
680 #: ../src/resources/ui/virt-viewer.ui.h:2
681 msgid "_Screenshot"
682 msgstr ""
683
684 #: ../src/resources/ui/virt-viewer.ui.h:3
685 msgid "_USB device selection"
686 msgstr ""
687
688 #: ../src/resources/ui/virt-viewer.ui.h:4
694689 msgid "Smartcard insertion"
695690 msgstr "സ്മാര്‍ട്ട്കാര്‍ഡ് ഇടല്‍"
696691
697 #: ../src/virt-viewer.xml.h:5
692 #: ../src/resources/ui/virt-viewer.ui.h:5
698693 msgid "Smartcard removal"
699694 msgstr "സ്മാര്‍ട്ട്കാര്‍ഡ് നീക്കം ചെയ്യല്‍"
700695
701 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
702 msgid "Preferences"
703 msgstr ""
704
705 #: ../src/virt-viewer.xml.h:7
696 #: ../src/resources/ui/virt-viewer.ui.h:6
697 msgid "_Preferences"
698 msgstr ""
699
700 #: ../src/resources/ui/virt-viewer.ui.h:7
701 msgid "_Quit"
702 msgstr ""
703
704 #: ../src/resources/ui/virt-viewer.ui.h:8
706705 msgid "_View"
707706 msgstr "_കാഴ്ച"
708707
709 #: ../src/virt-viewer.xml.h:8
710 msgid "Full screen"
711 msgstr "സ്ക്രീന്‍ പൂര്‍ണ്ണവലിപ്പത്തില്‍"
712
713 #: ../src/virt-viewer.xml.h:9
708 #: ../src/resources/ui/virt-viewer.ui.h:9
709 msgid "_Full screen"
710 msgstr ""
711
712 #: ../src/resources/ui/virt-viewer.ui.h:10
714713 msgid "_Zoom"
715714 msgstr "_വലുതാക്കുക"
716715
717 #: ../src/virt-viewer.xml.h:10
718 msgid "Displays"
719 msgstr "പ്രദര്‍ശനങ്ങള്‍"
720
721 #: ../src/virt-viewer.xml.h:11
716 #: ../src/resources/ui/virt-viewer.ui.h:11
717 msgid "Zoom _In"
718 msgstr ""
719
720 #: ../src/resources/ui/virt-viewer.ui.h:12
721 msgid "Zoom _Out"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:13
725 msgid "_Normal Size"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:14
729 msgid "_Displays"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:15
722733 msgid "Release cursor"
723734 msgstr "കര്‍സര്‍ റിലീസ് ചെയ്യുക"
724735
725 #: ../src/virt-viewer.xml.h:12
736 #: ../src/resources/ui/virt-viewer.ui.h:16
726737 msgid "_Send key"
727738 msgstr "കീ _അയയ്ക്കുക"
728739
729 #: ../src/virt-viewer.xml.h:13
740 #: ../src/resources/ui/virt-viewer.ui.h:17
730741 msgid "_Help"
731742 msgstr "_സഹായം"
732743
733 #: ../src/virt-viewer.xml.h:14
744 #: ../src/resources/ui/virt-viewer.ui.h:18
734745 msgid "_Guest Details"
735746 msgstr ""
736747
737 #: ../src/virt-viewer-guest-details.xml.h:1
748 #: ../src/resources/ui/virt-viewer.ui.h:19
749 msgid "_About"
750 msgstr ""
751
752 #: ../src/resources/ui/virt-viewer.ui.h:20
753 msgid "_Change CD"
754 msgstr ""
755
756 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
738757 msgid "Guest Details"
739758 msgstr ""
740759
741 #: ../src/virt-viewer-guest-details.xml.h:2
760 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
742761 msgid "Name:"
743762 msgstr ""
744763
745 #: ../src/virt-viewer-guest-details.xml.h:3
764 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
746765 msgid "GUID:"
747766 msgstr ""
748767
749 #: ../src/virt-viewer-vm-connection.xml.h:1
768 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
750769 msgid "Choose a virtual machine"
751770 msgstr ""
752771
753 #: ../src/virt-viewer-vm-connection.xml.h:2
772 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
754773 msgid "Name"
755774 msgstr ""
756775
757 #: ../src/virt-viewer-vm-connection.xml.h:3
776 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
758777 msgid "Available virtual machines"
759778 msgstr ""
760779
761 #: ../src/virt-viewer-preferences.xml.h:2
780 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
781 msgid "Preferences"
782 msgstr ""
783
784 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
762785 msgid "Folder sharing"
763786 msgstr ""
764787
765 #: ../src/virt-viewer-preferences.xml.h:3
788 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
766789 msgid "Share folder"
767790 msgstr ""
768791
769 #: ../src/virt-viewer-preferences.xml.h:4
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
770793 msgid "Read-only"
771794 msgstr ""
772795
773 #: ../src/virt-viewer-preferences.xml.h:5
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
774797 msgid "Spice"
775798 msgstr ""
+343
-316
po/mn.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-275
po/mr.po less more
99 msgstr ""
1010 "Project-Id-Version: PACKAGE VERSION\n"
1111 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1313 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1414 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1515 "Language-Team: Marathi (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.7.3\n"
23
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
22 "X-Generator: Zanata 3.8.4\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
2526 msgid "Remote Viewer"
2627 msgstr "रिमोट व्युअर"
28
29 #: ../data/remote-viewer.appdata.xml.in.h:2
30 msgid "Remotely access virtual machines"
31 msgstr ""
32
33 #: ../data/remote-viewer.appdata.xml.in.h:3
34 msgid ""
35 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
36 "time it supports guest OS using the VNC or SPICE protocols. Further "
37 "protocols may be supported in the future as user demand dictates. The viewer "
38 "can connect directly to both local and remotely hosted guest OS, optionally "
39 "using SSL/TLS encryption."
40 msgstr ""
2741
2842 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Access remote desktops"
3347 msgid "Virt-Viewer connection file"
3448 msgstr "वर्ट-व्युअर जोडणी फाइल"
3549
36 #: ../src/gbinding.c:637
37 msgid "Source"
38 msgstr "स्रोत"
39
40 #: ../src/gbinding.c:638
41 msgid "The source of the binding"
42 msgstr "बाइंडिंगचे स्रोत"
43
44 #: ../src/gbinding.c:652
45 msgid "Target"
46 msgstr "लक्ष्य"
47
48 #: ../src/gbinding.c:653
49 msgid "The target of the binding"
50 msgstr "बाइंडिंगचे लक्ष्य"
51
52 #: ../src/gbinding.c:668
53 msgid "Source Property"
54 msgstr "स्रोत गुणधर्म"
55
56 #: ../src/gbinding.c:669
57 msgid "The property on the source to bind"
58 msgstr "बाइंडकरण्यासाठी स्रोतवरील गुणधर्म"
59
60 #: ../src/gbinding.c:684
61 msgid "Target Property"
62 msgstr "लक्ष्य गुणधर्म"
63
64 #: ../src/gbinding.c:685
65 msgid "The property on the target to bind"
66 msgstr "बाइंडकरीता लक्ष्यवरील गुणधर्म"
67
68 #: ../src/gbinding.c:699
69 msgid "Flags"
70 msgstr "फ्लॅग्स्"
71
72 #: ../src/gbinding.c:700
73 msgid "The binding flags"
74 msgstr "बाइंडिंगसाठीचे फ्लॅग्स्"
75
76 #: ../src/remote-viewer-main.c:50
77 #, c-format
78 msgid "remote-viewer version %s"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
82 msgid "Display version information"
83 msgstr "आवृत्तीविषयी माहिती दाखवा"
84
85 #: ../src/remote-viewer-main.c:105
50 #: ../src/remote-viewer.c:139
8651 msgid "Set window title"
8752 msgstr "पटलाचे शीर्षक सेट करा"
8853
89 #: ../src/remote-viewer-main.c:108
54 #: ../src/remote-viewer.c:142
9055 msgid "Open connection using Spice controller communication"
9156 msgstr "स्पाइस कंट्रोलर संपर्काचा वापर करून जोडणी उघडा"
9257
93 #: ../src/remote-viewer-main.c:120
58 #: ../src/remote-viewer.c:150
9459 msgid "Remote viewer client"
9560 msgstr "दूरस्त व्युअर क्लाएंट"
9661
97 #: ../src/remote-viewer-main.c:138
98 #, c-format
99 msgid ""
100 "%s\n"
101 "Run '%s --help' to see a full list of available command line options\n"
102 msgstr ""
103 "%s\n"
104 "उपलब्ध आदेश ओळ पर्यायांची संपूर्ण सूची पहाण्यासाठी '%s --help' चालवा\n"
105
106 #: ../src/remote-viewer-main.c:149
107 #, c-format
108 msgid "Error: extra arguments given while using Spice controller\n"
109 msgstr "त्रुटी: स्पाइस् कंट्रोलरचा वापर करतेवेळी अगाऊ घटक दिले\n"
110
111 #: ../src/remote-viewer-main.c:156
112 #, c-format
113 msgid "Error: can't handle multiple URIs\n"
114 msgstr "त्रुटी: एकापेक्षा जास्त URIs हाताळणे अशक्य\n"
115
116 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
62 #: ../src/remote-viewer.c:175
63 #, c-format
64 msgid ""
65 "\n"
66 "Error: can't handle multiple URIs\n"
67 "\n"
68 msgstr ""
69
70 #: ../src/remote-viewer.c:187
71 #, c-format
72 msgid ""
73 "\n"
74 "Error: extra arguments given while using Spice controller\n"
75 "\n"
76 msgstr ""
77
78 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
79 #, c-format
80 msgid "Run '%s --help' to see a full list of available command line options\n"
81 msgstr ""
82
83 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11784 msgid "Failed to initiate connection"
11885 msgstr "जोडणी सुरू करण्यास अपयशी"
11986
120 #: ../src/remote-viewer.c:313
87 #: ../src/remote-viewer.c:297
12188 msgid "Display disabled by controller"
12289 msgstr "कंट्रोलरतर्फे डिस्पले बंद केले"
12390
124 #: ../src/remote-viewer.c:609
91 #: ../src/remote-viewer.c:593
12592 #, c-format
12693 msgid "Controller connection failed: %s"
12794 msgstr "कंट्रोलर जोडणी अपयशी: %s"
12895
129 #: ../src/remote-viewer.c:755
130 msgid "_Change CD"
131 msgstr ""
132
133 #: ../src/remote-viewer.c:855
96 #: ../src/remote-viewer.c:848
13497 msgid "failed to parse ovirt uri"
13598 msgstr ""
13699
137 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
100 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
138101 msgid "Authentication was cancelled"
139102 msgstr ""
140103
141 #: ../src/remote-viewer.c:900
104 #: ../src/remote-viewer.c:893
142105 #, c-format
143106 msgid "oVirt VM %s is not running"
144107 msgstr ""
145108
146 #: ../src/remote-viewer.c:914
109 #: ../src/remote-viewer.c:907
147110 #, c-format
148111 msgid "oVirt VM %s has no display"
149112 msgstr ""
150113
151 #: ../src/remote-viewer.c:940
114 #: ../src/remote-viewer.c:933
152115 #, c-format
153116 msgid "oVirt VM %s has no host information"
154117 msgstr ""
155118
156 #: ../src/remote-viewer.c:951
119 #: ../src/remote-viewer.c:944
157120 #, c-format
158121 msgid "oVirt VM %s has unknown display type: %d"
159122 msgstr ""
160123
161 #: ../src/remote-viewer.c:1094
124 #: ../src/remote-viewer.c:1115
162125 msgid "Setting up Spice session..."
163126 msgstr "स्पाइस सत्राची मांडणी अशक्य..."
164127
165 #: ../src/remote-viewer.c:1102
128 #: ../src/remote-viewer.c:1123
166129 msgid "No connection was chosen"
167130 msgstr ""
168131
169 #: ../src/remote-viewer.c:1120
132 #: ../src/remote-viewer.c:1141
170133 #, c-format
171134 msgid "Invalid file %s: "
172135 msgstr ""
173136
174 #: ../src/remote-viewer.c:1128
137 #: ../src/remote-viewer.c:1149
175138 msgid "Cannot determine the connection type from URI"
176139 msgstr "URI पासून जोडणी प्रकार ओळखणे अशक्य"
177140
178 #: ../src/remote-viewer.c:1134
141 #: ../src/remote-viewer.c:1155
179142 msgid "Couldn't open oVirt session: "
180143 msgstr ""
181144
186149 #. * indent-tabs-mode: nil
187150 #. * End:
188151 #.
189 #: ../src/remote-viewer-connect.xml.h:1
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
190153 msgid "Connection details"
191154 msgstr "जोडणी तपशील"
192155
193 #: ../src/remote-viewer-connect.xml.h:2
194 msgid "Connection Address"
195 msgstr ""
196
197 #: ../src/remote-viewer-connect.xml.h:3
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 msgid "Connection _Address"
158 msgstr ""
159
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
198161 msgid "For example, spice://foo.example.org:5900"
199162 msgstr "उदाहरणार्थ, spice://foo.example.org:5900"
200163
201 #: ../src/remote-viewer-connect.xml.h:4
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
202165 msgid "Recent connections"
203166 msgstr ""
204167
205 #: ../src/remote-viewer-connect.xml.h:5
206 msgid "Cancel"
207 msgstr ""
208
209 #: ../src/remote-viewer-connect.xml.h:6
210 msgid "Connect"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:1
214 msgid "About Glade"
215 msgstr "ग्लेड विषयी"
216
217 #: ../src/virt-viewer-about.xml.h:2
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
169 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
170 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
171 msgid "_Cancel"
172 msgstr ""
173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
175 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 msgid "C_onnect"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:1
180 msgid "About Virt-Viewer"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:2
218184 msgid ""
219185 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
220186 "Copyright (C) 2007-2014 Red Hat, Inc."
222188 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
223189 "Copyright (C) 2007-2014 Red Hat, Inc."
224190
225 #: ../src/virt-viewer-about.xml.h:4
191 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226192 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227193 msgstr "GTK-VNC, SPICE-GTK व libvirt सह रिमोट डेस्कटॉप क्लाएंट निर्मीत केले"
228194
229 #: ../src/virt-viewer-about.xml.h:5
195 #: ../src/resources/ui/virt-viewer-about.ui.h:5
230196 msgid "virt-manager.org"
231197 msgstr "virt-manager.org"
232198
233 #: ../src/virt-viewer-about.xml.h:6
199 #: ../src/resources/ui/virt-viewer-about.ui.h:6
234200 msgid ""
235201 "This program is free software; you can redistribute it and/or modify\n"
236202 "it under the terms of the GNU General Public License as published by\n"
260226 "along with this program; if not, write to the Free Software\n"
261227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
262228
263 #: ../src/virt-viewer-about.xml.h:20
229 #: ../src/resources/ui/virt-viewer-about.ui.h:20
264230 msgid "The Fedora Translation Team"
265231 msgstr "Fedora भाषांतरन गट"
266232
267 #: ../src/virt-viewer-app.c:526
233 #: ../src/virt-viewer-app.c:458
268234 msgid "Do you want to close the session?"
269235 msgstr "सत्र बंद करायचे?"
270236
271 #: ../src/virt-viewer-app.c:528
237 #: ../src/virt-viewer-app.c:460
272238 msgid "Do not ask me again"
273239 msgstr "मला पुन्हा विचारू नका"
274240
275 #: ../src/virt-viewer-app.c:1008
241 #: ../src/virt-viewer-app.c:948
276242 #, c-format
277243 msgid "Waiting for display %d..."
278244 msgstr "डिस्पले %d करीता प्रतिक्षा करत आहे..."
279245
280 #: ../src/virt-viewer-app.c:1117
246 #: ../src/virt-viewer-app.c:1055
281247 #, c-format
282248 msgid "Unsupported graphic type '%s'"
283249 msgstr ""
284250
285 #: ../src/virt-viewer-app.c:1200
251 #: ../src/virt-viewer-app.c:1138
286252 msgid "Connect to ssh failed."
287253 msgstr "ssh सह जोडणी अपयशी."
288254
289 #: ../src/virt-viewer-app.c:1202
255 #: ../src/virt-viewer-app.c:1140
290256 msgid "Can't connect to channel, SSH only supported."
291257 msgstr "वाहिनीसह जोडणी करणे अशक्य, SSH फक्त याकरीता समर्थन पुरवतो."
292258
293 #: ../src/virt-viewer-app.c:1214
259 #: ../src/virt-viewer-app.c:1152
294260 msgid "Connect to channel unsupported."
295261 msgstr "वाहिनीसह जोडणी असमर्थीत आहे."
296262
297 #: ../src/virt-viewer-app.c:1276
263 #: ../src/virt-viewer-app.c:1214
298264 msgid "Display can only be attached through libvirt with --attach"
299265 msgstr ""
300266
301 #: ../src/virt-viewer-app.c:1299
267 #: ../src/virt-viewer-app.c:1237
302268 msgid "Connecting to graphic server"
303269 msgstr "ग्राफिक सर्व्हरसह जोडणी करत आहे"
304270
305 #: ../src/virt-viewer-app.c:1398
271 #: ../src/virt-viewer-app.c:1336
306272 msgid "Guest domain has shutdown"
307273 msgstr "अतिथी डोमैन बंद झाले"
308274
309 #: ../src/virt-viewer-app.c:1459
275 #: ../src/virt-viewer-app.c:1397
310276 msgid "Connected to graphic server"
311277 msgstr "ग्राफिक सर्व्हरसह जोडणी केली"
312278
313 #: ../src/virt-viewer-app.c:1486
279 #: ../src/virt-viewer-app.c:1424
314280 #, c-format
315281 msgid "Unable to connect to the graphic server %s"
316282 msgstr "ग्राफिक सर्व्हर %s सह जोडणी अशक्य"
317283
318 #: ../src/virt-viewer-app.c:1512
284 #: ../src/virt-viewer-app.c:1450
319285 #, c-format
320286 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
321287 msgstr ""
322288
323 #: ../src/virt-viewer-app.c:1525
289 #: ../src/virt-viewer-app.c:1463
324290 #, c-format
325291 msgid "Unable to authenticate with remote desktop server: %s"
326292 msgstr "रिमोट डेस्कटॉप सर्व्हरसह ओळख पटवणे अशक्य: %s"
327293
328 #: ../src/virt-viewer-app.c:1533
294 #: ../src/virt-viewer-app.c:1471
329295 #, c-format
330296 msgid "USB redirection error: %s"
331297 msgstr "USB पुनःनिर्देशन त्रुटी: %s"
332298
333 #: ../src/virt-viewer-app.c:1786
299 #: ../src/virt-viewer-app.c:1805
334300 #, c-format
335301 msgid "Zoom level must be within %d-%d\n"
336302 msgstr "झूम स्तर %d-%d अंतर्गत पाहिजे\n"
337303
338 #: ../src/virt-viewer-app.c:2296
339 #, c-format
340 msgid "Display %d"
341 msgstr "डिस्पले %d"
342
343 #: ../src/virt-viewer-app.c:2552
304 #: ../src/virt-viewer-app.c:1858
305 #, c-format
306 msgid "%s\n"
307 msgstr ""
308
309 #: ../src/virt-viewer-app.c:1868
310 #, c-format
311 msgid "%s version %s"
312 msgstr ""
313
314 #: ../src/virt-viewer-app.c:2292
315 #, c-format
316 msgid "Display _%d"
317 msgstr ""
318
319 #: ../src/virt-viewer-app.c:2548
344320 #, c-format
345321 msgid "Invalid kiosk-quit argument: %s"
346322 msgstr "अवैध kiosk-quit बाब: %s"
323
324 #: ../src/virt-viewer-app.c:2559
325 msgid "Display version information"
326 msgstr "आवृत्तीविषयी माहिती दाखवा"
347327
348328 #: ../src/virt-viewer-app.c:2561
349329 msgid "Zoom level of window, in percentage"
377357 msgid "Display debugging information"
378358 msgstr "डिबगिंग माहिती दाखवत आहे"
379359
380 #: ../src/virt-viewer-auth.c:88
360 #: ../src/virt-viewer-auth.c:89
381361 #, c-format
382362 msgid ""
383363 "Authentication is required for the %s connection to:\n"
386366 "\n"
387367 msgstr ""
388368
389 #: ../src/virt-viewer-auth.c:92
369 #: ../src/virt-viewer-auth.c:93
390370 #, c-format
391371 msgid "Authentication is required for the %s connection:\n"
392372 msgstr ""
398378 #. * indent-tabs-mode: nil
399379 #. * End:
400380 #.
401 #: ../src/virt-viewer-auth.xml.h:1
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
402382 msgid "Authentication required"
403383 msgstr "ओळख पटवणे आवश्यक"
404384
405 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
386 msgid "_OK"
387 msgstr ""
388
389 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
390 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
406391 msgid "label"
407392 msgstr "लेबल"
408393
409 #: ../src/virt-viewer-auth.xml.h:3
394 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410395 msgid "Password:"
411396 msgstr "पासवर्ड:"
412397
413 #: ../src/virt-viewer-auth.xml.h:4
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414399 msgid "Username:"
415400 msgstr "वापरकर्तानाव:"
416401
417 #: ../src/virt-viewer-auth.xml.h:5
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418403 msgid "Show password"
419404 msgstr ""
420405
421 #: ../src/virt-viewer-display-vnc.c:133
406 #: ../src/virt-viewer-display-vnc.c:134
422407 msgid "VNC does not provide GUID"
423408 msgstr ""
424409
410 #: ../src/virt-viewer-file-transfer-dialog.c:152
411 msgid "Cancel"
412 msgstr ""
413
414 #: ../src/virt-viewer-file-transfer-dialog.c:163
415 msgid "File Transfers"
416 msgstr ""
417
425418 #: ../src/virt-viewer-main.c:38
426 #, c-format
427 msgid "%s version %s\n"
428 msgstr "%s आवृत्ती %s\n"
429
430 #: ../src/virt-viewer-main.c:62
431 msgid "Direct connection with no automatic tunnels"
432 msgstr "स्वयं टनल्स् विना प्रत्यक्ष जोडणी"
433
434 #: ../src/virt-viewer-main.c:64
435 msgid "Attach to the local display using libvirt"
436 msgstr "libvirt चा वापर करून स्थानीय डिस्पलेसह जोडणी करा"
437
438 #: ../src/virt-viewer-main.c:66
439 msgid "Connect to hypervisor"
440 msgstr "हायपरवाइजरसह जोडणी करा"
441
442 #: ../src/virt-viewer-main.c:68
443 msgid "Wait for domain to start"
444 msgstr "डोमैन सुरू होण्याकरीता वाट पहा"
445
446 #: ../src/virt-viewer-main.c:70
447 msgid "Reconnect to domain upon restart"
448 msgstr "पुनःसुरू केल्यानंतर डोमैनसह पुनःजोडणी करा"
449
450 #: ../src/virt-viewer-main.c:77
451419 msgid "Virt Viewer"
452420 msgstr "वर्ट व्युअर"
453421
454 #: ../src/virt-viewer-main.c:80
455 #, c-format
456 msgid "Run '%s --help' to see a full list of available command line options"
457 msgstr "उपलब्ध आदेश ओळ पर्यायांची संपूर्ण सूची पहाण्याकरीता '%s --help' चालवा"
458
459 #: ../src/virt-viewer-main.c:86
460 msgid "Virtual machine graphical console"
461 msgstr "वर्च्युअल मशीन ग्राफिकल कंसोल"
462
463 #: ../src/virt-viewer-main.c:107
464 #, c-format
465 msgid ""
466 "\n"
467 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
468 "\n"
469 "%s\n"
470 "\n"
471 msgstr ""
472
473 #: ../src/virt-viewer-main.c:112
474 #, c-format
475 msgid ""
476 "\n"
477 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
478 "\n"
479 msgstr ""
480
481 #: ../src/virt-viewer-session-spice.c:694
422 #: ../src/virt-viewer-session-spice.c:705
482423 msgid "Invalid password"
483424 msgstr ""
484425
485426 #. Create the widgets
486 #: ../src/virt-viewer-session-spice.c:786
427 #: ../src/virt-viewer-session-spice.c:797
487428 msgid "Select USB devices for redirection"
488429 msgstr "रिडायरेक्शनकरीता USB साधने पसंत करा"
489430
490 #: ../src/virt-viewer-session-vnc.c:153
431 #: ../src/virt-viewer-session-spice.c:799
432 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
433 msgid "_Close"
434 msgstr ""
435
436 #: ../src/virt-viewer-session-vnc.c:156
491437 #, c-format
492438 msgid "Unsupported authentication type %d"
493439 msgstr "असमर्थीत ओळखपटवणे प्रकार %d"
500446 msgid "No virtual machine was chosen"
501447 msgstr ""
502448
503 #: ../src/virt-viewer-window.c:537
449 #: ../src/virt-viewer-window.c:534
504450 msgid "Ctrl+Alt+_Del"
505451 msgstr "Ctrl+Alt+Del (_D)"
506452
507 #: ../src/virt-viewer-window.c:538
453 #: ../src/virt-viewer-window.c:535
508454 msgid "Ctrl+Alt+_Backspace"
509455 msgstr "Ctrl+Alt+Backspace (_B)"
510456
511 #: ../src/virt-viewer-window.c:540
457 #: ../src/virt-viewer-window.c:537
512458 msgid "Ctrl+Alt+F_1"
513459 msgstr "Ctrl+Alt+F1 (_1)"
514460
515 #: ../src/virt-viewer-window.c:541
461 #: ../src/virt-viewer-window.c:538
516462 msgid "Ctrl+Alt+F_2"
517463 msgstr "Ctrl+Alt+F2 (_2)"
518464
519 #: ../src/virt-viewer-window.c:542
465 #: ../src/virt-viewer-window.c:539
520466 msgid "Ctrl+Alt+F_3"
521467 msgstr "Ctrl+Alt+F3 (_3)"
522468
523 #: ../src/virt-viewer-window.c:543
469 #: ../src/virt-viewer-window.c:540
524470 msgid "Ctrl+Alt+F_4"
525471 msgstr "Ctrl+Alt+F4 (_4)"
526472
527 #: ../src/virt-viewer-window.c:544
473 #: ../src/virt-viewer-window.c:541
528474 msgid "Ctrl+Alt+F_5"
529475 msgstr "Ctrl+Alt+F5 (_5)"
530476
531 #: ../src/virt-viewer-window.c:545
477 #: ../src/virt-viewer-window.c:542
532478 msgid "Ctrl+Alt+F_6"
533479 msgstr "Ctrl+Alt+F6 (_6)"
534480
535 #: ../src/virt-viewer-window.c:546
481 #: ../src/virt-viewer-window.c:543
536482 msgid "Ctrl+Alt+F_7"
537483 msgstr "Ctrl+Alt+F7 (_7)"
538484
539 #: ../src/virt-viewer-window.c:547
485 #: ../src/virt-viewer-window.c:544
540486 msgid "Ctrl+Alt+F_8"
541487 msgstr "Ctrl+Alt+F8 (_8)"
542488
543 #: ../src/virt-viewer-window.c:548
489 #: ../src/virt-viewer-window.c:545
544490 msgid "Ctrl+Alt+F_9"
545491 msgstr "Ctrl+Alt+F9 (_9)"
546492
547 #: ../src/virt-viewer-window.c:549
493 #: ../src/virt-viewer-window.c:546
548494 msgid "Ctrl+Alt+F1_0"
549495 msgstr "Ctrl+Alt+F10 (_0)"
550496
551 #: ../src/virt-viewer-window.c:550
497 #: ../src/virt-viewer-window.c:547
552498 msgid "Ctrl+Alt+F11"
553499 msgstr "Ctrl+Alt+F11"
554500
555 #: ../src/virt-viewer-window.c:551
501 #: ../src/virt-viewer-window.c:548
556502 msgid "Ctrl+Alt+F12"
557503 msgstr "Ctrl+Alt+F12"
558504
559 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
505 #: ../src/virt-viewer-window.c:919
506 msgid "_Save"
507 msgstr ""
508
509 #: ../src/virt-viewer-window.c:927
560510 msgid "Screenshot"
561511 msgstr "स्क्रीनशॉट"
562512
563 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
513 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
564514 msgid "Unknown"
565515 msgstr ""
566516
567 #: ../src/virt-viewer-window.c:1062
517 #: ../src/virt-viewer-window.c:1071
568518 msgid "Disconnect"
569519 msgstr "जोडणी खंडीत करा"
570520
571 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
572 #: ../src/virt-viewer.xml.h:3
521 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
573522 msgid "USB device selection"
574523 msgstr "USB साधनची निवड"
575524
576 #: ../src/virt-viewer-window.c:1081
525 #: ../src/virt-viewer-window.c:1089
577526 msgid "Send key combination"
578527 msgstr "कि जोडणी पाठवा"
579528
580 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
529 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
581530 msgid "Leave fullscreen"
582531 msgstr "पडदाभर सोडा"
583532
584 #: ../src/virt-viewer-window.c:1173
533 #: ../src/virt-viewer-window.c:1175
585534 msgid "Ctrl+Alt"
586535 msgstr "Ctrl+Alt"
587536
588 #: ../src/virt-viewer-window.c:1176
537 #: ../src/virt-viewer-window.c:1178
589538 #, c-format
590539 msgid "(Press %s to release pointer)"
591540 msgstr "(पॉइंटर सोडण्याकरीता %s दाबा)"
594543 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
595544 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
596545 #.
597 #: ../src/virt-viewer-window.c:1187
546 #: ../src/virt-viewer-window.c:1189
598547 #, c-format
599548 msgid "%s%s%s - %s"
600549 msgstr "%s%s%s - %s"
601550
602551 #. translators: <space>
603 #: ../src/virt-viewer-window.c:1191
552 #: ../src/virt-viewer-window.c:1193
604553 msgid " "
605554 msgstr " "
606555
607 #: ../src/virt-viewer-file.c:825
556 #: ../src/virt-viewer-file.c:843
608557 #, c-format
609558 msgid ""
610559 "At least %s version %s is required to setup this connection, see %s for "
611560 "details"
612561 msgstr ""
613562
614 #: ../src/virt-viewer-file.c:833
563 #: ../src/virt-viewer-file.c:851
615564 #, c-format
616565 msgid "At least %s version %s is required to setup this connection"
617566 msgstr "ह्या जोडणीच्या सेटअपकरिता किमान %s आवृत्ती %s आवश्यक आहे"
618567
619 #: ../src/virt-viewer.c:163
568 #: ../src/virt-viewer.c:90
569 msgid "Direct connection with no automatic tunnels"
570 msgstr "स्वयं टनल्स् विना प्रत्यक्ष जोडणी"
571
572 #: ../src/virt-viewer.c:92
573 msgid "Attach to the local display using libvirt"
574 msgstr "libvirt चा वापर करून स्थानीय डिस्पलेसह जोडणी करा"
575
576 #: ../src/virt-viewer.c:94
577 msgid "Connect to hypervisor"
578 msgstr "हायपरवाइजरसह जोडणी करा"
579
580 #: ../src/virt-viewer.c:96
581 msgid "Wait for domain to start"
582 msgstr "डोमैन सुरू होण्याकरीता वाट पहा"
583
584 #: ../src/virt-viewer.c:98
585 msgid "Reconnect to domain upon restart"
586 msgstr "पुनःसुरू केल्यानंतर डोमैनसह पुनःजोडणी करा"
587
588 #: ../src/virt-viewer.c:105
589 msgid "Virtual machine graphical console"
590 msgstr "वर्च्युअल मशीन ग्राफिकल कंसोल"
591
592 #: ../src/virt-viewer.c:124
593 #, c-format
594 msgid ""
595 "\n"
596 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
597 "\n"
598 msgstr ""
599
600 #: ../src/virt-viewer.c:136
601 #, c-format
602 msgid ""
603 "\n"
604 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
605 "\n"
606 msgstr ""
607
608 #: ../src/virt-viewer.c:250
620609 msgid "Waiting for guest domain to re-start"
621610 msgstr "अतिथी डोमैनला पुनःसुरू करण्यासाठी वाट पहात आहे"
622611
623 #: ../src/virt-viewer.c:409
612 #: ../src/virt-viewer.c:496
624613 #, c-format
625614 msgid "Cannot determine the graphic type for the guest %s"
626615 msgstr "अतिथी %s करीता ग्राफिक प्रकार ओळखणे अशक्य"
627616
628 #: ../src/virt-viewer.c:448
617 #: ../src/virt-viewer.c:535
629618 #, c-format
630619 msgid "Cannot determine the host for the guest %s"
631620 msgstr "अतिथी %s करीता यजमान ओळखणे अशक्य"
632621
633 #: ../src/virt-viewer.c:476
622 #: ../src/virt-viewer.c:563
634623 #, c-format
635624 msgid "Guest '%s' is not reachable"
636625 msgstr ""
637626
638 #: ../src/virt-viewer.c:697
627 #: ../src/virt-viewer.c:784
639628 #, c-format
640629 msgid "Virtual machine %s is not running"
641630 msgstr ""
642631
643 #: ../src/virt-viewer.c:720
632 #: ../src/virt-viewer.c:807
644633 msgid "Waiting for libvirt to start"
645634 msgstr "libvirt सुरू होण्याची वाट पहात आहे"
646635
647 #: ../src/virt-viewer.c:724
636 #: ../src/virt-viewer.c:811
648637 msgid "Finding guest domain"
649638 msgstr "अतिथी डोमैन शोधत आहे"
650639
651 #: ../src/virt-viewer.c:728
640 #: ../src/virt-viewer.c:815
652641 msgid "Waiting for guest domain to be created"
653642 msgstr "अतिथी डोमैन निर्माण करण्यास वाट पहात आहे"
654643
655 #: ../src/virt-viewer.c:750
644 #: ../src/virt-viewer.c:837
656645 msgid "Checking guest domain status"
657646 msgstr "अतिथी डोमैन स्थिती तपासत आहे"
658647
659 #: ../src/virt-viewer.c:753
648 #: ../src/virt-viewer.c:840
660649 msgid "Cannot get guest state"
661650 msgstr ""
662651
663 #: ../src/virt-viewer.c:759
652 #: ../src/virt-viewer.c:846
664653 msgid "Waiting for guest domain to start"
665654 msgstr "अतिथी डोमैनला पुनःसुरू करण्यास वाट पहात आहे"
666655
667 #: ../src/virt-viewer.c:863
656 #: ../src/virt-viewer.c:950
668657 #, c-format
669658 msgid "Unable to connect to libvirt with URI: %s."
670659 msgstr ""
671660
672 #: ../src/virt-viewer.c:864
661 #: ../src/virt-viewer.c:951
673662 msgid "[none]"
674663 msgstr "[काहिच नाही]"
675664
676 #: ../src/virt-viewer.c:871
665 #: ../src/virt-viewer.c:958
677666 msgid "Authentication failed."
678667 msgstr ""
679668
680 #: ../src/virt-viewer.c:931
669 #: ../src/virt-viewer.c:1018
681670 msgid "Failed to connect: "
682671 msgstr ""
683672
688677 #. * indent-tabs-mode: nil
689678 #. * End:
690679 #.
691 #: ../src/virt-viewer.xml.h:1
680 #: ../src/resources/ui/virt-viewer.ui.h:1
692681 msgid "_File"
693682 msgstr "फाइल (_F)"
694683
695 #: ../src/virt-viewer.xml.h:4
684 #: ../src/resources/ui/virt-viewer.ui.h:2
685 msgid "_Screenshot"
686 msgstr ""
687
688 #: ../src/resources/ui/virt-viewer.ui.h:3
689 msgid "_USB device selection"
690 msgstr ""
691
692 #: ../src/resources/ui/virt-viewer.ui.h:4
696693 msgid "Smartcard insertion"
697694 msgstr "स्मार्टकार्ड अंतर्भुत करणे"
698695
699 #: ../src/virt-viewer.xml.h:5
696 #: ../src/resources/ui/virt-viewer.ui.h:5
700697 msgid "Smartcard removal"
701698 msgstr "स्मार्टकार्ड काढून टाकणे"
702699
703 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
704 msgid "Preferences"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:7
700 #: ../src/resources/ui/virt-viewer.ui.h:6
701 msgid "_Preferences"
702 msgstr ""
703
704 #: ../src/resources/ui/virt-viewer.ui.h:7
705 msgid "_Quit"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:8
708709 msgid "_View"
709710 msgstr "अवलोकन (_V)"
710711
711 #: ../src/virt-viewer.xml.h:8
712 msgid "Full screen"
713 msgstr "पडदाभर"
714
715 #: ../src/virt-viewer.xml.h:9
712 #: ../src/resources/ui/virt-viewer.ui.h:9
713 msgid "_Full screen"
714 msgstr ""
715
716 #: ../src/resources/ui/virt-viewer.ui.h:10
716717 msgid "_Zoom"
717718 msgstr "झूम करा (_Z)"
718719
719 #: ../src/virt-viewer.xml.h:10
720 msgid "Displays"
721 msgstr "डिस्प्लेज्"
722
723 #: ../src/virt-viewer.xml.h:11
720 #: ../src/resources/ui/virt-viewer.ui.h:11
721 msgid "Zoom _In"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:12
725 msgid "Zoom _Out"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:13
729 msgid "_Normal Size"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:14
733 msgid "_Displays"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:15
724737 msgid "Release cursor"
725738 msgstr "रिलिज् कर्सर"
726739
727 #: ../src/virt-viewer.xml.h:12
740 #: ../src/resources/ui/virt-viewer.ui.h:16
728741 msgid "_Send key"
729742 msgstr "सेंड कि (_S)"
730743
731 #: ../src/virt-viewer.xml.h:13
744 #: ../src/resources/ui/virt-viewer.ui.h:17
732745 msgid "_Help"
733746 msgstr "मदत (_H)"
734747
735 #: ../src/virt-viewer.xml.h:14
748 #: ../src/resources/ui/virt-viewer.ui.h:18
736749 msgid "_Guest Details"
737750 msgstr ""
738751
739 #: ../src/virt-viewer-guest-details.xml.h:1
752 #: ../src/resources/ui/virt-viewer.ui.h:19
753 msgid "_About"
754 msgstr ""
755
756 #: ../src/resources/ui/virt-viewer.ui.h:20
757 msgid "_Change CD"
758 msgstr ""
759
760 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
740761 msgid "Guest Details"
741762 msgstr ""
742763
743 #: ../src/virt-viewer-guest-details.xml.h:2
764 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
744765 msgid "Name:"
745766 msgstr ""
746767
747 #: ../src/virt-viewer-guest-details.xml.h:3
768 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
748769 msgid "GUID:"
749770 msgstr ""
750771
751 #: ../src/virt-viewer-vm-connection.xml.h:1
772 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
752773 msgid "Choose a virtual machine"
753774 msgstr ""
754775
755 #: ../src/virt-viewer-vm-connection.xml.h:2
776 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
756777 msgid "Name"
757778 msgstr ""
758779
759 #: ../src/virt-viewer-vm-connection.xml.h:3
780 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
760781 msgid "Available virtual machines"
761782 msgstr ""
762783
763 #: ../src/virt-viewer-preferences.xml.h:2
784 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
785 msgid "Preferences"
786 msgstr ""
787
788 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
764789 msgid "Folder sharing"
765790 msgstr ""
766791
767 #: ../src/virt-viewer-preferences.xml.h:3
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
768793 msgid "Share folder"
769794 msgstr ""
770795
771 #: ../src/virt-viewer-preferences.xml.h:4
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
772797 msgid "Read-only"
773798 msgstr ""
774799
775 #: ../src/virt-viewer-preferences.xml.h:5
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
776801 msgid "Spice"
777802 msgstr ""
+343
-316
po/ms.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/nb.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/virt-"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
25 msgstr ""
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
2438 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Virt-Viewer connection file"
3246 msgstr ""
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr ""
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr ""
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr ""
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr ""
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr ""
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr ""
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr ""
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr ""
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr ""
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr ""
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "Vis versjonsinformasjon"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr ""
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr "Åpne tilkobling med Spice-kontroll kommunikasjon"
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101
102 #: ../src/remote-viewer-main.c:149
103 #, c-format
104 msgid "Error: extra arguments given while using Spice controller\n"
105 msgstr ""
106
107 #: ../src/remote-viewer-main.c:156
108 #, c-format
109 msgid "Error: can't handle multiple URIs\n"
110 msgstr ""
111
112 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11382 msgid "Failed to initiate connection"
11483 msgstr "Klarte ikke å sette opp tilkobling"
11584
116 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
11786 msgid "Display disabled by controller"
11887 msgstr ""
11988
120 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12190 #, c-format
12291 msgid "Controller connection failed: %s"
12392 msgstr ""
12493
125 #: ../src/remote-viewer.c:755
126 msgid "_Change CD"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13095 msgid "failed to parse ovirt uri"
13196 msgstr ""
13297
133 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13499 msgid "Authentication was cancelled"
135100 msgstr ""
136101
137 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
138103 #, c-format
139104 msgid "oVirt VM %s is not running"
140105 msgstr ""
141106
142 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
143108 #, c-format
144109 msgid "oVirt VM %s has no display"
145110 msgstr ""
146111
147 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
148113 #, c-format
149114 msgid "oVirt VM %s has no host information"
150115 msgstr ""
151116
152 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
153118 #, c-format
154119 msgid "oVirt VM %s has unknown display type: %d"
155120 msgstr ""
156121
157 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
158123 msgid "Setting up Spice session..."
159124 msgstr "Setter opp en Spice-økt…"
160125
161 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
162127 msgid "No connection was chosen"
163128 msgstr ""
164129
165 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
166131 #, c-format
167132 msgid "Invalid file %s: "
168133 msgstr ""
169134
170 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
171136 msgid "Cannot determine the connection type from URI"
172137 msgstr "Kan ikke bestemme tilkoblingstype fra URI"
173138
174 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
175140 msgid "Couldn't open oVirt session: "
176141 msgstr ""
177142
182147 #. * indent-tabs-mode: nil
183148 #. * End:
184149 #.
185 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
186151 msgid "Connection details"
187152 msgstr ""
188153
189 #: ../src/remote-viewer-connect.xml.h:2
190 msgid "Connection Address"
191 msgstr ""
192
193 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
194159 msgid "For example, spice://foo.example.org:5900"
195160 msgstr ""
196161
197 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
198163 msgid "Recent connections"
199164 msgstr ""
200165
201 #: ../src/remote-viewer-connect.xml.h:5
202 msgid "Cancel"
203 msgstr ""
204
205 #: ../src/remote-viewer-connect.xml.h:6
206 msgid "Connect"
207 msgstr ""
208
209 #: ../src/virt-viewer-about.xml.h:1
210 msgid "About Glade"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
214182 msgid ""
215183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216184 "Copyright (C) 2007-2014 Red Hat, Inc."
217185 msgstr ""
218186
219 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
220188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221189 msgstr ""
222190
223 #: ../src/virt-viewer-about.xml.h:5
191 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224192 msgid "virt-manager.org"
225193 msgstr ""
226194
227 #: ../src/virt-viewer-about.xml.h:6
195 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228196 msgid ""
229197 "This program is free software; you can redistribute it and/or modify\n"
230198 "it under the terms of the GNU General Public License as published by\n"
241209 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
242210 msgstr ""
243211
244 #: ../src/virt-viewer-about.xml.h:20
212 #: ../src/resources/ui/virt-viewer-about.ui.h:20
245213 msgid "The Fedora Translation Team"
246214 msgstr ""
247215
248 #: ../src/virt-viewer-app.c:526
216 #: ../src/virt-viewer-app.c:458
249217 msgid "Do you want to close the session?"
250218 msgstr ""
251219
252 #: ../src/virt-viewer-app.c:528
220 #: ../src/virt-viewer-app.c:460
253221 msgid "Do not ask me again"
254222 msgstr ""
255223
256 #: ../src/virt-viewer-app.c:1008
224 #: ../src/virt-viewer-app.c:948
257225 #, c-format
258226 msgid "Waiting for display %d..."
259227 msgstr "Venter på skjerm %d…"
260228
261 #: ../src/virt-viewer-app.c:1117
229 #: ../src/virt-viewer-app.c:1055
262230 #, c-format
263231 msgid "Unsupported graphic type '%s'"
264232 msgstr ""
265233
266 #: ../src/virt-viewer-app.c:1200
234 #: ../src/virt-viewer-app.c:1138
267235 msgid "Connect to ssh failed."
268236 msgstr "Tilkobling til SSH feilet."
269237
270 #: ../src/virt-viewer-app.c:1202
238 #: ../src/virt-viewer-app.c:1140
271239 msgid "Can't connect to channel, SSH only supported."
272240 msgstr ""
273241
242 #: ../src/virt-viewer-app.c:1152
243 msgid "Connect to channel unsupported."
244 msgstr ""
245
274246 #: ../src/virt-viewer-app.c:1214
275 msgid "Connect to channel unsupported."
276 msgstr ""
277
278 #: ../src/virt-viewer-app.c:1276
279247 msgid "Display can only be attached through libvirt with --attach"
280248 msgstr ""
281249
282 #: ../src/virt-viewer-app.c:1299
250 #: ../src/virt-viewer-app.c:1237
283251 msgid "Connecting to graphic server"
284252 msgstr ""
285253
286 #: ../src/virt-viewer-app.c:1398
254 #: ../src/virt-viewer-app.c:1336
287255 msgid "Guest domain has shutdown"
288256 msgstr ""
289257
290 #: ../src/virt-viewer-app.c:1459
258 #: ../src/virt-viewer-app.c:1397
291259 msgid "Connected to graphic server"
292260 msgstr ""
293261
294 #: ../src/virt-viewer-app.c:1486
262 #: ../src/virt-viewer-app.c:1424
295263 #, c-format
296264 msgid "Unable to connect to the graphic server %s"
297265 msgstr ""
298266
299 #: ../src/virt-viewer-app.c:1512
267 #: ../src/virt-viewer-app.c:1450
300268 #, c-format
301269 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
302270 msgstr ""
303271
304 #: ../src/virt-viewer-app.c:1525
272 #: ../src/virt-viewer-app.c:1463
305273 #, c-format
306274 msgid "Unable to authenticate with remote desktop server: %s"
307275 msgstr ""
308276
309 #: ../src/virt-viewer-app.c:1533
277 #: ../src/virt-viewer-app.c:1471
310278 #, c-format
311279 msgid "USB redirection error: %s"
312280 msgstr ""
313281
314 #: ../src/virt-viewer-app.c:1786
282 #: ../src/virt-viewer-app.c:1805
315283 #, c-format
316284 msgid "Zoom level must be within %d-%d\n"
317285 msgstr ""
318286
319 #: ../src/virt-viewer-app.c:2296
320 #, c-format
321 msgid "Display %d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2552
287 #: ../src/virt-viewer-app.c:1858
288 #, c-format
289 msgid "%s\n"
290 msgstr ""
291
292 #: ../src/virt-viewer-app.c:1868
293 #, c-format
294 msgid "%s version %s"
295 msgstr ""
296
297 #: ../src/virt-viewer-app.c:2292
298 #, c-format
299 msgid "Display _%d"
300 msgstr ""
301
302 #: ../src/virt-viewer-app.c:2548
325303 #, c-format
326304 msgid "Invalid kiosk-quit argument: %s"
327305 msgstr ""
306
307 #: ../src/virt-viewer-app.c:2559
308 msgid "Display version information"
309 msgstr "Vis versjonsinformasjon"
328310
329311 #: ../src/virt-viewer-app.c:2561
330312 msgid "Zoom level of window, in percentage"
358340 msgid "Display debugging information"
359341 msgstr "Vis feilsøkingsinformasjon"
360342
361 #: ../src/virt-viewer-auth.c:88
343 #: ../src/virt-viewer-auth.c:89
362344 #, c-format
363345 msgid ""
364346 "Authentication is required for the %s connection to:\n"
367349 "\n"
368350 msgstr ""
369351
370 #: ../src/virt-viewer-auth.c:92
352 #: ../src/virt-viewer-auth.c:93
371353 #, c-format
372354 msgid "Authentication is required for the %s connection:\n"
373355 msgstr ""
379361 #. * indent-tabs-mode: nil
380362 #. * End:
381363 #.
382 #: ../src/virt-viewer-auth.xml.h:1
364 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
383365 msgid "Authentication required"
384366 msgstr ""
385367
386 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
368 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
369 msgid "_OK"
370 msgstr ""
371
372 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
373 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
387374 msgid "label"
388375 msgstr ""
389376
390 #: ../src/virt-viewer-auth.xml.h:3
377 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
391378 msgid "Password:"
392379 msgstr ""
393380
394 #: ../src/virt-viewer-auth.xml.h:4
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
395382 msgid "Username:"
396383 msgstr ""
397384
398 #: ../src/virt-viewer-auth.xml.h:5
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
399386 msgid "Show password"
400387 msgstr ""
401388
402 #: ../src/virt-viewer-display-vnc.c:133
389 #: ../src/virt-viewer-display-vnc.c:134
403390 msgid "VNC does not provide GUID"
404391 msgstr ""
405392
393 #: ../src/virt-viewer-file-transfer-dialog.c:152
394 msgid "Cancel"
395 msgstr ""
396
397 #: ../src/virt-viewer-file-transfer-dialog.c:163
398 msgid "File Transfers"
399 msgstr ""
400
406401 #: ../src/virt-viewer-main.c:38
407 #, c-format
408 msgid "%s version %s\n"
409 msgstr ""
410
411 #: ../src/virt-viewer-main.c:62
412 msgid "Direct connection with no automatic tunnels"
413 msgstr "Direkte kobling uten automatiske tuneller"
414
415 #: ../src/virt-viewer-main.c:64
416 msgid "Attach to the local display using libvirt"
417 msgstr ""
418
419 #: ../src/virt-viewer-main.c:66
420 msgid "Connect to hypervisor"
421 msgstr ""
422
423 #: ../src/virt-viewer-main.c:68
424 msgid "Wait for domain to start"
425 msgstr ""
426
427 #: ../src/virt-viewer-main.c:70
428 msgid "Reconnect to domain upon restart"
429 msgstr ""
430
431 #: ../src/virt-viewer-main.c:77
432402 msgid "Virt Viewer"
433403 msgstr ""
434404
435 #: ../src/virt-viewer-main.c:80
436 #, c-format
437 msgid "Run '%s --help' to see a full list of available command line options"
438 msgstr ""
439
440 #: ../src/virt-viewer-main.c:86
441 msgid "Virtual machine graphical console"
442 msgstr ""
443
444 #: ../src/virt-viewer-main.c:107
445 #, c-format
446 msgid ""
447 "\n"
448 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
449 "\n"
450 "%s\n"
451 "\n"
452 msgstr ""
453
454 #: ../src/virt-viewer-main.c:112
455 #, c-format
456 msgid ""
457 "\n"
458 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
459 "\n"
460 msgstr ""
461
462 #: ../src/virt-viewer-session-spice.c:694
405 #: ../src/virt-viewer-session-spice.c:705
463406 msgid "Invalid password"
464407 msgstr ""
465408
466409 #. Create the widgets
467 #: ../src/virt-viewer-session-spice.c:786
410 #: ../src/virt-viewer-session-spice.c:797
468411 msgid "Select USB devices for redirection"
469412 msgstr "Velg USB-enheter for omdirigering"
470413
471 #: ../src/virt-viewer-session-vnc.c:153
414 #: ../src/virt-viewer-session-spice.c:799
415 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
416 msgid "_Close"
417 msgstr ""
418
419 #: ../src/virt-viewer-session-vnc.c:156
472420 #, c-format
473421 msgid "Unsupported authentication type %d"
474422 msgstr ""
481429 msgid "No virtual machine was chosen"
482430 msgstr ""
483431
432 #: ../src/virt-viewer-window.c:534
433 msgid "Ctrl+Alt+_Del"
434 msgstr ""
435
436 #: ../src/virt-viewer-window.c:535
437 msgid "Ctrl+Alt+_Backspace"
438 msgstr ""
439
484440 #: ../src/virt-viewer-window.c:537
485 msgid "Ctrl+Alt+_Del"
441 msgid "Ctrl+Alt+F_1"
486442 msgstr ""
487443
488444 #: ../src/virt-viewer-window.c:538
489 msgid "Ctrl+Alt+_Backspace"
445 msgid "Ctrl+Alt+F_2"
446 msgstr ""
447
448 #: ../src/virt-viewer-window.c:539
449 msgid "Ctrl+Alt+F_3"
490450 msgstr ""
491451
492452 #: ../src/virt-viewer-window.c:540
493 msgid "Ctrl+Alt+F_1"
453 msgid "Ctrl+Alt+F_4"
494454 msgstr ""
495455
496456 #: ../src/virt-viewer-window.c:541
497 msgid "Ctrl+Alt+F_2"
457 msgid "Ctrl+Alt+F_5"
498458 msgstr ""
499459
500460 #: ../src/virt-viewer-window.c:542
501 msgid "Ctrl+Alt+F_3"
461 msgid "Ctrl+Alt+F_6"
502462 msgstr ""
503463
504464 #: ../src/virt-viewer-window.c:543
505 msgid "Ctrl+Alt+F_4"
465 msgid "Ctrl+Alt+F_7"
506466 msgstr ""
507467
508468 #: ../src/virt-viewer-window.c:544
509 msgid "Ctrl+Alt+F_5"
469 msgid "Ctrl+Alt+F_8"
510470 msgstr ""
511471
512472 #: ../src/virt-viewer-window.c:545
513 msgid "Ctrl+Alt+F_6"
473 msgid "Ctrl+Alt+F_9"
514474 msgstr ""
515475
516476 #: ../src/virt-viewer-window.c:546
517 msgid "Ctrl+Alt+F_7"
477 msgid "Ctrl+Alt+F1_0"
518478 msgstr ""
519479
520480 #: ../src/virt-viewer-window.c:547
521 msgid "Ctrl+Alt+F_8"
481 msgid "Ctrl+Alt+F11"
522482 msgstr ""
523483
524484 #: ../src/virt-viewer-window.c:548
525 msgid "Ctrl+Alt+F_9"
526 msgstr ""
527
528 #: ../src/virt-viewer-window.c:549
529 msgid "Ctrl+Alt+F1_0"
530 msgstr ""
531
532 #: ../src/virt-viewer-window.c:550
533 msgid "Ctrl+Alt+F11"
534 msgstr ""
535
536 #: ../src/virt-viewer-window.c:551
537485 msgid "Ctrl+Alt+F12"
538486 msgstr ""
539487
540 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
488 #: ../src/virt-viewer-window.c:919
489 msgid "_Save"
490 msgstr ""
491
492 #: ../src/virt-viewer-window.c:927
541493 msgid "Screenshot"
542494 msgstr ""
543495
544 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
496 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
545497 msgid "Unknown"
546498 msgstr ""
547499
548 #: ../src/virt-viewer-window.c:1062
500 #: ../src/virt-viewer-window.c:1071
549501 msgid "Disconnect"
550502 msgstr "Koble fra"
551503
552 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
553 #: ../src/virt-viewer.xml.h:3
504 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
554505 msgid "USB device selection"
555506 msgstr ""
556507
557 #: ../src/virt-viewer-window.c:1081
508 #: ../src/virt-viewer-window.c:1089
558509 msgid "Send key combination"
559510 msgstr ""
560511
561 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
512 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
562513 msgid "Leave fullscreen"
563514 msgstr "Forlat fullskjerm"
564515
565 #: ../src/virt-viewer-window.c:1173
516 #: ../src/virt-viewer-window.c:1175
566517 msgid "Ctrl+Alt"
567518 msgstr ""
568519
569 #: ../src/virt-viewer-window.c:1176
520 #: ../src/virt-viewer-window.c:1178
570521 #, c-format
571522 msgid "(Press %s to release pointer)"
572523 msgstr ""
575526 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
576527 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
577528 #.
578 #: ../src/virt-viewer-window.c:1187
529 #: ../src/virt-viewer-window.c:1189
579530 #, c-format
580531 msgid "%s%s%s - %s"
581532 msgstr "%s%s%s - %s"
582533
583534 #. translators: <space>
584 #: ../src/virt-viewer-window.c:1191
535 #: ../src/virt-viewer-window.c:1193
585536 msgid " "
586537 msgstr ""
587538
588 #: ../src/virt-viewer-file.c:825
539 #: ../src/virt-viewer-file.c:843
589540 #, c-format
590541 msgid ""
591542 "At least %s version %s is required to setup this connection, see %s for "
592543 "details"
593544 msgstr ""
594545
595 #: ../src/virt-viewer-file.c:833
546 #: ../src/virt-viewer-file.c:851
596547 #, c-format
597548 msgid "At least %s version %s is required to setup this connection"
598549 msgstr ""
599550
600 #: ../src/virt-viewer.c:163
551 #: ../src/virt-viewer.c:90
552 msgid "Direct connection with no automatic tunnels"
553 msgstr "Direkte kobling uten automatiske tuneller"
554
555 #: ../src/virt-viewer.c:92
556 msgid "Attach to the local display using libvirt"
557 msgstr ""
558
559 #: ../src/virt-viewer.c:94
560 msgid "Connect to hypervisor"
561 msgstr ""
562
563 #: ../src/virt-viewer.c:96
564 msgid "Wait for domain to start"
565 msgstr ""
566
567 #: ../src/virt-viewer.c:98
568 msgid "Reconnect to domain upon restart"
569 msgstr ""
570
571 #: ../src/virt-viewer.c:105
572 msgid "Virtual machine graphical console"
573 msgstr ""
574
575 #: ../src/virt-viewer.c:124
576 #, c-format
577 msgid ""
578 "\n"
579 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
580 "\n"
581 msgstr ""
582
583 #: ../src/virt-viewer.c:136
584 #, c-format
585 msgid ""
586 "\n"
587 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
588 "\n"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:250
601592 msgid "Waiting for guest domain to re-start"
602593 msgstr "Venter på at domene for gjest skal starte på nytt"
603594
604 #: ../src/virt-viewer.c:409
595 #: ../src/virt-viewer.c:496
605596 #, c-format
606597 msgid "Cannot determine the graphic type for the guest %s"
607598 msgstr "Kan ikke bestemme grafikktype for gjest %s"
608599
609 #: ../src/virt-viewer.c:448
600 #: ../src/virt-viewer.c:535
610601 #, c-format
611602 msgid "Cannot determine the host for the guest %s"
612603 msgstr "Kan ikke bestemme vert for gjest %s"
613604
614 #: ../src/virt-viewer.c:476
605 #: ../src/virt-viewer.c:563
615606 #, c-format
616607 msgid "Guest '%s' is not reachable"
617608 msgstr ""
618609
619 #: ../src/virt-viewer.c:697
610 #: ../src/virt-viewer.c:784
620611 #, c-format
621612 msgid "Virtual machine %s is not running"
622613 msgstr ""
623614
624 #: ../src/virt-viewer.c:720
615 #: ../src/virt-viewer.c:807
625616 msgid "Waiting for libvirt to start"
626617 msgstr ""
627618
628 #: ../src/virt-viewer.c:724
619 #: ../src/virt-viewer.c:811
629620 msgid "Finding guest domain"
630621 msgstr "Finner domene for gjest"
631622
632 #: ../src/virt-viewer.c:728
623 #: ../src/virt-viewer.c:815
633624 msgid "Waiting for guest domain to be created"
634625 msgstr ""
635626
636 #: ../src/virt-viewer.c:750
627 #: ../src/virt-viewer.c:837
637628 msgid "Checking guest domain status"
638629 msgstr ""
639630
640 #: ../src/virt-viewer.c:753
631 #: ../src/virt-viewer.c:840
641632 msgid "Cannot get guest state"
642633 msgstr ""
643634
644 #: ../src/virt-viewer.c:759
635 #: ../src/virt-viewer.c:846
645636 msgid "Waiting for guest domain to start"
646637 msgstr ""
647638
648 #: ../src/virt-viewer.c:863
639 #: ../src/virt-viewer.c:950
649640 #, c-format
650641 msgid "Unable to connect to libvirt with URI: %s."
651642 msgstr ""
652643
653 #: ../src/virt-viewer.c:864
644 #: ../src/virt-viewer.c:951
654645 msgid "[none]"
655646 msgstr ""
656647
657 #: ../src/virt-viewer.c:871
648 #: ../src/virt-viewer.c:958
658649 msgid "Authentication failed."
659650 msgstr ""
660651
661 #: ../src/virt-viewer.c:931
652 #: ../src/virt-viewer.c:1018
662653 msgid "Failed to connect: "
663654 msgstr ""
664655
669660 #. * indent-tabs-mode: nil
670661 #. * End:
671662 #.
672 #: ../src/virt-viewer.xml.h:1
663 #: ../src/resources/ui/virt-viewer.ui.h:1
673664 msgid "_File"
674665 msgstr ""
675666
676 #: ../src/virt-viewer.xml.h:4
667 #: ../src/resources/ui/virt-viewer.ui.h:2
668 msgid "_Screenshot"
669 msgstr ""
670
671 #: ../src/resources/ui/virt-viewer.ui.h:3
672 msgid "_USB device selection"
673 msgstr ""
674
675 #: ../src/resources/ui/virt-viewer.ui.h:4
677676 msgid "Smartcard insertion"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.xml.h:5
679 #: ../src/resources/ui/virt-viewer.ui.h:5
681680 msgid "Smartcard removal"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
683 #: ../src/resources/ui/virt-viewer.ui.h:6
684 msgid "_Preferences"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:7
688 msgid "_Quit"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:8
692 msgid "_View"
693 msgstr ""
694
695 #: ../src/resources/ui/virt-viewer.ui.h:9
696 msgid "_Full screen"
697 msgstr ""
698
699 #: ../src/resources/ui/virt-viewer.ui.h:10
700 msgid "_Zoom"
701 msgstr ""
702
703 #: ../src/resources/ui/virt-viewer.ui.h:11
704 msgid "Zoom _In"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:12
708 msgid "Zoom _Out"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:13
712 msgid "_Normal Size"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:14
716 msgid "_Displays"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:15
720 msgid "Release cursor"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:16
724 msgid "_Send key"
725 msgstr ""
726
727 #: ../src/resources/ui/virt-viewer.ui.h:17
728 msgid "_Help"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:18
732 msgid "_Guest Details"
733 msgstr ""
734
735 #: ../src/resources/ui/virt-viewer.ui.h:19
736 msgid "_About"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:20
740 msgid "_Change CD"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
744 msgid "Guest Details"
745 msgstr ""
746
747 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
748 msgid "Name:"
749 msgstr ""
750
751 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
752 msgid "GUID:"
753 msgstr ""
754
755 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
756 msgid "Choose a virtual machine"
757 msgstr ""
758
759 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
760 msgid "Name"
761 msgstr ""
762
763 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
764 msgid "Available virtual machines"
765 msgstr ""
766
767 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
685768 msgid "Preferences"
686769 msgstr ""
687770
688 #: ../src/virt-viewer.xml.h:7
689 msgid "_View"
690 msgstr ""
691
692 #: ../src/virt-viewer.xml.h:8
693 msgid "Full screen"
694 msgstr ""
695
696 #: ../src/virt-viewer.xml.h:9
697 msgid "_Zoom"
698 msgstr ""
699
700 #: ../src/virt-viewer.xml.h:10
701 msgid "Displays"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:11
705 msgid "Release cursor"
706 msgstr ""
707
708 #: ../src/virt-viewer.xml.h:12
709 msgid "_Send key"
710 msgstr ""
711
712 #: ../src/virt-viewer.xml.h:13
713 msgid "_Help"
714 msgstr ""
715
716 #: ../src/virt-viewer.xml.h:14
717 msgid "_Guest Details"
718 msgstr ""
719
720 #: ../src/virt-viewer-guest-details.xml.h:1
721 msgid "Guest Details"
722 msgstr ""
723
724 #: ../src/virt-viewer-guest-details.xml.h:2
725 msgid "Name:"
726 msgstr ""
727
728 #: ../src/virt-viewer-guest-details.xml.h:3
729 msgid "GUID:"
730 msgstr ""
731
732 #: ../src/virt-viewer-vm-connection.xml.h:1
733 msgid "Choose a virtual machine"
734 msgstr ""
735
736 #: ../src/virt-viewer-vm-connection.xml.h:2
737 msgid "Name"
738 msgstr ""
739
740 #: ../src/virt-viewer-vm-connection.xml.h:3
741 msgid "Available virtual machines"
742 msgstr ""
743
744 #: ../src/virt-viewer-preferences.xml.h:2
771 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
745772 msgid "Folder sharing"
746773 msgstr ""
747774
748 #: ../src/virt-viewer-preferences.xml.h:3
775 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
749776 msgid "Share folder"
750777 msgstr ""
751778
752 #: ../src/virt-viewer-preferences.xml.h:4
779 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
753780 msgid "Read-only"
754781 msgstr ""
755782
756 #: ../src/virt-viewer-preferences.xml.h:5
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
757784 msgid "Spice"
758785 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/ne.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-279
po/nl.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Dutch (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
2425 msgstr "Viewer op afstand"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
38 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
2741 msgid "Access remote desktops"
3145 msgid "Virt-Viewer connection file"
3246 msgstr "Virt-Viewer verbindingsbestand"
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr "Bron"
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr "De bron van de binding"
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr "Doel"
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr "Het doel van de binding"
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr "Bron eigenschap"
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr "De eigenschap van de bron om te binden"
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr "Doel eigenschap"
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr "De eigenschap van het doel om te binden"
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr "Vlaggen"
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr "De bindingsvlaggen"
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "Toon versie informatie"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr "Stel venstertitel in"
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr "Open verbinding met Spice controller communicatie"
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr "Viewer cliënt op afstand "
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101 "%s\n"
102 "Voer '%s --help' uit voor een volledige lijst met beschikbare commandoregel "
103 "opties\n"
104
105 #: ../src/remote-viewer-main.c:149
106 #, c-format
107 msgid "Error: extra arguments given while using Spice controller\n"
108 msgstr ""
109 "Fout: extra argumenten gegeven tijden het gebruik van de Spice controller\n"
110
111 #: ../src/remote-viewer-main.c:156
112 #, c-format
113 msgid "Error: can't handle multiple URIs\n"
114 msgstr "Fout: kan meerdere URI's niet verwerken\n"
115
116 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11782 msgid "Failed to initiate connection"
11883 msgstr "Verbinding initiëren mislukte"
11984
120 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
12186 msgid "Display disabled by controller"
12287 msgstr "Display uitgezet door controller"
12388
124 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12590 #, c-format
12691 msgid "Controller connection failed: %s"
12792 msgstr "Controller verbinding mislukte: %s"
12893
129 #: ../src/remote-viewer.c:755
130 msgid "_Change CD"
131 msgstr ""
132
133 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13495 msgid "failed to parse ovirt uri"
13596 msgstr ""
13697
137 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13899 msgid "Authentication was cancelled"
139100 msgstr ""
140101
141 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
142103 #, c-format
143104 msgid "oVirt VM %s is not running"
144105 msgstr ""
145106
146 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
147108 #, c-format
148109 msgid "oVirt VM %s has no display"
149110 msgstr ""
150111
151 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
152113 #, c-format
153114 msgid "oVirt VM %s has no host information"
154115 msgstr ""
155116
156 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
157118 #, c-format
158119 msgid "oVirt VM %s has unknown display type: %d"
159120 msgstr ""
160121
161 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
162123 msgid "Setting up Spice session..."
163124 msgstr "Spice sessie opzetten..."
164125
165 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
166127 msgid "No connection was chosen"
167128 msgstr ""
168129
169 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
170131 #, c-format
171132 msgid "Invalid file %s: "
172133 msgstr ""
173134
174 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
175136 msgid "Cannot determine the connection type from URI"
176137 msgstr "Kan het connectie type niet van URI bepalen"
177138
178 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
179140 msgid "Couldn't open oVirt session: "
180141 msgstr ""
181142
186147 #. * indent-tabs-mode: nil
187148 #. * End:
188149 #.
189 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
190151 msgid "Connection details"
191152 msgstr "Verbindingsdetails"
192153
193 #: ../src/remote-viewer-connect.xml.h:2
194 msgid "Connection Address"
195 msgstr ""
196
197 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
198159 msgid "For example, spice://foo.example.org:5900"
199160 msgstr "Bijvoorbeeld, spice://foo.example.org:5900"
200161
201 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
202163 msgid "Recent connections"
203164 msgstr ""
204165
205 #: ../src/remote-viewer-connect.xml.h:5
206 msgid "Cancel"
207 msgstr ""
208
209 #: ../src/remote-viewer-connect.xml.h:6
210 msgid "Connect"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:1
214 msgid "About Glade"
215 msgstr "Over Glade"
216
217 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
218182 msgid ""
219183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
220184 "Copyright (C) 2007-2014 Red Hat, Inc."
222186 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
223187 "Copyright (C) 2007-2014 Red Hat, Inc."
224188
225 #: ../src/virt-viewer-about.xml.h:4
189 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226190 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227191 msgstr ""
228192 "Een desktop op afstand cliënt gebouwd met GTK-VNC, SPICE-GTK en libvirt"
229193
230 #: ../src/virt-viewer-about.xml.h:5
194 #: ../src/resources/ui/virt-viewer-about.ui.h:5
231195 msgid "virt-manager.org"
232196 msgstr "virt-manager.org"
233197
234 #: ../src/virt-viewer-about.xml.h:6
198 #: ../src/resources/ui/virt-viewer-about.ui.h:6
235199 msgid ""
236200 "This program is free software; you can redistribute it and/or modify\n"
237201 "it under the terms of the GNU General Public License as published by\n"
261225 "along with this program; if not, write to the Free Software\n"
262226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
263227
264 #: ../src/virt-viewer-about.xml.h:20
228 #: ../src/resources/ui/virt-viewer-about.ui.h:20
265229 msgid "The Fedora Translation Team"
266230 msgstr "Het Fedora vertaal team"
267231
268 #: ../src/virt-viewer-app.c:526
232 #: ../src/virt-viewer-app.c:458
269233 msgid "Do you want to close the session?"
270234 msgstr "Wil je de sessie afsluiten?"
271235
272 #: ../src/virt-viewer-app.c:528
236 #: ../src/virt-viewer-app.c:460
273237 msgid "Do not ask me again"
274238 msgstr "Vraag me dit niet weer"
275239
276 #: ../src/virt-viewer-app.c:1008
240 #: ../src/virt-viewer-app.c:948
277241 #, c-format
278242 msgid "Waiting for display %d..."
279243 msgstr "Wachten op display %d..."
280244
281 #: ../src/virt-viewer-app.c:1117
245 #: ../src/virt-viewer-app.c:1055
282246 #, c-format
283247 msgid "Unsupported graphic type '%s'"
284248 msgstr ""
285249
286 #: ../src/virt-viewer-app.c:1200
250 #: ../src/virt-viewer-app.c:1138
287251 msgid "Connect to ssh failed."
288252 msgstr "Verbinden met ssh mislukte."
289253
290 #: ../src/virt-viewer-app.c:1202
254 #: ../src/virt-viewer-app.c:1140
291255 msgid "Can't connect to channel, SSH only supported."
292256 msgstr "Kan geen verbinding maken met kanaal, alleen SSH wordt ondersteund"
293257
294 #: ../src/virt-viewer-app.c:1214
258 #: ../src/virt-viewer-app.c:1152
295259 msgid "Connect to channel unsupported."
296260 msgstr "Verbinding maken met kanaal wordt niet ondersteund."
297261
298 #: ../src/virt-viewer-app.c:1276
262 #: ../src/virt-viewer-app.c:1214
299263 msgid "Display can only be attached through libvirt with --attach"
300264 msgstr ""
301265
302 #: ../src/virt-viewer-app.c:1299
266 #: ../src/virt-viewer-app.c:1237
303267 msgid "Connecting to graphic server"
304268 msgstr "Verbinding maken met grafische server"
305269
306 #: ../src/virt-viewer-app.c:1398
270 #: ../src/virt-viewer-app.c:1336
307271 msgid "Guest domain has shutdown"
308272 msgstr "Gast domein werd afgesloten"
309273
310 #: ../src/virt-viewer-app.c:1459
274 #: ../src/virt-viewer-app.c:1397
311275 msgid "Connected to graphic server"
312276 msgstr "Verbonden met grafische server"
313277
314 #: ../src/virt-viewer-app.c:1486
278 #: ../src/virt-viewer-app.c:1424
315279 #, c-format
316280 msgid "Unable to connect to the graphic server %s"
317281 msgstr "Ka niet verbinden met de grafische server %s"
318282
319 #: ../src/virt-viewer-app.c:1512
283 #: ../src/virt-viewer-app.c:1450
320284 #, c-format
321285 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
322286 msgstr ""
323287
324 #: ../src/virt-viewer-app.c:1525
288 #: ../src/virt-viewer-app.c:1463
325289 #, c-format
326290 msgid "Unable to authenticate with remote desktop server: %s"
327291 msgstr "Kon geen authenticatie verkrijgen met desktop server op afstand: %s"
328292
329 #: ../src/virt-viewer-app.c:1533
293 #: ../src/virt-viewer-app.c:1471
330294 #, c-format
331295 msgid "USB redirection error: %s"
332296 msgstr "USB omleidingsfout: %s"
333297
334 #: ../src/virt-viewer-app.c:1786
298 #: ../src/virt-viewer-app.c:1805
335299 #, c-format
336300 msgid "Zoom level must be within %d-%d\n"
337301 msgstr "Zoom niveau moet tussen %d-%d zijn\n"
338302
339 #: ../src/virt-viewer-app.c:2296
340 #, c-format
341 msgid "Display %d"
342 msgstr "Display %d"
343
344 #: ../src/virt-viewer-app.c:2552
303 #: ../src/virt-viewer-app.c:1858
304 #, c-format
305 msgid "%s\n"
306 msgstr ""
307
308 #: ../src/virt-viewer-app.c:1868
309 #, c-format
310 msgid "%s version %s"
311 msgstr ""
312
313 #: ../src/virt-viewer-app.c:2292
314 #, c-format
315 msgid "Display _%d"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:2548
345319 #, c-format
346320 msgid "Invalid kiosk-quit argument: %s"
347321 msgstr "Ongeldig kiosk-quit argument: %s"
322
323 #: ../src/virt-viewer-app.c:2559
324 msgid "Display version information"
325 msgstr "Toon versie informatie"
348326
349327 #: ../src/virt-viewer-app.c:2561
350328 msgid "Zoom level of window, in percentage"
380358 msgid "Display debugging information"
381359 msgstr "Toon debug informatie"
382360
383 #: ../src/virt-viewer-auth.c:88
361 #: ../src/virt-viewer-auth.c:89
384362 #, c-format
385363 msgid ""
386364 "Authentication is required for the %s connection to:\n"
389367 "\n"
390368 msgstr ""
391369
392 #: ../src/virt-viewer-auth.c:92
370 #: ../src/virt-viewer-auth.c:93
393371 #, c-format
394372 msgid "Authentication is required for the %s connection:\n"
395373 msgstr ""
401379 #. * indent-tabs-mode: nil
402380 #. * End:
403381 #.
404 #: ../src/virt-viewer-auth.xml.h:1
382 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
405383 msgid "Authentication required"
406384 msgstr "Authenticatie is vereist"
407385
408 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
386 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
387 msgid "_OK"
388 msgstr ""
389
390 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
391 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
409392 msgid "label"
410393 msgstr "label"
411394
412 #: ../src/virt-viewer-auth.xml.h:3
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
413396 msgid "Password:"
414397 msgstr "Wachtwoord:"
415398
416 #: ../src/virt-viewer-auth.xml.h:4
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
417400 msgid "Username:"
418401 msgstr "Gebruikersnaam:"
419402
420 #: ../src/virt-viewer-auth.xml.h:5
403 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
421404 msgid "Show password"
422405 msgstr ""
423406
424 #: ../src/virt-viewer-display-vnc.c:133
407 #: ../src/virt-viewer-display-vnc.c:134
425408 msgid "VNC does not provide GUID"
426409 msgstr ""
427410
411 #: ../src/virt-viewer-file-transfer-dialog.c:152
412 msgid "Cancel"
413 msgstr ""
414
415 #: ../src/virt-viewer-file-transfer-dialog.c:163
416 msgid "File Transfers"
417 msgstr ""
418
428419 #: ../src/virt-viewer-main.c:38
429 #, c-format
430 msgid "%s version %s\n"
431 msgstr "%s versie %s\n"
432
433 #: ../src/virt-viewer-main.c:62
434 msgid "Direct connection with no automatic tunnels"
435 msgstr "Directe verbinding zonder automatische tunnels"
436
437 #: ../src/virt-viewer-main.c:64
438 msgid "Attach to the local display using libvirt"
439 msgstr "Verbindt met het lokale display met libvirt "
440
441 #: ../src/virt-viewer-main.c:66
442 msgid "Connect to hypervisor"
443 msgstr "Verbindt met hypervisor"
444
445 #: ../src/virt-viewer-main.c:68
446 msgid "Wait for domain to start"
447 msgstr "Wacht tot het domein opgestart is"
448
449 #: ../src/virt-viewer-main.c:70
450 msgid "Reconnect to domain upon restart"
451 msgstr "Verbindt opnieuw met domein nadat het opgestart is"
452
453 #: ../src/virt-viewer-main.c:77
454420 msgid "Virt Viewer"
455421 msgstr "Virt viewer"
456422
457 #: ../src/virt-viewer-main.c:80
458 #, c-format
459 msgid "Run '%s --help' to see a full list of available command line options"
460 msgstr ""
461 "Voer '%s --help' uit voor een volledige lijst met beschikbare commandoregel "
462 "opties"
463
464 #: ../src/virt-viewer-main.c:86
465 msgid "Virtual machine graphical console"
466 msgstr "Virtuele machine grafische console"
467
468 #: ../src/virt-viewer-main.c:107
469 #, c-format
470 msgid ""
471 "\n"
472 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
473 "\n"
474 "%s\n"
475 "\n"
476 msgstr ""
477
478 #: ../src/virt-viewer-main.c:112
479 #, c-format
480 msgid ""
481 "\n"
482 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
483 "\n"
484 msgstr ""
485
486 #: ../src/virt-viewer-session-spice.c:694
423 #: ../src/virt-viewer-session-spice.c:705
487424 msgid "Invalid password"
488425 msgstr ""
489426
490427 #. Create the widgets
491 #: ../src/virt-viewer-session-spice.c:786
428 #: ../src/virt-viewer-session-spice.c:797
492429 msgid "Select USB devices for redirection"
493430 msgstr "Selecteer USB apparaten voor omleiding"
494431
495 #: ../src/virt-viewer-session-vnc.c:153
432 #: ../src/virt-viewer-session-spice.c:799
433 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
434 msgid "_Close"
435 msgstr ""
436
437 #: ../src/virt-viewer-session-vnc.c:156
496438 #, c-format
497439 msgid "Unsupported authentication type %d"
498440 msgstr "Niet-ondersteund authenticatie type %d"
505447 msgid "No virtual machine was chosen"
506448 msgstr ""
507449
508 #: ../src/virt-viewer-window.c:537
450 #: ../src/virt-viewer-window.c:534
509451 msgid "Ctrl+Alt+_Del"
510452 msgstr "Ctrl+Alt+_Del"
511453
512 #: ../src/virt-viewer-window.c:538
454 #: ../src/virt-viewer-window.c:535
513455 msgid "Ctrl+Alt+_Backspace"
514456 msgstr "Ctrl+Alt+_Backspace"
515457
516 #: ../src/virt-viewer-window.c:540
458 #: ../src/virt-viewer-window.c:537
517459 msgid "Ctrl+Alt+F_1"
518460 msgstr "Ctrl+Alt+F_1"
519461
520 #: ../src/virt-viewer-window.c:541
462 #: ../src/virt-viewer-window.c:538
521463 msgid "Ctrl+Alt+F_2"
522464 msgstr "Ctrl+Alt+F_2"
523465
524 #: ../src/virt-viewer-window.c:542
466 #: ../src/virt-viewer-window.c:539
525467 msgid "Ctrl+Alt+F_3"
526468 msgstr "Ctrl+Alt+F_3"
527469
528 #: ../src/virt-viewer-window.c:543
470 #: ../src/virt-viewer-window.c:540
529471 msgid "Ctrl+Alt+F_4"
530472 msgstr "Ctrl+Alt+F_4"
531473
532 #: ../src/virt-viewer-window.c:544
474 #: ../src/virt-viewer-window.c:541
533475 msgid "Ctrl+Alt+F_5"
534476 msgstr "Ctrl+Alt+F_5"
535477
536 #: ../src/virt-viewer-window.c:545
478 #: ../src/virt-viewer-window.c:542
537479 msgid "Ctrl+Alt+F_6"
538480 msgstr "Ctrl+Alt+F_6"
539481
540 #: ../src/virt-viewer-window.c:546
482 #: ../src/virt-viewer-window.c:543
541483 msgid "Ctrl+Alt+F_7"
542484 msgstr "Ctrl+Alt+F_7"
543485
544 #: ../src/virt-viewer-window.c:547
486 #: ../src/virt-viewer-window.c:544
545487 msgid "Ctrl+Alt+F_8"
546488 msgstr "Ctrl+Alt+F_8"
547489
548 #: ../src/virt-viewer-window.c:548
490 #: ../src/virt-viewer-window.c:545
549491 msgid "Ctrl+Alt+F_9"
550492 msgstr "Ctrl+Alt+F_9"
551493
552 #: ../src/virt-viewer-window.c:549
494 #: ../src/virt-viewer-window.c:546
553495 msgid "Ctrl+Alt+F1_0"
554496 msgstr "Ctrl+Alt+F1_0"
555497
556 #: ../src/virt-viewer-window.c:550
498 #: ../src/virt-viewer-window.c:547
557499 msgid "Ctrl+Alt+F11"
558500 msgstr "Ctrl+Alt+F11"
559501
560 #: ../src/virt-viewer-window.c:551
502 #: ../src/virt-viewer-window.c:548
561503 msgid "Ctrl+Alt+F12"
562504 msgstr "Ctrl+Alt+F12"
563505
564 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
506 #: ../src/virt-viewer-window.c:919
507 msgid "_Save"
508 msgstr ""
509
510 #: ../src/virt-viewer-window.c:927
565511 msgid "Screenshot"
566512 msgstr "Schermafdruk"
567513
568 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
514 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
569515 msgid "Unknown"
570516 msgstr ""
571517
572 #: ../src/virt-viewer-window.c:1062
518 #: ../src/virt-viewer-window.c:1071
573519 msgid "Disconnect"
574520 msgstr "Verbinding verbreken"
575521
576 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
577 #: ../src/virt-viewer.xml.h:3
522 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
578523 msgid "USB device selection"
579524 msgstr "USB apparaat selectie"
580525
581 #: ../src/virt-viewer-window.c:1081
526 #: ../src/virt-viewer-window.c:1089
582527 msgid "Send key combination"
583528 msgstr "Stuur sleutel combinatie"
584529
585 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
530 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
586531 msgid "Leave fullscreen"
587532 msgstr "Verlaat volledig scherm"
588533
589 #: ../src/virt-viewer-window.c:1173
534 #: ../src/virt-viewer-window.c:1175
590535 msgid "Ctrl+Alt"
591536 msgstr "Ctrl+Alt"
592537
593 #: ../src/virt-viewer-window.c:1176
538 #: ../src/virt-viewer-window.c:1178
594539 #, c-format
595540 msgid "(Press %s to release pointer)"
596541 msgstr "(Druk op %s om wijzer vrij te geven)"
599544 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600545 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601546 #.
602 #: ../src/virt-viewer-window.c:1187
547 #: ../src/virt-viewer-window.c:1189
603548 #, c-format
604549 msgid "%s%s%s - %s"
605550 msgstr "%s%s%s - %s"
606551
607552 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1191
553 #: ../src/virt-viewer-window.c:1193
609554 msgid " "
610555 msgstr " "
611556
612 #: ../src/virt-viewer-file.c:825
557 #: ../src/virt-viewer-file.c:843
613558 #, c-format
614559 msgid ""
615560 "At least %s version %s is required to setup this connection, see %s for "
616561 "details"
617562 msgstr ""
618563
619 #: ../src/virt-viewer-file.c:833
564 #: ../src/virt-viewer-file.c:851
620565 #, c-format
621566 msgid "At least %s version %s is required to setup this connection"
622567 msgstr "%s versie %s is tenminste vereist om deze verbinding in te stellen"
623568
624 #: ../src/virt-viewer.c:163
569 #: ../src/virt-viewer.c:90
570 msgid "Direct connection with no automatic tunnels"
571 msgstr "Directe verbinding zonder automatische tunnels"
572
573 #: ../src/virt-viewer.c:92
574 msgid "Attach to the local display using libvirt"
575 msgstr "Verbindt met het lokale display met libvirt "
576
577 #: ../src/virt-viewer.c:94
578 msgid "Connect to hypervisor"
579 msgstr "Verbindt met hypervisor"
580
581 #: ../src/virt-viewer.c:96
582 msgid "Wait for domain to start"
583 msgstr "Wacht tot het domein opgestart is"
584
585 #: ../src/virt-viewer.c:98
586 msgid "Reconnect to domain upon restart"
587 msgstr "Verbindt opnieuw met domein nadat het opgestart is"
588
589 #: ../src/virt-viewer.c:105
590 msgid "Virtual machine graphical console"
591 msgstr "Virtuele machine grafische console"
592
593 #: ../src/virt-viewer.c:124
594 #, c-format
595 msgid ""
596 "\n"
597 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
598 "\n"
599 msgstr ""
600
601 #: ../src/virt-viewer.c:136
602 #, c-format
603 msgid ""
604 "\n"
605 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
606 "\n"
607 msgstr ""
608
609 #: ../src/virt-viewer.c:250
625610 msgid "Waiting for guest domain to re-start"
626611 msgstr "Wacht tot gast domein opnieuw opgestart wordt"
627612
628 #: ../src/virt-viewer.c:409
613 #: ../src/virt-viewer.c:496
629614 #, c-format
630615 msgid "Cannot determine the graphic type for the guest %s"
631616 msgstr "Kan het grafische type voor de gast %s niet bepalen"
632617
633 #: ../src/virt-viewer.c:448
618 #: ../src/virt-viewer.c:535
634619 #, c-format
635620 msgid "Cannot determine the host for the guest %s"
636621 msgstr "Kan de host voor de gast %s niet bepalen"
637622
638 #: ../src/virt-viewer.c:476
623 #: ../src/virt-viewer.c:563
639624 #, c-format
640625 msgid "Guest '%s' is not reachable"
641626 msgstr ""
642627
643 #: ../src/virt-viewer.c:697
628 #: ../src/virt-viewer.c:784
644629 #, c-format
645630 msgid "Virtual machine %s is not running"
646631 msgstr ""
647632
648 #: ../src/virt-viewer.c:720
633 #: ../src/virt-viewer.c:807
649634 msgid "Waiting for libvirt to start"
650635 msgstr "Wacht op het opstarten van libvirt"
651636
652 #: ../src/virt-viewer.c:724
637 #: ../src/virt-viewer.c:811
653638 msgid "Finding guest domain"
654639 msgstr "Zoek naar gast domein"
655640
656 #: ../src/virt-viewer.c:728
641 #: ../src/virt-viewer.c:815
657642 msgid "Waiting for guest domain to be created"
658643 msgstr "Wacht tot gast domein aangemaakt is"
659644
660 #: ../src/virt-viewer.c:750
645 #: ../src/virt-viewer.c:837
661646 msgid "Checking guest domain status"
662647 msgstr "Controleer gast domein status"
663648
664 #: ../src/virt-viewer.c:753
649 #: ../src/virt-viewer.c:840
665650 msgid "Cannot get guest state"
666651 msgstr ""
667652
668 #: ../src/virt-viewer.c:759
653 #: ../src/virt-viewer.c:846
669654 msgid "Waiting for guest domain to start"
670655 msgstr "Wacht tot gast domein gestart wordt"
671656
672 #: ../src/virt-viewer.c:863
657 #: ../src/virt-viewer.c:950
673658 #, c-format
674659 msgid "Unable to connect to libvirt with URI: %s."
675660 msgstr ""
676661
677 #: ../src/virt-viewer.c:864
662 #: ../src/virt-viewer.c:951
678663 msgid "[none]"
679664 msgstr "[geen]"
680665
681 #: ../src/virt-viewer.c:871
666 #: ../src/virt-viewer.c:958
682667 msgid "Authentication failed."
683668 msgstr ""
684669
685 #: ../src/virt-viewer.c:931
670 #: ../src/virt-viewer.c:1018
686671 msgid "Failed to connect: "
687672 msgstr ""
688673
693678 #. * indent-tabs-mode: nil
694679 #. * End:
695680 #.
696 #: ../src/virt-viewer.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:1
697682 msgid "_File"
698683 msgstr "_Bestand"
699684
700 #: ../src/virt-viewer.xml.h:4
685 #: ../src/resources/ui/virt-viewer.ui.h:2
686 msgid "_Screenshot"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:3
690 msgid "_USB device selection"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:4
701694 msgid "Smartcard insertion"
702695 msgstr "Breng smartcard in"
703696
704 #: ../src/virt-viewer.xml.h:5
697 #: ../src/resources/ui/virt-viewer.ui.h:5
705698 msgid "Smartcard removal"
706699 msgstr "Verwijder Smartcard"
707700
708 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
709 msgid "Preferences"
710 msgstr ""
711
712 #: ../src/virt-viewer.xml.h:7
701 #: ../src/resources/ui/virt-viewer.ui.h:6
702 msgid "_Preferences"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:7
706 msgid "_Quit"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:8
713710 msgid "_View"
714711 msgstr "_View"
715712
716 #: ../src/virt-viewer.xml.h:8
717 msgid "Full screen"
718 msgstr "Volledig scherm"
719
720 #: ../src/virt-viewer.xml.h:9
713 #: ../src/resources/ui/virt-viewer.ui.h:9
714 msgid "_Full screen"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:10
721718 msgid "_Zoom"
722719 msgstr "_Zoom"
723720
724 #: ../src/virt-viewer.xml.h:10
725 msgid "Displays"
726 msgstr "Displays"
727
728 #: ../src/virt-viewer.xml.h:11
721 #: ../src/resources/ui/virt-viewer.ui.h:11
722 msgid "Zoom _In"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:12
726 msgid "Zoom _Out"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:13
730 msgid "_Normal Size"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:14
734 msgid "_Displays"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:15
729738 msgid "Release cursor"
730739 msgstr "Geef cursor vrij"
731740
732 #: ../src/virt-viewer.xml.h:12
741 #: ../src/resources/ui/virt-viewer.ui.h:16
733742 msgid "_Send key"
734743 msgstr "_Stuur sleutel"
735744
736 #: ../src/virt-viewer.xml.h:13
745 #: ../src/resources/ui/virt-viewer.ui.h:17
737746 msgid "_Help"
738747 msgstr "_Hulp"
739748
740 #: ../src/virt-viewer.xml.h:14
749 #: ../src/resources/ui/virt-viewer.ui.h:18
741750 msgid "_Guest Details"
742751 msgstr ""
743752
744 #: ../src/virt-viewer-guest-details.xml.h:1
753 #: ../src/resources/ui/virt-viewer.ui.h:19
754 msgid "_About"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer.ui.h:20
758 msgid "_Change CD"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
745762 msgid "Guest Details"
746763 msgstr ""
747764
748 #: ../src/virt-viewer-guest-details.xml.h:2
765 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
749766 msgid "Name:"
750767 msgstr ""
751768
752 #: ../src/virt-viewer-guest-details.xml.h:3
769 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
753770 msgid "GUID:"
754771 msgstr ""
755772
756 #: ../src/virt-viewer-vm-connection.xml.h:1
773 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
757774 msgid "Choose a virtual machine"
758775 msgstr ""
759776
760 #: ../src/virt-viewer-vm-connection.xml.h:2
777 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
761778 msgid "Name"
762779 msgstr ""
763780
764 #: ../src/virt-viewer-vm-connection.xml.h:3
781 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
765782 msgid "Available virtual machines"
766783 msgstr ""
767784
768 #: ../src/virt-viewer-preferences.xml.h:2
785 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
786 msgid "Preferences"
787 msgstr ""
788
789 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
769790 msgid "Folder sharing"
770791 msgstr ""
771792
772 #: ../src/virt-viewer-preferences.xml.h:3
793 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
773794 msgid "Share folder"
774795 msgstr ""
775796
776 #: ../src/virt-viewer-preferences.xml.h:4
797 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
777798 msgid "Read-only"
778799 msgstr ""
779800
780 #: ../src/virt-viewer-preferences.xml.h:5
801 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
781802 msgid "Spice"
782803 msgstr ""
+343
-316
po/nn.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+300
-276
po/or.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Oriya (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
2425 msgstr "ସୁଦୂର ପ୍ରଦର୍ଶିକା"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
38 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
2741 msgid "Access remote desktops"
3145 msgid "Virt-Viewer connection file"
3246 msgstr "Virt-Viewer ସଂଯୋଗ ଫାଇଲ"
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr "ମୂଳ"
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr "ବନ୍ଧନର ଉତ୍ସ"
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr "ଲକ୍ଷ୍ଯ"
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr "ବନ୍ଧନର ଲକ୍ଷ୍ଯ"
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr "ଉତ୍ସ ଗୁଣଧର୍ମ"
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr "ବାନ୍ଧିବା ପାଇଁ ଉତ୍ସରେ ଥିବା ଗୁଣଧର୍ମ"
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr "ଲକ୍ଷ୍ଯର ଗୁଣଧର୍ମ"
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr "ବାନ୍ଧିବା ପାଇଁ ଲକ୍ଷ୍ୟର ଗୁଣଧର୍ମ"
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr "ପତାକାଗୁଡିକ"
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr "ବନ୍ଧନ ପତାକାଗୁଡ଼ିକ"
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "ସଂସ୍କରଣ ସୂଚନା ଦେଖାନ୍ତୁ"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr "ୱିଣ୍ଡୋ ଶୀର୍ଷକ ସେଟ କରନ୍ତୁ"
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr "ସ୍ପାଇସ ନିୟନ୍ତ୍ରକ ଯୋଗାଯୋଗ ମାଧ୍ଯମରେ ସଂଯୋଗକୁ ଖୋଲନ୍ତୁ"
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101 "%s\n"
102 "ଉପଲବ୍ଧ ପାଠ୍ଯ ନିର୍ଦ୍ଦେଶ ବିକଳ୍ପର ସଂପୂର୍ଣ୍ଣ ତାଲିକା ଦେଖିବା ପାଇଁ '%s --help' କୁ ଚଳାନ୍ତୁ\n"
103
104 #: ../src/remote-viewer-main.c:149
105 #, c-format
106 msgid "Error: extra arguments given while using Spice controller\n"
107 msgstr ""
108 "ତ୍ରୁଟି: ଅତିରିକ୍ତ ସ୍ୱତନ୍ତ୍ରଚରଗୁଡ଼ିକ ଦିଆଯାଇଥାଏ ଯେତେବେଳେ ସ୍ପାଇସ ନିୟନ୍ତ୍ରକ ବ୍ୟବହାର କରାଯାଇଥାଏ\n"
109
110 #: ../src/remote-viewer-main.c:156
111 #, c-format
112 msgid "Error: can't handle multiple URIs\n"
113 msgstr "ତ୍ରୁଟି: ଏକାଧିକ URI ଗୁଡ଼ିକୁ ନିୟନ୍ତ୍ରଣ କରିପାରିବେ ନାହିଁ\n"
114
115 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11682 msgid "Failed to initiate connection"
11783 msgstr " ସଂଯୋଗ ଆରମ୍ଭ କରିବାରେ ବିଫଳ"
11884
119 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
12086 msgid "Display disabled by controller"
12187 msgstr "ନିୟନ୍ତ୍ରକ ଦ୍ୱାରା ପ୍ରଦର୍ଶନୀ ନିଷ୍କ୍ରିୟ ହୋଇଛି"
12288
123 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12490 #, c-format
12591 msgid "Controller connection failed: %s"
12692 msgstr "ନିୟନ୍ତ୍ରକ ସଂଯୋଗ ଅସଫଳ ହେଲା:%s"
12793
128 #: ../src/remote-viewer.c:755
129 msgid "_Change CD"
130 msgstr ""
131
132 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13395 msgid "failed to parse ovirt uri"
13496 msgstr ""
13597
136 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13799 msgid "Authentication was cancelled"
138100 msgstr ""
139101
140 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
141103 #, c-format
142104 msgid "oVirt VM %s is not running"
143105 msgstr ""
144106
145 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
146108 #, c-format
147109 msgid "oVirt VM %s has no display"
148110 msgstr ""
149111
150 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
151113 #, c-format
152114 msgid "oVirt VM %s has no host information"
153115 msgstr ""
154116
155 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
156118 #, c-format
157119 msgid "oVirt VM %s has unknown display type: %d"
158120 msgstr ""
159121
160 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
161123 msgid "Setting up Spice session..."
162124 msgstr "ସ୍ପାଇସ ଅଧିବେଶନ ସେଟ କରୁଅଛି..."
163125
164 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
165127 msgid "No connection was chosen"
166128 msgstr ""
167129
168 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
169131 #, c-format
170132 msgid "Invalid file %s: "
171133 msgstr ""
172134
173 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
174136 msgid "Cannot determine the connection type from URI"
175137 msgstr "URI ରୁ ସଂଯୋଗ ପ୍ରକାରକୁ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ"
176138
177 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
178140 msgid "Couldn't open oVirt session: "
179141 msgstr ""
180142
185147 #. * indent-tabs-mode: nil
186148 #. * End:
187149 #.
188 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
189151 msgid "Connection details"
190152 msgstr "ସଂଯୋଗ ବିବରଣୀ"
191153
192 #: ../src/remote-viewer-connect.xml.h:2
193 msgid "Connection Address"
194 msgstr ""
195
196 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
197159 msgid "For example, spice://foo.example.org:5900"
198160 msgstr ""
199161
200 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
201163 msgid "Recent connections"
202164 msgstr ""
203165
204 #: ../src/remote-viewer-connect.xml.h:5
205 msgid "Cancel"
206 msgstr ""
207
208 #: ../src/remote-viewer-connect.xml.h:6
209 msgid "Connect"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:1
213 msgid "About Glade"
214 msgstr "ଗ୍ଲେଡ ବିଷୟରେ"
215
216 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
217182 msgid ""
218183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219184 "Copyright (C) 2007-2014 Red Hat, Inc."
220185 msgstr ""
221186
222 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
223188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
224189 msgstr ""
225190 "GTK-VNC, SPICE-GTK ଏବଂ libvirt ସହାୟତାରେ ଏକ ସୁଦୂର ଡେସ୍କଟପ କ୍ଲାଏଣ୍ଟ ପ୍ରସ୍ତୁତ ହୋଇଛି"
226191
227 #: ../src/virt-viewer-about.xml.h:5
192 #: ../src/resources/ui/virt-viewer-about.ui.h:5
228193 msgid "virt-manager.org"
229194 msgstr "virt-manager.org"
230195
231 #: ../src/virt-viewer-about.xml.h:6
196 #: ../src/resources/ui/virt-viewer-about.ui.h:6
232197 msgid ""
233198 "This program is free software; you can redistribute it and/or modify\n"
234199 "it under the terms of the GNU General Public License as published by\n"
258223 "along with this program; if not, write to the Free Software\n"
259224 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
260225
261 #: ../src/virt-viewer-about.xml.h:20
226 #: ../src/resources/ui/virt-viewer-about.ui.h:20
262227 msgid "The Fedora Translation Team"
263228 msgstr "Fedora ଅନୁବାଦନ ଗୋଷ୍ଠି"
264229
265 #: ../src/virt-viewer-app.c:526
230 #: ../src/virt-viewer-app.c:458
266231 msgid "Do you want to close the session?"
267232 msgstr "ଆପଣ ଅଧିବେଶନକୁ ବନ୍ଦ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
268233
269 #: ../src/virt-viewer-app.c:528
234 #: ../src/virt-viewer-app.c:460
270235 msgid "Do not ask me again"
271236 msgstr "ମୋତେ ପୁନର୍ବାର ପଚାରନ୍ତୁ ନାହିଁ"
272237
273 #: ../src/virt-viewer-app.c:1008
238 #: ../src/virt-viewer-app.c:948
274239 #, c-format
275240 msgid "Waiting for display %d..."
276241 msgstr "%d କୁ ଅପେକ୍ଷା କରିଅଛି..."
277242
278 #: ../src/virt-viewer-app.c:1117
243 #: ../src/virt-viewer-app.c:1055
279244 #, c-format
280245 msgid "Unsupported graphic type '%s'"
281246 msgstr ""
282247
283 #: ../src/virt-viewer-app.c:1200
248 #: ../src/virt-viewer-app.c:1138
284249 msgid "Connect to ssh failed."
285250 msgstr "ssh ସହିତ ସଂଯୋଗ ବିଫଳ ହୋଇଛି।"
286251
287 #: ../src/virt-viewer-app.c:1202
252 #: ../src/virt-viewer-app.c:1140
288253 msgid "Can't connect to channel, SSH only supported."
289254 msgstr "ଚ୍ୟାନେଲ ସହିତ ସଂଯୋଗ କରିପାରିବେ ନାହିଁ, କେବଳ SSH ସମର୍ଥିତ।"
290255
291 #: ../src/virt-viewer-app.c:1214
256 #: ../src/virt-viewer-app.c:1152
292257 msgid "Connect to channel unsupported."
293258 msgstr "ଚ୍ୟାନେଲ ସହିତ ସଂଯୋଗ ଅସମର୍ଥିତ।"
294259
295 #: ../src/virt-viewer-app.c:1276
260 #: ../src/virt-viewer-app.c:1214
296261 msgid "Display can only be attached through libvirt with --attach"
297262 msgstr ""
298263
299 #: ../src/virt-viewer-app.c:1299
264 #: ../src/virt-viewer-app.c:1237
300265 msgid "Connecting to graphic server"
301266 msgstr "ଆଲେଖିକ ସର୍ଭର ସହିତ ସଂଯୋଗ କରୁଅଛି"
302267
303 #: ../src/virt-viewer-app.c:1398
268 #: ../src/virt-viewer-app.c:1336
304269 msgid "Guest domain has shutdown"
305270 msgstr "ଅତିଥି ଡମେନ ବନ୍ଦ ଅଛି"
306271
307 #: ../src/virt-viewer-app.c:1459
272 #: ../src/virt-viewer-app.c:1397
308273 msgid "Connected to graphic server"
309274 msgstr "ଆଲେଖି ସର୍ଭର ସହ ସଂଯୁକ୍ତ"
310275
311 #: ../src/virt-viewer-app.c:1486
276 #: ../src/virt-viewer-app.c:1424
312277 #, c-format
313278 msgid "Unable to connect to the graphic server %s"
314279 msgstr "ଆଲେଖୀ ସର୍ଭର %s ସହିତ ସଂଯୋଗ କରିବାରେ ଅସମର୍ଥ"
315280
316 #: ../src/virt-viewer-app.c:1512
281 #: ../src/virt-viewer-app.c:1450
317282 #, c-format
318283 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319284 msgstr ""
320285
321 #: ../src/virt-viewer-app.c:1525
286 #: ../src/virt-viewer-app.c:1463
322287 #, c-format
323288 msgid "Unable to authenticate with remote desktop server: %s"
324289 msgstr "ସୁଦୂର ଡେସ୍କଟପ ସର୍ଭର ସହିତ ବୈଧିକରଣ କରିବାରେ ଅସମର୍ଥ: %s"
325290
326 #: ../src/virt-viewer-app.c:1533
291 #: ../src/virt-viewer-app.c:1471
327292 #, c-format
328293 msgid "USB redirection error: %s"
329294 msgstr "USB ଦିଗପରିବର୍ତ୍ତନ ତ୍ରୁଟି: %s"
330295
331 #: ../src/virt-viewer-app.c:1786
296 #: ../src/virt-viewer-app.c:1805
332297 #, c-format
333298 msgid "Zoom level must be within %d-%d\n"
334299 msgstr "ଆକାର ବୃଦ୍ଧି ସ୍ତର ନିଶ୍ଚିତ ଭାବରେ %d-%d ମଧ୍ଯରେ ରହିବା ଉଚିତ\n"
335300
336 #: ../src/virt-viewer-app.c:2296
337 #, c-format
338 msgid "Display %d"
339 msgstr "%d ଦର୍ଶାଅ"
340
341 #: ../src/virt-viewer-app.c:2552
301 #: ../src/virt-viewer-app.c:1858
302 #, c-format
303 msgid "%s\n"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:1868
307 #, c-format
308 msgid "%s version %s"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:2292
312 #, c-format
313 msgid "Display _%d"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2548
342317 #, c-format
343318 msgid "Invalid kiosk-quit argument: %s"
344319 msgstr "ଅବୈଧ kiosk-quit ସ୍ୱତନ୍ତ୍ରଚର: %s"
320
321 #: ../src/virt-viewer-app.c:2559
322 msgid "Display version information"
323 msgstr "ସଂସ୍କରଣ ସୂଚନା ଦେଖାନ୍ତୁ"
345324
346325 #: ../src/virt-viewer-app.c:2561
347326 msgid "Zoom level of window, in percentage"
375354 msgid "Display debugging information"
376355 msgstr "ତ୍ରୁଟିନିବାରଣ ସୂଚନା ଦର୍ଶାନ୍ତୁ"
377356
378 #: ../src/virt-viewer-auth.c:88
357 #: ../src/virt-viewer-auth.c:89
379358 #, c-format
380359 msgid ""
381360 "Authentication is required for the %s connection to:\n"
384363 "\n"
385364 msgstr ""
386365
387 #: ../src/virt-viewer-auth.c:92
366 #: ../src/virt-viewer-auth.c:93
388367 #, c-format
389368 msgid "Authentication is required for the %s connection:\n"
390369 msgstr ""
396375 #. * indent-tabs-mode: nil
397376 #. * End:
398377 #.
399 #: ../src/virt-viewer-auth.xml.h:1
378 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
400379 msgid "Authentication required"
401380 msgstr "ବୈଧିକରଣ ଆବଶ୍ଯକ"
402381
403 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
382 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
383 msgid "_OK"
384 msgstr ""
385
386 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
387 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
404388 msgid "label"
405389 msgstr "ନାମପଟି"
406390
407 #: ../src/virt-viewer-auth.xml.h:3
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408392 msgid "Password:"
409393 msgstr "ପ୍ରବେଶ ସଙ୍କେତ:"
410394
411 #: ../src/virt-viewer-auth.xml.h:4
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412396 msgid "Username:"
413397 msgstr "ଚାଳକ ନାମ:"
414398
415 #: ../src/virt-viewer-auth.xml.h:5
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416400 msgid "Show password"
417401 msgstr ""
418402
419 #: ../src/virt-viewer-display-vnc.c:133
403 #: ../src/virt-viewer-display-vnc.c:134
420404 msgid "VNC does not provide GUID"
421405 msgstr ""
422406
407 #: ../src/virt-viewer-file-transfer-dialog.c:152
408 msgid "Cancel"
409 msgstr ""
410
411 #: ../src/virt-viewer-file-transfer-dialog.c:163
412 msgid "File Transfers"
413 msgstr ""
414
423415 #: ../src/virt-viewer-main.c:38
424 #, c-format
425 msgid "%s version %s\n"
426 msgstr "%s ସଂସ୍କରଣ %s\n"
427
428 #: ../src/virt-viewer-main.c:62
429 msgid "Direct connection with no automatic tunnels"
430 msgstr "ସ୍ୱୟଂଚାଳିତ ଟନେଲ ବିନା ସିଧାସଳଖ ସଂଯୋଗ"
431
432 #: ../src/virt-viewer-main.c:64
433 msgid "Attach to the local display using libvirt"
434 msgstr "libvirt ବ୍ୟବହାର କରି ସ୍ଥାନୀୟ ପ୍ରଦର୍ଶନୀ ସହିତ ସଂଲଗ୍ନ ହୋଇଛି"
435
436 #: ../src/virt-viewer-main.c:66
437 msgid "Connect to hypervisor"
438 msgstr "hypervisor ସହିତ ସଂଯୋଗ କରନ୍ତୁ"
439
440 #: ../src/virt-viewer-main.c:68
441 msgid "Wait for domain to start"
442 msgstr "ଡମେନକୁ ଆରମ୍ଭ ହେବା ପାଇଁ ଅପେକ୍ଷା କରନ୍ତୁ"
443
444 #: ../src/virt-viewer-main.c:70
445 msgid "Reconnect to domain upon restart"
446 msgstr "ପୁନଃଚାଳନ ପରେ ଡମେନ ସହିତ ପୁଣି ସଂଯୁକ୍ତ ହୋଇଛି"
447
448 #: ../src/virt-viewer-main.c:77
449416 msgid "Virt Viewer"
450417 msgstr "Virt ପ୍ରଦର୍ଶିକା"
451418
452 #: ../src/virt-viewer-main.c:80
453 #, c-format
454 msgid "Run '%s --help' to see a full list of available command line options"
455 msgstr "ଉପଲବ୍ଧ ନିର୍ଦ୍ଦେଶନାମା ବିକଳ୍ପଗୁଡ଼ିକର ସମ୍ପୂର୍ଣ୍ଣ ତାଲିକା ଦେଖିବା ପାଇଁ '%s --help' ଚଲାନ୍ତୁ"
456
457 #: ../src/virt-viewer-main.c:86
458 msgid "Virtual machine graphical console"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:107
462 #, c-format
463 msgid ""
464 "\n"
465 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
466 "\n"
467 "%s\n"
468 "\n"
469 msgstr ""
470
471 #: ../src/virt-viewer-main.c:112
472 #, c-format
473 msgid ""
474 "\n"
475 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
476 "\n"
477 msgstr ""
478
479 #: ../src/virt-viewer-session-spice.c:694
419 #: ../src/virt-viewer-session-spice.c:705
480420 msgid "Invalid password"
481421 msgstr ""
482422
483423 #. Create the widgets
484 #: ../src/virt-viewer-session-spice.c:786
424 #: ../src/virt-viewer-session-spice.c:797
485425 msgid "Select USB devices for redirection"
486426 msgstr "ଦିଗ ପରିବର୍ତ୍ତନ ପାଇଁ USB ଉପକରଣଗୁଡ଼ିକୁ ବାଛନ୍ତୁ"
487427
488 #: ../src/virt-viewer-session-vnc.c:153
428 #: ../src/virt-viewer-session-spice.c:799
429 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
430 msgid "_Close"
431 msgstr ""
432
433 #: ../src/virt-viewer-session-vnc.c:156
489434 #, c-format
490435 msgid "Unsupported authentication type %d"
491436 msgstr "ଅସମର୍ଥିତ ପ୍ରାଧିକରଣ ପ୍ରକାର %d"
498443 msgid "No virtual machine was chosen"
499444 msgstr ""
500445
501 #: ../src/virt-viewer-window.c:537
446 #: ../src/virt-viewer-window.c:534
502447 msgid "Ctrl+Alt+_Del"
503448 msgstr "Ctrl+Alt+_Del"
504449
505 #: ../src/virt-viewer-window.c:538
450 #: ../src/virt-viewer-window.c:535
506451 msgid "Ctrl+Alt+_Backspace"
507452 msgstr "Ctrl+Alt+_Backspace"
508453
509 #: ../src/virt-viewer-window.c:540
454 #: ../src/virt-viewer-window.c:537
510455 msgid "Ctrl+Alt+F_1"
511456 msgstr "Ctrl+Alt+F_1"
512457
513 #: ../src/virt-viewer-window.c:541
458 #: ../src/virt-viewer-window.c:538
514459 msgid "Ctrl+Alt+F_2"
515460 msgstr "Ctrl+Alt+F_2"
516461
517 #: ../src/virt-viewer-window.c:542
462 #: ../src/virt-viewer-window.c:539
518463 msgid "Ctrl+Alt+F_3"
519464 msgstr "Ctrl+Alt+F_3"
520465
521 #: ../src/virt-viewer-window.c:543
466 #: ../src/virt-viewer-window.c:540
522467 msgid "Ctrl+Alt+F_4"
523468 msgstr "Ctrl+Alt+F_4"
524469
525 #: ../src/virt-viewer-window.c:544
470 #: ../src/virt-viewer-window.c:541
526471 msgid "Ctrl+Alt+F_5"
527472 msgstr "Ctrl+Alt+F_5"
528473
529 #: ../src/virt-viewer-window.c:545
474 #: ../src/virt-viewer-window.c:542
530475 msgid "Ctrl+Alt+F_6"
531476 msgstr "Ctrl+Alt+F_6"
532477
533 #: ../src/virt-viewer-window.c:546
478 #: ../src/virt-viewer-window.c:543
534479 msgid "Ctrl+Alt+F_7"
535480 msgstr "Ctrl+Alt+F_7"
536481
537 #: ../src/virt-viewer-window.c:547
482 #: ../src/virt-viewer-window.c:544
538483 msgid "Ctrl+Alt+F_8"
539484 msgstr "Ctrl+Alt+F_8"
540485
541 #: ../src/virt-viewer-window.c:548
486 #: ../src/virt-viewer-window.c:545
542487 msgid "Ctrl+Alt+F_9"
543488 msgstr "Ctrl+Alt+F_9"
544489
545 #: ../src/virt-viewer-window.c:549
490 #: ../src/virt-viewer-window.c:546
546491 msgid "Ctrl+Alt+F1_0"
547492 msgstr "Ctrl+Alt+F1_0"
548493
549 #: ../src/virt-viewer-window.c:550
494 #: ../src/virt-viewer-window.c:547
550495 msgid "Ctrl+Alt+F11"
551496 msgstr "Ctrl+Alt+F11"
552497
553 #: ../src/virt-viewer-window.c:551
498 #: ../src/virt-viewer-window.c:548
554499 msgid "Ctrl+Alt+F12"
555500 msgstr "Ctrl+Alt+F12"
556501
557 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
502 #: ../src/virt-viewer-window.c:919
503 msgid "_Save"
504 msgstr ""
505
506 #: ../src/virt-viewer-window.c:927
558507 msgid "Screenshot"
559508 msgstr "ଆଶୁଚିତ୍ର"
560509
561 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
510 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
562511 msgid "Unknown"
563512 msgstr ""
564513
565 #: ../src/virt-viewer-window.c:1062
514 #: ../src/virt-viewer-window.c:1071
566515 msgid "Disconnect"
567516 msgstr "ସଂଯୋଗ ବିଚ୍ଛିନ୍ନ ହୋଇଛି"
568517
569 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
570 #: ../src/virt-viewer.xml.h:3
518 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
571519 msgid "USB device selection"
572520 msgstr "USB ଉପକରଣ ଚୟନ"
573521
574 #: ../src/virt-viewer-window.c:1081
522 #: ../src/virt-viewer-window.c:1089
575523 msgid "Send key combination"
576524 msgstr "କି ଯୁଗଳକୁ ପଠାନ୍ତୁ"
577525
578 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
526 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
579527 msgid "Leave fullscreen"
580528 msgstr "ସମ୍ପୁର୍ଣ୍ଣ ପରଦା ଛାଡ଼ି ଦିଅନ୍ତୁ"
581529
582 #: ../src/virt-viewer-window.c:1173
530 #: ../src/virt-viewer-window.c:1175
583531 msgid "Ctrl+Alt"
584532 msgstr "Ctrl+Alt"
585533
586 #: ../src/virt-viewer-window.c:1176
534 #: ../src/virt-viewer-window.c:1178
587535 #, c-format
588536 msgid "(Press %s to release pointer)"
589537 msgstr "(ସୂଚକକୁ ଛାଡ଼ିବା ପାଇଁ %s କୁ ଦବାନ୍ତୁ)"
592540 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
593541 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
594542 #.
595 #: ../src/virt-viewer-window.c:1187
543 #: ../src/virt-viewer-window.c:1189
596544 #, c-format
597545 msgid "%s%s%s - %s"
598546 msgstr "%s%s%s - %s"
599547
600548 #. translators: <space>
601 #: ../src/virt-viewer-window.c:1191
549 #: ../src/virt-viewer-window.c:1193
602550 msgid " "
603551 msgstr " "
604552
605 #: ../src/virt-viewer-file.c:825
553 #: ../src/virt-viewer-file.c:843
606554 #, c-format
607555 msgid ""
608556 "At least %s version %s is required to setup this connection, see %s for "
609557 "details"
610558 msgstr ""
611559
612 #: ../src/virt-viewer-file.c:833
560 #: ../src/virt-viewer-file.c:851
613561 #, c-format
614562 msgid "At least %s version %s is required to setup this connection"
615563 msgstr "ଏହି ସଂଯୋଗକୁ ବ୍ୟବସ୍ଥା କରିବା ପାଇଁ ଅତିକମରେ %s ସଂସ୍କରଣ %s ଆବଶ୍ୟକ କରିଥାଏ"
616564
617 #: ../src/virt-viewer.c:163
565 #: ../src/virt-viewer.c:90
566 msgid "Direct connection with no automatic tunnels"
567 msgstr "ସ୍ୱୟଂଚାଳିତ ଟନେଲ ବିନା ସିଧାସଳଖ ସଂଯୋଗ"
568
569 #: ../src/virt-viewer.c:92
570 msgid "Attach to the local display using libvirt"
571 msgstr "libvirt ବ୍ୟବହାର କରି ସ୍ଥାନୀୟ ପ୍ରଦର୍ଶନୀ ସହିତ ସଂଲଗ୍ନ ହୋଇଛି"
572
573 #: ../src/virt-viewer.c:94
574 msgid "Connect to hypervisor"
575 msgstr "hypervisor ସହିତ ସଂଯୋଗ କରନ୍ତୁ"
576
577 #: ../src/virt-viewer.c:96
578 msgid "Wait for domain to start"
579 msgstr "ଡମେନକୁ ଆରମ୍ଭ ହେବା ପାଇଁ ଅପେକ୍ଷା କରନ୍ତୁ"
580
581 #: ../src/virt-viewer.c:98
582 msgid "Reconnect to domain upon restart"
583 msgstr "ପୁନଃଚାଳନ ପରେ ଡମେନ ସହିତ ପୁଣି ସଂଯୁକ୍ତ ହୋଇଛି"
584
585 #: ../src/virt-viewer.c:105
586 msgid "Virtual machine graphical console"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:124
590 #, c-format
591 msgid ""
592 "\n"
593 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
594 "\n"
595 msgstr ""
596
597 #: ../src/virt-viewer.c:136
598 #, c-format
599 msgid ""
600 "\n"
601 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
602 "\n"
603 msgstr ""
604
605 #: ../src/virt-viewer.c:250
618606 msgid "Waiting for guest domain to re-start"
619607 msgstr "ପୁନଚାଳନ ପାଇଁ ଅତିଥି ଡମେନକୁ ଅପେକ୍ଷା କରିଛି"
620608
621 #: ../src/virt-viewer.c:409
609 #: ../src/virt-viewer.c:496
622610 #, c-format
623611 msgid "Cannot determine the graphic type for the guest %s"
624612 msgstr "ଅତିଥି %s ପାଇଁ ଆଲେଖିକ ପ୍ରକାରକୁ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ"
625613
626 #: ../src/virt-viewer.c:448
614 #: ../src/virt-viewer.c:535
627615 #, c-format
628616 msgid "Cannot determine the host for the guest %s"
629617 msgstr "ଅତିଥି %s ପାଇଁ ହୋଷ୍ଟ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ"
630618
631 #: ../src/virt-viewer.c:476
619 #: ../src/virt-viewer.c:563
632620 #, c-format
633621 msgid "Guest '%s' is not reachable"
634622 msgstr ""
635623
636 #: ../src/virt-viewer.c:697
624 #: ../src/virt-viewer.c:784
637625 #, c-format
638626 msgid "Virtual machine %s is not running"
639627 msgstr ""
640628
641 #: ../src/virt-viewer.c:720
629 #: ../src/virt-viewer.c:807
642630 msgid "Waiting for libvirt to start"
643631 msgstr "libvirt କୁ ଆରମ୍ଭ ହେବା ପାଇଁ ଅପେକ୍ଷା କରୁଅଛି"
644632
645 #: ../src/virt-viewer.c:724
633 #: ../src/virt-viewer.c:811
646634 msgid "Finding guest domain"
647635 msgstr "ଅତିଥି ଡମେନକୁ ଖୋଜୁଅଛି"
648636
649 #: ../src/virt-viewer.c:728
637 #: ../src/virt-viewer.c:815
650638 msgid "Waiting for guest domain to be created"
651639 msgstr "ନିର୍ମାଣ କରିବା ପାଇଁ ଅତିଥି ଡମେନକୁ ଅପେକ୍ଷା କରିଛି"
652640
653 #: ../src/virt-viewer.c:750
641 #: ../src/virt-viewer.c:837
654642 msgid "Checking guest domain status"
655643 msgstr "ଅତିଥି ଡମେନ ସ୍ଥିତିକୁ ଯାଞ୍ଚ କରୁଅଛି"
656644
657 #: ../src/virt-viewer.c:753
645 #: ../src/virt-viewer.c:840
658646 msgid "Cannot get guest state"
659647 msgstr ""
660648
661 #: ../src/virt-viewer.c:759
649 #: ../src/virt-viewer.c:846
662650 msgid "Waiting for guest domain to start"
663651 msgstr "ଅତିଥି ଡମେନ ଆରମ୍ଭ ହେବାକୁ ଯାଉଛି"
664652
665 #: ../src/virt-viewer.c:863
653 #: ../src/virt-viewer.c:950
666654 #, c-format
667655 msgid "Unable to connect to libvirt with URI: %s."
668656 msgstr ""
669657
670 #: ../src/virt-viewer.c:864
658 #: ../src/virt-viewer.c:951
671659 msgid "[none]"
672660 msgstr "[କିଛି ନାହିଁ]"
673661
674 #: ../src/virt-viewer.c:871
662 #: ../src/virt-viewer.c:958
675663 msgid "Authentication failed."
676664 msgstr ""
677665
678 #: ../src/virt-viewer.c:931
666 #: ../src/virt-viewer.c:1018
679667 msgid "Failed to connect: "
680668 msgstr ""
681669
686674 #. * indent-tabs-mode: nil
687675 #. * End:
688676 #.
689 #: ../src/virt-viewer.xml.h:1
677 #: ../src/resources/ui/virt-viewer.ui.h:1
690678 msgid "_File"
691679 msgstr "ଫାଇଲ (_F)"
692680
693 #: ../src/virt-viewer.xml.h:4
681 #: ../src/resources/ui/virt-viewer.ui.h:2
682 msgid "_Screenshot"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:3
686 msgid "_USB device selection"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:4
694690 msgid "Smartcard insertion"
695691 msgstr "ସ୍ମାର୍ଟକାର୍ଡ ଭର୍ତ୍ତିକରିବା"
696692
697 #: ../src/virt-viewer.xml.h:5
693 #: ../src/resources/ui/virt-viewer.ui.h:5
698694 msgid "Smartcard removal"
699695 msgstr "ସ୍ମାର୍ଟକାର୍ଡ ବାହାର କରିବା "
700696
701 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
702 msgid "Preferences"
703 msgstr ""
704
705 #: ../src/virt-viewer.xml.h:7
697 #: ../src/resources/ui/virt-viewer.ui.h:6
698 msgid "_Preferences"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:7
702 msgid "_Quit"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:8
706706 msgid "_View"
707707 msgstr "ଦୃଶ୍ଯ (_V)"
708708
709 #: ../src/virt-viewer.xml.h:8
710 msgid "Full screen"
711 msgstr "ସଂପୂର୍ଣ୍ଣ ପରଦା"
712
713 #: ../src/virt-viewer.xml.h:9
709 #: ../src/resources/ui/virt-viewer.ui.h:9
710 msgid "_Full screen"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:10
714714 msgid "_Zoom"
715715 msgstr "ବଡ଼ କରନ୍ତୁ (_Z)"
716716
717 #: ../src/virt-viewer.xml.h:10
718 msgid "Displays"
719 msgstr "ପ୍ରଦର୍ଶନୀ"
720
721 #: ../src/virt-viewer.xml.h:11
717 #: ../src/resources/ui/virt-viewer.ui.h:11
718 msgid "Zoom _In"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:12
722 msgid "Zoom _Out"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:13
726 msgid "_Normal Size"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:14
730 msgid "_Displays"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:15
722734 msgid "Release cursor"
723735 msgstr "ସୂଚକକୁ ଛାଡ଼ନ୍ତୁ"
724736
725 #: ../src/virt-viewer.xml.h:12
737 #: ../src/resources/ui/virt-viewer.ui.h:16
726738 msgid "_Send key"
727739 msgstr "କି ପଠାନ୍ତୁ (_S)"
728740
729 #: ../src/virt-viewer.xml.h:13
741 #: ../src/resources/ui/virt-viewer.ui.h:17
730742 msgid "_Help"
731743 msgstr "ସହାୟତା (_H)"
732744
733 #: ../src/virt-viewer.xml.h:14
745 #: ../src/resources/ui/virt-viewer.ui.h:18
734746 msgid "_Guest Details"
735747 msgstr ""
736748
737 #: ../src/virt-viewer-guest-details.xml.h:1
749 #: ../src/resources/ui/virt-viewer.ui.h:19
750 msgid "_About"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer.ui.h:20
754 msgid "_Change CD"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
738758 msgid "Guest Details"
739759 msgstr ""
740760
741 #: ../src/virt-viewer-guest-details.xml.h:2
761 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
742762 msgid "Name:"
743763 msgstr ""
744764
745 #: ../src/virt-viewer-guest-details.xml.h:3
765 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
746766 msgid "GUID:"
747767 msgstr ""
748768
749 #: ../src/virt-viewer-vm-connection.xml.h:1
769 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
750770 msgid "Choose a virtual machine"
751771 msgstr ""
752772
753 #: ../src/virt-viewer-vm-connection.xml.h:2
773 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
754774 msgid "Name"
755775 msgstr ""
756776
757 #: ../src/virt-viewer-vm-connection.xml.h:3
777 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
758778 msgid "Available virtual machines"
759779 msgstr ""
760780
761 #: ../src/virt-viewer-preferences.xml.h:2
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
782 msgid "Preferences"
783 msgstr ""
784
785 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
762786 msgid "Folder sharing"
763787 msgstr ""
764788
765 #: ../src/virt-viewer-preferences.xml.h:3
789 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
766790 msgid "Share folder"
767791 msgstr ""
768792
769 #: ../src/virt-viewer-preferences.xml.h:4
793 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
770794 msgid "Read-only"
771795 msgstr ""
772796
773 #: ../src/virt-viewer-preferences.xml.h:5
797 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
774798 msgid "Spice"
775799 msgstr ""
+300
-275
po/pa.po less more
88 msgstr ""
99 "Project-Id-Version: PACKAGE VERSION\n"
1010 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
11 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1212 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1313 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1414 "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/virt-"
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.7.3\n"
22
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
21 "X-Generator: Zanata 3.8.4\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
2425 msgid "Remote Viewer"
2526 msgstr "ਰਿਮੋਟ ਦਰਸ਼ਕ"
27
28 #: ../data/remote-viewer.appdata.xml.in.h:2
29 msgid "Remotely access virtual machines"
30 msgstr ""
31
32 #: ../data/remote-viewer.appdata.xml.in.h:3
33 msgid ""
34 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
35 "time it supports guest OS using the VNC or SPICE protocols. Further "
36 "protocols may be supported in the future as user demand dictates. The viewer "
37 "can connect directly to both local and remotely hosted guest OS, optionally "
38 "using SSL/TLS encryption."
39 msgstr ""
2640
2741 #: ../data/remote-viewer.desktop.in.h:2
2842 msgid "Access remote desktops"
3246 msgid "Virt-Viewer connection file"
3347 msgstr "Virt-Viewer ਸੰਪਰਕ ਫਾਈਲ"
3448
35 #: ../src/gbinding.c:637
36 msgid "Source"
37 msgstr "ਸਰੋਤ"
38
39 #: ../src/gbinding.c:638
40 msgid "The source of the binding"
41 msgstr "ਬਾਈਂਡਿੰਗ ਦਾ ਸਰੋਤ"
42
43 #: ../src/gbinding.c:652
44 msgid "Target"
45 msgstr "ਨਿਸ਼ਾਨਾ"
46
47 #: ../src/gbinding.c:653
48 msgid "The target of the binding"
49 msgstr "ਬਾਈਂਡਿੰਗ ਦਾ ਨਿਸ਼ਾਨਾ"
50
51 #: ../src/gbinding.c:668
52 msgid "Source Property"
53 msgstr "ਸਰੋਤ ਪਰਾਪਰਟੀ"
54
55 #: ../src/gbinding.c:669
56 msgid "The property on the source to bind"
57 msgstr "ਬਾਈਂਡ ਕਰਨ ਲਈ ਸਰੋਤ ਉੱਪਰ ਪਰਾਪਰਟੀ"
58
59 #: ../src/gbinding.c:684
60 msgid "Target Property"
61 msgstr "ਨਿਸ਼ਾਨਾ ਪਰਾਪਰਟੀ"
62
63 #: ../src/gbinding.c:685
64 msgid "The property on the target to bind"
65 msgstr "ਬਾਈਂਡ ਕਰਨ ਲਈ ਨਿਸ਼ਾਨੇ ਉੱਪਰ ਪਰਾਪਰਟੀ"
66
67 #: ../src/gbinding.c:699
68 msgid "Flags"
69 msgstr "ਫਲੈਗ"
70
71 #: ../src/gbinding.c:700
72 msgid "The binding flags"
73 msgstr "ਬਾਈਂਡਿੰਗ ਫਲੈਗ"
74
75 #: ../src/remote-viewer-main.c:50
76 #, c-format
77 msgid "remote-viewer version %s"
78 msgstr ""
79
80 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
81 msgid "Display version information"
82 msgstr "ਸੰਸਕਰਣ ਜਾਣਕਾਰੀ ਵਿਖਾਓ"
83
84 #: ../src/remote-viewer-main.c:105
49 #: ../src/remote-viewer.c:139
8550 msgid "Set window title"
8651 msgstr "ਵਿੰਡੋ ਦਾ ਸਿਰਲੇਖ ਨਿਰਧਾਰਿਤ ਕਰੋ"
8752
88 #: ../src/remote-viewer-main.c:108
53 #: ../src/remote-viewer.c:142
8954 msgid "Open connection using Spice controller communication"
9055 msgstr "ਸਪਾਈਸ ਕੰਟਰੋਲਰ ਕਮਿਊਨੀਕੇਸ਼ਨ ਵਰਤ ਕੇ ਸੰਪਰਕ ਖੋਲ੍ਹੋ"
9156
92 #: ../src/remote-viewer-main.c:120
57 #: ../src/remote-viewer.c:150
9358 msgid "Remote viewer client"
9459 msgstr ""
9560
96 #: ../src/remote-viewer-main.c:138
97 #, c-format
98 msgid ""
99 "%s\n"
100 "Run '%s --help' to see a full list of available command line options\n"
101 msgstr ""
102 "%s\n"
103 "ਪੂਰੀਆਂ ਕਮਾਂਡ ਲਾਈਨ ਚੋਣਾਂ ਦੀ ਸੂਚੀ ਵੇਖਣ ਵਾਸਤੇ '%s --help' ਚਲਾਉ\n"
104
105 #: ../src/remote-viewer-main.c:149
106 #, c-format
107 msgid "Error: extra arguments given while using Spice controller\n"
108 msgstr "ਗਲਤੀ: ਸਪਾਈਸ ਕੰਟਰੋਲਰ ਵਰਤਣ ਵੇਲੇ ਜਿਆਦਾ ਆਰਗੂਮੈਂਟ ਦਿੱਤੇ ਸੀ\n"
109
110 #: ../src/remote-viewer-main.c:156
111 #, c-format
112 msgid "Error: can't handle multiple URIs\n"
113 msgstr "ਗਲਤੀ: ਬਹੁਤੇ URIs ਨਹੀਂ ਲੈ ਸਕਦਾ\n"
114
115 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
61 #: ../src/remote-viewer.c:175
62 #, c-format
63 msgid ""
64 "\n"
65 "Error: can't handle multiple URIs\n"
66 "\n"
67 msgstr ""
68
69 #: ../src/remote-viewer.c:187
70 #, c-format
71 msgid ""
72 "\n"
73 "Error: extra arguments given while using Spice controller\n"
74 "\n"
75 msgstr ""
76
77 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
78 #, c-format
79 msgid "Run '%s --help' to see a full list of available command line options\n"
80 msgstr ""
81
82 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11683 msgid "Failed to initiate connection"
11784 msgstr "ਸੰਪਰਕ ਚਾਲੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ"
11885
119 #: ../src/remote-viewer.c:313
86 #: ../src/remote-viewer.c:297
12087 msgid "Display disabled by controller"
12188 msgstr "ਕੰਟਰੋਲਰ ਦੁਆਰਾ ਪ੍ਰਦਰਸ਼ਨ ਅਯੋਗ ਕੀਤਾ ਹੈ"
12289
123 #: ../src/remote-viewer.c:609
90 #: ../src/remote-viewer.c:593
12491 #, c-format
12592 msgid "Controller connection failed: %s"
12693 msgstr "ਕੰਟਰੋਲਰ ਕੁਨੈਕਸ਼ਨ ਅਸਫਲ ਹੋਇਆ: %s"
12794
128 #: ../src/remote-viewer.c:755
129 msgid "_Change CD"
130 msgstr ""
131
132 #: ../src/remote-viewer.c:855
95 #: ../src/remote-viewer.c:848
13396 msgid "failed to parse ovirt uri"
13497 msgstr ""
13598
136 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
99 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
137100 msgid "Authentication was cancelled"
138101 msgstr ""
139102
140 #: ../src/remote-viewer.c:900
103 #: ../src/remote-viewer.c:893
141104 #, c-format
142105 msgid "oVirt VM %s is not running"
143106 msgstr ""
144107
145 #: ../src/remote-viewer.c:914
108 #: ../src/remote-viewer.c:907
146109 #, c-format
147110 msgid "oVirt VM %s has no display"
148111 msgstr ""
149112
150 #: ../src/remote-viewer.c:940
113 #: ../src/remote-viewer.c:933
151114 #, c-format
152115 msgid "oVirt VM %s has no host information"
153116 msgstr ""
154117
155 #: ../src/remote-viewer.c:951
118 #: ../src/remote-viewer.c:944
156119 #, c-format
157120 msgid "oVirt VM %s has unknown display type: %d"
158121 msgstr ""
159122
160 #: ../src/remote-viewer.c:1094
123 #: ../src/remote-viewer.c:1115
161124 msgid "Setting up Spice session..."
162125 msgstr "ਸਪਾਈਸ ਸੈਸ਼ਨ ਬਣਾ ਰਿਹਾ ਹੈ..."
163126
164 #: ../src/remote-viewer.c:1102
127 #: ../src/remote-viewer.c:1123
165128 msgid "No connection was chosen"
166129 msgstr ""
167130
168 #: ../src/remote-viewer.c:1120
131 #: ../src/remote-viewer.c:1141
169132 #, c-format
170133 msgid "Invalid file %s: "
171134 msgstr ""
172135
173 #: ../src/remote-viewer.c:1128
136 #: ../src/remote-viewer.c:1149
174137 msgid "Cannot determine the connection type from URI"
175138 msgstr "URI ਤੋਂ ਕੁਨੈਕਸ਼ਨ ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
176139
177 #: ../src/remote-viewer.c:1134
140 #: ../src/remote-viewer.c:1155
178141 msgid "Couldn't open oVirt session: "
179142 msgstr ""
180143
185148 #. * indent-tabs-mode: nil
186149 #. * End:
187150 #.
188 #: ../src/remote-viewer-connect.xml.h:1
151 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
189152 msgid "Connection details"
190153 msgstr "ਕੁਨੈਕਸ਼ਨ ਵੇਰਵੇ"
191154
192 #: ../src/remote-viewer-connect.xml.h:2
193 msgid "Connection Address"
194 msgstr ""
195
196 #: ../src/remote-viewer-connect.xml.h:3
155 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
156 msgid "Connection _Address"
157 msgstr ""
158
159 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
197160 msgid "For example, spice://foo.example.org:5900"
198161 msgstr ""
199162
200 #: ../src/remote-viewer-connect.xml.h:4
163 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
201164 msgid "Recent connections"
202165 msgstr ""
203166
204 #: ../src/remote-viewer-connect.xml.h:5
205 msgid "Cancel"
206 msgstr ""
207
208 #: ../src/remote-viewer-connect.xml.h:6
209 msgid "Connect"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:1
213 msgid "About Glade"
214 msgstr "ਗਲੇਡ ਬਾਰੇ"
215
216 #: ../src/virt-viewer-about.xml.h:2
167 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
168 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
169 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
170 msgid "_Cancel"
171 msgstr ""
172
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
174 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
175 msgid "C_onnect"
176 msgstr ""
177
178 #: ../src/resources/ui/virt-viewer-about.ui.h:1
179 msgid "About Virt-Viewer"
180 msgstr ""
181
182 #: ../src/resources/ui/virt-viewer-about.ui.h:2
217183 msgid ""
218184 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219185 "Copyright (C) 2007-2014 Red Hat, Inc."
220186 msgstr ""
221187
222 #: ../src/virt-viewer-about.xml.h:4
188 #: ../src/resources/ui/virt-viewer-about.ui.h:4
223189 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
224190 msgstr "ਰਿਮੋਟ ਡੈਸਕਟਾਪ ਕਲਾਈਂਟ GTK-VNC, SPICE-GTK ਅਤੇ libvirt ਨਾਲ ਬਣਾਇਆ ਗਿਆ ਹੈ"
225191
226 #: ../src/virt-viewer-about.xml.h:5
192 #: ../src/resources/ui/virt-viewer-about.ui.h:5
227193 msgid "virt-manager.org"
228194 msgstr "virt-manager.org"
229195
230 #: ../src/virt-viewer-about.xml.h:6
196 #: ../src/resources/ui/virt-viewer-about.ui.h:6
231197 msgid ""
232198 "This program is free software; you can redistribute it and/or modify\n"
233199 "it under the terms of the GNU General Public License as published by\n"
257223 "ਮਿਲਣੀ ਚਾਹੀਦੀ ਹੈ; ਜੇ ਨਹੀਂ, ਤਾਂ ਫਰੀ ਸਾਫਟਵੇਅਰ ਫਾਈਊਨਡੇਸ਼ਨ,\n"
258224 "Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ਨੂੰ ਲਿਖੋ\n"
259225
260 #: ../src/virt-viewer-about.xml.h:20
226 #: ../src/resources/ui/virt-viewer-about.ui.h:20
261227 msgid "The Fedora Translation Team"
262228 msgstr "ਫੇਡੋਰਾ ਅਨੁਵਾਦ ਟੀਮ"
263229
264 #: ../src/virt-viewer-app.c:526
230 #: ../src/virt-viewer-app.c:458
265231 msgid "Do you want to close the session?"
266232 msgstr "ਕੀ ਤੁਸੀਂ ਸੈਸ਼ਨ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?"
267233
268 #: ../src/virt-viewer-app.c:528
234 #: ../src/virt-viewer-app.c:460
269235 msgid "Do not ask me again"
270236 msgstr "ਮੈਨੂੰ ਦੁਬਾਰਾ ਨਾ ਪੁੱਛਿਓ"
271237
272 #: ../src/virt-viewer-app.c:1008
238 #: ../src/virt-viewer-app.c:948
273239 #, c-format
274240 msgid "Waiting for display %d..."
275241 msgstr "ਝਲਕ %d ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ..."
276242
277 #: ../src/virt-viewer-app.c:1117
243 #: ../src/virt-viewer-app.c:1055
278244 #, c-format
279245 msgid "Unsupported graphic type '%s'"
280246 msgstr ""
281247
282 #: ../src/virt-viewer-app.c:1200
248 #: ../src/virt-viewer-app.c:1138
283249 msgid "Connect to ssh failed."
284250 msgstr "ssh ਨਾਲ ਜੁੜਨ ਤੋਂ ਅਸਫਲ ਹੋਇਆ।"
285251
286 #: ../src/virt-viewer-app.c:1202
252 #: ../src/virt-viewer-app.c:1140
287253 msgid "Can't connect to channel, SSH only supported."
288254 msgstr "ਚੈਨਲ ਨਾਲ ਜੁੜ ਨਹੀਂ ਸਕਦਾ, ਸਿਰਫ SSH ਸਮਰਥਿਤ ਹੈ।"
289255
290 #: ../src/virt-viewer-app.c:1214
256 #: ../src/virt-viewer-app.c:1152
291257 msgid "Connect to channel unsupported."
292258 msgstr "ਚੈਨਲ ਨਾਲ ਜੁੜਨ ਨੂੰ ਸਮਰਥਨ ਨਹੀਂ ਹੈ।"
293259
294 #: ../src/virt-viewer-app.c:1276
260 #: ../src/virt-viewer-app.c:1214
295261 msgid "Display can only be attached through libvirt with --attach"
296262 msgstr ""
297263
298 #: ../src/virt-viewer-app.c:1299
264 #: ../src/virt-viewer-app.c:1237
299265 msgid "Connecting to graphic server"
300266 msgstr "ਗਰਾਫਿਕਸ ਸਰਵਰ ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ"
301267
302 #: ../src/virt-viewer-app.c:1398
268 #: ../src/virt-viewer-app.c:1336
303269 msgid "Guest domain has shutdown"
304270 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਸ਼ੱਟ-ਡਾਊਨ ਹੋ ਗਿਆ ਹੈ"
305271
306 #: ../src/virt-viewer-app.c:1459
272 #: ../src/virt-viewer-app.c:1397
307273 msgid "Connected to graphic server"
308274 msgstr "ਗਰਾਫਿਕਸ ਸਰਵਰ ਨਾਲ ਜੁੜ ਗਿਆ"
309275
310 #: ../src/virt-viewer-app.c:1486
276 #: ../src/virt-viewer-app.c:1424
311277 #, c-format
312278 msgid "Unable to connect to the graphic server %s"
313279 msgstr "ਗਰਾਫਿਕਸ ਸਰਵਰ %s ਨਾਲ ਜੁੜਨ ਤੋਂ ਅਸਮਰਥ"
314280
315 #: ../src/virt-viewer-app.c:1512
281 #: ../src/virt-viewer-app.c:1450
316282 #, c-format
317283 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318284 msgstr ""
319285
320 #: ../src/virt-viewer-app.c:1525
286 #: ../src/virt-viewer-app.c:1463
321287 #, c-format
322288 msgid "Unable to authenticate with remote desktop server: %s"
323289 msgstr "ਰਿਮੋਟ ਸਰਵਰ ਨਾਲ ਪ੍ਰਮਾਣਿਤ ਕਰਨ ਤੋਂ ਅਸਮਰਥ: %s"
324290
325 #: ../src/virt-viewer-app.c:1533
291 #: ../src/virt-viewer-app.c:1471
326292 #, c-format
327293 msgid "USB redirection error: %s"
328294 msgstr "USB ਰੀਡਾਇਰੈਕਸ਼ਨ ਗਲਤੀ: %s"
329295
330 #: ../src/virt-viewer-app.c:1786
296 #: ../src/virt-viewer-app.c:1805
331297 #, c-format
332298 msgid "Zoom level must be within %d-%d\n"
333299 msgstr "ਜ਼ੂਮ ਪੱਧਰ %d-%d ਵਿਚਕਾਰ ਹੋਣਾ ਜਰੂਰੀ ਹੈ\n"
334300
335 #: ../src/virt-viewer-app.c:2296
336 #, c-format
337 msgid "Display %d"
338 msgstr "ਡਿਸਪਲੇਅ %d"
339
340 #: ../src/virt-viewer-app.c:2552
301 #: ../src/virt-viewer-app.c:1858
302 #, c-format
303 msgid "%s\n"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:1868
307 #, c-format
308 msgid "%s version %s"
309 msgstr ""
310
311 #: ../src/virt-viewer-app.c:2292
312 #, c-format
313 msgid "Display _%d"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:2548
341317 #, c-format
342318 msgid "Invalid kiosk-quit argument: %s"
343319 msgstr "ਅਯੋਗ kiosk-quit ਆਰਗੂਮੈਂਟ: %s"
320
321 #: ../src/virt-viewer-app.c:2559
322 msgid "Display version information"
323 msgstr "ਸੰਸਕਰਣ ਜਾਣਕਾਰੀ ਵਿਖਾਓ"
344324
345325 #: ../src/virt-viewer-app.c:2561
346326 msgid "Zoom level of window, in percentage"
374354 msgid "Display debugging information"
375355 msgstr "ਡੀਬੱਗਿੰਗ ਜਾਣਕਾਰੀ ਵਿਖਾਓ"
376356
377 #: ../src/virt-viewer-auth.c:88
357 #: ../src/virt-viewer-auth.c:89
378358 #, c-format
379359 msgid ""
380360 "Authentication is required for the %s connection to:\n"
383363 "\n"
384364 msgstr ""
385365
386 #: ../src/virt-viewer-auth.c:92
366 #: ../src/virt-viewer-auth.c:93
387367 #, c-format
388368 msgid "Authentication is required for the %s connection:\n"
389369 msgstr ""
395375 #. * indent-tabs-mode: nil
396376 #. * End:
397377 #.
398 #: ../src/virt-viewer-auth.xml.h:1
378 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
399379 msgid "Authentication required"
400380 msgstr "ਪ੍ਰਮਾਣਿਕਤਾ ਲੋੜੀਂਦੀ ਹੈ"
401381
402 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
382 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
383 msgid "_OK"
384 msgstr ""
385
386 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
387 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
403388 msgid "label"
404389 msgstr "ਲੇਬਲ"
405390
406 #: ../src/virt-viewer-auth.xml.h:3
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
407392 msgid "Password:"
408393 msgstr "ਗੁਪਤ-ਸ਼ਬਦ:"
409394
410 #: ../src/virt-viewer-auth.xml.h:4
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
411396 msgid "Username:"
412397 msgstr "ਯੂਜ਼ਰ ਨਾਂ:"
413398
414 #: ../src/virt-viewer-auth.xml.h:5
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
415400 msgid "Show password"
416401 msgstr ""
417402
418 #: ../src/virt-viewer-display-vnc.c:133
403 #: ../src/virt-viewer-display-vnc.c:134
419404 msgid "VNC does not provide GUID"
420405 msgstr ""
421406
407 #: ../src/virt-viewer-file-transfer-dialog.c:152
408 msgid "Cancel"
409 msgstr ""
410
411 #: ../src/virt-viewer-file-transfer-dialog.c:163
412 msgid "File Transfers"
413 msgstr ""
414
422415 #: ../src/virt-viewer-main.c:38
423 #, c-format
424 msgid "%s version %s\n"
425 msgstr "%s ਸੰਸਕਰਣ %s\n"
426
427 #: ../src/virt-viewer-main.c:62
428 msgid "Direct connection with no automatic tunnels"
429 msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸ੍ਵੈ-ਚਲਿਤ ਸੁਰੰਗ ਦੇ ਸਿੱਧਾ ਸੰਪਰਕ"
430
431 #: ../src/virt-viewer-main.c:64
432 msgid "Attach to the local display using libvirt"
433 msgstr "libvirt ਵਰਤ ਕੇ ਸਥਾਨਕ ਡਿਸਪਲੇਅ ਨਾਲ ਜੁੜੋ"
434
435 #: ../src/virt-viewer-main.c:66
436 msgid "Connect to hypervisor"
437 msgstr "ਹਾਈਪਰਵਾਈਸਰ ਨਾਲ ਜੋੜੋ"
438
439 #: ../src/virt-viewer-main.c:68
440 msgid "Wait for domain to start"
441 msgstr "ਡੋਮੇਲ ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰੋ"
442
443 #: ../src/virt-viewer-main.c:70
444 msgid "Reconnect to domain upon restart"
445 msgstr "ਮੁੜ-ਚਾਲੂ ਹੋਣ ਤੇ ਡੋਮੇਨ ਨਾਲ ਮੁੜ-ਜੁੜੋ"
446
447 #: ../src/virt-viewer-main.c:77
448416 msgid "Virt Viewer"
449417 msgstr "Virt ਝਲਕਾਰਾ"
450418
451 #: ../src/virt-viewer-main.c:80
452 #, c-format
453 msgid "Run '%s --help' to see a full list of available command line options"
454 msgstr "ਪੂਰੀਆਂ ਉਪਲੱਬਧ ਕਮਾਂਡ ਲਾਈਨ ਚੋਣਾਂ ਵੇਖਣ ਵਾਸਤੇ '%s --help' ਚਲਾਓ"
455
456 #: ../src/virt-viewer-main.c:86
457 msgid "Virtual machine graphical console"
458 msgstr ""
459
460 #: ../src/virt-viewer-main.c:107
461 #, c-format
462 msgid ""
463 "\n"
464 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
465 "\n"
466 "%s\n"
467 "\n"
468 msgstr ""
469
470 #: ../src/virt-viewer-main.c:112
471 #, c-format
472 msgid ""
473 "\n"
474 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
475 "\n"
476 msgstr ""
477
478 #: ../src/virt-viewer-session-spice.c:694
419 #: ../src/virt-viewer-session-spice.c:705
479420 msgid "Invalid password"
480421 msgstr ""
481422
482423 #. Create the widgets
483 #: ../src/virt-viewer-session-spice.c:786
424 #: ../src/virt-viewer-session-spice.c:797
484425 msgid "Select USB devices for redirection"
485426 msgstr "ਰੀਡਾਇਰੈਕਸ਼ਨ ਲਈ USB ਜੰਤਰ ਚੁਣੋ"
486427
487 #: ../src/virt-viewer-session-vnc.c:153
428 #: ../src/virt-viewer-session-spice.c:799
429 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
430 msgid "_Close"
431 msgstr ""
432
433 #: ../src/virt-viewer-session-vnc.c:156
488434 #, c-format
489435 msgid "Unsupported authentication type %d"
490436 msgstr "ਅਸਮਰਥਿਤ ਪ੍ਰਮਾਣਿਕਤਾ ਕਿਸਮ %d"
497443 msgid "No virtual machine was chosen"
498444 msgstr ""
499445
500 #: ../src/virt-viewer-window.c:537
446 #: ../src/virt-viewer-window.c:534
501447 msgid "Ctrl+Alt+_Del"
502448 msgstr "Ctrl+Alt+_Del"
503449
504 #: ../src/virt-viewer-window.c:538
450 #: ../src/virt-viewer-window.c:535
505451 msgid "Ctrl+Alt+_Backspace"
506452 msgstr "Ctrl+Alt+_Backspace"
507453
508 #: ../src/virt-viewer-window.c:540
454 #: ../src/virt-viewer-window.c:537
509455 msgid "Ctrl+Alt+F_1"
510456 msgstr "Ctrl+Alt+F_1"
511457
512 #: ../src/virt-viewer-window.c:541
458 #: ../src/virt-viewer-window.c:538
513459 msgid "Ctrl+Alt+F_2"
514460 msgstr "Ctrl+Alt+F_2"
515461
516 #: ../src/virt-viewer-window.c:542
462 #: ../src/virt-viewer-window.c:539
517463 msgid "Ctrl+Alt+F_3"
518464 msgstr "Ctrl+Alt+F_3"
519465
520 #: ../src/virt-viewer-window.c:543
466 #: ../src/virt-viewer-window.c:540
521467 msgid "Ctrl+Alt+F_4"
522468 msgstr "Ctrl+Alt+F_4"
523469
524 #: ../src/virt-viewer-window.c:544
470 #: ../src/virt-viewer-window.c:541
525471 msgid "Ctrl+Alt+F_5"
526472 msgstr "Ctrl+Alt+F_5"
527473
528 #: ../src/virt-viewer-window.c:545
474 #: ../src/virt-viewer-window.c:542
529475 msgid "Ctrl+Alt+F_6"
530476 msgstr "Ctrl+Alt+F_6"
531477
532 #: ../src/virt-viewer-window.c:546
478 #: ../src/virt-viewer-window.c:543
533479 msgid "Ctrl+Alt+F_7"
534480 msgstr "Ctrl+Alt+F_7"
535481
536 #: ../src/virt-viewer-window.c:547
482 #: ../src/virt-viewer-window.c:544
537483 msgid "Ctrl+Alt+F_8"
538484 msgstr "Ctrl+Alt+F_8"
539485
540 #: ../src/virt-viewer-window.c:548
486 #: ../src/virt-viewer-window.c:545
541487 msgid "Ctrl+Alt+F_9"
542488 msgstr "Ctrl+Alt+F_9"
543489
544 #: ../src/virt-viewer-window.c:549
490 #: ../src/virt-viewer-window.c:546
545491 msgid "Ctrl+Alt+F1_0"
546492 msgstr "Ctrl+Alt+F1_0"
547493
548 #: ../src/virt-viewer-window.c:550
494 #: ../src/virt-viewer-window.c:547
549495 msgid "Ctrl+Alt+F11"
550496 msgstr "Ctrl+Alt+F11"
551497
552 #: ../src/virt-viewer-window.c:551
498 #: ../src/virt-viewer-window.c:548
553499 msgid "Ctrl+Alt+F12"
554500 msgstr "Ctrl+Alt+F12"
555501
556 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
502 #: ../src/virt-viewer-window.c:919
503 msgid "_Save"
504 msgstr ""
505
506 #: ../src/virt-viewer-window.c:927
557507 msgid "Screenshot"
558508 msgstr "ਸਕਰੀਨ-ਸ਼ਾਟ"
559509
560 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
510 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
561511 msgid "Unknown"
562512 msgstr ""
563513
564 #: ../src/virt-viewer-window.c:1062
514 #: ../src/virt-viewer-window.c:1071
565515 msgid "Disconnect"
566516 msgstr "ਸੰਪਰਕ ਤੋੜੋ"
567517
568 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
569 #: ../src/virt-viewer.xml.h:3
518 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
570519 msgid "USB device selection"
571520 msgstr "USB ਜੰਤਰ ਚੋਣ"
572521
573 #: ../src/virt-viewer-window.c:1081
522 #: ../src/virt-viewer-window.c:1089
574523 msgid "Send key combination"
575524 msgstr "ਚਾਬੀ ਮਿਸ਼ਰਨ ਭੇਜੋ"
576525
577 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
526 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
578527 msgid "Leave fullscreen"
579528 msgstr "ਪੂਰੀ ਸਕਰੀਨ ਛੱਡੋ"
580529
581 #: ../src/virt-viewer-window.c:1173
530 #: ../src/virt-viewer-window.c:1175
582531 msgid "Ctrl+Alt"
583532 msgstr "Ctrl+Alt"
584533
585 #: ../src/virt-viewer-window.c:1176
534 #: ../src/virt-viewer-window.c:1178
586535 #, c-format
587536 msgid "(Press %s to release pointer)"
588537 msgstr "(ਪੁਆਇੰਟਰ ਛੱਡਣ ਲਈ %s ਦੱਬੋ)"
591540 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
592541 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
593542 #.
594 #: ../src/virt-viewer-window.c:1187
543 #: ../src/virt-viewer-window.c:1189
595544 #, c-format
596545 msgid "%s%s%s - %s"
597546 msgstr "%s%s%s - %s"
598547
599548 #. translators: <space>
600 #: ../src/virt-viewer-window.c:1191
549 #: ../src/virt-viewer-window.c:1193
601550 msgid " "
602551 msgstr " "
603552
604 #: ../src/virt-viewer-file.c:825
553 #: ../src/virt-viewer-file.c:843
605554 #, c-format
606555 msgid ""
607556 "At least %s version %s is required to setup this connection, see %s for "
608557 "details"
609558 msgstr ""
610559
611 #: ../src/virt-viewer-file.c:833
560 #: ../src/virt-viewer-file.c:851
612561 #, c-format
613562 msgid "At least %s version %s is required to setup this connection"
614563 msgstr "ਇਸ ਸੰਪਰਕ ਦੇ ਸੈੱਟਅੱਪ ਲਈ ਘੱਟੋ-ਘੱਟ %s ਸੰਸਕਰਣ %s ਲੋੜੀਂਦਾ ਹੈ"
615564
616 #: ../src/virt-viewer.c:163
565 #: ../src/virt-viewer.c:90
566 msgid "Direct connection with no automatic tunnels"
567 msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸ੍ਵੈ-ਚਲਿਤ ਸੁਰੰਗ ਦੇ ਸਿੱਧਾ ਸੰਪਰਕ"
568
569 #: ../src/virt-viewer.c:92
570 msgid "Attach to the local display using libvirt"
571 msgstr "libvirt ਵਰਤ ਕੇ ਸਥਾਨਕ ਡਿਸਪਲੇਅ ਨਾਲ ਜੁੜੋ"
572
573 #: ../src/virt-viewer.c:94
574 msgid "Connect to hypervisor"
575 msgstr "ਹਾਈਪਰਵਾਈਸਰ ਨਾਲ ਜੋੜੋ"
576
577 #: ../src/virt-viewer.c:96
578 msgid "Wait for domain to start"
579 msgstr "ਡੋਮੇਲ ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰੋ"
580
581 #: ../src/virt-viewer.c:98
582 msgid "Reconnect to domain upon restart"
583 msgstr "ਮੁੜ-ਚਾਲੂ ਹੋਣ ਤੇ ਡੋਮੇਨ ਨਾਲ ਮੁੜ-ਜੁੜੋ"
584
585 #: ../src/virt-viewer.c:105
586 msgid "Virtual machine graphical console"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:124
590 #, c-format
591 msgid ""
592 "\n"
593 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
594 "\n"
595 msgstr ""
596
597 #: ../src/virt-viewer.c:136
598 #, c-format
599 msgid ""
600 "\n"
601 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
602 "\n"
603 msgstr ""
604
605 #: ../src/virt-viewer.c:250
617606 msgid "Waiting for guest domain to re-start"
618607 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੇ ਮੁੜ-ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ"
619608
620 #: ../src/virt-viewer.c:409
609 #: ../src/virt-viewer.c:496
621610 #, c-format
622611 msgid "Cannot determine the graphic type for the guest %s"
623612 msgstr "ਪ੍ਰਾਹੁਣਾ %s ਲਈ ਗਰਾਫਿਕ ਕਿਸਮ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਦਾ"
624613
625 #: ../src/virt-viewer.c:448
614 #: ../src/virt-viewer.c:535
626615 #, c-format
627616 msgid "Cannot determine the host for the guest %s"
628617 msgstr "ਪ੍ਰਾਹੁਣਾ %s ਲਈ ਹੋਸਟ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਦਾ"
629618
630 #: ../src/virt-viewer.c:476
619 #: ../src/virt-viewer.c:563
631620 #, c-format
632621 msgid "Guest '%s' is not reachable"
633622 msgstr ""
634623
635 #: ../src/virt-viewer.c:697
624 #: ../src/virt-viewer.c:784
636625 #, c-format
637626 msgid "Virtual machine %s is not running"
638627 msgstr ""
639628
640 #: ../src/virt-viewer.c:720
629 #: ../src/virt-viewer.c:807
641630 msgid "Waiting for libvirt to start"
642631 msgstr "libvirt ਦੇ ਸ਼ੁਰੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
643632
644 #: ../src/virt-viewer.c:724
633 #: ../src/virt-viewer.c:811
645634 msgid "Finding guest domain"
646635 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਲੱਭ ਰਿਹਾ ਹੈ"
647636
648 #: ../src/virt-viewer.c:728
637 #: ../src/virt-viewer.c:815
649638 msgid "Waiting for guest domain to be created"
650639 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੇ ਬਣਾਏ ਜਾਣ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ"
651640
652 #: ../src/virt-viewer.c:750
641 #: ../src/virt-viewer.c:837
653642 msgid "Checking guest domain status"
654643 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੀ ਹਾਲਤ ਜਾਂਚ ਰਿਹਾ ਹੈ"
655644
656 #: ../src/virt-viewer.c:753
645 #: ../src/virt-viewer.c:840
657646 msgid "Cannot get guest state"
658647 msgstr ""
659648
660 #: ../src/virt-viewer.c:759
649 #: ../src/virt-viewer.c:846
661650 msgid "Waiting for guest domain to start"
662651 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੇ ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ"
663652
664 #: ../src/virt-viewer.c:863
653 #: ../src/virt-viewer.c:950
665654 #, c-format
666655 msgid "Unable to connect to libvirt with URI: %s."
667656 msgstr ""
668657
669 #: ../src/virt-viewer.c:864
658 #: ../src/virt-viewer.c:951
670659 msgid "[none]"
671660 msgstr "[ਕੋਈ ਨਹੀਂ]"
672661
673 #: ../src/virt-viewer.c:871
662 #: ../src/virt-viewer.c:958
674663 msgid "Authentication failed."
675664 msgstr ""
676665
677 #: ../src/virt-viewer.c:931
666 #: ../src/virt-viewer.c:1018
678667 msgid "Failed to connect: "
679668 msgstr ""
680669
685674 #. * indent-tabs-mode: nil
686675 #. * End:
687676 #.
688 #: ../src/virt-viewer.xml.h:1
677 #: ../src/resources/ui/virt-viewer.ui.h:1
689678 msgid "_File"
690679 msgstr "ਫਾਈਲ (_F)"
691680
692 #: ../src/virt-viewer.xml.h:4
681 #: ../src/resources/ui/virt-viewer.ui.h:2
682 msgid "_Screenshot"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:3
686 msgid "_USB device selection"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:4
693690 msgid "Smartcard insertion"
694691 msgstr "ਸਮਾਰਟ-ਕਾਰਡ ਅੰਦਰ ਪਾਉਣਾ"
695692
696 #: ../src/virt-viewer.xml.h:5
693 #: ../src/resources/ui/virt-viewer.ui.h:5
697694 msgid "Smartcard removal"
698695 msgstr "ਸਮਾਰਡ-ਕਾਰਡ ਹਟਾਉਣਾ"
699696
700 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
701 msgid "Preferences"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:7
697 #: ../src/resources/ui/virt-viewer.ui.h:6
698 msgid "_Preferences"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:7
702 msgid "_Quit"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:8
705706 msgid "_View"
706707 msgstr "ਵੇਖੋ (_V)"
707708
708 #: ../src/virt-viewer.xml.h:8
709 msgid "Full screen"
710 msgstr "ਪੂਰਾ ਪਰਦਾ"
711
712 #: ../src/virt-viewer.xml.h:9
709 #: ../src/resources/ui/virt-viewer.ui.h:9
710 msgid "_Full screen"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:10
713714 msgid "_Zoom"
714715 msgstr "ਜ਼ੂਮ (_Z)"
715716
716 #: ../src/virt-viewer.xml.h:10
717 msgid "Displays"
718 msgstr "ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਦਾ ਹੈ"
719
720 #: ../src/virt-viewer.xml.h:11
717 #: ../src/resources/ui/virt-viewer.ui.h:11
718 msgid "Zoom _In"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:12
722 msgid "Zoom _Out"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:13
726 msgid "_Normal Size"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:14
730 msgid "_Displays"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:15
721734 msgid "Release cursor"
722735 msgstr "ਕਰਸਰ ਛੱਡੋ"
723736
724 #: ../src/virt-viewer.xml.h:12
737 #: ../src/resources/ui/virt-viewer.ui.h:16
725738 msgid "_Send key"
726739 msgstr "ਕੁੰਜੀ ਭੇਜੋ (_S)"
727740
728 #: ../src/virt-viewer.xml.h:13
741 #: ../src/resources/ui/virt-viewer.ui.h:17
729742 msgid "_Help"
730743 msgstr "ਮਦਦ (_H)"
731744
732 #: ../src/virt-viewer.xml.h:14
745 #: ../src/resources/ui/virt-viewer.ui.h:18
733746 msgid "_Guest Details"
734747 msgstr ""
735748
736 #: ../src/virt-viewer-guest-details.xml.h:1
749 #: ../src/resources/ui/virt-viewer.ui.h:19
750 msgid "_About"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer.ui.h:20
754 msgid "_Change CD"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
737758 msgid "Guest Details"
738759 msgstr ""
739760
740 #: ../src/virt-viewer-guest-details.xml.h:2
761 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
741762 msgid "Name:"
742763 msgstr ""
743764
744 #: ../src/virt-viewer-guest-details.xml.h:3
765 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
745766 msgid "GUID:"
746767 msgstr ""
747768
748 #: ../src/virt-viewer-vm-connection.xml.h:1
769 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
749770 msgid "Choose a virtual machine"
750771 msgstr ""
751772
752 #: ../src/virt-viewer-vm-connection.xml.h:2
773 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
753774 msgid "Name"
754775 msgstr ""
755776
756 #: ../src/virt-viewer-vm-connection.xml.h:3
777 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
757778 msgid "Available virtual machines"
758779 msgstr ""
759780
760 #: ../src/virt-viewer-preferences.xml.h:2
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
782 msgid "Preferences"
783 msgstr ""
784
785 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
761786 msgid "Folder sharing"
762787 msgstr ""
763788
764 #: ../src/virt-viewer-preferences.xml.h:3
789 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
765790 msgid "Share folder"
766791 msgstr ""
767792
768 #: ../src/virt-viewer-preferences.xml.h:4
793 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
769794 msgid "Read-only"
770795 msgstr ""
771796
772 #: ../src/virt-viewer-preferences.xml.h:5
797 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
773798 msgid "Spice"
774799 msgstr ""
+354
-324
po/pl.po less more
33 #
44 # Translators:
55 # Piotr Drąg <piotrdrag@gmail.com>, 2010,2012-2014
6 # Piotr Drąg <piotrdrag@gmail.com>, 2015. #zanata
6 # Piotr Drąg <pdrag@aviary.pl>, 2015. #zanata
7 # Piotr Drąg <pdrag@aviary.pl>, 2016. #zanata
78 msgid ""
89 msgstr ""
910 "Project-Id-Version: PACKAGE VERSION\n"
1011 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "PO-Revision-Date: 2015-12-07 10:36-0500\n"
13 "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
13 "PO-Revision-Date: 2016-06-24 09:48-0400\n"
14 "Last-Translator: Piotr Drąg <pdrag@aviary.pl>\n"
1415 "Language-Team: Polish (http://www.transifex.com/projects/p/virt-viewer/"
1516 "language/pl/)\n"
1617 "Language: pl\n"
1920 "Content-Transfer-Encoding: 8bit\n"
2021 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
2122 "|| n%100>=20) ? 1 : 2);\n"
22 "X-Generator: Zanata 3.7.3\n"
23
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
23 "X-Generator: Zanata 3.8.4\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
2527 msgid "Remote Viewer"
2628 msgstr "Zdalne przeglądanie"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 msgid ""
36 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
37 "time it supports guest OS using the VNC or SPICE protocols. Further "
38 "protocols may be supported in the future as user demand dictates. The viewer "
39 "can connect directly to both local and remotely hosted guest OS, optionally "
40 "using SSL/TLS encryption."
41 msgstr ""
2742
2843 #: ../data/remote-viewer.desktop.in.h:2
2944 msgid "Access remote desktops"
3348 msgid "Virt-Viewer connection file"
3449 msgstr "Plik połączenia programu Virt-Viewer"
3550
36 #: ../src/gbinding.c:637
37 msgid "Source"
38 msgstr "Źródło"
39
40 #: ../src/gbinding.c:638
41 msgid "The source of the binding"
42 msgstr "Źródło dowiązania"
43
44 #: ../src/gbinding.c:652
45 msgid "Target"
46 msgstr "Cel"
47
48 #: ../src/gbinding.c:653
49 msgid "The target of the binding"
50 msgstr "Cel dowiązania"
51
52 #: ../src/gbinding.c:668
53 msgid "Source Property"
54 msgstr "Właściwość źródła"
55
56 #: ../src/gbinding.c:669
57 msgid "The property on the source to bind"
58 msgstr "Właściwość źródła do dowiązania"
59
60 #: ../src/gbinding.c:684
61 msgid "Target Property"
62 msgstr "Właściwość celu"
63
64 #: ../src/gbinding.c:685
65 msgid "The property on the target to bind"
66 msgstr "Właściwość celu do dowiązania"
67
68 #: ../src/gbinding.c:699
69 msgid "Flags"
70 msgstr "Flagi"
71
72 #: ../src/gbinding.c:700
73 msgid "The binding flags"
74 msgstr "Flagi dowiązania"
75
76 #: ../src/remote-viewer-main.c:50
77 #, c-format
78 msgid "remote-viewer version %s"
79 msgstr "remote-viewer w wersji %s"
80
81 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
82 msgid "Display version information"
83 msgstr "Wyświetla informację o wersji"
84
85 #: ../src/remote-viewer-main.c:105
51 #: ../src/remote-viewer.c:139
8652 msgid "Set window title"
8753 msgstr "Ustawia tytuł okna"
8854
89 #: ../src/remote-viewer-main.c:108
55 #: ../src/remote-viewer.c:142
9056 msgid "Open connection using Spice controller communication"
9157 msgstr "Otwiera połączenie używając komunikacji kontrolera Spice"
9258
93 #: ../src/remote-viewer-main.c:120
59 #: ../src/remote-viewer.c:150
9460 msgid "Remote viewer client"
9561 msgstr "Klient zdalnej przeglądarki"
9662
97 #: ../src/remote-viewer-main.c:138
98 #, c-format
99 msgid ""
100 "%s\n"
101 "Run '%s --help' to see a full list of available command line options\n"
102 msgstr ""
103 "%s\n"
63 #: ../src/remote-viewer.c:175
64 #, c-format
65 msgid ""
66 "\n"
67 "Error: can't handle multiple URIs\n"
68 "\n"
69 msgstr ""
70 "\n"
71 "Błąd: nie można obsłużyć wielu adresów URI\n"
72 "\n"
73
74 #: ../src/remote-viewer.c:187
75 #, c-format
76 msgid ""
77 "\n"
78 "Error: extra arguments given while using Spice controller\n"
79 "\n"
80 msgstr ""
81 "\n"
82 "Błąd: podano dodatkowe parametry podczas używania kontrolera Spice\n"
83 "\n"
84
85 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
86 #, c-format
87 msgid "Run '%s --help' to see a full list of available command line options\n"
88 msgstr ""
10489 "Polecenie „%s --help” wyświetli pełną listę dostępnych opcji wiersza "
10590 "poleceń\n"
10691
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr "Błąd: podano dodatkowe parametry podczas używania kontrolera Spice\n"
111
112 #: ../src/remote-viewer-main.c:156
113 #, c-format
114 msgid "Error: can't handle multiple URIs\n"
115 msgstr "Błąd: nie można obsłużyć wielu adresów URI\n"
116
117 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
92 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11893 msgid "Failed to initiate connection"
11994 msgstr "Zainicjowanie połączenia się nie powiodło"
12095
121 #: ../src/remote-viewer.c:313
96 #: ../src/remote-viewer.c:297
12297 msgid "Display disabled by controller"
12398 msgstr "Ekran został wyłączony przez kontroler"
12499
125 #: ../src/remote-viewer.c:609
100 #: ../src/remote-viewer.c:593
126101 #, c-format
127102 msgid "Controller connection failed: %s"
128103 msgstr "Połączenie kontrolera się nie powiodło: %s"
129104
130 #: ../src/remote-viewer.c:755
131 msgid "_Change CD"
132 msgstr "_Zmień płytę CD"
133
134 #: ../src/remote-viewer.c:855
105 #: ../src/remote-viewer.c:848
135106 msgid "failed to parse ovirt uri"
136107 msgstr "przetworzenie adresu URI oVirt się nie powiodło"
137108
138 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
109 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
139110 msgid "Authentication was cancelled"
140111 msgstr "Anulowano uwierzytelnianie"
141112
142 #: ../src/remote-viewer.c:900
113 #: ../src/remote-viewer.c:893
143114 #, c-format
144115 msgid "oVirt VM %s is not running"
145116 msgstr "Maszyna wirtualna oVirt %s nie jest uruchomiona"
146117
147 #: ../src/remote-viewer.c:914
118 #: ../src/remote-viewer.c:907
148119 #, c-format
149120 msgid "oVirt VM %s has no display"
150121 msgstr "Maszyna wirtualna oVirt %s nie posiada ekranu"
151122
152 #: ../src/remote-viewer.c:940
123 #: ../src/remote-viewer.c:933
153124 #, c-format
154125 msgid "oVirt VM %s has no host information"
155126 msgstr "Maszyna wirtualna oVirt %s nie posiada informacji o komputerze"
156127
157 #: ../src/remote-viewer.c:951
128 #: ../src/remote-viewer.c:944
158129 #, c-format
159130 msgid "oVirt VM %s has unknown display type: %d"
160131 msgstr "Maszyna wirtualna oVirt %s posiada nieznany typ ekranu: %d"
161132
162 #: ../src/remote-viewer.c:1094
133 #: ../src/remote-viewer.c:1115
163134 msgid "Setting up Spice session..."
164135 msgstr "Ustawianie sesji Spice…"
165136
166 #: ../src/remote-viewer.c:1102
137 #: ../src/remote-viewer.c:1123
167138 msgid "No connection was chosen"
168139 msgstr "Nie wybrano połączenia"
169140
170 #: ../src/remote-viewer.c:1120
141 #: ../src/remote-viewer.c:1141
171142 #, c-format
172143 msgid "Invalid file %s: "
173144 msgstr "Nieprawidłowy plik %s: "
174145
175 #: ../src/remote-viewer.c:1128
146 #: ../src/remote-viewer.c:1149
176147 msgid "Cannot determine the connection type from URI"
177148 msgstr "Nie można ustalić typu połączenia z adresu URI"
178149
179 #: ../src/remote-viewer.c:1134
150 #: ../src/remote-viewer.c:1155
180151 msgid "Couldn't open oVirt session: "
181152 msgstr "Nie można otworzyć sesji oVirt: "
182153
187158 #. * indent-tabs-mode: nil
188159 #. * End:
189160 #.
190 #: ../src/remote-viewer-connect.xml.h:1
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
191162 msgid "Connection details"
192163 msgstr "Szczegóły połączenia"
193164
194 #: ../src/remote-viewer-connect.xml.h:2
195 msgid "Connection Address"
196 msgstr "Adres połączenia"
197
198 #: ../src/remote-viewer-connect.xml.h:3
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
166 msgid "Connection _Address"
167 msgstr ""
168
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
199170 msgid "For example, spice://foo.example.org:5900"
200171 msgstr "Na przykład spice://foo.example.org:5900"
201172
202 #: ../src/remote-viewer-connect.xml.h:4
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
203174 msgid "Recent connections"
204175 msgstr "Ostatnie połączania"
205176
206 #: ../src/remote-viewer-connect.xml.h:5
207 msgid "Cancel"
208 msgstr "Anuluj"
209
210 #: ../src/remote-viewer-connect.xml.h:6
211 msgid "Connect"
212 msgstr "Połącz"
213
214 #: ../src/virt-viewer-about.xml.h:1
215 msgid "About Glade"
216 msgstr "O programie Glade"
217
218 #: ../src/virt-viewer-about.xml.h:2
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:918
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 msgid "_Cancel"
181 msgstr "_Anuluj"
182
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
185 msgid "C_onnect"
186 msgstr "P_ołącz"
187
188 #: ../src/resources/ui/virt-viewer-about.ui.h:1
189 msgid "About Virt-Viewer"
190 msgstr "O programie Virt-Viewer"
191
192 #: ../src/resources/ui/virt-viewer-about.ui.h:2
219193 msgid ""
220194 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
221195 "Copyright (C) 2007-2014 Red Hat, Inc."
223197 "Copyright © 2007-2012 Daniel P. Berrange\n"
224198 "Copyright © 2007-2014 Red Hat, Inc."
225199
226 #: ../src/virt-viewer-about.xml.h:4
200 #: ../src/resources/ui/virt-viewer-about.ui.h:4
227201 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
228202 msgstr ""
229203 "Klient zdalnego pulpitu zbudowany za pomocą bibliotek GTK-VNC, SPICE-GTK i "
230204 "libvirt"
231205
232 #: ../src/virt-viewer-about.xml.h:5
206 #: ../src/resources/ui/virt-viewer-about.ui.h:5
233207 msgid "virt-manager.org"
234208 msgstr "virt-manager.org"
235209
236 #: ../src/virt-viewer-about.xml.h:6
210 #: ../src/resources/ui/virt-viewer-about.ui.h:6
237211 msgid ""
238212 "This program is free software; you can redistribute it and/or modify\n"
239213 "it under the terms of the GNU General Public License as published by\n"
265239 "— proszę napisać do Free Software Foundation, Inc., 59 Temple Place, Suite\n"
266240 "330, Boston, MA 02111-1307 USA.\n"
267241
268 #: ../src/virt-viewer-about.xml.h:20
242 #: ../src/resources/ui/virt-viewer-about.ui.h:20
269243 msgid "The Fedora Translation Team"
270244 msgstr "Zespół tłumaczenia Fedory"
271245
272 #: ../src/virt-viewer-app.c:526
246 #: ../src/virt-viewer-app.c:458
273247 msgid "Do you want to close the session?"
274248 msgstr "Zamknąć sesję?"
275249
276 #: ../src/virt-viewer-app.c:528
250 #: ../src/virt-viewer-app.c:460
277251 msgid "Do not ask me again"
278252 msgstr "Bez pytania ponownie"
279253
280 #: ../src/virt-viewer-app.c:1008
254 #: ../src/virt-viewer-app.c:948
281255 #, c-format
282256 msgid "Waiting for display %d..."
283 msgstr "Oczekiwanie na ekran %d…"
284
285 #: ../src/virt-viewer-app.c:1117
257 msgstr "Oczekiwanie na %d. ekran…"
258
259 #: ../src/virt-viewer-app.c:1055
286260 #, c-format
287261 msgid "Unsupported graphic type '%s'"
288 msgstr "Nieobsługiwany typ grafiki ”%s”"
289
290 #: ../src/virt-viewer-app.c:1200
262 msgstr "Nieobsługiwany typ grafiki „%s”"
263
264 #: ../src/virt-viewer-app.c:1138
291265 msgid "Connect to ssh failed."
292 msgstr "Połączenie z ssh się nie powiodło."
293
294 #: ../src/virt-viewer-app.c:1202
266 msgstr "Połączenie z usługą ssh się nie powiodło."
267
268 #: ../src/virt-viewer-app.c:1140
295269 msgid "Can't connect to channel, SSH only supported."
296270 msgstr "Nie można połączyć się z kanałem, obsługiwane jest tylko SSH."
297271
298 #: ../src/virt-viewer-app.c:1214
272 #: ../src/virt-viewer-app.c:1152
299273 msgid "Connect to channel unsupported."
300274 msgstr "Łączenie z kanałem jest nieobsługiwane."
301275
302 #: ../src/virt-viewer-app.c:1276
276 #: ../src/virt-viewer-app.c:1214
303277 msgid "Display can only be attached through libvirt with --attach"
304278 msgstr ""
305279 "Ekran może zostać podłączony tylko przez bibliotekę libvirt za pomocą opcji "
306280 "--attach"
307281
308 #: ../src/virt-viewer-app.c:1299
282 #: ../src/virt-viewer-app.c:1237
309283 msgid "Connecting to graphic server"
310284 msgstr "Łączenie z serwerem grafiki"
311285
312 #: ../src/virt-viewer-app.c:1398
286 #: ../src/virt-viewer-app.c:1336
313287 msgid "Guest domain has shutdown"
314288 msgstr "Domena gościa została wyłączona"
315289
316 #: ../src/virt-viewer-app.c:1459
290 #: ../src/virt-viewer-app.c:1397
317291 msgid "Connected to graphic server"
318292 msgstr "Połączono z serwerem grafiki"
319293
320 #: ../src/virt-viewer-app.c:1486
294 #: ../src/virt-viewer-app.c:1424
321295 #, c-format
322296 msgid "Unable to connect to the graphic server %s"
323297 msgstr "Nie można połączyć się z serwerem grafiki %s"
324298
325 #: ../src/virt-viewer-app.c:1512
299 #: ../src/virt-viewer-app.c:1450
326300 #, c-format
327301 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
328302 msgstr "Nie można uwierzytelnić ze zdalnym serwerem pulpitu w %s: %s\n"
329303
330 #: ../src/virt-viewer-app.c:1525
304 #: ../src/virt-viewer-app.c:1463
331305 #, c-format
332306 msgid "Unable to authenticate with remote desktop server: %s"
333307 msgstr "Nie można uwierzytelnić z serwerem zdalnego pulpitu: %s"
334308
335 #: ../src/virt-viewer-app.c:1533
309 #: ../src/virt-viewer-app.c:1471
336310 #, c-format
337311 msgid "USB redirection error: %s"
338312 msgstr "Błąd przekierowania USB: %s"
339313
340 #: ../src/virt-viewer-app.c:1786
314 #: ../src/virt-viewer-app.c:1805
341315 #, c-format
342316 msgid "Zoom level must be within %d-%d\n"
343317 msgstr "Poziom powiększenia musi być w zakresie %d-%d\n"
344318
345 #: ../src/virt-viewer-app.c:2296
346 #, c-format
347 msgid "Display %d"
348 msgstr "Ekran %d"
349
350 #: ../src/virt-viewer-app.c:2552
319 #: ../src/virt-viewer-app.c:1858
320 #, c-format
321 msgid "%s\n"
322 msgstr "%s\n"
323
324 #: ../src/virt-viewer-app.c:1868
325 #, c-format
326 msgid "%s version %s"
327 msgstr "%s w wersji %s"
328
329 #: ../src/virt-viewer-app.c:2292
330 #, c-format
331 msgid "Display _%d"
332 msgstr "_%d. ekran"
333
334 #: ../src/virt-viewer-app.c:2548
351335 #, c-format
352336 msgid "Invalid kiosk-quit argument: %s"
353337 msgstr "Nieprawidłowy parametr kiosk-quit: %s"
338
339 #: ../src/virt-viewer-app.c:2559
340 msgid "Display version information"
341 msgstr "Wyświetla informację o wersji"
354342
355343 #: ../src/virt-viewer-app.c:2561
356344 msgid "Zoom level of window, in percentage"
386374 msgid "Display debugging information"
387375 msgstr "Wyświetla informacje o debugowaniu"
388376
389 #: ../src/virt-viewer-auth.c:88
377 #: ../src/virt-viewer-auth.c:89
390378 #, c-format
391379 msgid ""
392380 "Authentication is required for the %s connection to:\n"
399387 "<b>%s</b>\n"
400388 "\n"
401389
402 #: ../src/virt-viewer-auth.c:92
390 #: ../src/virt-viewer-auth.c:93
403391 #, c-format
404392 msgid "Authentication is required for the %s connection:\n"
405393 msgstr "Wymagane jest uwierzytelnienie dla połączenia %s:\n"
411399 #. * indent-tabs-mode: nil
412400 #. * End:
413401 #.
414 #: ../src/virt-viewer-auth.xml.h:1
402 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
415403 msgid "Authentication required"
416404 msgstr "Wymagane jest uwierzytelnienie"
417405
418 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
406 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
407 msgid "_OK"
408 msgstr "_OK"
409
410 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
411 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
419412 msgid "label"
420413 msgstr "etykieta"
421414
422 #: ../src/virt-viewer-auth.xml.h:3
415 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
423416 msgid "Password:"
424417 msgstr "Hasło:"
425418
426 #: ../src/virt-viewer-auth.xml.h:4
419 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
427420 msgid "Username:"
428421 msgstr "Nazwa użytkownika:"
429422
430 #: ../src/virt-viewer-auth.xml.h:5
423 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
431424 msgid "Show password"
432425 msgstr "Wyświetlanie hasła"
433426
434 #: ../src/virt-viewer-display-vnc.c:133
427 #: ../src/virt-viewer-display-vnc.c:134
435428 msgid "VNC does not provide GUID"
436429 msgstr "VNC nie podaje GUID"
437430
431 #: ../src/virt-viewer-file-transfer-dialog.c:152
432 msgid "Cancel"
433 msgstr "Anuluj"
434
435 #: ../src/virt-viewer-file-transfer-dialog.c:163
436 msgid "File Transfers"
437 msgstr "Przesyłanie plików"
438
438439 #: ../src/virt-viewer-main.c:38
439 #, c-format
440 msgid "%s version %s\n"
441 msgstr "%s w wersji %s\n"
442
443 #: ../src/virt-viewer-main.c:62
444 msgid "Direct connection with no automatic tunnels"
445 msgstr "Bezpośrednie połączenie bez automatycznych tuneli"
446
447 #: ../src/virt-viewer-main.c:64
448 msgid "Attach to the local display using libvirt"
449 msgstr "Łączy z lokalnym ekranem za pomocą biblioteki libvirt"
450
451 #: ../src/virt-viewer-main.c:66
452 msgid "Connect to hypervisor"
453 msgstr "Łączy z nadzorcą"
454
455 #: ../src/virt-viewer-main.c:68
456 msgid "Wait for domain to start"
457 msgstr "Oczekuje na uruchomienie domeny"
458
459 #: ../src/virt-viewer-main.c:70
460 msgid "Reconnect to domain upon restart"
461 msgstr "Ponownie łączy z domeną po ponownym uruchomieniu"
462
463 #: ../src/virt-viewer-main.c:77
464440 msgid "Virt Viewer"
465441 msgstr "Przeglądarka wirtualizacji"
466442
467 #: ../src/virt-viewer-main.c:80
468 #, c-format
469 msgid "Run '%s --help' to see a full list of available command line options"
470 msgstr ""
471 "Polecenie „%s --help” wyświetli pełną listę dostępnych opcji wiersza poleceń"
472
473 #: ../src/virt-viewer-main.c:86
474 msgid "Virtual machine graphical console"
475 msgstr "Graficzna konsola maszyny wirtualnej"
476
477 #: ../src/virt-viewer-main.c:107
478 #, c-format
479 msgid ""
480 "\n"
481 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
482 "\n"
483 "%s\n"
484 "\n"
485 msgstr ""
486 "\n"
487 "Użycie: %s [OPCJE] [NAZWA-DOMENY|ID|UUID]\n"
488 "\n"
489 "%s\n"
490 "\n"
491
492 #: ../src/virt-viewer-main.c:112
493 #, c-format
494 msgid ""
495 "\n"
496 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
497 "\n"
498 msgstr ""
499 "\n"
500 "Nie podano NAZWY-DOMENY|ID|UUID dla parametru „--wait”\n"
501 "\n"
502
503 #: ../src/virt-viewer-session-spice.c:694
443 #: ../src/virt-viewer-session-spice.c:705
504444 msgid "Invalid password"
505445 msgstr "Nieprawidłowe hasło"
506446
507447 #. Create the widgets
508 #: ../src/virt-viewer-session-spice.c:786
448 #: ../src/virt-viewer-session-spice.c:797
509449 msgid "Select USB devices for redirection"
510450 msgstr "Wybór urządzeń USB do przekierowania"
511451
512 #: ../src/virt-viewer-session-vnc.c:153
452 #: ../src/virt-viewer-session-spice.c:799
453 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
454 msgid "_Close"
455 msgstr "Za_mknij"
456
457 #: ../src/virt-viewer-session-vnc.c:156
513458 #, c-format
514459 msgid "Unsupported authentication type %d"
515460 msgstr "Nieobsługiwany typ uwierzytelnienia %d"
522467 msgid "No virtual machine was chosen"
523468 msgstr "Nie wybrano maszyny wirtualnej"
524469
525 #: ../src/virt-viewer-window.c:537
470 #: ../src/virt-viewer-window.c:534
526471 msgid "Ctrl+Alt+_Del"
527472 msgstr "Ctrl+Alt+_Del"
528473
529 #: ../src/virt-viewer-window.c:538
474 #: ../src/virt-viewer-window.c:535
530475 msgid "Ctrl+Alt+_Backspace"
531476 msgstr "Ctrl+Alt+_Backspace"
532477
533 #: ../src/virt-viewer-window.c:540
478 #: ../src/virt-viewer-window.c:537
534479 msgid "Ctrl+Alt+F_1"
535480 msgstr "Ctrl+Alt+F_1"
536481
537 #: ../src/virt-viewer-window.c:541
482 #: ../src/virt-viewer-window.c:538
538483 msgid "Ctrl+Alt+F_2"
539484 msgstr "Ctrl+Alt+F_2"
540485
541 #: ../src/virt-viewer-window.c:542
486 #: ../src/virt-viewer-window.c:539
542487 msgid "Ctrl+Alt+F_3"
543488 msgstr "Ctrl+Alt+F_3"
544489
545 #: ../src/virt-viewer-window.c:543
490 #: ../src/virt-viewer-window.c:540
546491 msgid "Ctrl+Alt+F_4"
547492 msgstr "Ctrl+Alt+F_4"
548493
549 #: ../src/virt-viewer-window.c:544
494 #: ../src/virt-viewer-window.c:541
550495 msgid "Ctrl+Alt+F_5"
551496 msgstr "Ctrl+Alt+F_5"
552497
553 #: ../src/virt-viewer-window.c:545
498 #: ../src/virt-viewer-window.c:542
554499 msgid "Ctrl+Alt+F_6"
555500 msgstr "Ctrl+Alt+F_6"
556501
557 #: ../src/virt-viewer-window.c:546
502 #: ../src/virt-viewer-window.c:543
558503 msgid "Ctrl+Alt+F_7"
559504 msgstr "Ctrl+Alt+F_7"
560505
561 #: ../src/virt-viewer-window.c:547
506 #: ../src/virt-viewer-window.c:544
562507 msgid "Ctrl+Alt+F_8"
563508 msgstr "Ctrl+Alt+F_8"
564509
565 #: ../src/virt-viewer-window.c:548
510 #: ../src/virt-viewer-window.c:545
566511 msgid "Ctrl+Alt+F_9"
567512 msgstr "Ctrl+Alt+F_9"
568513
569 #: ../src/virt-viewer-window.c:549
514 #: ../src/virt-viewer-window.c:546
570515 msgid "Ctrl+Alt+F1_0"
571516 msgstr "Ctrl+Alt+F1_0"
572517
573 #: ../src/virt-viewer-window.c:550
518 #: ../src/virt-viewer-window.c:547
574519 msgid "Ctrl+Alt+F11"
575520 msgstr "Ctrl+Alt+F11"
576521
577 #: ../src/virt-viewer-window.c:551
522 #: ../src/virt-viewer-window.c:548
578523 msgid "Ctrl+Alt+F12"
579524 msgstr "Ctrl+Alt+F12"
580525
581 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
526 #: ../src/virt-viewer-window.c:919
527 msgid "_Save"
528 msgstr "_Zapisz"
529
530 #: ../src/virt-viewer-window.c:927
582531 msgid "Screenshot"
583532 msgstr "Zrzut ekranu"
584533
585 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
534 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
586535 msgid "Unknown"
587536 msgstr "Nieznane"
588537
589 #: ../src/virt-viewer-window.c:1062
538 #: ../src/virt-viewer-window.c:1071
590539 msgid "Disconnect"
591540 msgstr "Rozłącza"
592541
593 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
594 #: ../src/virt-viewer.xml.h:3
542 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
595543 msgid "USB device selection"
596544 msgstr "Wybór urządzenia USB"
597545
598 #: ../src/virt-viewer-window.c:1081
546 #: ../src/virt-viewer-window.c:1089
599547 msgid "Send key combination"
600548 msgstr "Wysyła kombinację klawiszy"
601549
602 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
550 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
603551 msgid "Leave fullscreen"
604552 msgstr "Opuszcza pełny ekran"
605553
606 #: ../src/virt-viewer-window.c:1173
554 #: ../src/virt-viewer-window.c:1175
607555 msgid "Ctrl+Alt"
608556 msgstr "Ctrl+Alt"
609557
610 #: ../src/virt-viewer-window.c:1176
558 #: ../src/virt-viewer-window.c:1178
611559 #, c-format
612560 msgid "(Press %s to release pointer)"
613561 msgstr "(Naciśnięcie klawiszy %s uwalnia wskaźnik)"
616564 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
617565 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
618566 #.
619 #: ../src/virt-viewer-window.c:1187
567 #: ../src/virt-viewer-window.c:1189
620568 #, c-format
621569 msgid "%s%s%s - %s"
622570 msgstr "%s%s%s — %s"
623571
624572 #. translators: <space>
625 #: ../src/virt-viewer-window.c:1191
573 #: ../src/virt-viewer-window.c:1193
626574 msgid " "
627575 msgstr " "
628576
629 #: ../src/virt-viewer-file.c:825
577 #: ../src/virt-viewer-file.c:843
630578 #, c-format
631579 msgid ""
632580 "At least %s version %s is required to setup this connection, see %s for "
635583 "Wymagane jest %s co najmniej w wersji %s, aby ustawić to połączenie. Więcej "
636584 "informacji: %s"
637585
638 #: ../src/virt-viewer-file.c:833
586 #: ../src/virt-viewer-file.c:851
639587 #, c-format
640588 msgid "At least %s version %s is required to setup this connection"
641589 msgstr "Wymagane jest %s co najmniej w wersji %s, aby ustawić to połączenie"
642590
643 #: ../src/virt-viewer.c:163
591 #: ../src/virt-viewer.c:90
592 msgid "Direct connection with no automatic tunnels"
593 msgstr "Bezpośrednie połączenie bez automatycznych tuneli"
594
595 #: ../src/virt-viewer.c:92
596 msgid "Attach to the local display using libvirt"
597 msgstr "Łączy z lokalnym ekranem za pomocą biblioteki libvirt"
598
599 #: ../src/virt-viewer.c:94
600 msgid "Connect to hypervisor"
601 msgstr "Łączy z nadzorcą"
602
603 #: ../src/virt-viewer.c:96
604 msgid "Wait for domain to start"
605 msgstr "Oczekuje na uruchomienie domeny"
606
607 #: ../src/virt-viewer.c:98
608 msgid "Reconnect to domain upon restart"
609 msgstr "Ponownie łączy z domeną po ponownym uruchomieniu"
610
611 #: ../src/virt-viewer.c:105
612 msgid "Virtual machine graphical console"
613 msgstr "Graficzna konsola maszyny wirtualnej"
614
615 #: ../src/virt-viewer.c:124
616 #, c-format
617 msgid ""
618 "\n"
619 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
620 "\n"
621 msgstr ""
622 "\n"
623 "Użycie: %s [OPCJE] [NAZWA-DOMENY|ID|UUID]\n"
624 "\n"
625
626 #: ../src/virt-viewer.c:136
627 #, c-format
628 msgid ""
629 "\n"
630 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
631 "\n"
632 msgstr ""
633 "\n"
634 "Nie podano NAZWY-DOMENY|ID|UUID dla parametru „--wait”\n"
635 "\n"
636
637 #: ../src/virt-viewer.c:250
644638 msgid "Waiting for guest domain to re-start"
645639 msgstr "Oczekiwanie na ponowne uruchomienie domeny gościa"
646640
647 #: ../src/virt-viewer.c:409
641 #: ../src/virt-viewer.c:496
648642 #, c-format
649643 msgid "Cannot determine the graphic type for the guest %s"
650644 msgstr "Nie można określić typu grafiki dla gościa %s"
651645
652 #: ../src/virt-viewer.c:448
646 #: ../src/virt-viewer.c:535
653647 #, c-format
654648 msgid "Cannot determine the host for the guest %s"
655649 msgstr "Nie można określić gospodarza dla gościa %s"
656650
657 #: ../src/virt-viewer.c:476
651 #: ../src/virt-viewer.c:563
658652 #, c-format
659653 msgid "Guest '%s' is not reachable"
660654 msgstr "Nie można uzyskać dostępu do gościa „%s”"
661655
662 #: ../src/virt-viewer.c:697
656 #: ../src/virt-viewer.c:784
663657 #, c-format
664658 msgid "Virtual machine %s is not running"
665659 msgstr "Maszyna wirtualna %s nie jest uruchomiona"
666660
667 #: ../src/virt-viewer.c:720
661 #: ../src/virt-viewer.c:807
668662 msgid "Waiting for libvirt to start"
669663 msgstr "Oczekiwanie na uruchomienie biblioteki libvirt"
670664
671 #: ../src/virt-viewer.c:724
665 #: ../src/virt-viewer.c:811
672666 msgid "Finding guest domain"
673667 msgstr "Wyszukiwanie domeny gościa"
674668
675 #: ../src/virt-viewer.c:728
669 #: ../src/virt-viewer.c:815
676670 msgid "Waiting for guest domain to be created"
677671 msgstr "Oczekiwanie na utworzenie domeny gościa"
678672
679 #: ../src/virt-viewer.c:750
673 #: ../src/virt-viewer.c:837
680674 msgid "Checking guest domain status"
681675 msgstr "Sprawdzanie stanu domeny gościa"
682676
683 #: ../src/virt-viewer.c:753
677 #: ../src/virt-viewer.c:840
684678 msgid "Cannot get guest state"
685679 msgstr "Nie można uzyskać stanu gościa"
686680
687 #: ../src/virt-viewer.c:759
681 #: ../src/virt-viewer.c:846
688682 msgid "Waiting for guest domain to start"
689683 msgstr "Oczekiwanie na uruchomienie domeny gościa"
690684
691 #: ../src/virt-viewer.c:863
685 #: ../src/virt-viewer.c:950
692686 #, c-format
693687 msgid "Unable to connect to libvirt with URI: %s."
694688 msgstr "Nie można połączyć się z biblioteką libvirt za pomocą adresu URI: %s."
695689
696 #: ../src/virt-viewer.c:864
690 #: ../src/virt-viewer.c:951
697691 msgid "[none]"
698692 msgstr "[brak]"
699693
700 #: ../src/virt-viewer.c:871
694 #: ../src/virt-viewer.c:958
701695 msgid "Authentication failed."
702696 msgstr "Uwierzytelnienie się nie powiodło."
703697
704 #: ../src/virt-viewer.c:931
698 #: ../src/virt-viewer.c:1018
705699 msgid "Failed to connect: "
706700 msgstr "Połączenie się nie powiodło: "
707701
712706 #. * indent-tabs-mode: nil
713707 #. * End:
714708 #.
715 #: ../src/virt-viewer.xml.h:1
709 #: ../src/resources/ui/virt-viewer.ui.h:1
716710 msgid "_File"
717711 msgstr "_Plik"
718712
719 #: ../src/virt-viewer.xml.h:4
713 #: ../src/resources/ui/virt-viewer.ui.h:2
714 msgid "_Screenshot"
715 msgstr "Z_rzut ekranu"
716
717 #: ../src/resources/ui/virt-viewer.ui.h:3
718 msgid "_USB device selection"
719 msgstr "Wybór urządzenia _USB"
720
721 #: ../src/resources/ui/virt-viewer.ui.h:4
720722 msgid "Smartcard insertion"
721723 msgstr "Włożenie karty smartcard"
722724
723 #: ../src/virt-viewer.xml.h:5
725 #: ../src/resources/ui/virt-viewer.ui.h:5
724726 msgid "Smartcard removal"
725727 msgstr "Usunięcie karty smartcard"
726728
727 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
729 #: ../src/resources/ui/virt-viewer.ui.h:6
730 msgid "_Preferences"
731 msgstr "_Preferencje"
732
733 #: ../src/resources/ui/virt-viewer.ui.h:7
734 msgid "_Quit"
735 msgstr "Za_kończ"
736
737 #: ../src/resources/ui/virt-viewer.ui.h:8
738 msgid "_View"
739 msgstr "_Widok"
740
741 #: ../src/resources/ui/virt-viewer.ui.h:9
742 msgid "_Full screen"
743 msgstr "Pełny _ekran"
744
745 #: ../src/resources/ui/virt-viewer.ui.h:10
746 msgid "_Zoom"
747 msgstr "P_owiększenie"
748
749 #: ../src/resources/ui/virt-viewer.ui.h:11
750 msgid "Zoom _In"
751 msgstr "Przy_bliż"
752
753 #: ../src/resources/ui/virt-viewer.ui.h:12
754 msgid "Zoom _Out"
755 msgstr "_Oddal"
756
757 #: ../src/resources/ui/virt-viewer.ui.h:13
758 msgid "_Normal Size"
759 msgstr "Z_wykły rozmiar"
760
761 #: ../src/resources/ui/virt-viewer.ui.h:14
762 msgid "_Displays"
763 msgstr "_Ekrany"
764
765 #: ../src/resources/ui/virt-viewer.ui.h:15
766 msgid "Release cursor"
767 msgstr "Zwolnienie kursora"
768
769 #: ../src/resources/ui/virt-viewer.ui.h:16
770 msgid "_Send key"
771 msgstr "Wyślij klawi_sz"
772
773 #: ../src/resources/ui/virt-viewer.ui.h:17
774 msgid "_Help"
775 msgstr "Pomo_c"
776
777 #: ../src/resources/ui/virt-viewer.ui.h:18
778 msgid "_Guest Details"
779 msgstr "_Informacje o gościu"
780
781 #: ../src/resources/ui/virt-viewer.ui.h:19
782 msgid "_About"
783 msgstr "_O programie"
784
785 #: ../src/resources/ui/virt-viewer.ui.h:20
786 msgid "_Change CD"
787 msgstr "_Zmień płytę CD"
788
789 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
790 msgid "Guest Details"
791 msgstr "Informacje o gościu"
792
793 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
794 msgid "Name:"
795 msgstr "Nazwa:"
796
797 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
798 msgid "GUID:"
799 msgstr "GUID:"
800
801 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
802 msgid "Choose a virtual machine"
803 msgstr "Wybór maszyny wirtualnej"
804
805 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
806 msgid "Name"
807 msgstr "Nazwa"
808
809 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
810 msgid "Available virtual machines"
811 msgstr "Dostępne maszyny wirtualne"
812
813 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
728814 msgid "Preferences"
729815 msgstr "Preferencje"
730816
731 #: ../src/virt-viewer.xml.h:7
732 msgid "_View"
733 msgstr "_Widok"
734
735 #: ../src/virt-viewer.xml.h:8
736 msgid "Full screen"
737 msgstr "Pełny ekran"
738
739 #: ../src/virt-viewer.xml.h:9
740 msgid "_Zoom"
741 msgstr "P_owiększenie"
742
743 #: ../src/virt-viewer.xml.h:10
744 msgid "Displays"
745 msgstr "Ekrany"
746
747 #: ../src/virt-viewer.xml.h:11
748 msgid "Release cursor"
749 msgstr "Zwolnienie kursora"
750
751 #: ../src/virt-viewer.xml.h:12
752 msgid "_Send key"
753 msgstr "Wyślij klawi_sz"
754
755 #: ../src/virt-viewer.xml.h:13
756 msgid "_Help"
757 msgstr "Pomo_c"
758
759 #: ../src/virt-viewer.xml.h:14
760 msgid "_Guest Details"
761 msgstr "_Informacje o gościu"
762
763 #: ../src/virt-viewer-guest-details.xml.h:1
764 msgid "Guest Details"
765 msgstr "Informacje o gościu"
766
767 #: ../src/virt-viewer-guest-details.xml.h:2
768 msgid "Name:"
769 msgstr "Nazwa:"
770
771 #: ../src/virt-viewer-guest-details.xml.h:3
772 msgid "GUID:"
773 msgstr "GUID:"
774
775 #: ../src/virt-viewer-vm-connection.xml.h:1
776 msgid "Choose a virtual machine"
777 msgstr "Wybór maszyny wirtualnej"
778
779 #: ../src/virt-viewer-vm-connection.xml.h:2
780 msgid "Name"
781 msgstr "Nazwa"
782
783 #: ../src/virt-viewer-vm-connection.xml.h:3
784 msgid "Available virtual machines"
785 msgstr "Dostępne maszyny wirtualne"
786
787 #: ../src/virt-viewer-preferences.xml.h:2
817 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
788818 msgid "Folder sharing"
789819 msgstr "Współdzielenie katalogów"
790820
791 #: ../src/virt-viewer-preferences.xml.h:3
821 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
792822 msgid "Share folder"
793823 msgstr "Współdziel katalog"
794824
795 #: ../src/virt-viewer-preferences.xml.h:4
825 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
796826 msgid "Read-only"
797827 msgstr "Tylko do odczytu"
798828
799 #: ../src/virt-viewer-preferences.xml.h:5
829 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
800830 msgid "Spice"
801831 msgstr "Spice"
+340
-313
po/pt.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Portuguese (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
25 msgstr ""
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
2438 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Virt-Viewer connection file"
3246 msgstr ""
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr ""
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr ""
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr ""
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr ""
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr ""
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr ""
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr ""
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr ""
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr ""
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr ""
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr ""
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr ""
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101
102 #: ../src/remote-viewer-main.c:149
103 #, c-format
104 msgid "Error: extra arguments given while using Spice controller\n"
105 msgstr ""
106
107 #: ../src/remote-viewer-main.c:156
108 #, c-format
109 msgid "Error: can't handle multiple URIs\n"
110 msgstr ""
111
112 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11382 msgid "Failed to initiate connection"
11483 msgstr ""
11584
116 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
11786 msgid "Display disabled by controller"
11887 msgstr ""
11988
120 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12190 #, c-format
12291 msgid "Controller connection failed: %s"
12392 msgstr ""
12493
125 #: ../src/remote-viewer.c:755
126 msgid "_Change CD"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13095 msgid "failed to parse ovirt uri"
13196 msgstr ""
13297
133 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13499 msgid "Authentication was cancelled"
135100 msgstr ""
136101
137 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
138103 #, c-format
139104 msgid "oVirt VM %s is not running"
140105 msgstr ""
141106
142 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
143108 #, c-format
144109 msgid "oVirt VM %s has no display"
145110 msgstr ""
146111
147 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
148113 #, c-format
149114 msgid "oVirt VM %s has no host information"
150115 msgstr ""
151116
152 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
153118 #, c-format
154119 msgid "oVirt VM %s has unknown display type: %d"
155120 msgstr ""
156121
157 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
158123 msgid "Setting up Spice session..."
159124 msgstr ""
160125
161 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
162127 msgid "No connection was chosen"
163128 msgstr ""
164129
165 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
166131 #, c-format
167132 msgid "Invalid file %s: "
168133 msgstr ""
169134
170 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
171136 msgid "Cannot determine the connection type from URI"
172137 msgstr ""
173138
174 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
175140 msgid "Couldn't open oVirt session: "
176141 msgstr ""
177142
182147 #. * indent-tabs-mode: nil
183148 #. * End:
184149 #.
185 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
186151 msgid "Connection details"
187152 msgstr ""
188153
189 #: ../src/remote-viewer-connect.xml.h:2
190 msgid "Connection Address"
191 msgstr ""
192
193 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
194159 msgid "For example, spice://foo.example.org:5900"
195160 msgstr ""
196161
197 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
198163 msgid "Recent connections"
199164 msgstr ""
200165
201 #: ../src/remote-viewer-connect.xml.h:5
202 msgid "Cancel"
203 msgstr ""
204
205 #: ../src/remote-viewer-connect.xml.h:6
206 msgid "Connect"
207 msgstr ""
208
209 #: ../src/virt-viewer-about.xml.h:1
210 msgid "About Glade"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
214182 msgid ""
215183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216184 "Copyright (C) 2007-2014 Red Hat, Inc."
217185 msgstr ""
218186
219 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
220188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221189 msgstr ""
222190
223 #: ../src/virt-viewer-about.xml.h:5
191 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224192 msgid "virt-manager.org"
225193 msgstr ""
226194
227 #: ../src/virt-viewer-about.xml.h:6
195 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228196 msgid ""
229197 "This program is free software; you can redistribute it and/or modify\n"
230198 "it under the terms of the GNU General Public License as published by\n"
241209 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
242210 msgstr ""
243211
244 #: ../src/virt-viewer-about.xml.h:20
212 #: ../src/resources/ui/virt-viewer-about.ui.h:20
245213 msgid "The Fedora Translation Team"
246214 msgstr ""
247215
248 #: ../src/virt-viewer-app.c:526
216 #: ../src/virt-viewer-app.c:458
249217 msgid "Do you want to close the session?"
250218 msgstr ""
251219
252 #: ../src/virt-viewer-app.c:528
220 #: ../src/virt-viewer-app.c:460
253221 msgid "Do not ask me again"
254222 msgstr ""
255223
256 #: ../src/virt-viewer-app.c:1008
224 #: ../src/virt-viewer-app.c:948
257225 #, c-format
258226 msgid "Waiting for display %d..."
259227 msgstr ""
260228
261 #: ../src/virt-viewer-app.c:1117
229 #: ../src/virt-viewer-app.c:1055
262230 #, c-format
263231 msgid "Unsupported graphic type '%s'"
264232 msgstr ""
265233
266 #: ../src/virt-viewer-app.c:1200
234 #: ../src/virt-viewer-app.c:1138
267235 msgid "Connect to ssh failed."
268236 msgstr ""
269237
270 #: ../src/virt-viewer-app.c:1202
238 #: ../src/virt-viewer-app.c:1140
271239 msgid "Can't connect to channel, SSH only supported."
272240 msgstr ""
273241
242 #: ../src/virt-viewer-app.c:1152
243 msgid "Connect to channel unsupported."
244 msgstr ""
245
274246 #: ../src/virt-viewer-app.c:1214
275 msgid "Connect to channel unsupported."
276 msgstr ""
277
278 #: ../src/virt-viewer-app.c:1276
279247 msgid "Display can only be attached through libvirt with --attach"
280248 msgstr ""
281249
282 #: ../src/virt-viewer-app.c:1299
250 #: ../src/virt-viewer-app.c:1237
283251 msgid "Connecting to graphic server"
284252 msgstr ""
285253
286 #: ../src/virt-viewer-app.c:1398
254 #: ../src/virt-viewer-app.c:1336
287255 msgid "Guest domain has shutdown"
288256 msgstr ""
289257
290 #: ../src/virt-viewer-app.c:1459
258 #: ../src/virt-viewer-app.c:1397
291259 msgid "Connected to graphic server"
292260 msgstr ""
293261
294 #: ../src/virt-viewer-app.c:1486
262 #: ../src/virt-viewer-app.c:1424
295263 #, c-format
296264 msgid "Unable to connect to the graphic server %s"
297265 msgstr ""
298266
299 #: ../src/virt-viewer-app.c:1512
267 #: ../src/virt-viewer-app.c:1450
300268 #, c-format
301269 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
302270 msgstr ""
303271
304 #: ../src/virt-viewer-app.c:1525
272 #: ../src/virt-viewer-app.c:1463
305273 #, c-format
306274 msgid "Unable to authenticate with remote desktop server: %s"
307275 msgstr ""
308276
309 #: ../src/virt-viewer-app.c:1533
277 #: ../src/virt-viewer-app.c:1471
310278 #, c-format
311279 msgid "USB redirection error: %s"
312280 msgstr ""
313281
314 #: ../src/virt-viewer-app.c:1786
282 #: ../src/virt-viewer-app.c:1805
315283 #, c-format
316284 msgid "Zoom level must be within %d-%d\n"
317285 msgstr ""
318286
319 #: ../src/virt-viewer-app.c:2296
320 #, c-format
321 msgid "Display %d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2552
287 #: ../src/virt-viewer-app.c:1858
288 #, c-format
289 msgid "%s\n"
290 msgstr ""
291
292 #: ../src/virt-viewer-app.c:1868
293 #, c-format
294 msgid "%s version %s"
295 msgstr ""
296
297 #: ../src/virt-viewer-app.c:2292
298 #, c-format
299 msgid "Display _%d"
300 msgstr ""
301
302 #: ../src/virt-viewer-app.c:2548
325303 #, c-format
326304 msgid "Invalid kiosk-quit argument: %s"
305 msgstr ""
306
307 #: ../src/virt-viewer-app.c:2559
308 msgid "Display version information"
327309 msgstr ""
328310
329311 #: ../src/virt-viewer-app.c:2561
358340 msgid "Display debugging information"
359341 msgstr ""
360342
361 #: ../src/virt-viewer-auth.c:88
343 #: ../src/virt-viewer-auth.c:89
362344 #, c-format
363345 msgid ""
364346 "Authentication is required for the %s connection to:\n"
367349 "\n"
368350 msgstr ""
369351
370 #: ../src/virt-viewer-auth.c:92
352 #: ../src/virt-viewer-auth.c:93
371353 #, c-format
372354 msgid "Authentication is required for the %s connection:\n"
373355 msgstr ""
379361 #. * indent-tabs-mode: nil
380362 #. * End:
381363 #.
382 #: ../src/virt-viewer-auth.xml.h:1
364 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
383365 msgid "Authentication required"
384366 msgstr ""
385367
386 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
368 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
369 msgid "_OK"
370 msgstr ""
371
372 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
373 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
387374 msgid "label"
388375 msgstr ""
389376
390 #: ../src/virt-viewer-auth.xml.h:3
377 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
391378 msgid "Password:"
392379 msgstr ""
393380
394 #: ../src/virt-viewer-auth.xml.h:4
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
395382 msgid "Username:"
396383 msgstr ""
397384
398 #: ../src/virt-viewer-auth.xml.h:5
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
399386 msgid "Show password"
400387 msgstr ""
401388
402 #: ../src/virt-viewer-display-vnc.c:133
389 #: ../src/virt-viewer-display-vnc.c:134
403390 msgid "VNC does not provide GUID"
404391 msgstr ""
405392
393 #: ../src/virt-viewer-file-transfer-dialog.c:152
394 msgid "Cancel"
395 msgstr ""
396
397 #: ../src/virt-viewer-file-transfer-dialog.c:163
398 msgid "File Transfers"
399 msgstr ""
400
406401 #: ../src/virt-viewer-main.c:38
407 #, c-format
408 msgid "%s version %s\n"
409 msgstr ""
410
411 #: ../src/virt-viewer-main.c:62
412 msgid "Direct connection with no automatic tunnels"
413 msgstr ""
414
415 #: ../src/virt-viewer-main.c:64
416 msgid "Attach to the local display using libvirt"
417 msgstr ""
418
419 #: ../src/virt-viewer-main.c:66
420 msgid "Connect to hypervisor"
421 msgstr ""
422
423 #: ../src/virt-viewer-main.c:68
424 msgid "Wait for domain to start"
425 msgstr ""
426
427 #: ../src/virt-viewer-main.c:70
428 msgid "Reconnect to domain upon restart"
429 msgstr ""
430
431 #: ../src/virt-viewer-main.c:77
432402 msgid "Virt Viewer"
433403 msgstr ""
434404
435 #: ../src/virt-viewer-main.c:80
436 #, c-format
437 msgid "Run '%s --help' to see a full list of available command line options"
438 msgstr ""
439
440 #: ../src/virt-viewer-main.c:86
441 msgid "Virtual machine graphical console"
442 msgstr ""
443
444 #: ../src/virt-viewer-main.c:107
445 #, c-format
446 msgid ""
447 "\n"
448 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
449 "\n"
450 "%s\n"
451 "\n"
452 msgstr ""
453
454 #: ../src/virt-viewer-main.c:112
455 #, c-format
456 msgid ""
457 "\n"
458 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
459 "\n"
460 msgstr ""
461
462 #: ../src/virt-viewer-session-spice.c:694
405 #: ../src/virt-viewer-session-spice.c:705
463406 msgid "Invalid password"
464407 msgstr ""
465408
466409 #. Create the widgets
467 #: ../src/virt-viewer-session-spice.c:786
410 #: ../src/virt-viewer-session-spice.c:797
468411 msgid "Select USB devices for redirection"
469412 msgstr ""
470413
471 #: ../src/virt-viewer-session-vnc.c:153
414 #: ../src/virt-viewer-session-spice.c:799
415 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
416 msgid "_Close"
417 msgstr ""
418
419 #: ../src/virt-viewer-session-vnc.c:156
472420 #, c-format
473421 msgid "Unsupported authentication type %d"
474422 msgstr ""
481429 msgid "No virtual machine was chosen"
482430 msgstr ""
483431
432 #: ../src/virt-viewer-window.c:534
433 msgid "Ctrl+Alt+_Del"
434 msgstr ""
435
436 #: ../src/virt-viewer-window.c:535
437 msgid "Ctrl+Alt+_Backspace"
438 msgstr ""
439
484440 #: ../src/virt-viewer-window.c:537
485 msgid "Ctrl+Alt+_Del"
486 msgstr ""
487
488 #: ../src/virt-viewer-window.c:538
489 msgid "Ctrl+Alt+_Backspace"
490 msgstr ""
491
492 #: ../src/virt-viewer-window.c:540
493441 msgid "Ctrl+Alt+F_1"
494442 msgstr "Ctrl+Alt+F_1"
495443
496 #: ../src/virt-viewer-window.c:541
444 #: ../src/virt-viewer-window.c:538
497445 msgid "Ctrl+Alt+F_2"
498446 msgstr "Ctrl+Alt+F_2"
499447
500 #: ../src/virt-viewer-window.c:542
448 #: ../src/virt-viewer-window.c:539
501449 msgid "Ctrl+Alt+F_3"
502450 msgstr "Ctrl+Alt+F_3"
503451
504 #: ../src/virt-viewer-window.c:543
452 #: ../src/virt-viewer-window.c:540
505453 msgid "Ctrl+Alt+F_4"
506454 msgstr "Ctrl+Alt+F_4"
507455
508 #: ../src/virt-viewer-window.c:544
456 #: ../src/virt-viewer-window.c:541
509457 msgid "Ctrl+Alt+F_5"
510458 msgstr "Ctrl+Alt+F_5"
511459
512 #: ../src/virt-viewer-window.c:545
460 #: ../src/virt-viewer-window.c:542
513461 msgid "Ctrl+Alt+F_6"
514462 msgstr "Ctrl+Alt+F_6"
515463
516 #: ../src/virt-viewer-window.c:546
464 #: ../src/virt-viewer-window.c:543
517465 msgid "Ctrl+Alt+F_7"
518466 msgstr "Ctrl+Alt+F_7"
519467
520 #: ../src/virt-viewer-window.c:547
468 #: ../src/virt-viewer-window.c:544
521469 msgid "Ctrl+Alt+F_8"
522470 msgstr "Ctrl+Alt+F_8"
523471
524 #: ../src/virt-viewer-window.c:548
472 #: ../src/virt-viewer-window.c:545
525473 msgid "Ctrl+Alt+F_9"
526474 msgstr "Ctrl+Alt+F_9"
527475
528 #: ../src/virt-viewer-window.c:549
476 #: ../src/virt-viewer-window.c:546
529477 msgid "Ctrl+Alt+F1_0"
530478 msgstr "Ctrl+Alt+F1_0"
531479
532 #: ../src/virt-viewer-window.c:550
480 #: ../src/virt-viewer-window.c:547
533481 msgid "Ctrl+Alt+F11"
534482 msgstr "Ctrl+Alt+F11"
535483
536 #: ../src/virt-viewer-window.c:551
484 #: ../src/virt-viewer-window.c:548
537485 msgid "Ctrl+Alt+F12"
538486 msgstr "Ctrl+Alt+F12"
539487
540 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
488 #: ../src/virt-viewer-window.c:919
489 msgid "_Save"
490 msgstr ""
491
492 #: ../src/virt-viewer-window.c:927
541493 msgid "Screenshot"
542494 msgstr ""
543495
544 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
496 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
545497 msgid "Unknown"
546498 msgstr ""
547499
548 #: ../src/virt-viewer-window.c:1062
500 #: ../src/virt-viewer-window.c:1071
549501 msgid "Disconnect"
550502 msgstr ""
551503
552 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
553 #: ../src/virt-viewer.xml.h:3
504 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
554505 msgid "USB device selection"
555506 msgstr ""
556507
557 #: ../src/virt-viewer-window.c:1081
508 #: ../src/virt-viewer-window.c:1089
558509 msgid "Send key combination"
559510 msgstr ""
560511
561 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
512 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
562513 msgid "Leave fullscreen"
563514 msgstr ""
564515
565 #: ../src/virt-viewer-window.c:1173
516 #: ../src/virt-viewer-window.c:1175
566517 msgid "Ctrl+Alt"
567518 msgstr "Ctrl+Alt"
568519
569 #: ../src/virt-viewer-window.c:1176
520 #: ../src/virt-viewer-window.c:1178
570521 #, c-format
571522 msgid "(Press %s to release pointer)"
572523 msgstr ""
575526 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
576527 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
577528 #.
578 #: ../src/virt-viewer-window.c:1187
529 #: ../src/virt-viewer-window.c:1189
579530 #, c-format
580531 msgid "%s%s%s - %s"
581532 msgstr ""
582533
583534 #. translators: <space>
584 #: ../src/virt-viewer-window.c:1191
535 #: ../src/virt-viewer-window.c:1193
585536 msgid " "
586537 msgstr ""
587538
588 #: ../src/virt-viewer-file.c:825
539 #: ../src/virt-viewer-file.c:843
589540 #, c-format
590541 msgid ""
591542 "At least %s version %s is required to setup this connection, see %s for "
592543 "details"
593544 msgstr ""
594545
595 #: ../src/virt-viewer-file.c:833
546 #: ../src/virt-viewer-file.c:851
596547 #, c-format
597548 msgid "At least %s version %s is required to setup this connection"
598549 msgstr ""
599550
600 #: ../src/virt-viewer.c:163
551 #: ../src/virt-viewer.c:90
552 msgid "Direct connection with no automatic tunnels"
553 msgstr ""
554
555 #: ../src/virt-viewer.c:92
556 msgid "Attach to the local display using libvirt"
557 msgstr ""
558
559 #: ../src/virt-viewer.c:94
560 msgid "Connect to hypervisor"
561 msgstr ""
562
563 #: ../src/virt-viewer.c:96
564 msgid "Wait for domain to start"
565 msgstr ""
566
567 #: ../src/virt-viewer.c:98
568 msgid "Reconnect to domain upon restart"
569 msgstr ""
570
571 #: ../src/virt-viewer.c:105
572 msgid "Virtual machine graphical console"
573 msgstr ""
574
575 #: ../src/virt-viewer.c:124
576 #, c-format
577 msgid ""
578 "\n"
579 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
580 "\n"
581 msgstr ""
582
583 #: ../src/virt-viewer.c:136
584 #, c-format
585 msgid ""
586 "\n"
587 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
588 "\n"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:250
601592 msgid "Waiting for guest domain to re-start"
602593 msgstr ""
603594
604 #: ../src/virt-viewer.c:409
595 #: ../src/virt-viewer.c:496
605596 #, c-format
606597 msgid "Cannot determine the graphic type for the guest %s"
607598 msgstr ""
608599
609 #: ../src/virt-viewer.c:448
600 #: ../src/virt-viewer.c:535
610601 #, c-format
611602 msgid "Cannot determine the host for the guest %s"
612603 msgstr ""
613604
614 #: ../src/virt-viewer.c:476
605 #: ../src/virt-viewer.c:563
615606 #, c-format
616607 msgid "Guest '%s' is not reachable"
617608 msgstr ""
618609
619 #: ../src/virt-viewer.c:697
610 #: ../src/virt-viewer.c:784
620611 #, c-format
621612 msgid "Virtual machine %s is not running"
622613 msgstr ""
623614
624 #: ../src/virt-viewer.c:720
615 #: ../src/virt-viewer.c:807
625616 msgid "Waiting for libvirt to start"
626617 msgstr ""
627618
628 #: ../src/virt-viewer.c:724
619 #: ../src/virt-viewer.c:811
629620 msgid "Finding guest domain"
630621 msgstr ""
631622
632 #: ../src/virt-viewer.c:728
623 #: ../src/virt-viewer.c:815
633624 msgid "Waiting for guest domain to be created"
634625 msgstr ""
635626
636 #: ../src/virt-viewer.c:750
627 #: ../src/virt-viewer.c:837
637628 msgid "Checking guest domain status"
638629 msgstr ""
639630
640 #: ../src/virt-viewer.c:753
631 #: ../src/virt-viewer.c:840
641632 msgid "Cannot get guest state"
642633 msgstr ""
643634
644 #: ../src/virt-viewer.c:759
635 #: ../src/virt-viewer.c:846
645636 msgid "Waiting for guest domain to start"
646637 msgstr ""
647638
648 #: ../src/virt-viewer.c:863
639 #: ../src/virt-viewer.c:950
649640 #, c-format
650641 msgid "Unable to connect to libvirt with URI: %s."
651642 msgstr ""
652643
653 #: ../src/virt-viewer.c:864
644 #: ../src/virt-viewer.c:951
654645 msgid "[none]"
655646 msgstr ""
656647
657 #: ../src/virt-viewer.c:871
648 #: ../src/virt-viewer.c:958
658649 msgid "Authentication failed."
659650 msgstr ""
660651
661 #: ../src/virt-viewer.c:931
652 #: ../src/virt-viewer.c:1018
662653 msgid "Failed to connect: "
663654 msgstr ""
664655
669660 #. * indent-tabs-mode: nil
670661 #. * End:
671662 #.
672 #: ../src/virt-viewer.xml.h:1
663 #: ../src/resources/ui/virt-viewer.ui.h:1
673664 msgid "_File"
674665 msgstr ""
675666
676 #: ../src/virt-viewer.xml.h:4
667 #: ../src/resources/ui/virt-viewer.ui.h:2
668 msgid "_Screenshot"
669 msgstr ""
670
671 #: ../src/resources/ui/virt-viewer.ui.h:3
672 msgid "_USB device selection"
673 msgstr ""
674
675 #: ../src/resources/ui/virt-viewer.ui.h:4
677676 msgid "Smartcard insertion"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.xml.h:5
679 #: ../src/resources/ui/virt-viewer.ui.h:5
681680 msgid "Smartcard removal"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
683 #: ../src/resources/ui/virt-viewer.ui.h:6
684 msgid "_Preferences"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:7
688 msgid "_Quit"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:8
692 msgid "_View"
693 msgstr ""
694
695 #: ../src/resources/ui/virt-viewer.ui.h:9
696 msgid "_Full screen"
697 msgstr ""
698
699 #: ../src/resources/ui/virt-viewer.ui.h:10
700 msgid "_Zoom"
701 msgstr ""
702
703 #: ../src/resources/ui/virt-viewer.ui.h:11
704 msgid "Zoom _In"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:12
708 msgid "Zoom _Out"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:13
712 msgid "_Normal Size"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:14
716 msgid "_Displays"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:15
720 msgid "Release cursor"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:16
724 msgid "_Send key"
725 msgstr ""
726
727 #: ../src/resources/ui/virt-viewer.ui.h:17
728 msgid "_Help"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:18
732 msgid "_Guest Details"
733 msgstr ""
734
735 #: ../src/resources/ui/virt-viewer.ui.h:19
736 msgid "_About"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:20
740 msgid "_Change CD"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
744 msgid "Guest Details"
745 msgstr ""
746
747 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
748 msgid "Name:"
749 msgstr ""
750
751 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
752 msgid "GUID:"
753 msgstr ""
754
755 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
756 msgid "Choose a virtual machine"
757 msgstr ""
758
759 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
760 msgid "Name"
761 msgstr ""
762
763 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
764 msgid "Available virtual machines"
765 msgstr ""
766
767 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
685768 msgid "Preferences"
686769 msgstr ""
687770
688 #: ../src/virt-viewer.xml.h:7
689 msgid "_View"
690 msgstr ""
691
692 #: ../src/virt-viewer.xml.h:8
693 msgid "Full screen"
694 msgstr ""
695
696 #: ../src/virt-viewer.xml.h:9
697 msgid "_Zoom"
698 msgstr ""
699
700 #: ../src/virt-viewer.xml.h:10
701 msgid "Displays"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:11
705 msgid "Release cursor"
706 msgstr ""
707
708 #: ../src/virt-viewer.xml.h:12
709 msgid "_Send key"
710 msgstr ""
711
712 #: ../src/virt-viewer.xml.h:13
713 msgid "_Help"
714 msgstr ""
715
716 #: ../src/virt-viewer.xml.h:14
717 msgid "_Guest Details"
718 msgstr ""
719
720 #: ../src/virt-viewer-guest-details.xml.h:1
721 msgid "Guest Details"
722 msgstr ""
723
724 #: ../src/virt-viewer-guest-details.xml.h:2
725 msgid "Name:"
726 msgstr ""
727
728 #: ../src/virt-viewer-guest-details.xml.h:3
729 msgid "GUID:"
730 msgstr ""
731
732 #: ../src/virt-viewer-vm-connection.xml.h:1
733 msgid "Choose a virtual machine"
734 msgstr ""
735
736 #: ../src/virt-viewer-vm-connection.xml.h:2
737 msgid "Name"
738 msgstr ""
739
740 #: ../src/virt-viewer-vm-connection.xml.h:3
741 msgid "Available virtual machines"
742 msgstr ""
743
744 #: ../src/virt-viewer-preferences.xml.h:2
771 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
745772 msgid "Folder sharing"
746773 msgstr ""
747774
748 #: ../src/virt-viewer-preferences.xml.h:3
775 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
749776 msgid "Share folder"
750777 msgstr ""
751778
752 #: ../src/virt-viewer-preferences.xml.h:4
779 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
753780 msgid "Read-only"
754781 msgstr ""
755782
756 #: ../src/virt-viewer-preferences.xml.h:5
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
757784 msgid "Spice"
758785 msgstr ""
66 # Glaucia Freitas <gcintra@redhat.com>, 2012-2013
77 # Marcelo Barbosa <firemanxbr@fedoraproject.org>, 2013
88 # Paulo Sergio Klaus <klauspaulo@gmail.com>, 2014
9 # Marco Aurélio Krause <ouesten@me.com>, 2015. #zanata
9 # Daniel Lara <danniel@fedoraproject.org>, 2016. #zanata
1010 msgid ""
1111 msgstr ""
1212 "Project-Id-Version: PACKAGE VERSION\n"
1313 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
15 "PO-Revision-Date: 2015-10-28 04:11-0400\n"
16 "Last-Translator: Marco Aurélio Krause <ouesten@me.com>\n"
14 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
15 "PO-Revision-Date: 2016-03-21 09:38-0400\n"
16 "Last-Translator: Maria Andrada <msuppesd@redhat.com>\n"
1717 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/virt-"
1818 "viewer/language/pt_BR/)\n"
1919 "Language: pt-BR\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.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
24 "X-Generator: Zanata 3.8.4\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
2728 msgid "Remote Viewer"
2829 msgstr "Visualizador remoto"
30
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 msgid "Remotely access virtual machines"
33 msgstr ""
34
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 msgid ""
37 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
38 "time it supports guest OS using the VNC or SPICE protocols. Further "
39 "protocols may be supported in the future as user demand dictates. The viewer "
40 "can connect directly to both local and remotely hosted guest OS, optionally "
41 "using SSL/TLS encryption."
42 msgstr ""
2943
3044 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Access remote desktops"
3549 msgid "Virt-Viewer connection file"
3650 msgstr "Virt-Viewer arquivo conexão"
3751
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "Fonte"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "A fonte de união"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "Alvo"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "O alvo da união"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "Propriedade da Fonte"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "A propriedade na fonte para união "
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "Propriedade do Alvo"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "A propriedade do alvo a unir"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "Bandeiras"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "As bandeiras de união"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "Exibir informações de versão"
86
87 #: ../src/remote-viewer-main.c:105
52 #: ../src/remote-viewer.c:139
8853 msgid "Set window title"
8954 msgstr "Setando título da janela"
9055
91 #: ../src/remote-viewer-main.c:108
56 #: ../src/remote-viewer.c:142
9257 msgid "Open connection using Spice controller communication"
9358 msgstr "Abrir conexão usando a comunicação do controlador Spice"
9459
95 #: ../src/remote-viewer-main.c:120
60 #: ../src/remote-viewer.c:150
9661 msgid "Remote viewer client"
9762 msgstr "Visualizador remoto"
9863
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "Execute '%s --help' para ver uma lista completa de opções de linhas de "
107 "comando disponíveis\n"
108 "\n"
109
110 #: ../src/remote-viewer-main.c:149
111 #, c-format
112 msgid "Error: extra arguments given while using Spice controller\n"
113 msgstr "Erro: argumentos extras passados ao usar o controlador Spice\n"
114
115 #: ../src/remote-viewer-main.c:156
116 #, c-format
117 msgid "Error: can't handle multiple URIs\n"
118 msgstr "Erro: não é possível manipular múltiplas URIs\n"
119
120 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
64 #: ../src/remote-viewer.c:175
65 #, c-format
66 msgid ""
67 "\n"
68 "Error: can't handle multiple URIs\n"
69 "\n"
70 msgstr ""
71
72 #: ../src/remote-viewer.c:187
73 #, c-format
74 msgid ""
75 "\n"
76 "Error: extra arguments given while using Spice controller\n"
77 "\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
81 #, c-format
82 msgid "Run '%s --help' to see a full list of available command line options\n"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12186 msgid "Failed to initiate connection"
12287 msgstr "Falha ao iniciar a conexão "
12388
124 #: ../src/remote-viewer.c:313
89 #: ../src/remote-viewer.c:297
12590 msgid "Display disabled by controller"
12691 msgstr "Exibir desabilitado pelo controlador"
12792
128 #: ../src/remote-viewer.c:609
93 #: ../src/remote-viewer.c:593
12994 #, c-format
13095 msgid "Controller connection failed: %s"
13196 msgstr "Conexão de controlador falhou:%s"
13297
133 #: ../src/remote-viewer.c:755
134 msgid "_Change CD"
135 msgstr "Alterar _CD"
136
137 #: ../src/remote-viewer.c:855
98 #: ../src/remote-viewer.c:848
13899 msgid "failed to parse ovirt uri"
139 msgstr ""
140
141 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
100 msgstr "falha ao analisar o uri do ovirt"
101
102 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
142103 msgid "Authentication was cancelled"
143 msgstr ""
144
145 #: ../src/remote-viewer.c:900
104 msgstr "Autenticação cancelada"
105
106 #: ../src/remote-viewer.c:893
146107 #, c-format
147108 msgid "oVirt VM %s is not running"
148 msgstr ""
149
150 #: ../src/remote-viewer.c:914
109 msgstr "A MV %s no oVirt não está em execução"
110
111 #: ../src/remote-viewer.c:907
151112 #, c-format
152113 msgid "oVirt VM %s has no display"
153 msgstr ""
154
155 #: ../src/remote-viewer.c:940
114 msgstr "A MV %s no oVirt não possui exibição"
115
116 #: ../src/remote-viewer.c:933
156117 #, c-format
157118 msgid "oVirt VM %s has no host information"
158 msgstr ""
159
160 #: ../src/remote-viewer.c:951
119 msgstr "A MV %s no oVirt não possui informações sobre o host "
120
121 #: ../src/remote-viewer.c:944
161122 #, c-format
162123 msgid "oVirt VM %s has unknown display type: %d"
163 msgstr ""
164
165 #: ../src/remote-viewer.c:1094
124 msgstr "A MV %s no oVirt possui um tipo de exibição desconhecido: %d"
125
126 #: ../src/remote-viewer.c:1115
166127 msgid "Setting up Spice session..."
167128 msgstr "Configurando uma sessão Spice"
168129
169 #: ../src/remote-viewer.c:1102
130 #: ../src/remote-viewer.c:1123
170131 msgid "No connection was chosen"
171 msgstr ""
172
173 #: ../src/remote-viewer.c:1120
132 msgstr "Nenhuma conexão selecionada"
133
134 #: ../src/remote-viewer.c:1141
174135 #, c-format
175136 msgid "Invalid file %s: "
176 msgstr ""
177
178 #: ../src/remote-viewer.c:1128
137 msgstr "Arquivo inválido %s: "
138
139 #: ../src/remote-viewer.c:1149
179140 msgid "Cannot determine the connection type from URI"
180141 msgstr "Não foi possíve determinar o tipo de conexão a partir do URI"
181142
182 #: ../src/remote-viewer.c:1134
143 #: ../src/remote-viewer.c:1155
183144 msgid "Couldn't open oVirt session: "
184 msgstr ""
145 msgstr "não foi possível abrir a sessão do oVirt:"
185146
186147 #.
187148 #. * Local variables:
190151 #. * indent-tabs-mode: nil
191152 #. * End:
192153 #.
193 #: ../src/remote-viewer-connect.xml.h:1
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
194155 msgid "Connection details"
195156 msgstr "Detalhes da conexão"
196157
197 #: ../src/remote-viewer-connect.xml.h:2
198 msgid "Connection Address"
199 msgstr ""
200
201 #: ../src/remote-viewer-connect.xml.h:3
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 msgid "Connection _Address"
160 msgstr ""
161
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
202163 msgid "For example, spice://foo.example.org:5900"
203164 msgstr "Por exemplo, spice://foo.example.org:5900"
204165
205 #: ../src/remote-viewer-connect.xml.h:4
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
206167 msgid "Recent connections"
207 msgstr ""
208
209 #: ../src/remote-viewer-connect.xml.h:5
210 msgid "Cancel"
211 msgstr ""
212
213 #: ../src/remote-viewer-connect.xml.h:6
214 msgid "Connect"
215 msgstr ""
216
217 #: ../src/virt-viewer-about.xml.h:1
218 msgid "About Glade"
219 msgstr "Sobre o Glade"
220
221 #: ../src/virt-viewer-about.xml.h:2
168 msgstr "Conexões recentes"
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
171 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
173 msgid "_Cancel"
174 msgstr ""
175
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
177 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 msgid "C_onnect"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:1
182 msgid "About Virt-Viewer"
183 msgstr ""
184
185 #: ../src/resources/ui/virt-viewer-about.ui.h:2
222186 msgid ""
223187 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
224188 "Copyright (C) 2007-2014 Red Hat, Inc."
226190 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
227191 "Copyright (C) 2007-2014 Red Hat, Inc."
228192
229 #: ../src/virt-viewer-about.xml.h:4
193 #: ../src/resources/ui/virt-viewer-about.ui.h:4
230194 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
231195 msgstr ""
232196 "Um cliente de desktop remoto construído com o GTK-VNC, SPICE-GTK e libvirt"
233197
234 #: ../src/virt-viewer-about.xml.h:5
198 #: ../src/resources/ui/virt-viewer-about.ui.h:5
235199 msgid "virt-manager.org"
236200 msgstr "virt-manager.org"
237201
238 #: ../src/virt-viewer-about.xml.h:6
202 #: ../src/resources/ui/virt-viewer-about.ui.h:6
239203 msgid ""
240204 "This program is free software; you can redistribute it and/or modify\n"
241205 "it under the terms of the GNU General Public License as published by\n"
265229 "este programa; Caso não o tenha recebido, escreva para a Fundação de "
266230 "Software Livre, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
267231
268 #: ../src/virt-viewer-about.xml.h:20
232 #: ../src/resources/ui/virt-viewer-about.ui.h:20
269233 msgid "The Fedora Translation Team"
270234 msgstr "A equipe de Tradução do Fedora "
271235
272 #: ../src/virt-viewer-app.c:526
236 #: ../src/virt-viewer-app.c:458
273237 msgid "Do you want to close the session?"
274238 msgstr "Você quer fechar a sessão?"
275239
276 #: ../src/virt-viewer-app.c:528
240 #: ../src/virt-viewer-app.c:460
277241 msgid "Do not ask me again"
278242 msgstr "Não me pergunte novamente"
279243
280 #: ../src/virt-viewer-app.c:1008
244 #: ../src/virt-viewer-app.c:948
281245 #, c-format
282246 msgid "Waiting for display %d..."
283247 msgstr "Esperando pelo display %d..."
284248
285 #: ../src/virt-viewer-app.c:1117
249 #: ../src/virt-viewer-app.c:1055
286250 #, c-format
287251 msgid "Unsupported graphic type '%s'"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1200
252 msgstr "Tipo de gráfico '%s' sem suporte"
253
254 #: ../src/virt-viewer-app.c:1138
291255 msgid "Connect to ssh failed."
292256 msgstr "Falha ao conectar com o ssh."
293257
294 #: ../src/virt-viewer-app.c:1202
258 #: ../src/virt-viewer-app.c:1140
295259 msgid "Can't connect to channel, SSH only supported."
296260 msgstr "Não foi possível conectar o canal, SSH somente suportado."
297261
298 #: ../src/virt-viewer-app.c:1214
262 #: ../src/virt-viewer-app.c:1152
299263 msgid "Connect to channel unsupported."
300264 msgstr "A conexão com o canal não é suportada."
301265
302 #: ../src/virt-viewer-app.c:1276
266 #: ../src/virt-viewer-app.c:1214
303267 msgid "Display can only be attached through libvirt with --attach"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:1299
268 msgstr "A exibição pode ser anexada somente através do libvirt com --attach"
269
270 #: ../src/virt-viewer-app.c:1237
307271 msgid "Connecting to graphic server"
308272 msgstr "Conectando ao servidor de gráfico"
309273
310 #: ../src/virt-viewer-app.c:1398
274 #: ../src/virt-viewer-app.c:1336
311275 msgid "Guest domain has shutdown"
312276 msgstr "Domínio de convidado precisa ser fechado"
313277
314 #: ../src/virt-viewer-app.c:1459
278 #: ../src/virt-viewer-app.c:1397
315279 msgid "Connected to graphic server"
316280 msgstr "Conectado ao servidor de gráfico"
317281
318 #: ../src/virt-viewer-app.c:1486
282 #: ../src/virt-viewer-app.c:1424
319283 #, c-format
320284 msgid "Unable to connect to the graphic server %s"
321285 msgstr "Incapaz de conectar ao servidor de gráfico %s"
322286
323 #: ../src/virt-viewer-app.c:1512
287 #: ../src/virt-viewer-app.c:1450
324288 #, c-format
325289 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
326290 msgstr ""
327
328 #: ../src/virt-viewer-app.c:1525
291 "Não é possível fazer a autenticação com o servidor da área de trabalho "
292 "remota em %s: %s\n"
293
294 #: ../src/virt-viewer-app.c:1463
329295 #, c-format
330296 msgid "Unable to authenticate with remote desktop server: %s"
331297 msgstr "Incapaz de autenticar com o servidor remoto: %s"
332298
333 #: ../src/virt-viewer-app.c:1533
299 #: ../src/virt-viewer-app.c:1471
334300 #, c-format
335301 msgid "USB redirection error: %s"
336302 msgstr "Erro de redirecionamento do USB:%s"
337303
338 #: ../src/virt-viewer-app.c:1786
304 #: ../src/virt-viewer-app.c:1805
339305 #, c-format
340306 msgid "Zoom level must be within %d-%d\n"
341307 msgstr "Zoom nível deve ser dentro de %d-%d\n"
342308
343 #: ../src/virt-viewer-app.c:2296
344 #, c-format
345 msgid "Display %d"
346 msgstr "Exibir %d"
347
348 #: ../src/virt-viewer-app.c:2552
309 #: ../src/virt-viewer-app.c:1858
310 #, c-format
311 msgid "%s\n"
312 msgstr ""
313
314 #: ../src/virt-viewer-app.c:1868
315 #, c-format
316 msgid "%s version %s"
317 msgstr ""
318
319 #: ../src/virt-viewer-app.c:2292
320 #, c-format
321 msgid "Display _%d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2548
349325 #, c-format
350326 msgid "Invalid kiosk-quit argument: %s"
351327 msgstr "Inválido kiosk-quit argumento: %s"
328
329 #: ../src/virt-viewer-app.c:2559
330 msgid "Display version information"
331 msgstr "Exibir informações de versão"
352332
353333 #: ../src/virt-viewer-app.c:2561
354334 msgid "Zoom level of window, in percentage"
384364 msgid "Display debugging information"
385365 msgstr "Exibir informações de depuração"
386366
387 #: ../src/virt-viewer-auth.c:88
367 #: ../src/virt-viewer-auth.c:89
388368 #, c-format
389369 msgid ""
390370 "Authentication is required for the %s connection to:\n"
392372 "<b>%s</b>\n"
393373 "\n"
394374 msgstr ""
395
396 #: ../src/virt-viewer-auth.c:92
375 "Autenticação necessária para a conexão de %s com:\n"
376 "\n"
377 "<b>%s</b>\n"
378
379 #: ../src/virt-viewer-auth.c:93
397380 #, c-format
398381 msgid "Authentication is required for the %s connection:\n"
399 msgstr ""
382 msgstr "Autenticação necessária para a conexão de %s:\n"
400383
401384 #.
402385 #. * Local variables:
405388 #. * indent-tabs-mode: nil
406389 #. * End:
407390 #.
408 #: ../src/virt-viewer-auth.xml.h:1
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
409392 msgid "Authentication required"
410393 msgstr "Autenticação requerida"
411394
412 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
396 msgid "_OK"
397 msgstr ""
398
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
400 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
413401 msgid "label"
414402 msgstr "rótulo"
415403
416 #: ../src/virt-viewer-auth.xml.h:3
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
417405 msgid "Password:"
418406 msgstr "Senha:"
419407
420 #: ../src/virt-viewer-auth.xml.h:4
408 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
421409 msgid "Username:"
422410 msgstr "Nome de usuário:"
423411
424 #: ../src/virt-viewer-auth.xml.h:5
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
425413 msgid "Show password"
426414 msgstr "Exibir senha"
427415
428 #: ../src/virt-viewer-display-vnc.c:133
416 #: ../src/virt-viewer-display-vnc.c:134
429417 msgid "VNC does not provide GUID"
418 msgstr "O VNC não fornece o GUID"
419
420 #: ../src/virt-viewer-file-transfer-dialog.c:152
421 msgid "Cancel"
422 msgstr "Cancelar"
423
424 #: ../src/virt-viewer-file-transfer-dialog.c:163
425 msgid "File Transfers"
430426 msgstr ""
431427
432428 #: ../src/virt-viewer-main.c:38
433 #, c-format
434 msgid "%s version %s\n"
435 msgstr "%s version %s\n"
436
437 #: ../src/virt-viewer-main.c:62
438 msgid "Direct connection with no automatic tunnels"
439 msgstr "Conexão direta com os túneis automáticos"
440
441 #: ../src/virt-viewer-main.c:64
442 msgid "Attach to the local display using libvirt"
443 msgstr "Anexar ao display local usando o libvirt"
444
445 #: ../src/virt-viewer-main.c:66
446 msgid "Connect to hypervisor"
447 msgstr "Conectar ao hypervisor"
448
449 #: ../src/virt-viewer-main.c:68
450 msgid "Wait for domain to start"
451 msgstr "Esperar pelo domínio para iniciar"
452
453 #: ../src/virt-viewer-main.c:70
454 msgid "Reconnect to domain upon restart"
455 msgstr "Reconectar ao domínio no reinício"
456
457 #: ../src/virt-viewer-main.c:77
458429 msgid "Virt Viewer"
459430 msgstr "Visualizador do Virt"
460431
461 #: ../src/virt-viewer-main.c:80
462 #, c-format
463 msgid "Run '%s --help' to see a full list of available command line options"
464 msgstr ""
465 "Execute '%s --help' para ver uma lista completa das opções de linha de "
466 "comando disponíveis"
467
468 #: ../src/virt-viewer-main.c:86
469 msgid "Virtual machine graphical console"
470 msgstr ""
471
472 #: ../src/virt-viewer-main.c:107
473 #, c-format
474 msgid ""
475 "\n"
476 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
477 "\n"
478 "%s\n"
479 "\n"
480 msgstr ""
481
482 #: ../src/virt-viewer-main.c:112
483 #, c-format
484 msgid ""
485 "\n"
486 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
487 "\n"
488 msgstr ""
489
490 #: ../src/virt-viewer-session-spice.c:694
432 #: ../src/virt-viewer-session-spice.c:705
491433 msgid "Invalid password"
492434 msgstr "Senha inválida"
493435
494436 #. Create the widgets
495 #: ../src/virt-viewer-session-spice.c:786
437 #: ../src/virt-viewer-session-spice.c:797
496438 msgid "Select USB devices for redirection"
497439 msgstr "Selecionar os dispositivos do USB para redirecionamento"
498440
499 #: ../src/virt-viewer-session-vnc.c:153
441 #: ../src/virt-viewer-session-spice.c:799
442 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
443 msgid "_Close"
444 msgstr ""
445
446 #: ../src/virt-viewer-session-vnc.c:156
500447 #, c-format
501448 msgid "Unsupported authentication type %d"
502449 msgstr "Autenticação não suportada tipo %d"
507454
508455 #: ../src/virt-viewer-vm-connection.c:93
509456 msgid "No virtual machine was chosen"
510 msgstr ""
511
512 #: ../src/virt-viewer-window.c:537
457 msgstr "Nenhuma máquina virtual foi selecionada"
458
459 #: ../src/virt-viewer-window.c:534
513460 msgid "Ctrl+Alt+_Del"
514461 msgstr "Ctrl+Alt+_Del"
515462
516 #: ../src/virt-viewer-window.c:538
463 #: ../src/virt-viewer-window.c:535
517464 msgid "Ctrl+Alt+_Backspace"
518465 msgstr "Ctrl+Alt+_Backspace"
519466
520 #: ../src/virt-viewer-window.c:540
467 #: ../src/virt-viewer-window.c:537
521468 msgid "Ctrl+Alt+F_1"
522469 msgstr "Ctrl+Alt+F_1"
523470
524 #: ../src/virt-viewer-window.c:541
471 #: ../src/virt-viewer-window.c:538
525472 msgid "Ctrl+Alt+F_2"
526473 msgstr "Ctrl+Alt+F_2"
527474
528 #: ../src/virt-viewer-window.c:542
475 #: ../src/virt-viewer-window.c:539
529476 msgid "Ctrl+Alt+F_3"
530477 msgstr "Ctrl+Alt+F_3"
531478
532 #: ../src/virt-viewer-window.c:543
479 #: ../src/virt-viewer-window.c:540
533480 msgid "Ctrl+Alt+F_4"
534481 msgstr "Ctrl+Alt+F_4"
535482
536 #: ../src/virt-viewer-window.c:544
483 #: ../src/virt-viewer-window.c:541
537484 msgid "Ctrl+Alt+F_5"
538485 msgstr "Ctrl+Alt+F_5"
539486
540 #: ../src/virt-viewer-window.c:545
487 #: ../src/virt-viewer-window.c:542
541488 msgid "Ctrl+Alt+F_6"
542489 msgstr "Ctrl+Alt+F_6"
543490
544 #: ../src/virt-viewer-window.c:546
491 #: ../src/virt-viewer-window.c:543
545492 msgid "Ctrl+Alt+F_7"
546493 msgstr "Ctrl+Alt+F_7"
547494
548 #: ../src/virt-viewer-window.c:547
495 #: ../src/virt-viewer-window.c:544
549496 msgid "Ctrl+Alt+F_8"
550497 msgstr "Ctrl+Alt+F_8"
551498
552 #: ../src/virt-viewer-window.c:548
499 #: ../src/virt-viewer-window.c:545
553500 msgid "Ctrl+Alt+F_9"
554501 msgstr "Ctrl+Alt+F_9"
555502
556 #: ../src/virt-viewer-window.c:549
503 #: ../src/virt-viewer-window.c:546
557504 msgid "Ctrl+Alt+F1_0"
558505 msgstr "Ctrl+Alt+F1_0"
559506
560 #: ../src/virt-viewer-window.c:550
507 #: ../src/virt-viewer-window.c:547
561508 msgid "Ctrl+Alt+F11"
562509 msgstr "Ctrl+Alt+F11"
563510
564 #: ../src/virt-viewer-window.c:551
511 #: ../src/virt-viewer-window.c:548
565512 msgid "Ctrl+Alt+F12"
566513 msgstr "Ctrl+Alt+F12"
567514
568 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
515 #: ../src/virt-viewer-window.c:919
516 msgid "_Save"
517 msgstr ""
518
519 #: ../src/virt-viewer-window.c:927
569520 msgid "Screenshot"
570521 msgstr "Screenshot"
571522
572 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
523 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
573524 msgid "Unknown"
574525 msgstr "Desconhecido"
575526
576 #: ../src/virt-viewer-window.c:1062
527 #: ../src/virt-viewer-window.c:1071
577528 msgid "Disconnect"
578529 msgstr "Desconectar"
579530
580 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
581 #: ../src/virt-viewer.xml.h:3
531 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
582532 msgid "USB device selection"
583533 msgstr "Seleção de dispositivo de USB"
584534
585 #: ../src/virt-viewer-window.c:1081
535 #: ../src/virt-viewer-window.c:1089
586536 msgid "Send key combination"
587537 msgstr "Enviar combinação de teclas"
588538
589 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
539 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
590540 msgid "Leave fullscreen"
591541 msgstr "Deixar tela cheia"
592542
593 #: ../src/virt-viewer-window.c:1173
543 #: ../src/virt-viewer-window.c:1175
594544 msgid "Ctrl+Alt"
595545 msgstr "Ctrl+Alt"
596546
597 #: ../src/virt-viewer-window.c:1176
547 #: ../src/virt-viewer-window.c:1178
598548 #, c-format
599549 msgid "(Press %s to release pointer)"
600550 msgstr "(Pressione %s para liberar o ponteiro)"
603553 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
604554 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
605555 #.
606 #: ../src/virt-viewer-window.c:1187
556 #: ../src/virt-viewer-window.c:1189
607557 #, c-format
608558 msgid "%s%s%s - %s"
609559 msgstr "%s%s%s - %s"
610560
611561 #. translators: <space>
612 #: ../src/virt-viewer-window.c:1191
562 #: ../src/virt-viewer-window.c:1193
613563 msgid " "
614564 msgstr " "
615565
616 #: ../src/virt-viewer-file.c:825
566 #: ../src/virt-viewer-file.c:843
617567 #, c-format
618568 msgid ""
619569 "At least %s version %s is required to setup this connection, see %s for "
620570 "details"
621571 msgstr ""
622
623 #: ../src/virt-viewer-file.c:833
572 "É necessário pelo menos %s versão %s para configurar esta conexão, consulte "
573 "%s para mais detalhes"
574
575 #: ../src/virt-viewer-file.c:851
624576 #, c-format
625577 msgid "At least %s version %s is required to setup this connection"
626578 msgstr "Pelo menos %s versão %s é necessária para configurar esta conexão"
627579
628 #: ../src/virt-viewer.c:163
580 #: ../src/virt-viewer.c:90
581 msgid "Direct connection with no automatic tunnels"
582 msgstr "Conexão direta com os túneis automáticos"
583
584 #: ../src/virt-viewer.c:92
585 msgid "Attach to the local display using libvirt"
586 msgstr "Anexar ao display local usando o libvirt"
587
588 #: ../src/virt-viewer.c:94
589 msgid "Connect to hypervisor"
590 msgstr "Conectar ao hypervisor"
591
592 #: ../src/virt-viewer.c:96
593 msgid "Wait for domain to start"
594 msgstr "Esperar pelo domínio para iniciar"
595
596 #: ../src/virt-viewer.c:98
597 msgid "Reconnect to domain upon restart"
598 msgstr "Reconectar ao domínio no reinício"
599
600 #: ../src/virt-viewer.c:105
601 msgid "Virtual machine graphical console"
602 msgstr "Console gráfico da máquina virtual "
603
604 #: ../src/virt-viewer.c:124
605 #, c-format
606 msgid ""
607 "\n"
608 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
609 "\n"
610 msgstr ""
611
612 #: ../src/virt-viewer.c:136
613 #, c-format
614 msgid ""
615 "\n"
616 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
617 "\n"
618 msgstr ""
619 "\n"
620 "Nenhum DOMAIN-NAME|ID|UUID foi especificado para '--wait'\n"
621 "\n"
622
623 #: ../src/virt-viewer.c:250
629624 msgid "Waiting for guest domain to re-start"
630625 msgstr "Esperando pelo domínio do convidado para reiniciar"
631626
632 #: ../src/virt-viewer.c:409
627 #: ../src/virt-viewer.c:496
633628 #, c-format
634629 msgid "Cannot determine the graphic type for the guest %s"
635630 msgstr "Não é possível determinar o tipo de gráfico para o convidado %s"
636631
637 #: ../src/virt-viewer.c:448
632 #: ../src/virt-viewer.c:535
638633 #, c-format
639634 msgid "Cannot determine the host for the guest %s"
640635 msgstr "Não foi possível determinar o host para os convidados %s"
641636
642 #: ../src/virt-viewer.c:476
637 #: ../src/virt-viewer.c:563
643638 #, c-format
644639 msgid "Guest '%s' is not reachable"
645 msgstr ""
646
647 #: ../src/virt-viewer.c:697
640 msgstr "O convidado '%s' não pode ser acessado"
641
642 #: ../src/virt-viewer.c:784
648643 #, c-format
649644 msgid "Virtual machine %s is not running"
650 msgstr ""
651
652 #: ../src/virt-viewer.c:720
645 msgstr "A máquina virtual %s não está em execução"
646
647 #: ../src/virt-viewer.c:807
653648 msgid "Waiting for libvirt to start"
654649 msgstr "Aguardando libvirt para iniciar"
655650
656 #: ../src/virt-viewer.c:724
651 #: ../src/virt-viewer.c:811
657652 msgid "Finding guest domain"
658653 msgstr "Encontrando o domínio do convidado"
659654
660 #: ../src/virt-viewer.c:728
655 #: ../src/virt-viewer.c:815
661656 msgid "Waiting for guest domain to be created"
662657 msgstr "Esperando pelo domínio do convidado a ser criado"
663658
664 #: ../src/virt-viewer.c:750
659 #: ../src/virt-viewer.c:837
665660 msgid "Checking guest domain status"
666661 msgstr "Verificando o status do domínio do convidado"
667662
668 #: ../src/virt-viewer.c:753
663 #: ../src/virt-viewer.c:840
669664 msgid "Cannot get guest state"
670 msgstr ""
671
672 #: ../src/virt-viewer.c:759
665 msgstr "Não é possível obter o estado do convidado "
666
667 #: ../src/virt-viewer.c:846
673668 msgid "Waiting for guest domain to start"
674669 msgstr "Esperando pelo domínio do convidado para iniciar"
675670
676 #: ../src/virt-viewer.c:863
671 #: ../src/virt-viewer.c:950
677672 #, c-format
678673 msgid "Unable to connect to libvirt with URI: %s."
679 msgstr ""
680
681 #: ../src/virt-viewer.c:864
674 msgstr "Não é possível conectar-se ao libvirt com o URI: %s."
675
676 #: ../src/virt-viewer.c:951
682677 msgid "[none]"
683678 msgstr "[nenhum]"
684679
685 #: ../src/virt-viewer.c:871
680 #: ../src/virt-viewer.c:958
686681 msgid "Authentication failed."
687682 msgstr "falha na autenticação."
688683
689 #: ../src/virt-viewer.c:931
684 #: ../src/virt-viewer.c:1018
690685 msgid "Failed to connect: "
691 msgstr ""
686 msgstr "Falha ao conectar-se: "
692687
693688 #.
694689 #. * Local variables:
697692 #. * indent-tabs-mode: nil
698693 #. * End:
699694 #.
700 #: ../src/virt-viewer.xml.h:1
695 #: ../src/resources/ui/virt-viewer.ui.h:1
701696 msgid "_File"
702697 msgstr "_Arquivo"
703698
704 #: ../src/virt-viewer.xml.h:4
699 #: ../src/resources/ui/virt-viewer.ui.h:2
700 msgid "_Screenshot"
701 msgstr ""
702
703 #: ../src/resources/ui/virt-viewer.ui.h:3
704 msgid "_USB device selection"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:4
705708 msgid "Smartcard insertion"
706709 msgstr "Inserção do Smartcard "
707710
708 #: ../src/virt-viewer.xml.h:5
711 #: ../src/resources/ui/virt-viewer.ui.h:5
709712 msgid "Smartcard removal"
710713 msgstr "Remoção do Smartcard"
711714
712 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
713 msgid "Preferences"
714 msgstr ""
715
716 #: ../src/virt-viewer.xml.h:7
715 #: ../src/resources/ui/virt-viewer.ui.h:6
716 msgid "_Preferences"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:7
720 msgid "_Quit"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:8
717724 msgid "_View"
718725 msgstr "_Visualizar"
719726
720 #: ../src/virt-viewer.xml.h:8
721 msgid "Full screen"
722 msgstr "Tela cheia"
723
724 #: ../src/virt-viewer.xml.h:9
727 #: ../src/resources/ui/virt-viewer.ui.h:9
728 msgid "_Full screen"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:10
725732 msgid "_Zoom"
726733 msgstr "_Zoom"
727734
728 #: ../src/virt-viewer.xml.h:10
729 msgid "Displays"
730 msgstr "Displays"
731
732 #: ../src/virt-viewer.xml.h:11
735 #: ../src/resources/ui/virt-viewer.ui.h:11
736 msgid "Zoom _In"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:12
740 msgid "Zoom _Out"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer.ui.h:13
744 msgid "_Normal Size"
745 msgstr ""
746
747 #: ../src/resources/ui/virt-viewer.ui.h:14
748 msgid "_Displays"
749 msgstr ""
750
751 #: ../src/resources/ui/virt-viewer.ui.h:15
733752 msgid "Release cursor"
734753 msgstr "Liberar o cursor"
735754
736 #: ../src/virt-viewer.xml.h:12
755 #: ../src/resources/ui/virt-viewer.ui.h:16
737756 msgid "_Send key"
738757 msgstr "_Chave de Envio"
739758
740 #: ../src/virt-viewer.xml.h:13
759 #: ../src/resources/ui/virt-viewer.ui.h:17
741760 msgid "_Help"
742761 msgstr "_Ajuda"
743762
744 #: ../src/virt-viewer.xml.h:14
763 #: ../src/resources/ui/virt-viewer.ui.h:18
745764 msgid "_Guest Details"
746 msgstr ""
747
748 #: ../src/virt-viewer-guest-details.xml.h:1
765 msgstr "_Detalhes do Convidado"
766
767 #: ../src/resources/ui/virt-viewer.ui.h:19
768 msgid "_About"
769 msgstr ""
770
771 #: ../src/resources/ui/virt-viewer.ui.h:20
772 msgid "_Change CD"
773 msgstr "Alterar _CD"
774
775 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
749776 msgid "Guest Details"
750 msgstr ""
751
752 #: ../src/virt-viewer-guest-details.xml.h:2
777 msgstr "Detalhes do Convidado"
778
779 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
753780 msgid "Name:"
754781 msgstr "Nome:"
755782
756 #: ../src/virt-viewer-guest-details.xml.h:3
783 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
757784 msgid "GUID:"
758785 msgstr "GUID:"
759786
760 #: ../src/virt-viewer-vm-connection.xml.h:1
787 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
761788 msgid "Choose a virtual machine"
762789 msgstr "Escolha uma máquina virtual"
763790
764 #: ../src/virt-viewer-vm-connection.xml.h:2
791 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
765792 msgid "Name"
766793 msgstr "Nome"
767794
768 #: ../src/virt-viewer-vm-connection.xml.h:3
795 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
769796 msgid "Available virtual machines"
770797 msgstr "Máquinas virtuais disponíveis"
771798
772 #: ../src/virt-viewer-preferences.xml.h:2
799 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
800 msgid "Preferences"
801 msgstr "Preferências"
802
803 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
773804 msgid "Folder sharing"
774 msgstr ""
775
776 #: ../src/virt-viewer-preferences.xml.h:3
805 msgstr "Compartilhamento de pasta"
806
807 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
777808 msgid "Share folder"
778 msgstr ""
779
780 #: ../src/virt-viewer-preferences.xml.h:4
809 msgstr "Compartilhar pasta"
810
811 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
781812 msgid "Read-only"
782 msgstr ""
783
784 #: ../src/virt-viewer-preferences.xml.h:5
813 msgstr "Somente leitura"
814
815 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
785816 msgid "Spice"
786 msgstr ""
817 msgstr "Spice"
+343
-316
po/ro.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+359
-328
po/ru.po less more
99 # Yulia <yulia.poyarkova@redhat.com>, 2013
1010 # Ilyas B Arinov <arinov.ilyas@gmail.com>, 2015. #zanata
1111 # yuliya <ypoyarko@redhat.com>, 2015. #zanata
12 # yuliya <ypoyarko@redhat.com>, 2016. #zanata
1213 msgid ""
1314 msgstr ""
1415 "Project-Id-Version: PACKAGE VERSION\n"
1516 "Report-Msgid-Bugs-To: \n"
16 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
17 "PO-Revision-Date: 2015-06-07 07:46-0400\n"
18 "Last-Translator: Ilyas B Arinov <arinov.ilyas@gmail.com>\n"
17 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
18 "PO-Revision-Date: 2016-04-01 12:38-0400\n"
19 "Last-Translator: yuliya <ypoyarko@redhat.com>\n"
1920 "Language-Team: Russian (http://www.transifex.com/projects/p/virt-viewer/"
2021 "language/ru/)\n"
2122 "Language: ru\n"
2425 "Content-Transfer-Encoding: 8bit\n"
2526 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
2627 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
27 "X-Generator: Zanata 3.7.3\n"
28
29 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
28 "X-Generator: Zanata 3.8.4\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
3032 msgid "Remote Viewer"
31 msgstr "Удаленный просмотр"
33 msgstr "Удаленный рабочий стол"
34
35 #: ../data/remote-viewer.appdata.xml.in.h:2
36 msgid "Remotely access virtual machines"
37 msgstr ""
38
39 #: ../data/remote-viewer.appdata.xml.in.h:3
40 msgid ""
41 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
42 "time it supports guest OS using the VNC or SPICE protocols. Further "
43 "protocols may be supported in the future as user demand dictates. The viewer "
44 "can connect directly to both local and remotely hosted guest OS, optionally "
45 "using SSL/TLS encryption."
46 msgstr ""
3247
3348 #: ../data/remote-viewer.desktop.in.h:2
3449 msgid "Access remote desktops"
3853 msgid "Virt-Viewer connection file"
3954 msgstr "Файл соединения virt-viewer"
4055
41 #: ../src/gbinding.c:637
42 msgid "Source"
43 msgstr "Источник"
44
45 #: ../src/gbinding.c:638
46 msgid "The source of the binding"
47 msgstr "Первый элемент привязки"
48
49 #: ../src/gbinding.c:652
50 msgid "Target"
51 msgstr "Цель"
52
53 #: ../src/gbinding.c:653
54 msgid "The target of the binding"
55 msgstr "Второй элемент привязки"
56
57 #: ../src/gbinding.c:668
58 msgid "Source Property"
59 msgstr "Свойство источника"
60
61 #: ../src/gbinding.c:669
62 msgid "The property on the source to bind"
63 msgstr "Свойство первого элемента"
64
65 #: ../src/gbinding.c:684
66 msgid "Target Property"
67 msgstr "Свойство цели"
68
69 #: ../src/gbinding.c:685
70 msgid "The property on the target to bind"
71 msgstr "Свойство второго элемента"
72
73 #: ../src/gbinding.c:699
74 msgid "Flags"
75 msgstr "Флаги"
76
77 #: ../src/gbinding.c:700
78 msgid "The binding flags"
79 msgstr "Флаги привязки"
80
81 #: ../src/remote-viewer-main.c:50
82 #, c-format
83 msgid "remote-viewer version %s"
84 msgstr ""
85
86 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
87 msgid "Display version information"
88 msgstr "Показать версию"
89
90 #: ../src/remote-viewer-main.c:105
56 #: ../src/remote-viewer.c:139
9157 msgid "Set window title"
9258 msgstr "Изменить заголовок окна"
9359
94 #: ../src/remote-viewer-main.c:108
60 #: ../src/remote-viewer.c:142
9561 msgid "Open connection using Spice controller communication"
9662 msgstr "Открыть соединение с помощью контроллера Spice"
9763
98 #: ../src/remote-viewer-main.c:120
64 #: ../src/remote-viewer.c:150
9965 msgid "Remote viewer client"
100 msgstr "Клиент удаленного просмотра"
101
102 #: ../src/remote-viewer-main.c:138
103 #, c-format
104 msgid ""
105 "%s\n"
106 "Run '%s --help' to see a full list of available command line options\n"
107 msgstr ""
108 "%s\n"
109 "Выполните «%s --help» для просмотра полного списка параметров\n"
110
111 #: ../src/remote-viewer-main.c:149
112 #, c-format
113 msgid "Error: extra arguments given while using Spice controller\n"
114 msgstr "Ошибка. Лишние аргументы при использовании контроллера Spice\n"
115
116 #: ../src/remote-viewer-main.c:156
117 #, c-format
118 msgid "Error: can't handle multiple URIs\n"
119 msgstr "Ошибка. Обработка нескольких URI не допускается.\n"
120
121 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
66 msgstr "Клиент удаленного просмотра рабочего стола"
67
68 #: ../src/remote-viewer.c:175
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: can't handle multiple URIs\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:187
77 #, c-format
78 msgid ""
79 "\n"
80 "Error: extra arguments given while using Spice controller\n"
81 "\n"
82 msgstr ""
83
84 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
85 #, c-format
86 msgid "Run '%s --help' to see a full list of available command line options\n"
87 msgstr ""
88
89 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12290 msgid "Failed to initiate connection"
12391 msgstr "Не удалось установить соединение"
12492
125 #: ../src/remote-viewer.c:313
93 #: ../src/remote-viewer.c:297
12694 msgid "Display disabled by controller"
12795 msgstr "Дисплей отключен контроллером"
12896
129 #: ../src/remote-viewer.c:609
97 #: ../src/remote-viewer.c:593
13098 #, c-format
13199 msgid "Controller connection failed: %s"
132100 msgstr "Ошибка подключения контроллера: %s"
133101
134 #: ../src/remote-viewer.c:755
135 msgid "_Change CD"
136 msgstr "_Сменить CD"
137
138 #: ../src/remote-viewer.c:855
102 #: ../src/remote-viewer.c:848
139103 msgid "failed to parse ovirt uri"
140104 msgstr "не удалось обработать oVirt uri"
141105
142 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
106 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
143107 msgid "Authentication was cancelled"
144 msgstr ""
145
146 #: ../src/remote-viewer.c:900
108 msgstr "Аутентификация была отменена"
109
110 #: ../src/remote-viewer.c:893
147111 #, c-format
148112 msgid "oVirt VM %s is not running"
149113 msgstr "Виртуальная машина oVirt %s не работает"
150114
151 #: ../src/remote-viewer.c:914
115 #: ../src/remote-viewer.c:907
152116 #, c-format
153117 msgid "oVirt VM %s has no display"
154 msgstr "Отсутствует дисплей у ВМ oVirt %s"
155
156 #: ../src/remote-viewer.c:940
118 msgstr "У виртуальной машины oVirt %s дисплей отсутствует"
119
120 #: ../src/remote-viewer.c:933
157121 #, c-format
158122 msgid "oVirt VM %s has no host information"
159 msgstr ""
160
161 #: ../src/remote-viewer.c:951
123 msgstr "Отсутствуют сведения о хосте виртуальной машины oVirt %s"
124
125 #: ../src/remote-viewer.c:944
162126 #, c-format
163127 msgid "oVirt VM %s has unknown display type: %d"
164128 msgstr "Неизвестный тип дисплея виртуальной машины oVirt %s: %d"
165129
166 #: ../src/remote-viewer.c:1094
130 #: ../src/remote-viewer.c:1115
167131 msgid "Setting up Spice session..."
168132 msgstr "Инициализация сеанса Spice..."
169133
170 #: ../src/remote-viewer.c:1102
134 #: ../src/remote-viewer.c:1123
171135 msgid "No connection was chosen"
172 msgstr ""
173
174 #: ../src/remote-viewer.c:1120
136 msgstr "Соединение не выбрано"
137
138 #: ../src/remote-viewer.c:1141
175139 #, c-format
176140 msgid "Invalid file %s: "
177 msgstr ""
178
179 #: ../src/remote-viewer.c:1128
141 msgstr "Недопустимый файл %s:"
142
143 #: ../src/remote-viewer.c:1149
180144 msgid "Cannot determine the connection type from URI"
181 msgstr "Не удалось определить тип подключения в URI"
182
183 #: ../src/remote-viewer.c:1134
145 msgstr "Не удалось определить тип подключения из заданного адреса"
146
147 #: ../src/remote-viewer.c:1155
184148 msgid "Couldn't open oVirt session: "
185 msgstr ""
149 msgstr "Не удалось открыть сеанс oVirt:"
186150
187151 #.
188152 #. * Local variables:
191155 #. * indent-tabs-mode: nil
192156 #. * End:
193157 #.
194 #: ../src/remote-viewer-connect.xml.h:1
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
195159 msgid "Connection details"
196160 msgstr "Свойства подключения"
197161
198 #: ../src/remote-viewer-connect.xml.h:2
199 msgid "Connection Address"
200 msgstr ""
201
202 #: ../src/remote-viewer-connect.xml.h:3
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
163 msgid "Connection _Address"
164 msgstr ""
165
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
203167 msgid "For example, spice://foo.example.org:5900"
204 msgstr "Например, spice://foo.example.org:5900"
205
206 #: ../src/remote-viewer-connect.xml.h:4
168 msgstr "Пример: spice://foo.example.org:5900"
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
207171 msgid "Recent connections"
208 msgstr ""
209
210 #: ../src/remote-viewer-connect.xml.h:5
211 msgid "Cancel"
212 msgstr ""
213
214 #: ../src/remote-viewer-connect.xml.h:6
215 msgid "Connect"
216 msgstr ""
217
218 #: ../src/virt-viewer-about.xml.h:1
219 msgid "About Glade"
220 msgstr "О Glade"
221
222 #: ../src/virt-viewer-about.xml.h:2
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:918
176 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
177 msgid "_Cancel"
178 msgstr ""
179
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
181 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
182 msgid "C_onnect"
183 msgstr ""
184
185 #: ../src/resources/ui/virt-viewer-about.ui.h:1
186 msgid "About Virt-Viewer"
187 msgstr ""
188
189 #: ../src/resources/ui/virt-viewer-about.ui.h:2
223190 msgid ""
224191 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
225192 "Copyright (C) 2007-2014 Red Hat, Inc."
227194 "(C) 2007-2012 Daniel P. Berrange\n"
228195 "(C) 2007-2014 Red Hat, Inc."
229196
230 #: ../src/virt-viewer-about.xml.h:4
197 #: ../src/resources/ui/virt-viewer-about.ui.h:4
231198 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
232199 msgstr ""
233 "Клиент удаленного рабочего стола построен на основе GTK-VNC, SPICE-GTK и "
234 "libvirt"
235
236 #: ../src/virt-viewer-about.xml.h:5
200 "Клиент доступа к удаленному рабочему столу построен на основе GTK-VNC, SPICE-"
201 "GTK и libvirt"
202
203 #: ../src/resources/ui/virt-viewer-about.ui.h:5
237204 msgid "virt-manager.org"
238205 msgstr "virt-manager.org"
239206
240 #: ../src/virt-viewer-about.xml.h:6
207 #: ../src/resources/ui/virt-viewer-about.ui.h:6
241208 msgid ""
242209 "This program is free software; you can redistribute it and/or modify\n"
243210 "it under the terms of the GNU General Public License as published by\n"
254221 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
255222 msgstr ""
256223 "Эта программа относится к категории свободного программного обеспечения;\n"
257 "её можно распространять и изменять в соответствии с условиями \n"
224 "ее изменение и распространение допускается в соответствии с условиями \n"
258225 "лицензии GNU General Public License 2 или любой более поздней версии, \n"
259226 "опубликованной фондом свободного программного обеспечения. \n"
260227 "\n"
268235 "Адрес фонда: Free Software Foundation, \n"
269236 "Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
270237
271 #: ../src/virt-viewer-about.xml.h:20
238 #: ../src/resources/ui/virt-viewer-about.ui.h:20
272239 msgid "The Fedora Translation Team"
273240 msgstr "Команда локализации Fedora"
274241
275 #: ../src/virt-viewer-app.c:526
242 #: ../src/virt-viewer-app.c:458
276243 msgid "Do you want to close the session?"
277244 msgstr "Закрыть сеанс?"
278245
279 #: ../src/virt-viewer-app.c:528
246 #: ../src/virt-viewer-app.c:460
280247 msgid "Do not ask me again"
281248 msgstr "Больше не спрашивать"
282249
283 #: ../src/virt-viewer-app.c:1008
250 #: ../src/virt-viewer-app.c:948
284251 #, c-format
285252 msgid "Waiting for display %d..."
286253 msgstr "Ожидание просмотра %d..."
287254
288 #: ../src/virt-viewer-app.c:1117
255 #: ../src/virt-viewer-app.c:1055
289256 #, c-format
290257 msgid "Unsupported graphic type '%s'"
291 msgstr ""
292
293 #: ../src/virt-viewer-app.c:1200
258 msgstr "Тип графики «%s» не поддерживается"
259
260 #: ../src/virt-viewer-app.c:1138
294261 msgid "Connect to ssh failed."
295262 msgstr "Ошибка соединения ssh."
296263
297 #: ../src/virt-viewer-app.c:1202
264 #: ../src/virt-viewer-app.c:1140
298265 msgid "Can't connect to channel, SSH only supported."
299266 msgstr "Не удалось подключиться к каналу. Поддерживается только SSH."
300267
301 #: ../src/virt-viewer-app.c:1214
268 #: ../src/virt-viewer-app.c:1152
302269 msgid "Connect to channel unsupported."
303270 msgstr "Подключение к каналу не поддерживается."
304271
305 #: ../src/virt-viewer-app.c:1276
272 #: ../src/virt-viewer-app.c:1214
306273 msgid "Display can only be attached through libvirt with --attach"
307274 msgstr "Дисплей может быть подключён только через libvirt с --attach"
308275
309 #: ../src/virt-viewer-app.c:1299
276 #: ../src/virt-viewer-app.c:1237
310277 msgid "Connecting to graphic server"
311278 msgstr "Подключение к графическому серверу"
312279
313 #: ../src/virt-viewer-app.c:1398
280 #: ../src/virt-viewer-app.c:1336
314281 msgid "Guest domain has shutdown"
315282 msgstr "Гостевой домен завершил работу"
316283
317 #: ../src/virt-viewer-app.c:1459
284 #: ../src/virt-viewer-app.c:1397
318285 msgid "Connected to graphic server"
319286 msgstr "Установлено соединение с графическим сервером"
320287
321 #: ../src/virt-viewer-app.c:1486
288 #: ../src/virt-viewer-app.c:1424
322289 #, c-format
323290 msgid "Unable to connect to the graphic server %s"
324291 msgstr "Не удалось установить соединение с сервером %s"
325292
326 #: ../src/virt-viewer-app.c:1512
293 #: ../src/virt-viewer-app.c:1450
327294 #, c-format
328295 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
329 msgstr ""
330
331 #: ../src/virt-viewer-app.c:1525
296 msgstr "Не удалось пройти аутентификацию на удаленном сервере %s: %s\n"
297
298 #: ../src/virt-viewer-app.c:1463
332299 #, c-format
333300 msgid "Unable to authenticate with remote desktop server: %s"
334301 msgstr "Не удалось пройти аутентификацию на удаленном сервере: %s"
335302
336 #: ../src/virt-viewer-app.c:1533
303 #: ../src/virt-viewer-app.c:1471
337304 #, c-format
338305 msgid "USB redirection error: %s"
339306 msgstr "Ошибка перенаправления USB: %s"
340307
341 #: ../src/virt-viewer-app.c:1786
308 #: ../src/virt-viewer-app.c:1805
342309 #, c-format
343310 msgid "Zoom level must be within %d-%d\n"
344311 msgstr "Уровень увеличения должен быть между %d-%d\n"
345312
346 #: ../src/virt-viewer-app.c:2296
347 #, c-format
348 msgid "Display %d"
349 msgstr "Экран %d"
350
351 #: ../src/virt-viewer-app.c:2552
313 #: ../src/virt-viewer-app.c:1858
314 #, c-format
315 msgid "%s\n"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:1868
319 #, c-format
320 msgid "%s version %s"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2292
324 #, c-format
325 msgid "Display _%d"
326 msgstr ""
327
328 #: ../src/virt-viewer-app.c:2548
352329 #, c-format
353330 msgid "Invalid kiosk-quit argument: %s"
354331 msgstr "недопустимый аргумент kiosk-quit: %s"
332
333 #: ../src/virt-viewer-app.c:2559
334 msgid "Display version information"
335 msgstr "Показать версию"
355336
356337 #: ../src/virt-viewer-app.c:2561
357338 msgid "Zoom level of window, in percentage"
387368 msgid "Display debugging information"
388369 msgstr "Показать сообщения диагностики"
389370
390 #: ../src/virt-viewer-auth.c:88
371 #: ../src/virt-viewer-auth.c:89
391372 #, c-format
392373 msgid ""
393374 "Authentication is required for the %s connection to:\n"
400381 "<b>%s</b>\n"
401382 "\n"
402383
403 #: ../src/virt-viewer-auth.c:92
384 #: ../src/virt-viewer-auth.c:93
404385 #, c-format
405386 msgid "Authentication is required for the %s connection:\n"
406387 msgstr "Требуется аутентификация для соединения %s:\n"
412393 #. * indent-tabs-mode: nil
413394 #. * End:
414395 #.
415 #: ../src/virt-viewer-auth.xml.h:1
396 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
416397 msgid "Authentication required"
417398 msgstr "Требуется проверка подлинности"
418399
419 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
400 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
401 msgid "_OK"
402 msgstr ""
403
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
405 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
420406 msgid "label"
421407 msgstr "метка"
422408
423 #: ../src/virt-viewer-auth.xml.h:3
409 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
424410 msgid "Password:"
425411 msgstr "Пароль:"
426412
427 #: ../src/virt-viewer-auth.xml.h:4
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
428414 msgid "Username:"
429415 msgstr "Пользователь:"
430416
431 #: ../src/virt-viewer-auth.xml.h:5
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
432418 msgid "Show password"
433419 msgstr "Показать пароль"
434420
435 #: ../src/virt-viewer-display-vnc.c:133
421 #: ../src/virt-viewer-display-vnc.c:134
436422 msgid "VNC does not provide GUID"
423 msgstr "VNC не предоставляет GUID"
424
425 #: ../src/virt-viewer-file-transfer-dialog.c:152
426 msgid "Cancel"
427 msgstr "Отмена"
428
429 #: ../src/virt-viewer-file-transfer-dialog.c:163
430 msgid "File Transfers"
437431 msgstr ""
438432
439433 #: ../src/virt-viewer-main.c:38
440 #, c-format
441 msgid "%s version %s\n"
442 msgstr "%s версия %s\n"
443
444 #: ../src/virt-viewer-main.c:62
445 msgid "Direct connection with no automatic tunnels"
446 msgstr "Прямое подключение без туннелей"
447
448 #: ../src/virt-viewer-main.c:64
449 msgid "Attach to the local display using libvirt"
450 msgstr "Подключиться к локальному графическому сеансу с помощью libvirt"
451
452 #: ../src/virt-viewer-main.c:66
453 msgid "Connect to hypervisor"
454 msgstr "Подключиться к гипервизору"
455
456 #: ../src/virt-viewer-main.c:68
457 msgid "Wait for domain to start"
458 msgstr "Ожидать запуска домена"
459
460 #: ../src/virt-viewer-main.c:70
461 msgid "Reconnect to domain upon restart"
462 msgstr "Заново подключиться к домену после перезапуска"
463
464 #: ../src/virt-viewer-main.c:77
465434 msgid "Virt Viewer"
466435 msgstr "Просмотр виртуальных систем"
467436
468 #: ../src/virt-viewer-main.c:80
469 #, c-format
470 msgid "Run '%s --help' to see a full list of available command line options"
471 msgstr "Выполните «%s --help» для просмотра полного списка параметров"
472
473 #: ../src/virt-viewer-main.c:86
474 msgid "Virtual machine graphical console"
475 msgstr "Графическая консоль виртуальной машины"
476
477 #: ../src/virt-viewer-main.c:107
478 #, c-format
479 msgid ""
480 "\n"
481 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
482 "\n"
483 "%s\n"
484 "\n"
485 msgstr ""
486
487 #: ../src/virt-viewer-main.c:112
488 #, c-format
489 msgid ""
490 "\n"
491 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
492 "\n"
493 msgstr ""
494
495 #: ../src/virt-viewer-session-spice.c:694
437 #: ../src/virt-viewer-session-spice.c:705
496438 msgid "Invalid password"
497439 msgstr "Неверный пароль"
498440
499441 #. Create the widgets
500 #: ../src/virt-viewer-session-spice.c:786
442 #: ../src/virt-viewer-session-spice.c:797
501443 msgid "Select USB devices for redirection"
502444 msgstr "Выбрать устройства USB для перенаправления"
503445
504 #: ../src/virt-viewer-session-vnc.c:153
446 #: ../src/virt-viewer-session-spice.c:799
447 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
448 msgid "_Close"
449 msgstr ""
450
451 #: ../src/virt-viewer-session-vnc.c:156
505452 #, c-format
506453 msgid "Unsupported authentication type %d"
507454 msgstr "Неподдерживаемый тип аутентификации %d"
512459
513460 #: ../src/virt-viewer-vm-connection.c:93
514461 msgid "No virtual machine was chosen"
515 msgstr ""
516
517 #: ../src/virt-viewer-window.c:537
462 msgstr "Виртуальная машина не выбрана"
463
464 #: ../src/virt-viewer-window.c:534
518465 msgid "Ctrl+Alt+_Del"
519466 msgstr "Ctrl+Alt+_Del"
520467
521 #: ../src/virt-viewer-window.c:538
468 #: ../src/virt-viewer-window.c:535
522469 msgid "Ctrl+Alt+_Backspace"
523470 msgstr "Ctrl+Alt+_Backspace"
524471
525 #: ../src/virt-viewer-window.c:540
472 #: ../src/virt-viewer-window.c:537
526473 msgid "Ctrl+Alt+F_1"
527474 msgstr "Ctrl+Alt+F_1"
528475
529 #: ../src/virt-viewer-window.c:541
476 #: ../src/virt-viewer-window.c:538
530477 msgid "Ctrl+Alt+F_2"
531478 msgstr "Ctrl+Alt+F_2"
532479
533 #: ../src/virt-viewer-window.c:542
480 #: ../src/virt-viewer-window.c:539
534481 msgid "Ctrl+Alt+F_3"
535482 msgstr "Ctrl+Alt+F_3"
536483
537 #: ../src/virt-viewer-window.c:543
484 #: ../src/virt-viewer-window.c:540
538485 msgid "Ctrl+Alt+F_4"
539486 msgstr "Ctrl+Alt+F_4"
540487
541 #: ../src/virt-viewer-window.c:544
488 #: ../src/virt-viewer-window.c:541
542489 msgid "Ctrl+Alt+F_5"
543490 msgstr "Ctrl+Alt+F_5"
544491
545 #: ../src/virt-viewer-window.c:545
492 #: ../src/virt-viewer-window.c:542
546493 msgid "Ctrl+Alt+F_6"
547494 msgstr "Ctrl+Alt+F_6"
548495
549 #: ../src/virt-viewer-window.c:546
496 #: ../src/virt-viewer-window.c:543
550497 msgid "Ctrl+Alt+F_7"
551498 msgstr "Ctrl+Alt+F_7"
552499
553 #: ../src/virt-viewer-window.c:547
500 #: ../src/virt-viewer-window.c:544
554501 msgid "Ctrl+Alt+F_8"
555502 msgstr "Ctrl+Alt+F_8"
556503
557 #: ../src/virt-viewer-window.c:548
504 #: ../src/virt-viewer-window.c:545
558505 msgid "Ctrl+Alt+F_9"
559506 msgstr "Ctrl+Alt+F_9"
560507
561 #: ../src/virt-viewer-window.c:549
508 #: ../src/virt-viewer-window.c:546
562509 msgid "Ctrl+Alt+F1_0"
563510 msgstr "Ctrl+Alt+F1_0"
564511
565 #: ../src/virt-viewer-window.c:550
512 #: ../src/virt-viewer-window.c:547
566513 msgid "Ctrl+Alt+F11"
567514 msgstr "Ctrl+Alt+F11"
568515
569 #: ../src/virt-viewer-window.c:551
516 #: ../src/virt-viewer-window.c:548
570517 msgid "Ctrl+Alt+F12"
571518 msgstr "Ctrl+Alt+F12"
572519
573 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
520 #: ../src/virt-viewer-window.c:919
521 msgid "_Save"
522 msgstr ""
523
524 #: ../src/virt-viewer-window.c:927
574525 msgid "Screenshot"
575526 msgstr "Снимок экрана"
576527
577 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
528 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
578529 msgid "Unknown"
579530 msgstr "Неизвестно"
580531
581 #: ../src/virt-viewer-window.c:1062
532 #: ../src/virt-viewer-window.c:1071
582533 msgid "Disconnect"
583534 msgstr "Отключиться"
584535
585 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
586 #: ../src/virt-viewer.xml.h:3
536 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
587537 msgid "USB device selection"
588538 msgstr "Выбор устройства USB"
589539
590 #: ../src/virt-viewer-window.c:1081
540 #: ../src/virt-viewer-window.c:1089
591541 msgid "Send key combination"
592542 msgstr "Отправить комбинацию клавиш"
593543
594 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
544 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
595545 msgid "Leave fullscreen"
596546 msgstr "Выйти из полноэкранного режима"
597547
598 #: ../src/virt-viewer-window.c:1173
548 #: ../src/virt-viewer-window.c:1175
599549 msgid "Ctrl+Alt"
600550 msgstr "Ctrl+Alt"
601551
602 #: ../src/virt-viewer-window.c:1176
552 #: ../src/virt-viewer-window.c:1178
603553 #, c-format
604554 msgid "(Press %s to release pointer)"
605555 msgstr "(нажмите %s для освобождения курсора)"
608558 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
609559 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
610560 #.
611 #: ../src/virt-viewer-window.c:1187
561 #: ../src/virt-viewer-window.c:1189
612562 #, c-format
613563 msgid "%s%s%s - %s"
614564 msgstr "%s%s%s - %s"
615565
616566 #. translators: <space>
617 #: ../src/virt-viewer-window.c:1191
567 #: ../src/virt-viewer-window.c:1193
618568 msgid " "
619569 msgstr " "
620570
621 #: ../src/virt-viewer-file.c:825
571 #: ../src/virt-viewer-file.c:843
622572 #, c-format
623573 msgid ""
624574 "At least %s version %s is required to setup this connection, see %s for "
625575 "details"
626576 msgstr ""
627
628 #: ../src/virt-viewer-file.c:833
577 "Для настройки этого соединения требуется по крайней мере %s %s. Для "
578 "получения подробной информации см. %s"
579
580 #: ../src/virt-viewer-file.c:851
629581 #, c-format
630582 msgid "At least %s version %s is required to setup this connection"
631 msgstr "Чтобы установить соединение требуется по крайней мере %s версии %s"
632
633 #: ../src/virt-viewer.c:163
583 msgstr "Для настройки этого соединения требуется по крайней мере %s %s"
584
585 #: ../src/virt-viewer.c:90
586 msgid "Direct connection with no automatic tunnels"
587 msgstr "Прямое подключение без туннелей"
588
589 #: ../src/virt-viewer.c:92
590 msgid "Attach to the local display using libvirt"
591 msgstr "Подключиться к локальному графическому сеансу с помощью libvirt"
592
593 #: ../src/virt-viewer.c:94
594 msgid "Connect to hypervisor"
595 msgstr "Подключиться к гипервизору"
596
597 #: ../src/virt-viewer.c:96
598 msgid "Wait for domain to start"
599 msgstr "Ожидать запуска домена"
600
601 #: ../src/virt-viewer.c:98
602 msgid "Reconnect to domain upon restart"
603 msgstr "Заново подключиться к домену после перезапуска"
604
605 #: ../src/virt-viewer.c:105
606 msgid "Virtual machine graphical console"
607 msgstr "Графическая консоль виртуальной машины"
608
609 #: ../src/virt-viewer.c:124
610 #, c-format
611 msgid ""
612 "\n"
613 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
614 "\n"
615 msgstr ""
616
617 #: ../src/virt-viewer.c:136
618 #, c-format
619 msgid ""
620 "\n"
621 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
622 "\n"
623 msgstr ""
624 "\n"
625 "Не определен ДОМЕН | ID | UUID для «--wait»\n"
626 "\n"
627
628 #: ../src/virt-viewer.c:250
634629 msgid "Waiting for guest domain to re-start"
635630 msgstr "Ожидание перезапуска гостевого домена"
636631
637 #: ../src/virt-viewer.c:409
632 #: ../src/virt-viewer.c:496
638633 #, c-format
639634 msgid "Cannot determine the graphic type for the guest %s"
640635 msgstr "Не удалось определить тип графической подсистемы для гостя %s"
641636
642 #: ../src/virt-viewer.c:448
637 #: ../src/virt-viewer.c:535
643638 #, c-format
644639 msgid "Cannot determine the host for the guest %s"
645640 msgstr "Не удалось определить хост для гостя %s"
646641
647 #: ../src/virt-viewer.c:476
642 #: ../src/virt-viewer.c:563
648643 #, c-format
649644 msgid "Guest '%s' is not reachable"
650645 msgstr "Гость '%s' недосягаем"
651646
652 #: ../src/virt-viewer.c:697
647 #: ../src/virt-viewer.c:784
653648 #, c-format
654649 msgid "Virtual machine %s is not running"
655650 msgstr "Виртуальная машина %s не запущена"
656651
657 #: ../src/virt-viewer.c:720
652 #: ../src/virt-viewer.c:807
658653 msgid "Waiting for libvirt to start"
659654 msgstr "Ожидание запуска libvirt"
660655
661 #: ../src/virt-viewer.c:724
656 #: ../src/virt-viewer.c:811
662657 msgid "Finding guest domain"
663658 msgstr "Поиск гостевого домена"
664659
665 #: ../src/virt-viewer.c:728
660 #: ../src/virt-viewer.c:815
666661 msgid "Waiting for guest domain to be created"
667662 msgstr "Ожидание создания гостевого домена"
668663
669 #: ../src/virt-viewer.c:750
664 #: ../src/virt-viewer.c:837
670665 msgid "Checking guest domain status"
671666 msgstr "Проверка статуса гостевого домена"
672667
673 #: ../src/virt-viewer.c:753
668 #: ../src/virt-viewer.c:840
674669 msgid "Cannot get guest state"
675 msgstr ""
676
677 #: ../src/virt-viewer.c:759
670 msgstr "Не удалось получить статус гостевой системы"
671
672 #: ../src/virt-viewer.c:846
678673 msgid "Waiting for guest domain to start"
679674 msgstr "Ожидание запуска гостевого домена"
680675
681 #: ../src/virt-viewer.c:863
676 #: ../src/virt-viewer.c:950
682677 #, c-format
683678 msgid "Unable to connect to libvirt with URI: %s."
684679 msgstr "Невозможно подключиться к libvirt с URI: %s."
685680
686 #: ../src/virt-viewer.c:864
681 #: ../src/virt-viewer.c:951
687682 msgid "[none]"
688683 msgstr "[нет]"
689684
690 #: ../src/virt-viewer.c:871
685 #: ../src/virt-viewer.c:958
691686 msgid "Authentication failed."
692 msgstr "Сбой аутентификации."
693
694 #: ../src/virt-viewer.c:931
687 msgstr "Аутентификация не пройдена."
688
689 #: ../src/virt-viewer.c:1018
695690 msgid "Failed to connect: "
696 msgstr ""
691 msgstr "Не удалось подключиться:"
697692
698693 #.
699694 #. * Local variables:
702697 #. * indent-tabs-mode: nil
703698 #. * End:
704699 #.
705 #: ../src/virt-viewer.xml.h:1
700 #: ../src/resources/ui/virt-viewer.ui.h:1
706701 msgid "_File"
707702 msgstr "_Файл"
708703
709 #: ../src/virt-viewer.xml.h:4
704 #: ../src/resources/ui/virt-viewer.ui.h:2
705 msgid "_Screenshot"
706 msgstr ""
707
708 #: ../src/resources/ui/virt-viewer.ui.h:3
709 msgid "_USB device selection"
710 msgstr ""
711
712 #: ../src/resources/ui/virt-viewer.ui.h:4
710713 msgid "Smartcard insertion"
711714 msgstr "Подключение смарт-карты"
712715
713 #: ../src/virt-viewer.xml.h:5
716 #: ../src/resources/ui/virt-viewer.ui.h:5
714717 msgid "Smartcard removal"
715 msgstr "Удаление смарт-карты"
716
717 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
718 msgid "Preferences"
719 msgstr ""
720
721 #: ../src/virt-viewer.xml.h:7
718 msgstr "Извлечение смарт-карты"
719
720 #: ../src/resources/ui/virt-viewer.ui.h:6
721 msgid "_Preferences"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:7
725 msgid "_Quit"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:8
722729 msgid "_View"
723730 msgstr "_Просмотр"
724731
725 #: ../src/virt-viewer.xml.h:8
726 msgid "Full screen"
727 msgstr "Во весь экран"
728
729 #: ../src/virt-viewer.xml.h:9
732 #: ../src/resources/ui/virt-viewer.ui.h:9
733 msgid "_Full screen"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:10
730737 msgid "_Zoom"
731738 msgstr "_Масштаб"
732739
733 #: ../src/virt-viewer.xml.h:10
734 msgid "Displays"
735 msgstr "Экраны"
736
737 #: ../src/virt-viewer.xml.h:11
740 #: ../src/resources/ui/virt-viewer.ui.h:11
741 msgid "Zoom _In"
742 msgstr ""
743
744 #: ../src/resources/ui/virt-viewer.ui.h:12
745 msgid "Zoom _Out"
746 msgstr ""
747
748 #: ../src/resources/ui/virt-viewer.ui.h:13
749 msgid "_Normal Size"
750 msgstr ""
751
752 #: ../src/resources/ui/virt-viewer.ui.h:14
753 msgid "_Displays"
754 msgstr ""
755
756 #: ../src/resources/ui/virt-viewer.ui.h:15
738757 msgid "Release cursor"
739758 msgstr "Освободить курсор"
740759
741 #: ../src/virt-viewer.xml.h:12
760 #: ../src/resources/ui/virt-viewer.ui.h:16
742761 msgid "_Send key"
743762 msgstr "О_тправить клавишу"
744763
745 #: ../src/virt-viewer.xml.h:13
764 #: ../src/resources/ui/virt-viewer.ui.h:17
746765 msgid "_Help"
747766 msgstr "_Справка"
748767
749 #: ../src/virt-viewer.xml.h:14
768 #: ../src/resources/ui/virt-viewer.ui.h:18
750769 msgid "_Guest Details"
751 msgstr "_Детали гостя"
752
753 #: ../src/virt-viewer-guest-details.xml.h:1
770 msgstr "Параметры _гостевой системы"
771
772 #: ../src/resources/ui/virt-viewer.ui.h:19
773 msgid "_About"
774 msgstr ""
775
776 #: ../src/resources/ui/virt-viewer.ui.h:20
777 msgid "_Change CD"
778 msgstr "_Поменять CD"
779
780 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
754781 msgid "Guest Details"
755 msgstr "Детали гостя"
756
757 #: ../src/virt-viewer-guest-details.xml.h:2
782 msgstr "Параметры гостевой системы"
783
784 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
758785 msgid "Name:"
759786 msgstr "Имя:"
760787
761 #: ../src/virt-viewer-guest-details.xml.h:3
788 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
762789 msgid "GUID:"
763790 msgstr "GUID:"
764791
765 #: ../src/virt-viewer-vm-connection.xml.h:1
792 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
766793 msgid "Choose a virtual machine"
767794 msgstr "Выберите виртуальную машину"
768795
769 #: ../src/virt-viewer-vm-connection.xml.h:2
796 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
770797 msgid "Name"
771798 msgstr "Имя"
772799
773 #: ../src/virt-viewer-vm-connection.xml.h:3
800 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
774801 msgid "Available virtual machines"
775802 msgstr "Доступные виртуальные машины"
776803
777 #: ../src/virt-viewer-preferences.xml.h:2
804 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
805 msgid "Preferences"
806 msgstr "Настройки"
807
808 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
778809 msgid "Folder sharing"
779 msgstr ""
780
781 #: ../src/virt-viewer-preferences.xml.h:3
810 msgstr "Совместный доступ к папке"
811
812 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
782813 msgid "Share folder"
783 msgstr ""
784
785 #: ../src/virt-viewer-preferences.xml.h:4
814 msgstr "Поделиться папкой"
815
816 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
786817 msgid "Read-only"
787 msgstr ""
788
789 #: ../src/virt-viewer-preferences.xml.h:5
818 msgstr "Только для чтения"
819
820 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
790821 msgid "Spice"
791 msgstr ""
822 msgstr "Spice"
+343
-316
po/si.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+302
-275
po/sk.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Slovak (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
25 msgstr ""
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
2438 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Virt-Viewer connection file"
3246 msgstr ""
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr "Zdroj"
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr ""
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr "Cieľ"
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr ""
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr "Vlasnosti zdroja"
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr ""
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr "Vlastnoti cieľu"
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr ""
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr ""
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr ""
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "Zobraziť informácie o verzii"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr ""
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr ""
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101
102 #: ../src/remote-viewer-main.c:149
103 #, c-format
104 msgid "Error: extra arguments given while using Spice controller\n"
105 msgstr ""
106
107 #: ../src/remote-viewer-main.c:156
108 #, c-format
109 msgid "Error: can't handle multiple URIs\n"
110 msgstr ""
111
112 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11382 msgid "Failed to initiate connection"
11483 msgstr "Zlyhala inicializácia spojenia"
11584
116 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
11786 msgid "Display disabled by controller"
11887 msgstr ""
11988
120 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12190 #, c-format
12291 msgid "Controller connection failed: %s"
12392 msgstr "Spojenie radiču zlyhalo: %s"
12493
125 #: ../src/remote-viewer.c:755
126 msgid "_Change CD"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13095 msgid "failed to parse ovirt uri"
13196 msgstr ""
13297
133 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13499 msgid "Authentication was cancelled"
135100 msgstr ""
136101
137 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
138103 #, c-format
139104 msgid "oVirt VM %s is not running"
140105 msgstr ""
141106
142 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
143108 #, c-format
144109 msgid "oVirt VM %s has no display"
145110 msgstr ""
146111
147 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
148113 #, c-format
149114 msgid "oVirt VM %s has no host information"
150115 msgstr ""
151116
152 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
153118 #, c-format
154119 msgid "oVirt VM %s has unknown display type: %d"
155120 msgstr ""
156121
157 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
158123 msgid "Setting up Spice session..."
159124 msgstr "Nastavuje sa Spice sedenie..."
160125
161 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
162127 msgid "No connection was chosen"
163128 msgstr ""
164129
165 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
166131 #, c-format
167132 msgid "Invalid file %s: "
168133 msgstr ""
169134
170 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
171136 msgid "Cannot determine the connection type from URI"
172137 msgstr "Nie je možné určiť typ spojenia z URI"
173138
174 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
175140 msgid "Couldn't open oVirt session: "
176141 msgstr ""
177142
182147 #. * indent-tabs-mode: nil
183148 #. * End:
184149 #.
185 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
186151 msgid "Connection details"
187152 msgstr "Detaily spojenia"
188153
189 #: ../src/remote-viewer-connect.xml.h:2
190 msgid "Connection Address"
191 msgstr ""
192
193 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
194159 msgid "For example, spice://foo.example.org:5900"
195160 msgstr ""
196161
197 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
198163 msgid "Recent connections"
199164 msgstr ""
200165
201 #: ../src/remote-viewer-connect.xml.h:5
202 msgid "Cancel"
203 msgstr ""
204
205 #: ../src/remote-viewer-connect.xml.h:6
206 msgid "Connect"
207 msgstr ""
208
209 #: ../src/virt-viewer-about.xml.h:1
210 msgid "About Glade"
211 msgstr ""
212
213 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
214182 msgid ""
215183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216184 "Copyright (C) 2007-2014 Red Hat, Inc."
217185 msgstr ""
218186
219 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
220188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221189 msgstr ""
222190
223 #: ../src/virt-viewer-about.xml.h:5
191 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224192 msgid "virt-manager.org"
225193 msgstr ""
226194
227 #: ../src/virt-viewer-about.xml.h:6
195 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228196 msgid ""
229197 "This program is free software; you can redistribute it and/or modify\n"
230198 "it under the terms of the GNU General Public License as published by\n"
241209 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
242210 msgstr ""
243211
244 #: ../src/virt-viewer-about.xml.h:20
212 #: ../src/resources/ui/virt-viewer-about.ui.h:20
245213 msgid "The Fedora Translation Team"
246214 msgstr ""
247215
248 #: ../src/virt-viewer-app.c:526
216 #: ../src/virt-viewer-app.c:458
249217 msgid "Do you want to close the session?"
250218 msgstr ""
251219
252 #: ../src/virt-viewer-app.c:528
220 #: ../src/virt-viewer-app.c:460
253221 msgid "Do not ask me again"
254222 msgstr ""
255223
256 #: ../src/virt-viewer-app.c:1008
224 #: ../src/virt-viewer-app.c:948
257225 #, c-format
258226 msgid "Waiting for display %d..."
259227 msgstr ""
260228
261 #: ../src/virt-viewer-app.c:1117
229 #: ../src/virt-viewer-app.c:1055
262230 #, c-format
263231 msgid "Unsupported graphic type '%s'"
264232 msgstr ""
265233
266 #: ../src/virt-viewer-app.c:1200
234 #: ../src/virt-viewer-app.c:1138
267235 msgid "Connect to ssh failed."
268236 msgstr "ssh spojenie zlyhalo."
269237
270 #: ../src/virt-viewer-app.c:1202
238 #: ../src/virt-viewer-app.c:1140
271239 msgid "Can't connect to channel, SSH only supported."
272240 msgstr "Nie je možne pripojenie do kanálu, podporované je iba SSH."
273241
242 #: ../src/virt-viewer-app.c:1152
243 msgid "Connect to channel unsupported."
244 msgstr ""
245
274246 #: ../src/virt-viewer-app.c:1214
275 msgid "Connect to channel unsupported."
276 msgstr ""
277
278 #: ../src/virt-viewer-app.c:1276
279247 msgid "Display can only be attached through libvirt with --attach"
280248 msgstr ""
281249
282 #: ../src/virt-viewer-app.c:1299
250 #: ../src/virt-viewer-app.c:1237
283251 msgid "Connecting to graphic server"
284252 msgstr "Pripájanie na grafický server"
285253
286 #: ../src/virt-viewer-app.c:1398
254 #: ../src/virt-viewer-app.c:1336
287255 msgid "Guest domain has shutdown"
288256 msgstr ""
289257
290 #: ../src/virt-viewer-app.c:1459
258 #: ../src/virt-viewer-app.c:1397
291259 msgid "Connected to graphic server"
292260 msgstr ""
293261
294 #: ../src/virt-viewer-app.c:1486
262 #: ../src/virt-viewer-app.c:1424
295263 #, c-format
296264 msgid "Unable to connect to the graphic server %s"
297265 msgstr "Nie je možné spojenie ku grafickému serveru %s"
298266
299 #: ../src/virt-viewer-app.c:1512
267 #: ../src/virt-viewer-app.c:1450
300268 #, c-format
301269 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
302270 msgstr ""
303271
304 #: ../src/virt-viewer-app.c:1525
272 #: ../src/virt-viewer-app.c:1463
305273 #, c-format
306274 msgid "Unable to authenticate with remote desktop server: %s"
307275 msgstr ""
308276
309 #: ../src/virt-viewer-app.c:1533
277 #: ../src/virt-viewer-app.c:1471
310278 #, c-format
311279 msgid "USB redirection error: %s"
312280 msgstr "Chyba USB presmerovania: %s"
313281
314 #: ../src/virt-viewer-app.c:1786
282 #: ../src/virt-viewer-app.c:1805
315283 #, c-format
316284 msgid "Zoom level must be within %d-%d\n"
317285 msgstr ""
318286
319 #: ../src/virt-viewer-app.c:2296
320 #, c-format
321 msgid "Display %d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2552
287 #: ../src/virt-viewer-app.c:1858
288 #, c-format
289 msgid "%s\n"
290 msgstr ""
291
292 #: ../src/virt-viewer-app.c:1868
293 #, c-format
294 msgid "%s version %s"
295 msgstr ""
296
297 #: ../src/virt-viewer-app.c:2292
298 #, c-format
299 msgid "Display _%d"
300 msgstr ""
301
302 #: ../src/virt-viewer-app.c:2548
325303 #, c-format
326304 msgid "Invalid kiosk-quit argument: %s"
327305 msgstr ""
306
307 #: ../src/virt-viewer-app.c:2559
308 msgid "Display version information"
309 msgstr "Zobraziť informácie o verzii"
328310
329311 #: ../src/virt-viewer-app.c:2561
330312 msgid "Zoom level of window, in percentage"
358340 msgid "Display debugging information"
359341 msgstr ""
360342
361 #: ../src/virt-viewer-auth.c:88
343 #: ../src/virt-viewer-auth.c:89
362344 #, c-format
363345 msgid ""
364346 "Authentication is required for the %s connection to:\n"
367349 "\n"
368350 msgstr ""
369351
370 #: ../src/virt-viewer-auth.c:92
352 #: ../src/virt-viewer-auth.c:93
371353 #, c-format
372354 msgid "Authentication is required for the %s connection:\n"
373355 msgstr ""
379361 #. * indent-tabs-mode: nil
380362 #. * End:
381363 #.
382 #: ../src/virt-viewer-auth.xml.h:1
364 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
383365 msgid "Authentication required"
384366 msgstr ""
385367
386 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
368 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
369 msgid "_OK"
370 msgstr ""
371
372 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
373 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
387374 msgid "label"
388375 msgstr ""
389376
390 #: ../src/virt-viewer-auth.xml.h:3
377 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
391378 msgid "Password:"
392379 msgstr ""
393380
394 #: ../src/virt-viewer-auth.xml.h:4
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
395382 msgid "Username:"
396383 msgstr ""
397384
398 #: ../src/virt-viewer-auth.xml.h:5
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
399386 msgid "Show password"
400387 msgstr ""
401388
402 #: ../src/virt-viewer-display-vnc.c:133
389 #: ../src/virt-viewer-display-vnc.c:134
403390 msgid "VNC does not provide GUID"
404391 msgstr ""
405392
393 #: ../src/virt-viewer-file-transfer-dialog.c:152
394 msgid "Cancel"
395 msgstr ""
396
397 #: ../src/virt-viewer-file-transfer-dialog.c:163
398 msgid "File Transfers"
399 msgstr ""
400
406401 #: ../src/virt-viewer-main.c:38
407 #, c-format
408 msgid "%s version %s\n"
409 msgstr "%s verzia %s\n"
410
411 #: ../src/virt-viewer-main.c:62
412 msgid "Direct connection with no automatic tunnels"
413 msgstr ""
414
415 #: ../src/virt-viewer-main.c:64
416 msgid "Attach to the local display using libvirt"
417 msgstr ""
418
419 #: ../src/virt-viewer-main.c:66
420 msgid "Connect to hypervisor"
421 msgstr "Pripájanie na hypervízor"
422
423 #: ../src/virt-viewer-main.c:68
424 msgid "Wait for domain to start"
425 msgstr ""
426
427 #: ../src/virt-viewer-main.c:70
428 msgid "Reconnect to domain upon restart"
429 msgstr ""
430
431 #: ../src/virt-viewer-main.c:77
432402 msgid "Virt Viewer"
433403 msgstr "Virt Viewer"
434404
435 #: ../src/virt-viewer-main.c:80
436 #, c-format
437 msgid "Run '%s --help' to see a full list of available command line options"
438 msgstr ""
439
440 #: ../src/virt-viewer-main.c:86
441 msgid "Virtual machine graphical console"
442 msgstr ""
443
444 #: ../src/virt-viewer-main.c:107
445 #, c-format
446 msgid ""
447 "\n"
448 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
449 "\n"
450 "%s\n"
451 "\n"
452 msgstr ""
453
454 #: ../src/virt-viewer-main.c:112
455 #, c-format
456 msgid ""
457 "\n"
458 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
459 "\n"
460 msgstr ""
461
462 #: ../src/virt-viewer-session-spice.c:694
405 #: ../src/virt-viewer-session-spice.c:705
463406 msgid "Invalid password"
464407 msgstr ""
465408
466409 #. Create the widgets
467 #: ../src/virt-viewer-session-spice.c:786
410 #: ../src/virt-viewer-session-spice.c:797
468411 msgid "Select USB devices for redirection"
469412 msgstr ""
470413
471 #: ../src/virt-viewer-session-vnc.c:153
414 #: ../src/virt-viewer-session-spice.c:799
415 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
416 msgid "_Close"
417 msgstr ""
418
419 #: ../src/virt-viewer-session-vnc.c:156
472420 #, c-format
473421 msgid "Unsupported authentication type %d"
474422 msgstr ""
481429 msgid "No virtual machine was chosen"
482430 msgstr ""
483431
484 #: ../src/virt-viewer-window.c:537
432 #: ../src/virt-viewer-window.c:534
485433 msgid "Ctrl+Alt+_Del"
486434 msgstr "Ctrl+Alt+_Del"
487435
488 #: ../src/virt-viewer-window.c:538
436 #: ../src/virt-viewer-window.c:535
489437 msgid "Ctrl+Alt+_Backspace"
490438 msgstr "Ctrl+Alt+_Backspace"
491439
492 #: ../src/virt-viewer-window.c:540
440 #: ../src/virt-viewer-window.c:537
493441 msgid "Ctrl+Alt+F_1"
494442 msgstr "Ctrl+Alt+F_1"
495443
496 #: ../src/virt-viewer-window.c:541
444 #: ../src/virt-viewer-window.c:538
497445 msgid "Ctrl+Alt+F_2"
498446 msgstr "Ctrl+Alt+F_2"
499447
500 #: ../src/virt-viewer-window.c:542
448 #: ../src/virt-viewer-window.c:539
501449 msgid "Ctrl+Alt+F_3"
502450 msgstr "Ctrl+Alt+F_3"
503451
504 #: ../src/virt-viewer-window.c:543
452 #: ../src/virt-viewer-window.c:540
505453 msgid "Ctrl+Alt+F_4"
506454 msgstr "Ctrl+Alt+F_4"
507455
508 #: ../src/virt-viewer-window.c:544
456 #: ../src/virt-viewer-window.c:541
509457 msgid "Ctrl+Alt+F_5"
510458 msgstr "Ctrl+Alt+F_5"
511459
512 #: ../src/virt-viewer-window.c:545
460 #: ../src/virt-viewer-window.c:542
513461 msgid "Ctrl+Alt+F_6"
514462 msgstr "Ctrl+Alt+F_6"
515463
516 #: ../src/virt-viewer-window.c:546
464 #: ../src/virt-viewer-window.c:543
517465 msgid "Ctrl+Alt+F_7"
518466 msgstr "Ctrl+Alt+F_7"
519467
520 #: ../src/virt-viewer-window.c:547
468 #: ../src/virt-viewer-window.c:544
521469 msgid "Ctrl+Alt+F_8"
522470 msgstr "Ctrl+Alt+F_8"
523471
524 #: ../src/virt-viewer-window.c:548
472 #: ../src/virt-viewer-window.c:545
525473 msgid "Ctrl+Alt+F_9"
526474 msgstr "Ctrl+Alt+F_9"
527475
528 #: ../src/virt-viewer-window.c:549
476 #: ../src/virt-viewer-window.c:546
529477 msgid "Ctrl+Alt+F1_0"
530478 msgstr "Ctrl+Alt+F1_0"
531479
532 #: ../src/virt-viewer-window.c:550
480 #: ../src/virt-viewer-window.c:547
533481 msgid "Ctrl+Alt+F11"
534482 msgstr ""
535483
536 #: ../src/virt-viewer-window.c:551
484 #: ../src/virt-viewer-window.c:548
537485 msgid "Ctrl+Alt+F12"
538486 msgstr ""
539487
540 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
488 #: ../src/virt-viewer-window.c:919
489 msgid "_Save"
490 msgstr ""
491
492 #: ../src/virt-viewer-window.c:927
541493 msgid "Screenshot"
542494 msgstr ""
543495
544 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
496 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
545497 msgid "Unknown"
546498 msgstr ""
547499
548 #: ../src/virt-viewer-window.c:1062
500 #: ../src/virt-viewer-window.c:1071
549501 msgid "Disconnect"
550502 msgstr "Odpojiť"
551503
552 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
553 #: ../src/virt-viewer.xml.h:3
504 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
554505 msgid "USB device selection"
555506 msgstr "Výber USB zariadenia"
556507
557 #: ../src/virt-viewer-window.c:1081
508 #: ../src/virt-viewer-window.c:1089
558509 msgid "Send key combination"
559510 msgstr ""
560511
561 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
512 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
562513 msgid "Leave fullscreen"
563514 msgstr "Opustiť režim celej obrazovky"
564515
565 #: ../src/virt-viewer-window.c:1173
516 #: ../src/virt-viewer-window.c:1175
566517 msgid "Ctrl+Alt"
567518 msgstr "Ctrl+Alt"
568519
569 #: ../src/virt-viewer-window.c:1176
520 #: ../src/virt-viewer-window.c:1178
570521 #, c-format
571522 msgid "(Press %s to release pointer)"
572523 msgstr "(Stlačte %s pre uvoľnenie ukazovateľa)"
575526 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
576527 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
577528 #.
578 #: ../src/virt-viewer-window.c:1187
529 #: ../src/virt-viewer-window.c:1189
579530 #, c-format
580531 msgid "%s%s%s - %s"
581532 msgstr "%s%s%s - %s"
582533
583534 #. translators: <space>
584 #: ../src/virt-viewer-window.c:1191
535 #: ../src/virt-viewer-window.c:1193
585536 msgid " "
586537 msgstr " "
587538
588 #: ../src/virt-viewer-file.c:825
539 #: ../src/virt-viewer-file.c:843
589540 #, c-format
590541 msgid ""
591542 "At least %s version %s is required to setup this connection, see %s for "
592543 "details"
593544 msgstr ""
594545
595 #: ../src/virt-viewer-file.c:833
546 #: ../src/virt-viewer-file.c:851
596547 #, c-format
597548 msgid "At least %s version %s is required to setup this connection"
598549 msgstr ""
599550
600 #: ../src/virt-viewer.c:163
551 #: ../src/virt-viewer.c:90
552 msgid "Direct connection with no automatic tunnels"
553 msgstr ""
554
555 #: ../src/virt-viewer.c:92
556 msgid "Attach to the local display using libvirt"
557 msgstr ""
558
559 #: ../src/virt-viewer.c:94
560 msgid "Connect to hypervisor"
561 msgstr "Pripájanie na hypervízor"
562
563 #: ../src/virt-viewer.c:96
564 msgid "Wait for domain to start"
565 msgstr ""
566
567 #: ../src/virt-viewer.c:98
568 msgid "Reconnect to domain upon restart"
569 msgstr ""
570
571 #: ../src/virt-viewer.c:105
572 msgid "Virtual machine graphical console"
573 msgstr ""
574
575 #: ../src/virt-viewer.c:124
576 #, c-format
577 msgid ""
578 "\n"
579 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
580 "\n"
581 msgstr ""
582
583 #: ../src/virt-viewer.c:136
584 #, c-format
585 msgid ""
586 "\n"
587 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
588 "\n"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:250
601592 msgid "Waiting for guest domain to re-start"
602593 msgstr ""
603594
604 #: ../src/virt-viewer.c:409
595 #: ../src/virt-viewer.c:496
605596 #, c-format
606597 msgid "Cannot determine the graphic type for the guest %s"
607598 msgstr ""
608599
609 #: ../src/virt-viewer.c:448
600 #: ../src/virt-viewer.c:535
610601 #, c-format
611602 msgid "Cannot determine the host for the guest %s"
612603 msgstr ""
613604
614 #: ../src/virt-viewer.c:476
605 #: ../src/virt-viewer.c:563
615606 #, c-format
616607 msgid "Guest '%s' is not reachable"
617608 msgstr ""
618609
619 #: ../src/virt-viewer.c:697
610 #: ../src/virt-viewer.c:784
620611 #, c-format
621612 msgid "Virtual machine %s is not running"
622613 msgstr ""
623614
624 #: ../src/virt-viewer.c:720
615 #: ../src/virt-viewer.c:807
625616 msgid "Waiting for libvirt to start"
626617 msgstr ""
627618
628 #: ../src/virt-viewer.c:724
619 #: ../src/virt-viewer.c:811
629620 msgid "Finding guest domain"
630621 msgstr ""
631622
632 #: ../src/virt-viewer.c:728
623 #: ../src/virt-viewer.c:815
633624 msgid "Waiting for guest domain to be created"
634625 msgstr ""
635626
636 #: ../src/virt-viewer.c:750
627 #: ../src/virt-viewer.c:837
637628 msgid "Checking guest domain status"
638629 msgstr ""
639630
640 #: ../src/virt-viewer.c:753
631 #: ../src/virt-viewer.c:840
641632 msgid "Cannot get guest state"
642633 msgstr ""
643634
644 #: ../src/virt-viewer.c:759
635 #: ../src/virt-viewer.c:846
645636 msgid "Waiting for guest domain to start"
646637 msgstr ""
647638
648 #: ../src/virt-viewer.c:863
639 #: ../src/virt-viewer.c:950
649640 #, c-format
650641 msgid "Unable to connect to libvirt with URI: %s."
651642 msgstr ""
652643
653 #: ../src/virt-viewer.c:864
644 #: ../src/virt-viewer.c:951
654645 msgid "[none]"
655646 msgstr ""
656647
657 #: ../src/virt-viewer.c:871
648 #: ../src/virt-viewer.c:958
658649 msgid "Authentication failed."
659650 msgstr ""
660651
661 #: ../src/virt-viewer.c:931
652 #: ../src/virt-viewer.c:1018
662653 msgid "Failed to connect: "
663654 msgstr ""
664655
669660 #. * indent-tabs-mode: nil
670661 #. * End:
671662 #.
672 #: ../src/virt-viewer.xml.h:1
663 #: ../src/resources/ui/virt-viewer.ui.h:1
673664 msgid "_File"
674665 msgstr "_Súbor"
675666
676 #: ../src/virt-viewer.xml.h:4
667 #: ../src/resources/ui/virt-viewer.ui.h:2
668 msgid "_Screenshot"
669 msgstr ""
670
671 #: ../src/resources/ui/virt-viewer.ui.h:3
672 msgid "_USB device selection"
673 msgstr ""
674
675 #: ../src/resources/ui/virt-viewer.ui.h:4
677676 msgid "Smartcard insertion"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.xml.h:5
679 #: ../src/resources/ui/virt-viewer.ui.h:5
681680 msgid "Smartcard removal"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
685 msgid "Preferences"
686 msgstr ""
687
688 #: ../src/virt-viewer.xml.h:7
683 #: ../src/resources/ui/virt-viewer.ui.h:6
684 msgid "_Preferences"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:7
688 msgid "_Quit"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:8
689692 msgid "_View"
690693 msgstr "_Zobraziť"
691694
692 #: ../src/virt-viewer.xml.h:8
693 msgid "Full screen"
694 msgstr "Celá obrazovka"
695
696 #: ../src/virt-viewer.xml.h:9
695 #: ../src/resources/ui/virt-viewer.ui.h:9
696 msgid "_Full screen"
697 msgstr ""
698
699 #: ../src/resources/ui/virt-viewer.ui.h:10
697700 msgid "_Zoom"
698701 msgstr ""
699702
700 #: ../src/virt-viewer.xml.h:10
701 msgid "Displays"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:11
703 #: ../src/resources/ui/virt-viewer.ui.h:11
704 msgid "Zoom _In"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:12
708 msgid "Zoom _Out"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:13
712 msgid "_Normal Size"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:14
716 msgid "_Displays"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:15
705720 msgid "Release cursor"
706721 msgstr "Uvoľniť kurzor"
707722
708 #: ../src/virt-viewer.xml.h:12
723 #: ../src/resources/ui/virt-viewer.ui.h:16
709724 msgid "_Send key"
710725 msgstr ""
711726
712 #: ../src/virt-viewer.xml.h:13
727 #: ../src/resources/ui/virt-viewer.ui.h:17
713728 msgid "_Help"
714729 msgstr "_Pomoc"
715730
716 #: ../src/virt-viewer.xml.h:14
731 #: ../src/resources/ui/virt-viewer.ui.h:18
717732 msgid "_Guest Details"
718733 msgstr ""
719734
720 #: ../src/virt-viewer-guest-details.xml.h:1
735 #: ../src/resources/ui/virt-viewer.ui.h:19
736 msgid "_About"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:20
740 msgid "_Change CD"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
721744 msgid "Guest Details"
722745 msgstr ""
723746
724 #: ../src/virt-viewer-guest-details.xml.h:2
747 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
725748 msgid "Name:"
726749 msgstr ""
727750
728 #: ../src/virt-viewer-guest-details.xml.h:3
751 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
729752 msgid "GUID:"
730753 msgstr ""
731754
732 #: ../src/virt-viewer-vm-connection.xml.h:1
755 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
733756 msgid "Choose a virtual machine"
734757 msgstr ""
735758
736 #: ../src/virt-viewer-vm-connection.xml.h:2
759 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
737760 msgid "Name"
738761 msgstr ""
739762
740 #: ../src/virt-viewer-vm-connection.xml.h:3
763 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
741764 msgid "Available virtual machines"
742765 msgstr ""
743766
744 #: ../src/virt-viewer-preferences.xml.h:2
767 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
768 msgid "Preferences"
769 msgstr ""
770
771 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
745772 msgid "Folder sharing"
746773 msgstr ""
747774
748 #: ../src/virt-viewer-preferences.xml.h:3
775 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
749776 msgid "Share folder"
750777 msgstr ""
751778
752 #: ../src/virt-viewer-preferences.xml.h:4
779 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
753780 msgid "Read-only"
754781 msgstr ""
755782
756 #: ../src/virt-viewer-preferences.xml.h:5
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
757784 msgid "Spice"
758785 msgstr ""
+343
-316
po/sl.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+343
-316
po/sq.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/sr.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
20
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2223 msgid "Remote Viewer"
24 msgstr ""
25
26 #: ../data/remote-viewer.appdata.xml.in.h:2
27 msgid "Remotely access virtual machines"
28 msgstr ""
29
30 #: ../data/remote-viewer.appdata.xml.in.h:3
31 msgid ""
32 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
33 "time it supports guest OS using the VNC or SPICE protocols. Further "
34 "protocols may be supported in the future as user demand dictates. The viewer "
35 "can connect directly to both local and remotely hosted guest OS, optionally "
36 "using SSL/TLS encryption."
2337 msgstr ""
2438
2539 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Virt-Viewer connection file"
3145 msgstr ""
3246
33 #: ../src/gbinding.c:637
34 msgid "Source"
35 msgstr ""
36
37 #: ../src/gbinding.c:638
38 msgid "The source of the binding"
39 msgstr ""
40
41 #: ../src/gbinding.c:652
42 msgid "Target"
43 msgstr ""
44
45 #: ../src/gbinding.c:653
46 msgid "The target of the binding"
47 msgstr ""
48
49 #: ../src/gbinding.c:668
50 msgid "Source Property"
51 msgstr ""
52
53 #: ../src/gbinding.c:669
54 msgid "The property on the source to bind"
55 msgstr ""
56
57 #: ../src/gbinding.c:684
58 msgid "Target Property"
59 msgstr ""
60
61 #: ../src/gbinding.c:685
62 msgid "The property on the target to bind"
63 msgstr ""
64
65 #: ../src/gbinding.c:699
66 msgid "Flags"
67 msgstr ""
68
69 #: ../src/gbinding.c:700
70 msgid "The binding flags"
71 msgstr ""
72
73 #: ../src/remote-viewer-main.c:50
74 #, c-format
75 msgid "remote-viewer version %s"
76 msgstr ""
77
78 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
79 msgid "Display version information"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:105
47 #: ../src/remote-viewer.c:139
8348 msgid "Set window title"
8449 msgstr ""
8550
86 #: ../src/remote-viewer-main.c:108
51 #: ../src/remote-viewer.c:142
8752 msgid "Open connection using Spice controller communication"
8853 msgstr ""
8954
90 #: ../src/remote-viewer-main.c:120
55 #: ../src/remote-viewer.c:150
9156 msgid "Remote viewer client"
9257 msgstr ""
9358
94 #: ../src/remote-viewer-main.c:138
95 #, c-format
96 msgid ""
97 "%s\n"
98 "Run '%s --help' to see a full list of available command line options\n"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:149
102 #, c-format
103 msgid "Error: extra arguments given while using Spice controller\n"
104 msgstr ""
105
106 #: ../src/remote-viewer-main.c:156
107 #, c-format
108 msgid "Error: can't handle multiple URIs\n"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
59 #: ../src/remote-viewer.c:175
60 #, c-format
61 msgid ""
62 "\n"
63 "Error: can't handle multiple URIs\n"
64 "\n"
65 msgstr ""
66
67 #: ../src/remote-viewer.c:187
68 #, c-format
69 msgid ""
70 "\n"
71 "Error: extra arguments given while using Spice controller\n"
72 "\n"
73 msgstr ""
74
75 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
76 #, c-format
77 msgid "Run '%s --help' to see a full list of available command line options\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11281 msgid "Failed to initiate connection"
11382 msgstr ""
11483
115 #: ../src/remote-viewer.c:313
84 #: ../src/remote-viewer.c:297
11685 msgid "Display disabled by controller"
11786 msgstr ""
11887
119 #: ../src/remote-viewer.c:609
88 #: ../src/remote-viewer.c:593
12089 #, c-format
12190 msgid "Controller connection failed: %s"
12291 msgstr ""
12392
124 #: ../src/remote-viewer.c:755
125 msgid "_Change CD"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:855
93 #: ../src/remote-viewer.c:848
12994 msgid "failed to parse ovirt uri"
13095 msgstr ""
13196
132 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
97 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13398 msgid "Authentication was cancelled"
13499 msgstr ""
135100
136 #: ../src/remote-viewer.c:900
101 #: ../src/remote-viewer.c:893
137102 #, c-format
138103 msgid "oVirt VM %s is not running"
139104 msgstr ""
140105
141 #: ../src/remote-viewer.c:914
106 #: ../src/remote-viewer.c:907
142107 #, c-format
143108 msgid "oVirt VM %s has no display"
144109 msgstr ""
145110
146 #: ../src/remote-viewer.c:940
111 #: ../src/remote-viewer.c:933
147112 #, c-format
148113 msgid "oVirt VM %s has no host information"
149114 msgstr ""
150115
151 #: ../src/remote-viewer.c:951
116 #: ../src/remote-viewer.c:944
152117 #, c-format
153118 msgid "oVirt VM %s has unknown display type: %d"
154119 msgstr ""
155120
156 #: ../src/remote-viewer.c:1094
121 #: ../src/remote-viewer.c:1115
157122 msgid "Setting up Spice session..."
158123 msgstr ""
159124
160 #: ../src/remote-viewer.c:1102
125 #: ../src/remote-viewer.c:1123
161126 msgid "No connection was chosen"
162127 msgstr ""
163128
164 #: ../src/remote-viewer.c:1120
129 #: ../src/remote-viewer.c:1141
165130 #, c-format
166131 msgid "Invalid file %s: "
167132 msgstr ""
168133
169 #: ../src/remote-viewer.c:1128
134 #: ../src/remote-viewer.c:1149
170135 msgid "Cannot determine the connection type from URI"
171136 msgstr ""
172137
173 #: ../src/remote-viewer.c:1134
138 #: ../src/remote-viewer.c:1155
174139 msgid "Couldn't open oVirt session: "
175140 msgstr ""
176141
181146 #. * indent-tabs-mode: nil
182147 #. * End:
183148 #.
184 #: ../src/remote-viewer-connect.xml.h:1
149 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
185150 msgid "Connection details"
186151 msgstr ""
187152
188 #: ../src/remote-viewer-connect.xml.h:2
189 msgid "Connection Address"
190 msgstr ""
191
192 #: ../src/remote-viewer-connect.xml.h:3
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 msgid "Connection _Address"
155 msgstr ""
156
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
193158 msgid "For example, spice://foo.example.org:5900"
194159 msgstr ""
195160
196 #: ../src/remote-viewer-connect.xml.h:4
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
197162 msgid "Recent connections"
198163 msgstr ""
199164
200 #: ../src/remote-viewer-connect.xml.h:5
201 msgid "Cancel"
202 msgstr ""
203
204 #: ../src/remote-viewer-connect.xml.h:6
205 msgid "Connect"
206 msgstr ""
207
208 #: ../src/virt-viewer-about.xml.h:1
209 msgid "About Glade"
210 msgstr ""
211
212 #: ../src/virt-viewer-about.xml.h:2
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
166 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
167 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
168 msgid "_Cancel"
169 msgstr ""
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 msgid "C_onnect"
174 msgstr ""
175
176 #: ../src/resources/ui/virt-viewer-about.ui.h:1
177 msgid "About Virt-Viewer"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213181 msgid ""
214182 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215183 "Copyright (C) 2007-2014 Red Hat, Inc."
216184 msgstr ""
217185
218 #: ../src/virt-viewer-about.xml.h:4
186 #: ../src/resources/ui/virt-viewer-about.ui.h:4
219187 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220188 msgstr ""
221189
222 #: ../src/virt-viewer-about.xml.h:5
190 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223191 msgid "virt-manager.org"
224192 msgstr ""
225193
226 #: ../src/virt-viewer-about.xml.h:6
194 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227195 msgid ""
228196 "This program is free software; you can redistribute it and/or modify\n"
229197 "it under the terms of the GNU General Public License as published by\n"
240208 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
241209 msgstr ""
242210
243 #: ../src/virt-viewer-about.xml.h:20
211 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244212 msgid "The Fedora Translation Team"
245213 msgstr ""
246214
247 #: ../src/virt-viewer-app.c:526
215 #: ../src/virt-viewer-app.c:458
248216 msgid "Do you want to close the session?"
249217 msgstr ""
250218
251 #: ../src/virt-viewer-app.c:528
219 #: ../src/virt-viewer-app.c:460
252220 msgid "Do not ask me again"
253221 msgstr ""
254222
255 #: ../src/virt-viewer-app.c:1008
223 #: ../src/virt-viewer-app.c:948
256224 #, c-format
257225 msgid "Waiting for display %d..."
258226 msgstr ""
259227
260 #: ../src/virt-viewer-app.c:1117
228 #: ../src/virt-viewer-app.c:1055
261229 #, c-format
262230 msgid "Unsupported graphic type '%s'"
263231 msgstr ""
264232
265 #: ../src/virt-viewer-app.c:1200
233 #: ../src/virt-viewer-app.c:1138
266234 msgid "Connect to ssh failed."
267235 msgstr ""
268236
269 #: ../src/virt-viewer-app.c:1202
237 #: ../src/virt-viewer-app.c:1140
270238 msgid "Can't connect to channel, SSH only supported."
271239 msgstr ""
272240
241 #: ../src/virt-viewer-app.c:1152
242 msgid "Connect to channel unsupported."
243 msgstr ""
244
273245 #: ../src/virt-viewer-app.c:1214
274 msgid "Connect to channel unsupported."
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:1276
278246 msgid "Display can only be attached through libvirt with --attach"
279247 msgstr ""
280248
281 #: ../src/virt-viewer-app.c:1299
249 #: ../src/virt-viewer-app.c:1237
282250 msgid "Connecting to graphic server"
283251 msgstr ""
284252
285 #: ../src/virt-viewer-app.c:1398
253 #: ../src/virt-viewer-app.c:1336
286254 msgid "Guest domain has shutdown"
287255 msgstr ""
288256
289 #: ../src/virt-viewer-app.c:1459
257 #: ../src/virt-viewer-app.c:1397
290258 msgid "Connected to graphic server"
291259 msgstr ""
292260
293 #: ../src/virt-viewer-app.c:1486
261 #: ../src/virt-viewer-app.c:1424
294262 #, c-format
295263 msgid "Unable to connect to the graphic server %s"
296264 msgstr ""
297265
298 #: ../src/virt-viewer-app.c:1512
266 #: ../src/virt-viewer-app.c:1450
299267 #, c-format
300268 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
301269 msgstr ""
302270
303 #: ../src/virt-viewer-app.c:1525
271 #: ../src/virt-viewer-app.c:1463
304272 #, c-format
305273 msgid "Unable to authenticate with remote desktop server: %s"
306274 msgstr ""
307275
308 #: ../src/virt-viewer-app.c:1533
276 #: ../src/virt-viewer-app.c:1471
309277 #, c-format
310278 msgid "USB redirection error: %s"
311279 msgstr ""
312280
313 #: ../src/virt-viewer-app.c:1786
281 #: ../src/virt-viewer-app.c:1805
314282 #, c-format
315283 msgid "Zoom level must be within %d-%d\n"
316284 msgstr ""
317285
318 #: ../src/virt-viewer-app.c:2296
319 #, c-format
320 msgid "Display %d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2552
286 #: ../src/virt-viewer-app.c:1858
287 #, c-format
288 msgid "%s\n"
289 msgstr ""
290
291 #: ../src/virt-viewer-app.c:1868
292 #, c-format
293 msgid "%s version %s"
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:2292
297 #, c-format
298 msgid "Display _%d"
299 msgstr ""
300
301 #: ../src/virt-viewer-app.c:2548
324302 #, c-format
325303 msgid "Invalid kiosk-quit argument: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:2559
307 msgid "Display version information"
326308 msgstr ""
327309
328310 #: ../src/virt-viewer-app.c:2561
357339 msgid "Display debugging information"
358340 msgstr ""
359341
360 #: ../src/virt-viewer-auth.c:88
342 #: ../src/virt-viewer-auth.c:89
361343 #, c-format
362344 msgid ""
363345 "Authentication is required for the %s connection to:\n"
366348 "\n"
367349 msgstr ""
368350
369 #: ../src/virt-viewer-auth.c:92
351 #: ../src/virt-viewer-auth.c:93
370352 #, c-format
371353 msgid "Authentication is required for the %s connection:\n"
372354 msgstr ""
378360 #. * indent-tabs-mode: nil
379361 #. * End:
380362 #.
381 #: ../src/virt-viewer-auth.xml.h:1
363 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
382364 msgid "Authentication required"
383365 msgstr ""
384366
385 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
367 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
368 msgid "_OK"
369 msgstr ""
370
371 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
372 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
386373 msgid "label"
387374 msgstr ""
388375
389 #: ../src/virt-viewer-auth.xml.h:3
376 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
390377 msgid "Password:"
391378 msgstr ""
392379
393 #: ../src/virt-viewer-auth.xml.h:4
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
394381 msgid "Username:"
395382 msgstr ""
396383
397 #: ../src/virt-viewer-auth.xml.h:5
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
398385 msgid "Show password"
399386 msgstr ""
400387
401 #: ../src/virt-viewer-display-vnc.c:133
388 #: ../src/virt-viewer-display-vnc.c:134
402389 msgid "VNC does not provide GUID"
403390 msgstr ""
404391
392 #: ../src/virt-viewer-file-transfer-dialog.c:152
393 msgid "Cancel"
394 msgstr ""
395
396 #: ../src/virt-viewer-file-transfer-dialog.c:163
397 msgid "File Transfers"
398 msgstr ""
399
405400 #: ../src/virt-viewer-main.c:38
406 #, c-format
407 msgid "%s version %s\n"
408 msgstr ""
409
410 #: ../src/virt-viewer-main.c:62
411 msgid "Direct connection with no automatic tunnels"
412 msgstr ""
413
414 #: ../src/virt-viewer-main.c:64
415 msgid "Attach to the local display using libvirt"
416 msgstr ""
417
418 #: ../src/virt-viewer-main.c:66
419 msgid "Connect to hypervisor"
420 msgstr ""
421
422 #: ../src/virt-viewer-main.c:68
423 msgid "Wait for domain to start"
424 msgstr ""
425
426 #: ../src/virt-viewer-main.c:70
427 msgid "Reconnect to domain upon restart"
428 msgstr ""
429
430 #: ../src/virt-viewer-main.c:77
431401 msgid "Virt Viewer"
432402 msgstr ""
433403
434 #: ../src/virt-viewer-main.c:80
435 #, c-format
436 msgid "Run '%s --help' to see a full list of available command line options"
437 msgstr ""
438
439 #: ../src/virt-viewer-main.c:86
440 msgid "Virtual machine graphical console"
441 msgstr ""
442
443 #: ../src/virt-viewer-main.c:107
444 #, c-format
445 msgid ""
446 "\n"
447 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
448 "\n"
449 "%s\n"
450 "\n"
451 msgstr ""
452
453 #: ../src/virt-viewer-main.c:112
454 #, c-format
455 msgid ""
456 "\n"
457 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
458 "\n"
459 msgstr ""
460
461 #: ../src/virt-viewer-session-spice.c:694
404 #: ../src/virt-viewer-session-spice.c:705
462405 msgid "Invalid password"
463406 msgstr ""
464407
465408 #. Create the widgets
466 #: ../src/virt-viewer-session-spice.c:786
409 #: ../src/virt-viewer-session-spice.c:797
467410 msgid "Select USB devices for redirection"
468411 msgstr ""
469412
470 #: ../src/virt-viewer-session-vnc.c:153
413 #: ../src/virt-viewer-session-spice.c:799
414 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
415 msgid "_Close"
416 msgstr ""
417
418 #: ../src/virt-viewer-session-vnc.c:156
471419 #, c-format
472420 msgid "Unsupported authentication type %d"
473421 msgstr ""
480428 msgid "No virtual machine was chosen"
481429 msgstr ""
482430
431 #: ../src/virt-viewer-window.c:534
432 msgid "Ctrl+Alt+_Del"
433 msgstr ""
434
435 #: ../src/virt-viewer-window.c:535
436 msgid "Ctrl+Alt+_Backspace"
437 msgstr ""
438
483439 #: ../src/virt-viewer-window.c:537
484 msgid "Ctrl+Alt+_Del"
440 msgid "Ctrl+Alt+F_1"
485441 msgstr ""
486442
487443 #: ../src/virt-viewer-window.c:538
488 msgid "Ctrl+Alt+_Backspace"
444 msgid "Ctrl+Alt+F_2"
445 msgstr ""
446
447 #: ../src/virt-viewer-window.c:539
448 msgid "Ctrl+Alt+F_3"
489449 msgstr ""
490450
491451 #: ../src/virt-viewer-window.c:540
492 msgid "Ctrl+Alt+F_1"
452 msgid "Ctrl+Alt+F_4"
493453 msgstr ""
494454
495455 #: ../src/virt-viewer-window.c:541
496 msgid "Ctrl+Alt+F_2"
456 msgid "Ctrl+Alt+F_5"
497457 msgstr ""
498458
499459 #: ../src/virt-viewer-window.c:542
500 msgid "Ctrl+Alt+F_3"
460 msgid "Ctrl+Alt+F_6"
501461 msgstr ""
502462
503463 #: ../src/virt-viewer-window.c:543
504 msgid "Ctrl+Alt+F_4"
464 msgid "Ctrl+Alt+F_7"
505465 msgstr ""
506466
507467 #: ../src/virt-viewer-window.c:544
508 msgid "Ctrl+Alt+F_5"
468 msgid "Ctrl+Alt+F_8"
509469 msgstr ""
510470
511471 #: ../src/virt-viewer-window.c:545
512 msgid "Ctrl+Alt+F_6"
472 msgid "Ctrl+Alt+F_9"
513473 msgstr ""
514474
515475 #: ../src/virt-viewer-window.c:546
516 msgid "Ctrl+Alt+F_7"
476 msgid "Ctrl+Alt+F1_0"
517477 msgstr ""
518478
519479 #: ../src/virt-viewer-window.c:547
520 msgid "Ctrl+Alt+F_8"
480 msgid "Ctrl+Alt+F11"
521481 msgstr ""
522482
523483 #: ../src/virt-viewer-window.c:548
524 msgid "Ctrl+Alt+F_9"
525 msgstr ""
526
527 #: ../src/virt-viewer-window.c:549
528 msgid "Ctrl+Alt+F1_0"
529 msgstr ""
530
531 #: ../src/virt-viewer-window.c:550
532 msgid "Ctrl+Alt+F11"
533 msgstr ""
534
535 #: ../src/virt-viewer-window.c:551
536484 msgid "Ctrl+Alt+F12"
537485 msgstr ""
538486
539 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
487 #: ../src/virt-viewer-window.c:919
488 msgid "_Save"
489 msgstr ""
490
491 #: ../src/virt-viewer-window.c:927
540492 msgid "Screenshot"
541493 msgstr ""
542494
543 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
495 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
544496 msgid "Unknown"
545497 msgstr ""
546498
547 #: ../src/virt-viewer-window.c:1062
499 #: ../src/virt-viewer-window.c:1071
548500 msgid "Disconnect"
549501 msgstr ""
550502
551 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
552 #: ../src/virt-viewer.xml.h:3
503 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
553504 msgid "USB device selection"
554505 msgstr ""
555506
556 #: ../src/virt-viewer-window.c:1081
507 #: ../src/virt-viewer-window.c:1089
557508 msgid "Send key combination"
558509 msgstr ""
559510
560 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
511 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
561512 msgid "Leave fullscreen"
562513 msgstr ""
563514
564 #: ../src/virt-viewer-window.c:1173
515 #: ../src/virt-viewer-window.c:1175
565516 msgid "Ctrl+Alt"
566517 msgstr ""
567518
568 #: ../src/virt-viewer-window.c:1176
519 #: ../src/virt-viewer-window.c:1178
569520 #, c-format
570521 msgid "(Press %s to release pointer)"
571522 msgstr ""
574525 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
575526 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
576527 #.
577 #: ../src/virt-viewer-window.c:1187
528 #: ../src/virt-viewer-window.c:1189
578529 #, c-format
579530 msgid "%s%s%s - %s"
580531 msgstr ""
581532
582533 #. translators: <space>
583 #: ../src/virt-viewer-window.c:1191
534 #: ../src/virt-viewer-window.c:1193
584535 msgid " "
585536 msgstr ""
586537
587 #: ../src/virt-viewer-file.c:825
538 #: ../src/virt-viewer-file.c:843
588539 #, c-format
589540 msgid ""
590541 "At least %s version %s is required to setup this connection, see %s for "
591542 "details"
592543 msgstr ""
593544
594 #: ../src/virt-viewer-file.c:833
545 #: ../src/virt-viewer-file.c:851
595546 #, c-format
596547 msgid "At least %s version %s is required to setup this connection"
597548 msgstr ""
598549
599 #: ../src/virt-viewer.c:163
550 #: ../src/virt-viewer.c:90
551 msgid "Direct connection with no automatic tunnels"
552 msgstr ""
553
554 #: ../src/virt-viewer.c:92
555 msgid "Attach to the local display using libvirt"
556 msgstr ""
557
558 #: ../src/virt-viewer.c:94
559 msgid "Connect to hypervisor"
560 msgstr ""
561
562 #: ../src/virt-viewer.c:96
563 msgid "Wait for domain to start"
564 msgstr ""
565
566 #: ../src/virt-viewer.c:98
567 msgid "Reconnect to domain upon restart"
568 msgstr ""
569
570 #: ../src/virt-viewer.c:105
571 msgid "Virtual machine graphical console"
572 msgstr ""
573
574 #: ../src/virt-viewer.c:124
575 #, c-format
576 msgid ""
577 "\n"
578 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
579 "\n"
580 msgstr ""
581
582 #: ../src/virt-viewer.c:136
583 #, c-format
584 msgid ""
585 "\n"
586 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
587 "\n"
588 msgstr ""
589
590 #: ../src/virt-viewer.c:250
600591 msgid "Waiting for guest domain to re-start"
601592 msgstr ""
602593
603 #: ../src/virt-viewer.c:409
594 #: ../src/virt-viewer.c:496
604595 #, c-format
605596 msgid "Cannot determine the graphic type for the guest %s"
606597 msgstr ""
607598
608 #: ../src/virt-viewer.c:448
599 #: ../src/virt-viewer.c:535
609600 #, c-format
610601 msgid "Cannot determine the host for the guest %s"
611602 msgstr ""
612603
613 #: ../src/virt-viewer.c:476
604 #: ../src/virt-viewer.c:563
614605 #, c-format
615606 msgid "Guest '%s' is not reachable"
616607 msgstr ""
617608
618 #: ../src/virt-viewer.c:697
609 #: ../src/virt-viewer.c:784
619610 #, c-format
620611 msgid "Virtual machine %s is not running"
621612 msgstr ""
622613
623 #: ../src/virt-viewer.c:720
614 #: ../src/virt-viewer.c:807
624615 msgid "Waiting for libvirt to start"
625616 msgstr ""
626617
627 #: ../src/virt-viewer.c:724
618 #: ../src/virt-viewer.c:811
628619 msgid "Finding guest domain"
629620 msgstr ""
630621
631 #: ../src/virt-viewer.c:728
622 #: ../src/virt-viewer.c:815
632623 msgid "Waiting for guest domain to be created"
633624 msgstr ""
634625
635 #: ../src/virt-viewer.c:750
626 #: ../src/virt-viewer.c:837
636627 msgid "Checking guest domain status"
637628 msgstr ""
638629
639 #: ../src/virt-viewer.c:753
630 #: ../src/virt-viewer.c:840
640631 msgid "Cannot get guest state"
641632 msgstr ""
642633
643 #: ../src/virt-viewer.c:759
634 #: ../src/virt-viewer.c:846
644635 msgid "Waiting for guest domain to start"
645636 msgstr ""
646637
647 #: ../src/virt-viewer.c:863
638 #: ../src/virt-viewer.c:950
648639 #, c-format
649640 msgid "Unable to connect to libvirt with URI: %s."
650641 msgstr ""
651642
652 #: ../src/virt-viewer.c:864
643 #: ../src/virt-viewer.c:951
653644 msgid "[none]"
654645 msgstr ""
655646
656 #: ../src/virt-viewer.c:871
647 #: ../src/virt-viewer.c:958
657648 msgid "Authentication failed."
658649 msgstr ""
659650
660 #: ../src/virt-viewer.c:931
651 #: ../src/virt-viewer.c:1018
661652 msgid "Failed to connect: "
662653 msgstr ""
663654
668659 #. * indent-tabs-mode: nil
669660 #. * End:
670661 #.
671 #: ../src/virt-viewer.xml.h:1
662 #: ../src/resources/ui/virt-viewer.ui.h:1
672663 msgid "_File"
673664 msgstr ""
674665
675 #: ../src/virt-viewer.xml.h:4
666 #: ../src/resources/ui/virt-viewer.ui.h:2
667 msgid "_Screenshot"
668 msgstr ""
669
670 #: ../src/resources/ui/virt-viewer.ui.h:3
671 msgid "_USB device selection"
672 msgstr ""
673
674 #: ../src/resources/ui/virt-viewer.ui.h:4
676675 msgid "Smartcard insertion"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.xml.h:5
678 #: ../src/resources/ui/virt-viewer.ui.h:5
680679 msgid "Smartcard removal"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
682 #: ../src/resources/ui/virt-viewer.ui.h:6
683 msgid "_Preferences"
684 msgstr ""
685
686 #: ../src/resources/ui/virt-viewer.ui.h:7
687 msgid "_Quit"
688 msgstr ""
689
690 #: ../src/resources/ui/virt-viewer.ui.h:8
691 msgid "_View"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:9
695 msgid "_Full screen"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:10
699 msgid "_Zoom"
700 msgstr ""
701
702 #: ../src/resources/ui/virt-viewer.ui.h:11
703 msgid "Zoom _In"
704 msgstr ""
705
706 #: ../src/resources/ui/virt-viewer.ui.h:12
707 msgid "Zoom _Out"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:13
711 msgid "_Normal Size"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:14
715 msgid "_Displays"
716 msgstr ""
717
718 #: ../src/resources/ui/virt-viewer.ui.h:15
719 msgid "Release cursor"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:16
723 msgid "_Send key"
724 msgstr ""
725
726 #: ../src/resources/ui/virt-viewer.ui.h:17
727 msgid "_Help"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:18
731 msgid "_Guest Details"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:19
735 msgid "_About"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:20
739 msgid "_Change CD"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747 msgid "Name:"
748 msgstr ""
749
750 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759 msgid "Name"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
684767 msgid "Preferences"
685768 msgstr ""
686769
687 #: ../src/virt-viewer.xml.h:7
688 msgid "_View"
689 msgstr ""
690
691 #: ../src/virt-viewer.xml.h:8
692 msgid "Full screen"
693 msgstr ""
694
695 #: ../src/virt-viewer.xml.h:9
696 msgid "_Zoom"
697 msgstr ""
698
699 #: ../src/virt-viewer.xml.h:10
700 msgid "Displays"
701 msgstr ""
702
703 #: ../src/virt-viewer.xml.h:11
704 msgid "Release cursor"
705 msgstr ""
706
707 #: ../src/virt-viewer.xml.h:12
708 msgid "_Send key"
709 msgstr ""
710
711 #: ../src/virt-viewer.xml.h:13
712 msgid "_Help"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:14
716 msgid "_Guest Details"
717 msgstr ""
718
719 #: ../src/virt-viewer-guest-details.xml.h:1
720 msgid "Guest Details"
721 msgstr ""
722
723 #: ../src/virt-viewer-guest-details.xml.h:2
724 msgid "Name:"
725 msgstr ""
726
727 #: ../src/virt-viewer-guest-details.xml.h:3
728 msgid "GUID:"
729 msgstr ""
730
731 #: ../src/virt-viewer-vm-connection.xml.h:1
732 msgid "Choose a virtual machine"
733 msgstr ""
734
735 #: ../src/virt-viewer-vm-connection.xml.h:2
736 msgid "Name"
737 msgstr ""
738
739 #: ../src/virt-viewer-vm-connection.xml.h:3
740 msgid "Available virtual machines"
741 msgstr ""
742
743 #: ../src/virt-viewer-preferences.xml.h:2
770 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
744771 msgid "Folder sharing"
745772 msgstr ""
746773
747 #: ../src/virt-viewer-preferences.xml.h:3
774 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
748775 msgid "Share folder"
749776 msgstr ""
750777
751 #: ../src/virt-viewer-preferences.xml.h:4
778 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
752779 msgid "Read-only"
753780 msgstr ""
754781
755 #: ../src/virt-viewer-preferences.xml.h:5
782 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
756783 msgid "Spice"
757784 msgstr ""
+300
-277
po/sv.po less more
1010 msgstr ""
1111 "Project-Id-Version: PACKAGE VERSION\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
13 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1414 "PO-Revision-Date: 2015-08-31 01:47-0400\n"
1515 "Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
1616 "Language-Team: Swedish (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
24
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
23 "X-Generator: Zanata 3.8.4\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
2627 msgid "Remote Viewer"
2728 msgstr "Fjärrvisare"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 msgid ""
36 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
37 "time it supports guest OS using the VNC or SPICE protocols. Further "
38 "protocols may be supported in the future as user demand dictates. The viewer "
39 "can connect directly to both local and remotely hosted guest OS, optionally "
40 "using SSL/TLS encryption."
41 msgstr ""
2842
2943 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Access remote desktops"
3448 msgid "Virt-Viewer connection file"
3549 msgstr "Virt-viewers anslutningsfil"
3650
37 #: ../src/gbinding.c:637
38 msgid "Source"
39 msgstr "Källa"
40
41 #: ../src/gbinding.c:638
42 msgid "The source of the binding"
43 msgstr "Källan till bindningen"
44
45 #: ../src/gbinding.c:652
46 msgid "Target"
47 msgstr "Mål"
48
49 #: ../src/gbinding.c:653
50 msgid "The target of the binding"
51 msgstr "Målet för bindningen"
52
53 #: ../src/gbinding.c:668
54 msgid "Source Property"
55 msgstr "Källegenskap"
56
57 #: ../src/gbinding.c:669
58 msgid "The property on the source to bind"
59 msgstr "Egenskapen hos källan till bindningen"
60
61 #: ../src/gbinding.c:684
62 msgid "Target Property"
63 msgstr "Målegenskap"
64
65 #: ../src/gbinding.c:685
66 msgid "The property on the target to bind"
67 msgstr "Egenskapen hos målet till bindningen"
68
69 #: ../src/gbinding.c:699
70 msgid "Flags"
71 msgstr "Flaggor"
72
73 #: ../src/gbinding.c:700
74 msgid "The binding flags"
75 msgstr "Bindningsflaggorna"
76
77 #: ../src/remote-viewer-main.c:50
78 #, c-format
79 msgid "remote-viewer version %s"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
83 msgid "Display version information"
84 msgstr "Visa versionsinformation"
85
86 #: ../src/remote-viewer-main.c:105
51 #: ../src/remote-viewer.c:139
8752 msgid "Set window title"
8853 msgstr "Ange fönstertitel"
8954
90 #: ../src/remote-viewer-main.c:108
55 #: ../src/remote-viewer.c:142
9156 msgid "Open connection using Spice controller communication"
9257 msgstr "Öppna anslutning med Spice-styrning av kommunikationen"
9358
94 #: ../src/remote-viewer-main.c:120
59 #: ../src/remote-viewer.c:150
9560 msgid "Remote viewer client"
9661 msgstr "Fjärrvisarklient"
9762
98 #: ../src/remote-viewer-main.c:138
99 #, c-format
100 msgid ""
101 "%s\n"
102 "Run '%s --help' to see a full list of available command line options\n"
103 msgstr ""
104 "%s\n"
105 "Kör ”%s --help” för att se hela listan över tillgängliga "
106 "kommandoradsflaggor\n"
107
108 #: ../src/remote-viewer-main.c:149
109 #, c-format
110 msgid "Error: extra arguments given while using Spice controller\n"
111 msgstr "Fel: extra argument angivna vid användning av Spice-styrning\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "Fel: kan inte hantera flera URI:er\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
63 #: ../src/remote-viewer.c:175
64 #, c-format
65 msgid ""
66 "\n"
67 "Error: can't handle multiple URIs\n"
68 "\n"
69 msgstr ""
70
71 #: ../src/remote-viewer.c:187
72 #, c-format
73 msgid ""
74 "\n"
75 "Error: extra arguments given while using Spice controller\n"
76 "\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
80 #, c-format
81 msgid "Run '%s --help' to see a full list of available command line options\n"
82 msgstr ""
83
84 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11985 msgid "Failed to initiate connection"
12086 msgstr "Misslyckades att initiera anslutningen"
12187
122 #: ../src/remote-viewer.c:313
88 #: ../src/remote-viewer.c:297
12389 msgid "Display disabled by controller"
12490 msgstr "Visningen avaktiverad av styrenhet"
12591
126 #: ../src/remote-viewer.c:609
92 #: ../src/remote-viewer.c:593
12793 #, c-format
12894 msgid "Controller connection failed: %s"
12995 msgstr "Styranslutning misslyckades: %s"
13096
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr "_Byt CD"
134
135 #: ../src/remote-viewer.c:855
97 #: ../src/remote-viewer.c:848
13698 msgid "failed to parse ovirt uri"
13799 msgstr "kunde inte analysera ovirt-uri"
138100
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
101 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140102 msgid "Authentication was cancelled"
141103 msgstr ""
142104
143 #: ../src/remote-viewer.c:900
105 #: ../src/remote-viewer.c:893
144106 #, c-format
145107 msgid "oVirt VM %s is not running"
146108 msgstr "oVirt-VM %s kör inte"
147109
148 #: ../src/remote-viewer.c:914
110 #: ../src/remote-viewer.c:907
149111 #, c-format
150112 msgid "oVirt VM %s has no display"
151113 msgstr "oVirt-VM %s har ingen display"
152114
153 #: ../src/remote-viewer.c:940
115 #: ../src/remote-viewer.c:933
154116 #, c-format
155117 msgid "oVirt VM %s has no host information"
156118 msgstr ""
157119
158 #: ../src/remote-viewer.c:951
120 #: ../src/remote-viewer.c:944
159121 #, c-format
160122 msgid "oVirt VM %s has unknown display type: %d"
161123 msgstr "oVirt-VM %s har en okänd display-typ: %d"
162124
163 #: ../src/remote-viewer.c:1094
125 #: ../src/remote-viewer.c:1115
164126 msgid "Setting up Spice session..."
165127 msgstr "Sätter upp en Spice-session …"
166128
167 #: ../src/remote-viewer.c:1102
129 #: ../src/remote-viewer.c:1123
168130 msgid "No connection was chosen"
169131 msgstr ""
170132
171 #: ../src/remote-viewer.c:1120
133 #: ../src/remote-viewer.c:1141
172134 #, c-format
173135 msgid "Invalid file %s: "
174136 msgstr ""
175137
176 #: ../src/remote-viewer.c:1128
138 #: ../src/remote-viewer.c:1149
177139 msgid "Cannot determine the connection type from URI"
178140 msgstr "Kan inte avgöra anslutningstypen från URI:n"
179141
180 #: ../src/remote-viewer.c:1134
142 #: ../src/remote-viewer.c:1155
181143 msgid "Couldn't open oVirt session: "
182144 msgstr ""
183145
188150 #. * indent-tabs-mode: nil
189151 #. * End:
190152 #.
191 #: ../src/remote-viewer-connect.xml.h:1
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192154 msgid "Connection details"
193155 msgstr "Anslutningsdetaljer"
194156
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr ""
198
199 #: ../src/remote-viewer-connect.xml.h:3
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 msgid "Connection _Address"
159 msgstr ""
160
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200162 msgid "For example, spice://foo.example.org:5900"
201163 msgstr "Till exempel, spice://apa.exempel.se:5900"
202164
203 #: ../src/remote-viewer-connect.xml.h:4
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204166 msgid "Recent connections"
205167 msgstr ""
206168
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr ""
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "Om Glade"
218
219 #: ../src/virt-viewer-about.xml.h:2
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
170 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
172 msgid "_Cancel"
173 msgstr ""
174
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
176 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 msgid "C_onnect"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:1
181 msgid "About Virt-Viewer"
182 msgstr ""
183
184 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220185 msgid ""
221186 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222187 "Copyright (C) 2007-2014 Red Hat, Inc."
224189 "Copyright © 2007-2012 Daniel P. Berrange\n"
225190 "Copyright © 2007-2014 Red Hat, Inc."
226191
227 #: ../src/virt-viewer-about.xml.h:4
192 #: ../src/resources/ui/virt-viewer-about.ui.h:4
228193 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
229194 msgstr "En fjärrskrivbordsklient byggt med GTK-VNC, SPICE-GTK och libvirt"
230195
231 #: ../src/virt-viewer-about.xml.h:5
196 #: ../src/resources/ui/virt-viewer-about.ui.h:5
232197 msgid "virt-manager.org"
233198 msgstr "virt-manager.org"
234199
235 #: ../src/virt-viewer-about.xml.h:6
200 #: ../src/resources/ui/virt-viewer-about.ui.h:6
236201 msgid ""
237202 "This program is free software; you can redistribute it and/or modify\n"
238203 "it under the terms of the GNU General Public License as published by\n"
262227 "program. Om inte, skriv till Free Software Foundation, Inc., 59 Temple "
263228 "Place, Suite 330, Boston, MA 02111-1307 USA\n"
264229
265 #: ../src/virt-viewer-about.xml.h:20
230 #: ../src/resources/ui/virt-viewer-about.ui.h:20
266231 msgid "The Fedora Translation Team"
267232 msgstr "Fedoras översättningsgrupp"
268233
269 #: ../src/virt-viewer-app.c:526
234 #: ../src/virt-viewer-app.c:458
270235 msgid "Do you want to close the session?"
271236 msgstr "Vill du stänga sessionen?"
272237
273 #: ../src/virt-viewer-app.c:528
238 #: ../src/virt-viewer-app.c:460
274239 msgid "Do not ask me again"
275240 msgstr "Fråga mig inte igen"
276241
277 #: ../src/virt-viewer-app.c:1008
242 #: ../src/virt-viewer-app.c:948
278243 #, c-format
279244 msgid "Waiting for display %d..."
280245 msgstr "Väntar på display %d …"
281246
282 #: ../src/virt-viewer-app.c:1117
247 #: ../src/virt-viewer-app.c:1055
283248 #, c-format
284249 msgid "Unsupported graphic type '%s'"
285250 msgstr ""
286251
287 #: ../src/virt-viewer-app.c:1200
252 #: ../src/virt-viewer-app.c:1138
288253 msgid "Connect to ssh failed."
289254 msgstr "Anslutning till ssh misslyckades."
290255
291 #: ../src/virt-viewer-app.c:1202
256 #: ../src/virt-viewer-app.c:1140
292257 msgid "Can't connect to channel, SSH only supported."
293258 msgstr "Kan inte ansluta till kanalen, endast SSH stödjs."
294259
295 #: ../src/virt-viewer-app.c:1214
260 #: ../src/virt-viewer-app.c:1152
296261 msgid "Connect to channel unsupported."
297262 msgstr "Anslutning till kanalen stödjs inte."
298263
299 #: ../src/virt-viewer-app.c:1276
264 #: ../src/virt-viewer-app.c:1214
300265 msgid "Display can only be attached through libvirt with --attach"
301266 msgstr "Kan bara ansluta till displayen via libvirt med --attach"
302267
303 #: ../src/virt-viewer-app.c:1299
268 #: ../src/virt-viewer-app.c:1237
304269 msgid "Connecting to graphic server"
305270 msgstr "Anslutning till grafikserver"
306271
307 #: ../src/virt-viewer-app.c:1398
272 #: ../src/virt-viewer-app.c:1336
308273 msgid "Guest domain has shutdown"
309274 msgstr "Gästdomänen är avstängd"
310275
311 #: ../src/virt-viewer-app.c:1459
276 #: ../src/virt-viewer-app.c:1397
312277 msgid "Connected to graphic server"
313278 msgstr "Ansluten till grafikserver"
314279
315 #: ../src/virt-viewer-app.c:1486
280 #: ../src/virt-viewer-app.c:1424
316281 #, c-format
317282 msgid "Unable to connect to the graphic server %s"
318283 msgstr "Kan inte ansluta till grafikservern %s"
319284
320 #: ../src/virt-viewer-app.c:1512
285 #: ../src/virt-viewer-app.c:1450
321286 #, c-format
322287 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
323288 msgstr ""
324289
325 #: ../src/virt-viewer-app.c:1525
290 #: ../src/virt-viewer-app.c:1463
326291 #, c-format
327292 msgid "Unable to authenticate with remote desktop server: %s"
328293 msgstr "Kan inte autenticera med fjärskrivbordsserver: %s"
329294
330 #: ../src/virt-viewer-app.c:1533
295 #: ../src/virt-viewer-app.c:1471
331296 #, c-format
332297 msgid "USB redirection error: %s"
333298 msgstr "USB-omdirigeringsfel: %s"
334299
335 #: ../src/virt-viewer-app.c:1786
300 #: ../src/virt-viewer-app.c:1805
336301 #, c-format
337302 msgid "Zoom level must be within %d-%d\n"
338303 msgstr "Zoom-nivån måste vara inom %d-%d\n"
339304
340 #: ../src/virt-viewer-app.c:2296
341 #, c-format
342 msgid "Display %d"
343 msgstr "Display %d"
344
345 #: ../src/virt-viewer-app.c:2552
305 #: ../src/virt-viewer-app.c:1858
306 #, c-format
307 msgid "%s\n"
308 msgstr ""
309
310 #: ../src/virt-viewer-app.c:1868
311 #, c-format
312 msgid "%s version %s"
313 msgstr ""
314
315 #: ../src/virt-viewer-app.c:2292
316 #, c-format
317 msgid "Display _%d"
318 msgstr ""
319
320 #: ../src/virt-viewer-app.c:2548
346321 #, c-format
347322 msgid "Invalid kiosk-quit argument: %s"
348323 msgstr "Ogiltigt helskärmsargument: %s"
324
325 #: ../src/virt-viewer-app.c:2559
326 msgid "Display version information"
327 msgstr "Visa versionsinformation"
349328
350329 #: ../src/virt-viewer-app.c:2561
351330 msgid "Zoom level of window, in percentage"
380359 msgid "Display debugging information"
381360 msgstr "Visa felsökningsinformation"
382361
383 #: ../src/virt-viewer-auth.c:88
362 #: ../src/virt-viewer-auth.c:89
384363 #, c-format
385364 msgid ""
386365 "Authentication is required for the %s connection to:\n"
393372 "<b>%s</b>\n"
394373 "\n"
395374
396 #: ../src/virt-viewer-auth.c:92
375 #: ../src/virt-viewer-auth.c:93
397376 #, c-format
398377 msgid "Authentication is required for the %s connection:\n"
399378 msgstr "Autenticering krävs för %s-anslutningen:\n"
405384 #. * indent-tabs-mode: nil
406385 #. * End:
407386 #.
408 #: ../src/virt-viewer-auth.xml.h:1
387 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
409388 msgid "Authentication required"
410389 msgstr "Autenticering krävs"
411390
412 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
392 msgid "_OK"
393 msgstr ""
394
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
396 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
413397 msgid "label"
414398 msgstr "etikett"
415399
416 #: ../src/virt-viewer-auth.xml.h:3
400 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
417401 msgid "Password:"
418402 msgstr "Lösenord:"
419403
420 #: ../src/virt-viewer-auth.xml.h:4
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
421405 msgid "Username:"
422406 msgstr "Användarnamn:"
423407
424 #: ../src/virt-viewer-auth.xml.h:5
408 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
425409 msgid "Show password"
426410 msgstr "Visa lösenord"
427411
428 #: ../src/virt-viewer-display-vnc.c:133
412 #: ../src/virt-viewer-display-vnc.c:134
429413 msgid "VNC does not provide GUID"
430414 msgstr ""
431415
416 #: ../src/virt-viewer-file-transfer-dialog.c:152
417 msgid "Cancel"
418 msgstr ""
419
420 #: ../src/virt-viewer-file-transfer-dialog.c:163
421 msgid "File Transfers"
422 msgstr ""
423
432424 #: ../src/virt-viewer-main.c:38
433 #, c-format
434 msgid "%s version %s\n"
435 msgstr "%s version %s\n"
436
437 #: ../src/virt-viewer-main.c:62
438 msgid "Direct connection with no automatic tunnels"
439 msgstr "Direkt anslutning utan några automatiska tunnlar"
440
441 #: ../src/virt-viewer-main.c:64
442 msgid "Attach to the local display using libvirt"
443 msgstr "Koppla till den lokala displayen med libvirt"
444
445 #: ../src/virt-viewer-main.c:66
446 msgid "Connect to hypervisor"
447 msgstr "Anslut till hypervisorn"
448
449 #: ../src/virt-viewer-main.c:68
450 msgid "Wait for domain to start"
451 msgstr "Vänta på att domänen startar"
452
453 #: ../src/virt-viewer-main.c:70
454 msgid "Reconnect to domain upon restart"
455 msgstr "Återanslut till domänen vid omstart"
456
457 #: ../src/virt-viewer-main.c:77
458425 msgid "Virt Viewer"
459426 msgstr "Virt Viewer"
460427
461 #: ../src/virt-viewer-main.c:80
462 #, c-format
463 msgid "Run '%s --help' to see a full list of available command line options"
464 msgstr ""
465 "Kör ”%s --help” för att se hela listan av tillgängliga kommandoradsflaggor"
466
467 #: ../src/virt-viewer-main.c:86
468 msgid "Virtual machine graphical console"
469 msgstr "Grafisk konsol för virtuella maskiner"
470
471 #: ../src/virt-viewer-main.c:107
472 #, c-format
473 msgid ""
474 "\n"
475 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
476 "\n"
477 "%s\n"
478 "\n"
479 msgstr ""
480
481 #: ../src/virt-viewer-main.c:112
482 #, c-format
483 msgid ""
484 "\n"
485 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
486 "\n"
487 msgstr ""
488
489 #: ../src/virt-viewer-session-spice.c:694
428 #: ../src/virt-viewer-session-spice.c:705
490429 msgid "Invalid password"
491430 msgstr "Felaktigt lösenord"
492431
493432 #. Create the widgets
494 #: ../src/virt-viewer-session-spice.c:786
433 #: ../src/virt-viewer-session-spice.c:797
495434 msgid "Select USB devices for redirection"
496435 msgstr "Välj USB-enheter att omdirigera"
497436
498 #: ../src/virt-viewer-session-vnc.c:153
437 #: ../src/virt-viewer-session-spice.c:799
438 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
439 msgid "_Close"
440 msgstr ""
441
442 #: ../src/virt-viewer-session-vnc.c:156
499443 #, c-format
500444 msgid "Unsupported authentication type %d"
501445 msgstr "Autenticeringstyp %d som inte stödjs"
508452 msgid "No virtual machine was chosen"
509453 msgstr ""
510454
511 #: ../src/virt-viewer-window.c:537
455 #: ../src/virt-viewer-window.c:534
512456 msgid "Ctrl+Alt+_Del"
513457 msgstr "Ctrl+Alt+_Del"
514458
515 #: ../src/virt-viewer-window.c:538
459 #: ../src/virt-viewer-window.c:535
516460 msgid "Ctrl+Alt+_Backspace"
517461 msgstr "Ctrl+Alt+_Baksteg"
518462
519 #: ../src/virt-viewer-window.c:540
463 #: ../src/virt-viewer-window.c:537
520464 msgid "Ctrl+Alt+F_1"
521465 msgstr "Ctrl+Alt+F_1"
522466
523 #: ../src/virt-viewer-window.c:541
467 #: ../src/virt-viewer-window.c:538
524468 msgid "Ctrl+Alt+F_2"
525469 msgstr "Ctrl+Alt+F_2"
526470
527 #: ../src/virt-viewer-window.c:542
471 #: ../src/virt-viewer-window.c:539
528472 msgid "Ctrl+Alt+F_3"
529473 msgstr "Ctrl+Alt+F_3"
530474
531 #: ../src/virt-viewer-window.c:543
475 #: ../src/virt-viewer-window.c:540
532476 msgid "Ctrl+Alt+F_4"
533477 msgstr "Ctrl+Alt+F_4"
534478
535 #: ../src/virt-viewer-window.c:544
479 #: ../src/virt-viewer-window.c:541
536480 msgid "Ctrl+Alt+F_5"
537481 msgstr "Ctrl+Alt+F_5"
538482
539 #: ../src/virt-viewer-window.c:545
483 #: ../src/virt-viewer-window.c:542
540484 msgid "Ctrl+Alt+F_6"
541485 msgstr "Ctrl+Alt+F_6"
542486
543 #: ../src/virt-viewer-window.c:546
487 #: ../src/virt-viewer-window.c:543
544488 msgid "Ctrl+Alt+F_7"
545489 msgstr "Ctrl+Alt+F_7"
546490
547 #: ../src/virt-viewer-window.c:547
491 #: ../src/virt-viewer-window.c:544
548492 msgid "Ctrl+Alt+F_8"
549493 msgstr "Ctrl+Alt+F_8"
550494
551 #: ../src/virt-viewer-window.c:548
495 #: ../src/virt-viewer-window.c:545
552496 msgid "Ctrl+Alt+F_9"
553497 msgstr "Ctrl+Alt+F_9"
554498
555 #: ../src/virt-viewer-window.c:549
499 #: ../src/virt-viewer-window.c:546
556500 msgid "Ctrl+Alt+F1_0"
557501 msgstr "Ctrl+Alt+F1_0"
558502
559 #: ../src/virt-viewer-window.c:550
503 #: ../src/virt-viewer-window.c:547
560504 msgid "Ctrl+Alt+F11"
561505 msgstr "Ctrl+Alt+F11"
562506
563 #: ../src/virt-viewer-window.c:551
507 #: ../src/virt-viewer-window.c:548
564508 msgid "Ctrl+Alt+F12"
565509 msgstr "Ctrl+Alt+F12"
566510
567 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
511 #: ../src/virt-viewer-window.c:919
512 msgid "_Save"
513 msgstr ""
514
515 #: ../src/virt-viewer-window.c:927
568516 msgid "Screenshot"
569517 msgstr "Skärmbild"
570518
571 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
519 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
572520 msgid "Unknown"
573521 msgstr "Okänd"
574522
575 #: ../src/virt-viewer-window.c:1062
523 #: ../src/virt-viewer-window.c:1071
576524 msgid "Disconnect"
577525 msgstr "Koppla ifrån"
578526
579 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
580 #: ../src/virt-viewer.xml.h:3
527 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
581528 msgid "USB device selection"
582529 msgstr "Val av USB-enhet"
583530
584 #: ../src/virt-viewer-window.c:1081
531 #: ../src/virt-viewer-window.c:1089
585532 msgid "Send key combination"
586533 msgstr "Skicka tangentbordskombination"
587534
588 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
535 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
589536 msgid "Leave fullscreen"
590537 msgstr "Lämna helskärm"
591538
592 #: ../src/virt-viewer-window.c:1173
539 #: ../src/virt-viewer-window.c:1175
593540 msgid "Ctrl+Alt"
594541 msgstr "Ctrl+Alt"
595542
596 #: ../src/virt-viewer-window.c:1176
543 #: ../src/virt-viewer-window.c:1178
597544 #, c-format
598545 msgid "(Press %s to release pointer)"
599546 msgstr "(Tryck %s för att släppa markören)"
602549 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
603550 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
604551 #.
605 #: ../src/virt-viewer-window.c:1187
552 #: ../src/virt-viewer-window.c:1189
606553 #, c-format
607554 msgid "%s%s%s - %s"
608555 msgstr "%s%s%s - %s"
609556
610557 #. translators: <space>
611 #: ../src/virt-viewer-window.c:1191
558 #: ../src/virt-viewer-window.c:1193
612559 msgid " "
613560 msgstr " "
614561
615 #: ../src/virt-viewer-file.c:825
562 #: ../src/virt-viewer-file.c:843
616563 #, c-format
617564 msgid ""
618565 "At least %s version %s is required to setup this connection, see %s for "
619566 "details"
620567 msgstr ""
621568
622 #: ../src/virt-viewer-file.c:833
569 #: ../src/virt-viewer-file.c:851
623570 #, c-format
624571 msgid "At least %s version %s is required to setup this connection"
625572 msgstr "Åtminstone %s version %s behövs för att skapa denna anslutning"
626573
627 #: ../src/virt-viewer.c:163
574 #: ../src/virt-viewer.c:90
575 msgid "Direct connection with no automatic tunnels"
576 msgstr "Direkt anslutning utan några automatiska tunnlar"
577
578 #: ../src/virt-viewer.c:92
579 msgid "Attach to the local display using libvirt"
580 msgstr "Koppla till den lokala displayen med libvirt"
581
582 #: ../src/virt-viewer.c:94
583 msgid "Connect to hypervisor"
584 msgstr "Anslut till hypervisorn"
585
586 #: ../src/virt-viewer.c:96
587 msgid "Wait for domain to start"
588 msgstr "Vänta på att domänen startar"
589
590 #: ../src/virt-viewer.c:98
591 msgid "Reconnect to domain upon restart"
592 msgstr "Återanslut till domänen vid omstart"
593
594 #: ../src/virt-viewer.c:105
595 msgid "Virtual machine graphical console"
596 msgstr "Grafisk konsol för virtuella maskiner"
597
598 #: ../src/virt-viewer.c:124
599 #, c-format
600 msgid ""
601 "\n"
602 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
603 "\n"
604 msgstr ""
605
606 #: ../src/virt-viewer.c:136
607 #, c-format
608 msgid ""
609 "\n"
610 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
611 "\n"
612 msgstr ""
613
614 #: ../src/virt-viewer.c:250
628615 msgid "Waiting for guest domain to re-start"
629616 msgstr "Vänta på att gästdomänen startas om"
630617
631 #: ../src/virt-viewer.c:409
618 #: ../src/virt-viewer.c:496
632619 #, c-format
633620 msgid "Cannot determine the graphic type for the guest %s"
634621 msgstr "Kan inte avgöra grafiktypen för gästen %s"
635622
636 #: ../src/virt-viewer.c:448
623 #: ../src/virt-viewer.c:535
637624 #, c-format
638625 msgid "Cannot determine the host for the guest %s"
639626 msgstr "Kan inte avgöra värden för gästen %s"
640627
641 #: ../src/virt-viewer.c:476
628 #: ../src/virt-viewer.c:563
642629 #, c-format
643630 msgid "Guest '%s' is not reachable"
644631 msgstr "Gästen ”%s” är inte nåbar"
645632
646 #: ../src/virt-viewer.c:697
633 #: ../src/virt-viewer.c:784
647634 #, c-format
648635 msgid "Virtual machine %s is not running"
649636 msgstr "Den virtuella maskinen %s kör inte"
650637
651 #: ../src/virt-viewer.c:720
638 #: ../src/virt-viewer.c:807
652639 msgid "Waiting for libvirt to start"
653640 msgstr "Väntar på att libvirt skall starta"
654641
655 #: ../src/virt-viewer.c:724
642 #: ../src/virt-viewer.c:811
656643 msgid "Finding guest domain"
657644 msgstr "Letar reda på gästdomänen"
658645
659 #: ../src/virt-viewer.c:728
646 #: ../src/virt-viewer.c:815
660647 msgid "Waiting for guest domain to be created"
661648 msgstr "Väntar på att gästdomänen skall skapas"
662649
663 #: ../src/virt-viewer.c:750
650 #: ../src/virt-viewer.c:837
664651 msgid "Checking guest domain status"
665652 msgstr "Kontrollerar gästdomänens status"
666653
667 #: ../src/virt-viewer.c:753
654 #: ../src/virt-viewer.c:840
668655 msgid "Cannot get guest state"
669656 msgstr ""
670657
671 #: ../src/virt-viewer.c:759
658 #: ../src/virt-viewer.c:846
672659 msgid "Waiting for guest domain to start"
673660 msgstr "Väntar på att gästdomänen skall starta"
674661
675 #: ../src/virt-viewer.c:863
662 #: ../src/virt-viewer.c:950
676663 #, c-format
677664 msgid "Unable to connect to libvirt with URI: %s."
678665 msgstr "Kan inte ansluta till libvirt med URI: %s."
679666
680 #: ../src/virt-viewer.c:864
667 #: ../src/virt-viewer.c:951
681668 msgid "[none]"
682669 msgstr "[ingen]"
683670
684 #: ../src/virt-viewer.c:871
671 #: ../src/virt-viewer.c:958
685672 msgid "Authentication failed."
686673 msgstr "Autenticeringen misslyckades."
687674
688 #: ../src/virt-viewer.c:931
675 #: ../src/virt-viewer.c:1018
689676 msgid "Failed to connect: "
690677 msgstr ""
691678
696683 #. * indent-tabs-mode: nil
697684 #. * End:
698685 #.
699 #: ../src/virt-viewer.xml.h:1
686 #: ../src/resources/ui/virt-viewer.ui.h:1
700687 msgid "_File"
701688 msgstr "_Arkiv"
702689
703 #: ../src/virt-viewer.xml.h:4
690 #: ../src/resources/ui/virt-viewer.ui.h:2
691 msgid "_Screenshot"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:3
695 msgid "_USB device selection"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:4
704699 msgid "Smartcard insertion"
705700 msgstr "Insättning av smartkort"
706701
707 #: ../src/virt-viewer.xml.h:5
702 #: ../src/resources/ui/virt-viewer.ui.h:5
708703 msgid "Smartcard removal"
709704 msgstr "Uttag av smartkort"
710705
711 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
712 msgid "Preferences"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:7
706 #: ../src/resources/ui/virt-viewer.ui.h:6
707 msgid "_Preferences"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:7
711 msgid "_Quit"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:8
716715 msgid "_View"
717716 msgstr "_Visa"
718717
719 #: ../src/virt-viewer.xml.h:8
720 msgid "Full screen"
721 msgstr "Helskärm"
722
723 #: ../src/virt-viewer.xml.h:9
718 #: ../src/resources/ui/virt-viewer.ui.h:9
719 msgid "_Full screen"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:10
724723 msgid "_Zoom"
725724 msgstr "_Zoom"
726725
727 #: ../src/virt-viewer.xml.h:10
728 msgid "Displays"
729 msgstr "Displayer"
730
731 #: ../src/virt-viewer.xml.h:11
726 #: ../src/resources/ui/virt-viewer.ui.h:11
727 msgid "Zoom _In"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:12
731 msgid "Zoom _Out"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:13
735 msgid "_Normal Size"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:14
739 msgid "_Displays"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer.ui.h:15
732743 msgid "Release cursor"
733744 msgstr "Släpp markören"
734745
735 #: ../src/virt-viewer.xml.h:12
746 #: ../src/resources/ui/virt-viewer.ui.h:16
736747 msgid "_Send key"
737748 msgstr "_Skicka tangent"
738749
739 #: ../src/virt-viewer.xml.h:13
750 #: ../src/resources/ui/virt-viewer.ui.h:17
740751 msgid "_Help"
741752 msgstr "_Hjälp"
742753
743 #: ../src/virt-viewer.xml.h:14
754 #: ../src/resources/ui/virt-viewer.ui.h:18
744755 msgid "_Guest Details"
745756 msgstr "_Gästdetaljer"
746757
747 #: ../src/virt-viewer-guest-details.xml.h:1
758 #: ../src/resources/ui/virt-viewer.ui.h:19
759 msgid "_About"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer.ui.h:20
763 msgid "_Change CD"
764 msgstr "_Byt CD"
765
766 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
748767 msgid "Guest Details"
749768 msgstr "Gästdetaljer"
750769
751 #: ../src/virt-viewer-guest-details.xml.h:2
770 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
752771 msgid "Name:"
753772 msgstr "Namn:"
754773
755 #: ../src/virt-viewer-guest-details.xml.h:3
774 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
756775 msgid "GUID:"
757776 msgstr "GUID:"
758777
759 #: ../src/virt-viewer-vm-connection.xml.h:1
778 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
760779 msgid "Choose a virtual machine"
761780 msgstr "Välj en virtuell maskin"
762781
763 #: ../src/virt-viewer-vm-connection.xml.h:2
782 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
764783 msgid "Name"
765784 msgstr "Namn"
766785
767 #: ../src/virt-viewer-vm-connection.xml.h:3
786 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
768787 msgid "Available virtual machines"
769788 msgstr "Tillgängliga virtuella maskiner"
770789
771 #: ../src/virt-viewer-preferences.xml.h:2
790 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
791 msgid "Preferences"
792 msgstr ""
793
794 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
772795 msgid "Folder sharing"
773796 msgstr ""
774797
775 #: ../src/virt-viewer-preferences.xml.h:3
798 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
776799 msgid "Share folder"
777800 msgstr ""
778801
779 #: ../src/virt-viewer-preferences.xml.h:4
802 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
780803 msgid "Read-only"
781804 msgstr ""
782805
783 #: ../src/virt-viewer-preferences.xml.h:5
806 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
784807 msgid "Spice"
785808 msgstr ""
+300
-277
po/ta.po less more
1111 msgstr ""
1212 "Project-Id-Version: PACKAGE VERSION\n"
1313 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
14 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1515 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1616 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1717 "Language-Team: Tamil (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
24 "X-Generator: Zanata 3.8.4\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
2728 msgid "Remote Viewer"
2829 msgstr "தொலைநிலை காட்டி"
30
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 msgid "Remotely access virtual machines"
33 msgstr ""
34
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 msgid ""
37 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
38 "time it supports guest OS using the VNC or SPICE protocols. Further "
39 "protocols may be supported in the future as user demand dictates. The viewer "
40 "can connect directly to both local and remotely hosted guest OS, optionally "
41 "using SSL/TLS encryption."
42 msgstr ""
2943
3044 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Access remote desktops"
3549 msgid "Virt-Viewer connection file"
3650 msgstr "Virt-Viewer இணைப்புக் கோப்பு"
3751
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "மூலம்"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "பிணைத்தலின் மூலம்"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "இலக்கு"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "பிணைத்தலின் இலக்கு"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "மூல பண்பு"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "பிணைக்க மூலத்தின் குணம்"
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "இலக்கு பண்பு"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "பிணைக்க இலக்கின் குணம்"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "கொடிகள்"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "பிணைக்கும் கொடிகள்"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "காட்சி பதிப்பு தகவல்"
86
87 #: ../src/remote-viewer-main.c:105
52 #: ../src/remote-viewer.c:139
8853 msgid "Set window title"
8954 msgstr "சாளர தலைப்பை அமைக்கவும்"
9055
91 #: ../src/remote-viewer-main.c:108
56 #: ../src/remote-viewer.c:142
9257 msgid "Open connection using Spice controller communication"
9358 msgstr "ஸ்பைஸ் கட்டுப்படுத்தி தொடர்பை பயன்படுத்தி இணைப்பை திறக்கவும்"
9459
95 #: ../src/remote-viewer-main.c:120
60 #: ../src/remote-viewer.c:150
9661 msgid "Remote viewer client"
9762 msgstr "தொலைநிலைக் காட்சிக் கிளை"
9863
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "கிடைக்கும் கட்டளை வரி விருப்பங்களின் முழு பட்டியலைக் காண '%s --help' கட்டளையை "
107 "இயக்கவும்\n"
108
109 #: ../src/remote-viewer-main.c:149
110 #, c-format
111 msgid "Error: extra arguments given while using Spice controller\n"
112 msgstr "பிழை: ஸ்பைஸ் கன்ட்ரோலரைப் பயன்படுத்தும் போது கூடுதல் அளவுருக்கள் கொடுக்கப்பட்டன\n"
113
114 #: ../src/remote-viewer-main.c:156
115 #, c-format
116 msgid "Error: can't handle multiple URIs\n"
117 msgstr "பிழை: பல URIகளைக் கையாள முடியாது\n"
118
119 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
64 #: ../src/remote-viewer.c:175
65 #, c-format
66 msgid ""
67 "\n"
68 "Error: can't handle multiple URIs\n"
69 "\n"
70 msgstr ""
71
72 #: ../src/remote-viewer.c:187
73 #, c-format
74 msgid ""
75 "\n"
76 "Error: extra arguments given while using Spice controller\n"
77 "\n"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
81 #, c-format
82 msgid "Run '%s --help' to see a full list of available command line options\n"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
12086 msgid "Failed to initiate connection"
12187 msgstr "இணைப்பை துவக்க முடியவில்லை"
12288
123 #: ../src/remote-viewer.c:313
89 #: ../src/remote-viewer.c:297
12490 msgid "Display disabled by controller"
12591 msgstr "கட்டுப்படுத்தியால் காட்சி செயல்நீக்கப்பட்டது"
12692
127 #: ../src/remote-viewer.c:609
93 #: ../src/remote-viewer.c:593
12894 #, c-format
12995 msgid "Controller connection failed: %s"
13096 msgstr "கட்டுப்படுத்தி இணைப்பு தோல்வியுற்றது: %s"
13197
132 #: ../src/remote-viewer.c:755
133 msgid "_Change CD"
134 msgstr ""
135
136 #: ../src/remote-viewer.c:855
98 #: ../src/remote-viewer.c:848
13799 msgid "failed to parse ovirt uri"
138100 msgstr ""
139101
140 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
102 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
141103 msgid "Authentication was cancelled"
142104 msgstr ""
143105
144 #: ../src/remote-viewer.c:900
106 #: ../src/remote-viewer.c:893
145107 #, c-format
146108 msgid "oVirt VM %s is not running"
147109 msgstr ""
148110
149 #: ../src/remote-viewer.c:914
111 #: ../src/remote-viewer.c:907
150112 #, c-format
151113 msgid "oVirt VM %s has no display"
152114 msgstr ""
153115
154 #: ../src/remote-viewer.c:940
116 #: ../src/remote-viewer.c:933
155117 #, c-format
156118 msgid "oVirt VM %s has no host information"
157119 msgstr ""
158120
159 #: ../src/remote-viewer.c:951
121 #: ../src/remote-viewer.c:944
160122 #, c-format
161123 msgid "oVirt VM %s has unknown display type: %d"
162124 msgstr ""
163125
164 #: ../src/remote-viewer.c:1094
126 #: ../src/remote-viewer.c:1115
165127 msgid "Setting up Spice session..."
166128 msgstr "ஸ்பைஸ் அமர்வை அமைக்கிறது..."
167129
168 #: ../src/remote-viewer.c:1102
130 #: ../src/remote-viewer.c:1123
169131 msgid "No connection was chosen"
170132 msgstr ""
171133
172 #: ../src/remote-viewer.c:1120
134 #: ../src/remote-viewer.c:1141
173135 #, c-format
174136 msgid "Invalid file %s: "
175137 msgstr ""
176138
177 #: ../src/remote-viewer.c:1128
139 #: ../src/remote-viewer.c:1149
178140 msgid "Cannot determine the connection type from URI"
179141 msgstr "URI-இலிருந்து இணைப்பு வகையை வரையறுக்க முடியாது"
180142
181 #: ../src/remote-viewer.c:1134
143 #: ../src/remote-viewer.c:1155
182144 msgid "Couldn't open oVirt session: "
183145 msgstr ""
184146
189151 #. * indent-tabs-mode: nil
190152 #. * End:
191153 #.
192 #: ../src/remote-viewer-connect.xml.h:1
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
193155 msgid "Connection details"
194156 msgstr "இணைப்பு விவரங்கள்"
195157
196 #: ../src/remote-viewer-connect.xml.h:2
197 msgid "Connection Address"
198 msgstr ""
199
200 #: ../src/remote-viewer-connect.xml.h:3
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 msgid "Connection _Address"
160 msgstr ""
161
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
201163 msgid "For example, spice://foo.example.org:5900"
202164 msgstr "எடுத்துக்காட்டுக்கு spice://foo.example.org:5900"
203165
204 #: ../src/remote-viewer-connect.xml.h:4
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
205167 msgid "Recent connections"
206168 msgstr ""
207169
208 #: ../src/remote-viewer-connect.xml.h:5
209 msgid "Cancel"
210 msgstr ""
211
212 #: ../src/remote-viewer-connect.xml.h:6
213 msgid "Connect"
214 msgstr ""
215
216 #: ../src/virt-viewer-about.xml.h:1
217 msgid "About Glade"
218 msgstr "Glade பற்றி"
219
220 #: ../src/virt-viewer-about.xml.h:2
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
171 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
172 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
173 msgid "_Cancel"
174 msgstr ""
175
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
177 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 msgid "C_onnect"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:1
182 msgid "About Virt-Viewer"
183 msgstr ""
184
185 #: ../src/resources/ui/virt-viewer-about.ui.h:2
221186 msgid ""
222187 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
223188 "Copyright (C) 2007-2014 Red Hat, Inc."
225190 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
226191 "Copyright (C) 2007-2014 Red Hat, Inc."
227192
228 #: ../src/virt-viewer-about.xml.h:4
193 #: ../src/resources/ui/virt-viewer-about.ui.h:4
229194 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
230195 msgstr "ஒரு தொலை பணிமேடை GTK-VNC, SPICE-GTK மற்றும் libvirtஆல் உருவாகப்பட்டது"
231196
232 #: ../src/virt-viewer-about.xml.h:5
197 #: ../src/resources/ui/virt-viewer-about.ui.h:5
233198 msgid "virt-manager.org"
234199 msgstr "virt-manager.org"
235200
236 #: ../src/virt-viewer-about.xml.h:6
201 #: ../src/resources/ui/virt-viewer-about.ui.h:6
237202 msgid ""
238203 "This program is free software; you can redistribute it and/or modify\n"
239204 "it under the terms of the GNU General Public License as published by\n"
263228 "along with this program; if not, write to the Free Software\n"
264229 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
265230
266 #: ../src/virt-viewer-about.xml.h:20
231 #: ../src/resources/ui/virt-viewer-about.ui.h:20
267232 msgid "The Fedora Translation Team"
268233 msgstr "Fedora மொழிபெயர்ப்பு குழு"
269234
270 #: ../src/virt-viewer-app.c:526
235 #: ../src/virt-viewer-app.c:458
271236 msgid "Do you want to close the session?"
272237 msgstr "அமர்வை மூட வேண்டுமா?"
273238
274 #: ../src/virt-viewer-app.c:528
239 #: ../src/virt-viewer-app.c:460
275240 msgid "Do not ask me again"
276241 msgstr "மீண்டும் என்னிடம் கேட்க வேண்டாம்"
277242
278 #: ../src/virt-viewer-app.c:1008
243 #: ../src/virt-viewer-app.c:948
279244 #, c-format
280245 msgid "Waiting for display %d..."
281246 msgstr "காட்சி %d-க்கு காத்திருக்கிறது..."
282247
283 #: ../src/virt-viewer-app.c:1117
248 #: ../src/virt-viewer-app.c:1055
284249 #, c-format
285250 msgid "Unsupported graphic type '%s'"
286251 msgstr ""
287252
288 #: ../src/virt-viewer-app.c:1200
253 #: ../src/virt-viewer-app.c:1138
289254 msgid "Connect to ssh failed."
290255 msgstr "ssh-உடன் இணைக்க முடியவில்லை."
291256
292 #: ../src/virt-viewer-app.c:1202
257 #: ../src/virt-viewer-app.c:1140
293258 msgid "Can't connect to channel, SSH only supported."
294259 msgstr "சேனலுடன் இணைக்க வேண்டாம், SSH மட்டும் துணைபுரிகிறது."
295260
296 #: ../src/virt-viewer-app.c:1214
261 #: ../src/virt-viewer-app.c:1152
297262 msgid "Connect to channel unsupported."
298263 msgstr "சேனலுடன் இணைப்பு துணைபுரியவில்லை."
299264
300 #: ../src/virt-viewer-app.c:1276
265 #: ../src/virt-viewer-app.c:1214
301266 msgid "Display can only be attached through libvirt with --attach"
302267 msgstr ""
303268
304 #: ../src/virt-viewer-app.c:1299
269 #: ../src/virt-viewer-app.c:1237
305270 msgid "Connecting to graphic server"
306271 msgstr "வரைகலை சேவையகத்துடன் இணைக்கிறது"
307272
308 #: ../src/virt-viewer-app.c:1398
273 #: ../src/virt-viewer-app.c:1336
309274 msgid "Guest domain has shutdown"
310275 msgstr "விருந்தினர் டொமைன் நிறுத்தப்பட்டது"
311276
312 #: ../src/virt-viewer-app.c:1459
277 #: ../src/virt-viewer-app.c:1397
313278 msgid "Connected to graphic server"
314279 msgstr "வரைகலை சேவையகத்துடன் இணைக்கப்பட்டது"
315280
316 #: ../src/virt-viewer-app.c:1486
281 #: ../src/virt-viewer-app.c:1424
317282 #, c-format
318283 msgid "Unable to connect to the graphic server %s"
319284 msgstr "வரைகலை சேவையகம் %s-க்கு இணைக்க முடியவில்லை"
320285
321 #: ../src/virt-viewer-app.c:1512
286 #: ../src/virt-viewer-app.c:1450
322287 #, c-format
323288 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
324289 msgstr ""
325290
326 #: ../src/virt-viewer-app.c:1525
291 #: ../src/virt-viewer-app.c:1463
327292 #, c-format
328293 msgid "Unable to authenticate with remote desktop server: %s"
329294 msgstr "தொலை பணிமேடை சேவையகத்துடன் அங்கீகரிக்க முடியவில்லை: %s"
330295
331 #: ../src/virt-viewer-app.c:1533
296 #: ../src/virt-viewer-app.c:1471
332297 #, c-format
333298 msgid "USB redirection error: %s"
334299 msgstr "USB மறுதிசையிடல் பிழை: %s"
335300
336 #: ../src/virt-viewer-app.c:1786
301 #: ../src/virt-viewer-app.c:1805
337302 #, c-format
338303 msgid "Zoom level must be within %d-%d\n"
339304 msgstr ""
340305 "பெரிதாக்கும் நிலை %d-%d க்குள் இருக்க வேண்டும்\n"
341306 "\n"
342307
343 #: ../src/virt-viewer-app.c:2296
344 #, c-format
345 msgid "Display %d"
346 msgstr "%d ஐக் காண்பி"
347
348 #: ../src/virt-viewer-app.c:2552
308 #: ../src/virt-viewer-app.c:1858
309 #, c-format
310 msgid "%s\n"
311 msgstr ""
312
313 #: ../src/virt-viewer-app.c:1868
314 #, c-format
315 msgid "%s version %s"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:2292
319 #, c-format
320 msgid "Display _%d"
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:2548
349324 #, c-format
350325 msgid "Invalid kiosk-quit argument: %s"
351326 msgstr "செல்லுபடியாகாத kiosk-quit மதிப்புரு: %s"
327
328 #: ../src/virt-viewer-app.c:2559
329 msgid "Display version information"
330 msgstr "காட்சி பதிப்பு தகவல்"
352331
353332 #: ../src/virt-viewer-app.c:2561
354333 msgid "Zoom level of window, in percentage"
384363 msgid "Display debugging information"
385364 msgstr "பிழைத்திருத்த தகவலை காட்டவும்"
386365
387 #: ../src/virt-viewer-auth.c:88
366 #: ../src/virt-viewer-auth.c:89
388367 #, c-format
389368 msgid ""
390369 "Authentication is required for the %s connection to:\n"
393372 "\n"
394373 msgstr ""
395374
396 #: ../src/virt-viewer-auth.c:92
375 #: ../src/virt-viewer-auth.c:93
397376 #, c-format
398377 msgid "Authentication is required for the %s connection:\n"
399378 msgstr ""
405384 #. * indent-tabs-mode: nil
406385 #. * End:
407386 #.
408 #: ../src/virt-viewer-auth.xml.h:1
387 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
409388 msgid "Authentication required"
410389 msgstr "அங்கீகாரம் தேவை"
411390
412 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
391 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
392 msgid "_OK"
393 msgstr ""
394
395 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
396 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
413397 msgid "label"
414398 msgstr "லேபிள்"
415399
416 #: ../src/virt-viewer-auth.xml.h:3
400 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
417401 msgid "Password:"
418402 msgstr "கடவுச்சொல்:"
419403
420 #: ../src/virt-viewer-auth.xml.h:4
404 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
421405 msgid "Username:"
422406 msgstr "பயனர்பெயர்:"
423407
424 #: ../src/virt-viewer-auth.xml.h:5
408 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
425409 msgid "Show password"
426410 msgstr ""
427411
428 #: ../src/virt-viewer-display-vnc.c:133
412 #: ../src/virt-viewer-display-vnc.c:134
429413 msgid "VNC does not provide GUID"
430414 msgstr ""
431415
416 #: ../src/virt-viewer-file-transfer-dialog.c:152
417 msgid "Cancel"
418 msgstr ""
419
420 #: ../src/virt-viewer-file-transfer-dialog.c:163
421 msgid "File Transfers"
422 msgstr ""
423
432424 #: ../src/virt-viewer-main.c:38
433 #, c-format
434 msgid "%s version %s\n"
435 msgstr "%s பதிப்பு %s\n"
436
437 #: ../src/virt-viewer-main.c:62
438 msgid "Direct connection with no automatic tunnels"
439 msgstr "தானியக்க டனல்கள் இல்லாமல் நேரடி இணைப்பு"
440
441 #: ../src/virt-viewer-main.c:64
442 msgid "Attach to the local display using libvirt"
443 msgstr "libvirt-ஐ பயன்படுத்தி உள்ளமை காட்சிக்கு இணைக்கவும்"
444
445 #: ../src/virt-viewer-main.c:66
446 msgid "Connect to hypervisor"
447 msgstr "ஹைபர்வைசருடன் இணைக்கவும்"
448
449 #: ../src/virt-viewer-main.c:68
450 msgid "Wait for domain to start"
451 msgstr "டொமைன் துவக்க காத்திருக்கவும்"
452
453 #: ../src/virt-viewer-main.c:70
454 msgid "Reconnect to domain upon restart"
455 msgstr "மறுதுவக்கத்தின்ப்படி டொமைனை மறுஇணைக்கவும்"
456
457 #: ../src/virt-viewer-main.c:77
458425 msgid "Virt Viewer"
459426 msgstr "Virt Viewer"
460427
461 #: ../src/virt-viewer-main.c:80
462 #, c-format
463 msgid "Run '%s --help' to see a full list of available command line options"
464 msgstr ""
465 "கிடைக்கும் கட்டளை வரி விருப்பங்களின் முழு பட்டியலைக் காண '%s --help' கட்டளையை இயக்கவும்"
466
467 #: ../src/virt-viewer-main.c:86
468 msgid "Virtual machine graphical console"
469 msgstr "மெய்நிகர் கணினி வரைவியல் "
470
471 #: ../src/virt-viewer-main.c:107
472 #, c-format
473 msgid ""
474 "\n"
475 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
476 "\n"
477 "%s\n"
478 "\n"
479 msgstr ""
480
481 #: ../src/virt-viewer-main.c:112
482 #, c-format
483 msgid ""
484 "\n"
485 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
486 "\n"
487 msgstr ""
488
489 #: ../src/virt-viewer-session-spice.c:694
428 #: ../src/virt-viewer-session-spice.c:705
490429 msgid "Invalid password"
491430 msgstr ""
492431
493432 #. Create the widgets
494 #: ../src/virt-viewer-session-spice.c:786
433 #: ../src/virt-viewer-session-spice.c:797
495434 msgid "Select USB devices for redirection"
496435 msgstr "மறுதிசையிட USB சாதனங்களை தேர்ந்தெடுக்கவும்"
497436
498 #: ../src/virt-viewer-session-vnc.c:153
437 #: ../src/virt-viewer-session-spice.c:799
438 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
439 msgid "_Close"
440 msgstr ""
441
442 #: ../src/virt-viewer-session-vnc.c:156
499443 #, c-format
500444 msgid "Unsupported authentication type %d"
501445 msgstr "துணைபுரியாத அங்கீகார வகை %d"
508452 msgid "No virtual machine was chosen"
509453 msgstr ""
510454
511 #: ../src/virt-viewer-window.c:537
455 #: ../src/virt-viewer-window.c:534
512456 msgid "Ctrl+Alt+_Del"
513457 msgstr "Ctrl+Alt+_Del"
514458
515 #: ../src/virt-viewer-window.c:538
459 #: ../src/virt-viewer-window.c:535
516460 msgid "Ctrl+Alt+_Backspace"
517461 msgstr "Ctrl+Alt+_Backspace"
518462
519 #: ../src/virt-viewer-window.c:540
463 #: ../src/virt-viewer-window.c:537
520464 msgid "Ctrl+Alt+F_1"
521465 msgstr "Ctrl+Alt+F_1"
522466
523 #: ../src/virt-viewer-window.c:541
467 #: ../src/virt-viewer-window.c:538
524468 msgid "Ctrl+Alt+F_2"
525469 msgstr "Ctrl+Alt+F_2"
526470
527 #: ../src/virt-viewer-window.c:542
471 #: ../src/virt-viewer-window.c:539
528472 msgid "Ctrl+Alt+F_3"
529473 msgstr "Ctrl+Alt+F_3"
530474
531 #: ../src/virt-viewer-window.c:543
475 #: ../src/virt-viewer-window.c:540
532476 msgid "Ctrl+Alt+F_4"
533477 msgstr "Ctrl+Alt+F_4"
534478
535 #: ../src/virt-viewer-window.c:544
479 #: ../src/virt-viewer-window.c:541
536480 msgid "Ctrl+Alt+F_5"
537481 msgstr "Ctrl+Alt+F_5"
538482
539 #: ../src/virt-viewer-window.c:545
483 #: ../src/virt-viewer-window.c:542
540484 msgid "Ctrl+Alt+F_6"
541485 msgstr "Ctrl+Alt+F_6"
542486
543 #: ../src/virt-viewer-window.c:546
487 #: ../src/virt-viewer-window.c:543
544488 msgid "Ctrl+Alt+F_7"
545489 msgstr "Ctrl+Alt+F_7"
546490
547 #: ../src/virt-viewer-window.c:547
491 #: ../src/virt-viewer-window.c:544
548492 msgid "Ctrl+Alt+F_8"
549493 msgstr "Ctrl+Alt+F_8"
550494
551 #: ../src/virt-viewer-window.c:548
495 #: ../src/virt-viewer-window.c:545
552496 msgid "Ctrl+Alt+F_9"
553497 msgstr "Ctrl+Alt+F_9"
554498
555 #: ../src/virt-viewer-window.c:549
499 #: ../src/virt-viewer-window.c:546
556500 msgid "Ctrl+Alt+F1_0"
557501 msgstr "Ctrl+Alt+F1_0"
558502
559 #: ../src/virt-viewer-window.c:550
503 #: ../src/virt-viewer-window.c:547
560504 msgid "Ctrl+Alt+F11"
561505 msgstr "Ctrl+Alt+F11"
562506
563 #: ../src/virt-viewer-window.c:551
507 #: ../src/virt-viewer-window.c:548
564508 msgid "Ctrl+Alt+F12"
565509 msgstr "Ctrl+Alt+F12"
566510
567 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
511 #: ../src/virt-viewer-window.c:919
512 msgid "_Save"
513 msgstr ""
514
515 #: ../src/virt-viewer-window.c:927
568516 msgid "Screenshot"
569517 msgstr "திரைப்பிடிப்பு"
570518
571 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
519 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
572520 msgid "Unknown"
573521 msgstr ""
574522
575 #: ../src/virt-viewer-window.c:1062
523 #: ../src/virt-viewer-window.c:1071
576524 msgid "Disconnect"
577525 msgstr "துண்டி"
578526
579 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
580 #: ../src/virt-viewer.xml.h:3
527 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
581528 msgid "USB device selection"
582529 msgstr "USB சாதன தேர்வு"
583530
584 #: ../src/virt-viewer-window.c:1081
531 #: ../src/virt-viewer-window.c:1089
585532 msgid "Send key combination"
586533 msgstr "விசைச் சேர்க்கையை அனுப்பு"
587534
588 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
535 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
589536 msgid "Leave fullscreen"
590537 msgstr "முழுத்திரையை விட்டுவிலகு"
591538
592 #: ../src/virt-viewer-window.c:1173
539 #: ../src/virt-viewer-window.c:1175
593540 msgid "Ctrl+Alt"
594541 msgstr "Ctrl+Alt"
595542
596 #: ../src/virt-viewer-window.c:1176
543 #: ../src/virt-viewer-window.c:1178
597544 #, c-format
598545 msgid "(Press %s to release pointer)"
599546 msgstr "(சுட்டியை விடுவிக்க %s ஐ அழுத்தவும்)"
602549 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
603550 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
604551 #.
605 #: ../src/virt-viewer-window.c:1187
552 #: ../src/virt-viewer-window.c:1189
606553 #, c-format
607554 msgid "%s%s%s - %s"
608555 msgstr "%s%s%s - %s"
609556
610557 #. translators: <space>
611 #: ../src/virt-viewer-window.c:1191
558 #: ../src/virt-viewer-window.c:1193
612559 msgid " "
613560 msgstr " "
614561
615 #: ../src/virt-viewer-file.c:825
562 #: ../src/virt-viewer-file.c:843
616563 #, c-format
617564 msgid ""
618565 "At least %s version %s is required to setup this connection, see %s for "
619566 "details"
620567 msgstr ""
621568
622 #: ../src/virt-viewer-file.c:833
569 #: ../src/virt-viewer-file.c:851
623570 #, c-format
624571 msgid "At least %s version %s is required to setup this connection"
625572 msgstr "இந்த இணைப்பை அமைக்க குறைந்தது %s பதிப்பு %s தேவை"
626573
627 #: ../src/virt-viewer.c:163
574 #: ../src/virt-viewer.c:90
575 msgid "Direct connection with no automatic tunnels"
576 msgstr "தானியக்க டனல்கள் இல்லாமல் நேரடி இணைப்பு"
577
578 #: ../src/virt-viewer.c:92
579 msgid "Attach to the local display using libvirt"
580 msgstr "libvirt-ஐ பயன்படுத்தி உள்ளமை காட்சிக்கு இணைக்கவும்"
581
582 #: ../src/virt-viewer.c:94
583 msgid "Connect to hypervisor"
584 msgstr "ஹைபர்வைசருடன் இணைக்கவும்"
585
586 #: ../src/virt-viewer.c:96
587 msgid "Wait for domain to start"
588 msgstr "டொமைன் துவக்க காத்திருக்கவும்"
589
590 #: ../src/virt-viewer.c:98
591 msgid "Reconnect to domain upon restart"
592 msgstr "மறுதுவக்கத்தின்ப்படி டொமைனை மறுஇணைக்கவும்"
593
594 #: ../src/virt-viewer.c:105
595 msgid "Virtual machine graphical console"
596 msgstr "மெய்நிகர் கணினி வரைவியல் "
597
598 #: ../src/virt-viewer.c:124
599 #, c-format
600 msgid ""
601 "\n"
602 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
603 "\n"
604 msgstr ""
605
606 #: ../src/virt-viewer.c:136
607 #, c-format
608 msgid ""
609 "\n"
610 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
611 "\n"
612 msgstr ""
613
614 #: ../src/virt-viewer.c:250
628615 msgid "Waiting for guest domain to re-start"
629616 msgstr "மறுதுவக்க விருந்தினர் டொமைனுக்காக காத்திருக்கிறது"
630617
631 #: ../src/virt-viewer.c:409
618 #: ../src/virt-viewer.c:496
632619 #, c-format
633620 msgid "Cannot determine the graphic type for the guest %s"
634621 msgstr "விருந்தினர் %s-க்கு வரைகலை வகையை வரையறுக்க முடியாது"
635622
636 #: ../src/virt-viewer.c:448
623 #: ../src/virt-viewer.c:535
637624 #, c-format
638625 msgid "Cannot determine the host for the guest %s"
639626 msgstr "விருந்தினர் %s-க்கு புரவலனை வரையறுக்க முடியாது"
640627
641 #: ../src/virt-viewer.c:476
628 #: ../src/virt-viewer.c:563
642629 #, c-format
643630 msgid "Guest '%s' is not reachable"
644631 msgstr ""
645632
646 #: ../src/virt-viewer.c:697
633 #: ../src/virt-viewer.c:784
647634 #, c-format
648635 msgid "Virtual machine %s is not running"
649636 msgstr ""
650637
651 #: ../src/virt-viewer.c:720
638 #: ../src/virt-viewer.c:807
652639 msgid "Waiting for libvirt to start"
653640 msgstr "libvirt தொடங்கக் காத்திருக்கிறது"
654641
655 #: ../src/virt-viewer.c:724
642 #: ../src/virt-viewer.c:811
656643 msgid "Finding guest domain"
657644 msgstr "விருந்தினர் டொமைனை தேடுகிறது"
658645
659 #: ../src/virt-viewer.c:728
646 #: ../src/virt-viewer.c:815
660647 msgid "Waiting for guest domain to be created"
661648 msgstr "விருந்தினர் டொமைன் உருவாக்க காத்திருக்கிறது"
662649
663 #: ../src/virt-viewer.c:750
650 #: ../src/virt-viewer.c:837
664651 msgid "Checking guest domain status"
665652 msgstr "விருந்தினர் நிலையை சரிபார்க்கிறது"
666653
667 #: ../src/virt-viewer.c:753
654 #: ../src/virt-viewer.c:840
668655 msgid "Cannot get guest state"
669656 msgstr ""
670657
671 #: ../src/virt-viewer.c:759
658 #: ../src/virt-viewer.c:846
672659 msgid "Waiting for guest domain to start"
673660 msgstr "துவக்க விருந்தினர் டொமைனுக்காக காத்திருக்கிறது"
674661
675 #: ../src/virt-viewer.c:863
662 #: ../src/virt-viewer.c:950
676663 #, c-format
677664 msgid "Unable to connect to libvirt with URI: %s."
678665 msgstr ""
679666
680 #: ../src/virt-viewer.c:864
667 #: ../src/virt-viewer.c:951
681668 msgid "[none]"
682669 msgstr "[ஒன்றுமில்லாத]"
683670
684 #: ../src/virt-viewer.c:871
671 #: ../src/virt-viewer.c:958
685672 msgid "Authentication failed."
686673 msgstr ""
687674
688 #: ../src/virt-viewer.c:931
675 #: ../src/virt-viewer.c:1018
689676 msgid "Failed to connect: "
690677 msgstr ""
691678
696683 #. * indent-tabs-mode: nil
697684 #. * End:
698685 #.
699 #: ../src/virt-viewer.xml.h:1
686 #: ../src/resources/ui/virt-viewer.ui.h:1
700687 msgid "_File"
701688 msgstr "கோப்பு (_F)"
702689
703 #: ../src/virt-viewer.xml.h:4
690 #: ../src/resources/ui/virt-viewer.ui.h:2
691 msgid "_Screenshot"
692 msgstr ""
693
694 #: ../src/resources/ui/virt-viewer.ui.h:3
695 msgid "_USB device selection"
696 msgstr ""
697
698 #: ../src/resources/ui/virt-viewer.ui.h:4
704699 msgid "Smartcard insertion"
705700 msgstr "ஸ்மார்ட் கார்டு நுழைத்தல்"
706701
707 #: ../src/virt-viewer.xml.h:5
702 #: ../src/resources/ui/virt-viewer.ui.h:5
708703 msgid "Smartcard removal"
709704 msgstr "ஸ்மார்ட் கார்டு நீக்கல்"
710705
711 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
712 msgid "Preferences"
713 msgstr ""
714
715 #: ../src/virt-viewer.xml.h:7
706 #: ../src/resources/ui/virt-viewer.ui.h:6
707 msgid "_Preferences"
708 msgstr ""
709
710 #: ../src/resources/ui/virt-viewer.ui.h:7
711 msgid "_Quit"
712 msgstr ""
713
714 #: ../src/resources/ui/virt-viewer.ui.h:8
716715 msgid "_View"
717716 msgstr "பார்வை (_V)"
718717
719 #: ../src/virt-viewer.xml.h:8
720 msgid "Full screen"
721 msgstr "முழுத்திரை"
722
723 #: ../src/virt-viewer.xml.h:9
718 #: ../src/resources/ui/virt-viewer.ui.h:9
719 msgid "_Full screen"
720 msgstr ""
721
722 #: ../src/resources/ui/virt-viewer.ui.h:10
724723 msgid "_Zoom"
725724 msgstr "அளவிடு (_Z)"
726725
727 #: ../src/virt-viewer.xml.h:10
728 msgid "Displays"
729 msgstr "காட்சிகள்"
730
731 #: ../src/virt-viewer.xml.h:11
726 #: ../src/resources/ui/virt-viewer.ui.h:11
727 msgid "Zoom _In"
728 msgstr ""
729
730 #: ../src/resources/ui/virt-viewer.ui.h:12
731 msgid "Zoom _Out"
732 msgstr ""
733
734 #: ../src/resources/ui/virt-viewer.ui.h:13
735 msgid "_Normal Size"
736 msgstr ""
737
738 #: ../src/resources/ui/virt-viewer.ui.h:14
739 msgid "_Displays"
740 msgstr ""
741
742 #: ../src/resources/ui/virt-viewer.ui.h:15
732743 msgid "Release cursor"
733744 msgstr "கர்சரை விடு"
734745
735 #: ../src/virt-viewer.xml.h:12
746 #: ../src/resources/ui/virt-viewer.ui.h:16
736747 msgid "_Send key"
737748 msgstr "விசையை அனுப்பு (_S)"
738749
739 #: ../src/virt-viewer.xml.h:13
750 #: ../src/resources/ui/virt-viewer.ui.h:17
740751 msgid "_Help"
741752 msgstr "உதவி (_H)"
742753
743 #: ../src/virt-viewer.xml.h:14
754 #: ../src/resources/ui/virt-viewer.ui.h:18
744755 msgid "_Guest Details"
745756 msgstr ""
746757
747 #: ../src/virt-viewer-guest-details.xml.h:1
758 #: ../src/resources/ui/virt-viewer.ui.h:19
759 msgid "_About"
760 msgstr ""
761
762 #: ../src/resources/ui/virt-viewer.ui.h:20
763 msgid "_Change CD"
764 msgstr ""
765
766 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
748767 msgid "Guest Details"
749768 msgstr ""
750769
751 #: ../src/virt-viewer-guest-details.xml.h:2
770 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
752771 msgid "Name:"
753772 msgstr ""
754773
755 #: ../src/virt-viewer-guest-details.xml.h:3
774 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
756775 msgid "GUID:"
757776 msgstr ""
758777
759 #: ../src/virt-viewer-vm-connection.xml.h:1
778 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
760779 msgid "Choose a virtual machine"
761780 msgstr ""
762781
763 #: ../src/virt-viewer-vm-connection.xml.h:2
782 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
764783 msgid "Name"
765784 msgstr ""
766785
767 #: ../src/virt-viewer-vm-connection.xml.h:3
786 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
768787 msgid "Available virtual machines"
769788 msgstr ""
770789
771 #: ../src/virt-viewer-preferences.xml.h:2
790 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
791 msgid "Preferences"
792 msgstr ""
793
794 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
772795 msgid "Folder sharing"
773796 msgstr ""
774797
775 #: ../src/virt-viewer-preferences.xml.h:3
798 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
776799 msgid "Share folder"
777800 msgstr ""
778801
779 #: ../src/virt-viewer-preferences.xml.h:4
802 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
780803 msgid "Read-only"
781804 msgstr ""
782805
783 #: ../src/virt-viewer-preferences.xml.h:5
806 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
784807 msgid "Spice"
785808 msgstr ""
+300
-275
po/te.po less more
1010 msgstr ""
1111 "Project-Id-Version: PACKAGE VERSION\n"
1212 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
13 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1414 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1515 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1616 "Language-Team: Telugu (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
24
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
23 "X-Generator: Zanata 3.8.4\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
2627 msgid "Remote Viewer"
2728 msgstr "దూరస్థ దర్శని"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 msgid ""
36 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
37 "time it supports guest OS using the VNC or SPICE protocols. Further "
38 "protocols may be supported in the future as user demand dictates. The viewer "
39 "can connect directly to both local and remotely hosted guest OS, optionally "
40 "using SSL/TLS encryption."
41 msgstr ""
2842
2943 #: ../data/remote-viewer.desktop.in.h:2
3044 msgid "Access remote desktops"
3448 msgid "Virt-Viewer connection file"
3549 msgstr "Virt-Viewer నియంత్రిక ఫైల్"
3650
37 #: ../src/gbinding.c:637
38 msgid "Source"
39 msgstr "మూలం"
40
41 #: ../src/gbinding.c:638
42 msgid "The source of the binding"
43 msgstr "బందనం యొక్క మూలం"
44
45 #: ../src/gbinding.c:652
46 msgid "Target"
47 msgstr "లక్ష్యం"
48
49 #: ../src/gbinding.c:653
50 msgid "The target of the binding"
51 msgstr "బందనం యొక్క లక్ష్యం"
52
53 #: ../src/gbinding.c:668
54 msgid "Source Property"
55 msgstr "మూలపు లక్షణం"
56
57 #: ../src/gbinding.c:669
58 msgid "The property on the source to bind"
59 msgstr "బందనం చేయుటకు మూలంపైన లక్షణం"
60
61 #: ../src/gbinding.c:684
62 msgid "Target Property"
63 msgstr "లక్ష్యం లక్షణం"
64
65 #: ../src/gbinding.c:685
66 msgid "The property on the target to bind"
67 msgstr "బందనం చేయుటకు లక్ష్యం పైని లక్షణం"
68
69 #: ../src/gbinding.c:699
70 msgid "Flags"
71 msgstr "ఫ్లాగ్స్"
72
73 #: ../src/gbinding.c:700
74 msgid "The binding flags"
75 msgstr "బందనం ఫ్లాగ్స్"
76
77 #: ../src/remote-viewer-main.c:50
78 #, c-format
79 msgid "remote-viewer version %s"
80 msgstr ""
81
82 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
83 msgid "Display version information"
84 msgstr "వర్షన్ సమాచారం ప్రదర్శించు"
85
86 #: ../src/remote-viewer-main.c:105
51 #: ../src/remote-viewer.c:139
8752 msgid "Set window title"
8853 msgstr "విండోలో శీర్షిక సెట్ చెయ్యండి"
8954
90 #: ../src/remote-viewer-main.c:108
55 #: ../src/remote-viewer.c:142
9156 msgid "Open connection using Spice controller communication"
9257 msgstr "స్పైస్ కంట్రోలర్ కమ్యునికేషన్ వుపయోగించి అనుసంధానం తెరువుము"
9358
94 #: ../src/remote-viewer-main.c:120
59 #: ../src/remote-viewer.c:150
9560 msgid "Remote viewer client"
9661 msgstr ""
9762
98 #: ../src/remote-viewer-main.c:138
99 #, c-format
100 msgid ""
101 "%s\n"
102 "Run '%s --help' to see a full list of available command line options\n"
103 msgstr ""
104 "%s\n"
105 "అందుబాటులోని కమాండ్ లైన్ ఐచ్చికాల జాబితా కొరకు '%s --help' నడుపుము\n"
106
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr "దోషం: స్పైస్ నియంత్రణి వుపయోగించునప్పుడు అదనపు ఆర్గుమెంట్లు యీయబడెను\n"
111
112 #: ../src/remote-viewer-main.c:156
113 #, c-format
114 msgid "Error: can't handle multiple URIs\n"
115 msgstr "దోషం: బహుళ URIలను సంభాలించలేదు\n"
116
117 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
63 #: ../src/remote-viewer.c:175
64 #, c-format
65 msgid ""
66 "\n"
67 "Error: can't handle multiple URIs\n"
68 "\n"
69 msgstr ""
70
71 #: ../src/remote-viewer.c:187
72 #, c-format
73 msgid ""
74 "\n"
75 "Error: extra arguments given while using Spice controller\n"
76 "\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
80 #, c-format
81 msgid "Run '%s --help' to see a full list of available command line options\n"
82 msgstr ""
83
84 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11885 msgid "Failed to initiate connection"
11986 msgstr "అనుసంధానం సిద్దపరచుటకు విఫలమైంది"
12087
121 #: ../src/remote-viewer.c:313
88 #: ../src/remote-viewer.c:297
12289 msgid "Display disabled by controller"
12390 msgstr "నియంత్రికచే ప్రదర్శన అచేతనమైంది"
12491
125 #: ../src/remote-viewer.c:609
92 #: ../src/remote-viewer.c:593
12693 #, c-format
12794 msgid "Controller connection failed: %s"
12895 msgstr "నియంత్రిక అనుసంధానం విఫలమైంది: %s"
12996
130 #: ../src/remote-viewer.c:755
131 msgid "_Change CD"
132 msgstr ""
133
134 #: ../src/remote-viewer.c:855
97 #: ../src/remote-viewer.c:848
13598 msgid "failed to parse ovirt uri"
13699 msgstr ""
137100
138 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
101 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
139102 msgid "Authentication was cancelled"
140103 msgstr ""
141104
142 #: ../src/remote-viewer.c:900
105 #: ../src/remote-viewer.c:893
143106 #, c-format
144107 msgid "oVirt VM %s is not running"
145108 msgstr ""
146109
147 #: ../src/remote-viewer.c:914
110 #: ../src/remote-viewer.c:907
148111 #, c-format
149112 msgid "oVirt VM %s has no display"
150113 msgstr ""
151114
152 #: ../src/remote-viewer.c:940
115 #: ../src/remote-viewer.c:933
153116 #, c-format
154117 msgid "oVirt VM %s has no host information"
155118 msgstr ""
156119
157 #: ../src/remote-viewer.c:951
120 #: ../src/remote-viewer.c:944
158121 #, c-format
159122 msgid "oVirt VM %s has unknown display type: %d"
160123 msgstr ""
161124
162 #: ../src/remote-viewer.c:1094
125 #: ../src/remote-viewer.c:1115
163126 msgid "Setting up Spice session..."
164127 msgstr "స్పైస్ సెషన్ అమర్చుచున్నది..."
165128
166 #: ../src/remote-viewer.c:1102
129 #: ../src/remote-viewer.c:1123
167130 msgid "No connection was chosen"
168131 msgstr ""
169132
170 #: ../src/remote-viewer.c:1120
133 #: ../src/remote-viewer.c:1141
171134 #, c-format
172135 msgid "Invalid file %s: "
173136 msgstr ""
174137
175 #: ../src/remote-viewer.c:1128
138 #: ../src/remote-viewer.c:1149
176139 msgid "Cannot determine the connection type from URI"
177140 msgstr "URI నుండి అనుసంధానం రకంను నిర్థారించలేము"
178141
179 #: ../src/remote-viewer.c:1134
142 #: ../src/remote-viewer.c:1155
180143 msgid "Couldn't open oVirt session: "
181144 msgstr ""
182145
187150 #. * indent-tabs-mode: nil
188151 #. * End:
189152 #.
190 #: ../src/remote-viewer-connect.xml.h:1
153 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
191154 msgid "Connection details"
192155 msgstr "అనుసంధానం వివరాలు"
193156
194 #: ../src/remote-viewer-connect.xml.h:2
195 msgid "Connection Address"
196 msgstr ""
197
198 #: ../src/remote-viewer-connect.xml.h:3
157 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 msgid "Connection _Address"
159 msgstr ""
160
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
199162 msgid "For example, spice://foo.example.org:5900"
200163 msgstr ""
201164
202 #: ../src/remote-viewer-connect.xml.h:4
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
203166 msgid "Recent connections"
204167 msgstr ""
205168
206 #: ../src/remote-viewer-connect.xml.h:5
207 msgid "Cancel"
208 msgstr ""
209
210 #: ../src/remote-viewer-connect.xml.h:6
211 msgid "Connect"
212 msgstr ""
213
214 #: ../src/virt-viewer-about.xml.h:1
215 msgid "About Glade"
216 msgstr "గ్లేడ్ గురించి"
217
218 #: ../src/virt-viewer-about.xml.h:2
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
170 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
172 msgid "_Cancel"
173 msgstr ""
174
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
176 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 msgid "C_onnect"
178 msgstr ""
179
180 #: ../src/resources/ui/virt-viewer-about.ui.h:1
181 msgid "About Virt-Viewer"
182 msgstr ""
183
184 #: ../src/resources/ui/virt-viewer-about.ui.h:2
219185 msgid ""
220186 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
221187 "Copyright (C) 2007-2014 Red Hat, Inc."
222188 msgstr ""
223189
224 #: ../src/virt-viewer-about.xml.h:4
190 #: ../src/resources/ui/virt-viewer-about.ui.h:4
225191 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
226192 msgstr "GTK-VNC, SPICE-GTK మరియు libvirtతో నిర్మించబడిన వొక రిమోట్ డెస్కుటాప్ క్లైంట్"
227193
228 #: ../src/virt-viewer-about.xml.h:5
194 #: ../src/resources/ui/virt-viewer-about.ui.h:5
229195 msgid "virt-manager.org"
230196 msgstr "virt-manager.org"
231197
232 #: ../src/virt-viewer-about.xml.h:6
198 #: ../src/resources/ui/virt-viewer-about.ui.h:6
233199 msgid ""
234200 "This program is free software; you can redistribute it and/or modify\n"
235201 "it under the terms of the GNU General Public License as published by\n"
259225 "పొందకపోతే, Free Software Foundation, Inc., Temple Place,\n"
260226 "Suite 330, Boston, MA 02111-1307 USAకు వ్రాయండి.\n"
261227
262 #: ../src/virt-viewer-about.xml.h:20
228 #: ../src/resources/ui/virt-viewer-about.ui.h:20
263229 msgid "The Fedora Translation Team"
264230 msgstr "Fedora అనువాద సమూహం"
265231
266 #: ../src/virt-viewer-app.c:526
232 #: ../src/virt-viewer-app.c:458
267233 msgid "Do you want to close the session?"
268234 msgstr "సెషన్ మూసివేయాలనుకుంటున్నారా ?"
269235
270 #: ../src/virt-viewer-app.c:528
236 #: ../src/virt-viewer-app.c:460
271237 msgid "Do not ask me again"
272238 msgstr "నన్ను మళ్ళీ అడగవద్దు"
273239
274 #: ../src/virt-viewer-app.c:1008
240 #: ../src/virt-viewer-app.c:948
275241 #, c-format
276242 msgid "Waiting for display %d..."
277243 msgstr "ప్రదర్శన %d కొరకు వేచివుంది..."
278244
279 #: ../src/virt-viewer-app.c:1117
245 #: ../src/virt-viewer-app.c:1055
280246 #, c-format
281247 msgid "Unsupported graphic type '%s'"
282248 msgstr ""
283249
284 #: ../src/virt-viewer-app.c:1200
250 #: ../src/virt-viewer-app.c:1138
285251 msgid "Connect to ssh failed."
286252 msgstr "ssh క్షేత్రముకు అనుసంధానించు."
287253
288 #: ../src/virt-viewer-app.c:1202
254 #: ../src/virt-viewer-app.c:1140
289255 msgid "Can't connect to channel, SSH only supported."
290256 msgstr "చానల్‌కు అనుసంధానం కాలేదు, SSH కు మాత్రమే తోడ్పాటు నిస్తోంది."
291257
292 #: ../src/virt-viewer-app.c:1214
258 #: ../src/virt-viewer-app.c:1152
293259 msgid "Connect to channel unsupported."
294260 msgstr "చానల్ అనుసంధానంకు తోడ్పాటులేదు."
295261
296 #: ../src/virt-viewer-app.c:1276
262 #: ../src/virt-viewer-app.c:1214
297263 msgid "Display can only be attached through libvirt with --attach"
298264 msgstr ""
299265
300 #: ../src/virt-viewer-app.c:1299
266 #: ../src/virt-viewer-app.c:1237
301267 msgid "Connecting to graphic server"
302268 msgstr "గ్రాఫిక్ సేవికకు అనుసంధానమౌతోంది"
303269
304 #: ../src/virt-viewer-app.c:1398
270 #: ../src/virt-viewer-app.c:1336
305271 msgid "Guest domain has shutdown"
306272 msgstr "అతిథి డొమైన్ మూసివేసింది"
307273
308 #: ../src/virt-viewer-app.c:1459
274 #: ../src/virt-viewer-app.c:1397
309275 msgid "Connected to graphic server"
310276 msgstr "గ్రాఫిక్ సేవికకు అనుసంధానమైంది"
311277
312 #: ../src/virt-viewer-app.c:1486
278 #: ../src/virt-viewer-app.c:1424
313279 #, c-format
314280 msgid "Unable to connect to the graphic server %s"
315281 msgstr "గ్రాఫిక్ సేవిక %sకు అనుసంధానం కాలేక పోయింది"
316282
317 #: ../src/virt-viewer-app.c:1512
283 #: ../src/virt-viewer-app.c:1450
318284 #, c-format
319285 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
320286 msgstr ""
321287
322 #: ../src/virt-viewer-app.c:1525
288 #: ../src/virt-viewer-app.c:1463
323289 #, c-format
324290 msgid "Unable to authenticate with remote desktop server: %s"
325291 msgstr "రిమోట్ డెస్కుటాప్ సేవికతో ధృవీకరించలేక పోయింది: %s"
326292
327 #: ../src/virt-viewer-app.c:1533
293 #: ../src/virt-viewer-app.c:1471
328294 #, c-format
329295 msgid "USB redirection error: %s"
330296 msgstr "USB రీడైరెక్షన్ దోషం: %s"
331297
332 #: ../src/virt-viewer-app.c:1786
298 #: ../src/virt-viewer-app.c:1805
333299 #, c-format
334300 msgid "Zoom level must be within %d-%d\n"
335301 msgstr "జూమ్ స్థాయి తప్పకుండా %d-%d మధ్యన వుండాలి\n"
336302
337 #: ../src/virt-viewer-app.c:2296
338 #, c-format
339 msgid "Display %d"
340 msgstr "%d ప్రదర్శించు"
341
342 #: ../src/virt-viewer-app.c:2552
303 #: ../src/virt-viewer-app.c:1858
304 #, c-format
305 msgid "%s\n"
306 msgstr ""
307
308 #: ../src/virt-viewer-app.c:1868
309 #, c-format
310 msgid "%s version %s"
311 msgstr ""
312
313 #: ../src/virt-viewer-app.c:2292
314 #, c-format
315 msgid "Display _%d"
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:2548
343319 #, c-format
344320 msgid "Invalid kiosk-quit argument: %s"
345321 msgstr "చెల్లని kiosk-quit ఆర్గుమెంట్: %s"
322
323 #: ../src/virt-viewer-app.c:2559
324 msgid "Display version information"
325 msgstr "వర్షన్ సమాచారం ప్రదర్శించు"
346326
347327 #: ../src/virt-viewer-app.c:2561
348328 msgid "Zoom level of window, in percentage"
376356 msgid "Display debugging information"
377357 msgstr "డీబగ్గింగ్ సమాచారమును ప్రదర్శించుము"
378358
379 #: ../src/virt-viewer-auth.c:88
359 #: ../src/virt-viewer-auth.c:89
380360 #, c-format
381361 msgid ""
382362 "Authentication is required for the %s connection to:\n"
385365 "\n"
386366 msgstr ""
387367
388 #: ../src/virt-viewer-auth.c:92
368 #: ../src/virt-viewer-auth.c:93
389369 #, c-format
390370 msgid "Authentication is required for the %s connection:\n"
391371 msgstr ""
397377 #. * indent-tabs-mode: nil
398378 #. * End:
399379 #.
400 #: ../src/virt-viewer-auth.xml.h:1
380 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
401381 msgid "Authentication required"
402382 msgstr "ధృవీకరణము అవసరమైంది"
403383
404 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
384 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
385 msgid "_OK"
386 msgstr ""
387
388 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
389 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
405390 msgid "label"
406391 msgstr "లేబుల్"
407392
408 #: ../src/virt-viewer-auth.xml.h:3
393 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409394 msgid "Password:"
410395 msgstr "సంకేతపదము:"
411396
412 #: ../src/virt-viewer-auth.xml.h:4
397 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413398 msgid "Username:"
414399 msgstr "వినియోగదారినామము:"
415400
416 #: ../src/virt-viewer-auth.xml.h:5
401 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417402 msgid "Show password"
418403 msgstr ""
419404
420 #: ../src/virt-viewer-display-vnc.c:133
405 #: ../src/virt-viewer-display-vnc.c:134
421406 msgid "VNC does not provide GUID"
422407 msgstr ""
423408
409 #: ../src/virt-viewer-file-transfer-dialog.c:152
410 msgid "Cancel"
411 msgstr ""
412
413 #: ../src/virt-viewer-file-transfer-dialog.c:163
414 msgid "File Transfers"
415 msgstr ""
416
424417 #: ../src/virt-viewer-main.c:38
425 #, c-format
426 msgid "%s version %s\n"
427 msgstr "%s వర్షన్ %s\n"
428
429 #: ../src/virt-viewer-main.c:62
430 msgid "Direct connection with no automatic tunnels"
431 msgstr "ఎటువంటి స్వయంచాలక టన్నెల్సు లేకుండా నేరుగా అనుసంధానము"
432
433 #: ../src/virt-viewer-main.c:64
434 msgid "Attach to the local display using libvirt"
435 msgstr "libvirt వుపయోగించి స్థానిక ప్రదర్శనకు అనుబందించు"
436
437 #: ../src/virt-viewer-main.c:66
438 msgid "Connect to hypervisor"
439 msgstr "హైపర్విజర్‌కు అనుసంధానమవ్వు"
440
441 #: ../src/virt-viewer-main.c:68
442 msgid "Wait for domain to start"
443 msgstr "ప్రారంభమగుటకు డొమైన్ కొరకు వేచివుండుము"
444
445 #: ../src/virt-viewer-main.c:70
446 msgid "Reconnect to domain upon restart"
447 msgstr "పునఃప్రారంభముపై డొమైన్‌కు తిరిగిఅనుసంధానమవ్వు"
448
449 #: ../src/virt-viewer-main.c:77
450418 msgid "Virt Viewer"
451419 msgstr "వర్ట్ వ్యూయర్"
452420
453 #: ../src/virt-viewer-main.c:80
454 #, c-format
455 msgid "Run '%s --help' to see a full list of available command line options"
456 msgstr "అందుబాటులోని కమాండ్ లైన్ ఐచ్చికాల జాబితా కొరకు '%s --help' నడుపుము"
457
458 #: ../src/virt-viewer-main.c:86
459 msgid "Virtual machine graphical console"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:107
463 #, c-format
464 msgid ""
465 "\n"
466 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
467 "\n"
468 "%s\n"
469 "\n"
470 msgstr ""
471
472 #: ../src/virt-viewer-main.c:112
473 #, c-format
474 msgid ""
475 "\n"
476 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
477 "\n"
478 msgstr ""
479
480 #: ../src/virt-viewer-session-spice.c:694
421 #: ../src/virt-viewer-session-spice.c:705
481422 msgid "Invalid password"
482423 msgstr ""
483424
484425 #. Create the widgets
485 #: ../src/virt-viewer-session-spice.c:786
426 #: ../src/virt-viewer-session-spice.c:797
486427 msgid "Select USB devices for redirection"
487428 msgstr "రీడైరెక్షన్ కొరకు USB పరికరాలను యెంపికచేయి"
488429
489 #: ../src/virt-viewer-session-vnc.c:153
430 #: ../src/virt-viewer-session-spice.c:799
431 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
432 msgid "_Close"
433 msgstr ""
434
435 #: ../src/virt-viewer-session-vnc.c:156
490436 #, c-format
491437 msgid "Unsupported authentication type %d"
492438 msgstr "మద్దతీయని దృవీకరణ రకము %d"
499445 msgid "No virtual machine was chosen"
500446 msgstr ""
501447
502 #: ../src/virt-viewer-window.c:537
448 #: ../src/virt-viewer-window.c:534
503449 msgid "Ctrl+Alt+_Del"
504450 msgstr "Ctrl+Alt+_Del"
505451
506 #: ../src/virt-viewer-window.c:538
452 #: ../src/virt-viewer-window.c:535
507453 msgid "Ctrl+Alt+_Backspace"
508454 msgstr "Ctrl+Alt+_Backspace"
509455
510 #: ../src/virt-viewer-window.c:540
456 #: ../src/virt-viewer-window.c:537
511457 msgid "Ctrl+Alt+F_1"
512458 msgstr "Ctrl+Alt+F_1"
513459
514 #: ../src/virt-viewer-window.c:541
460 #: ../src/virt-viewer-window.c:538
515461 msgid "Ctrl+Alt+F_2"
516462 msgstr "Ctrl+Alt+F_2"
517463
518 #: ../src/virt-viewer-window.c:542
464 #: ../src/virt-viewer-window.c:539
519465 msgid "Ctrl+Alt+F_3"
520466 msgstr "Ctrl+Alt+F_3"
521467
522 #: ../src/virt-viewer-window.c:543
468 #: ../src/virt-viewer-window.c:540
523469 msgid "Ctrl+Alt+F_4"
524470 msgstr "Ctrl+Alt+F_4"
525471
526 #: ../src/virt-viewer-window.c:544
472 #: ../src/virt-viewer-window.c:541
527473 msgid "Ctrl+Alt+F_5"
528474 msgstr "Ctrl+Alt+F_5"
529475
530 #: ../src/virt-viewer-window.c:545
476 #: ../src/virt-viewer-window.c:542
531477 msgid "Ctrl+Alt+F_6"
532478 msgstr "Ctrl+Alt+F_6"
533479
534 #: ../src/virt-viewer-window.c:546
480 #: ../src/virt-viewer-window.c:543
535481 msgid "Ctrl+Alt+F_7"
536482 msgstr "Ctrl+Alt+F_7"
537483
538 #: ../src/virt-viewer-window.c:547
484 #: ../src/virt-viewer-window.c:544
539485 msgid "Ctrl+Alt+F_8"
540486 msgstr "Ctrl+Alt+F_8"
541487
542 #: ../src/virt-viewer-window.c:548
488 #: ../src/virt-viewer-window.c:545
543489 msgid "Ctrl+Alt+F_9"
544490 msgstr "Ctrl+Alt+F_9"
545491
546 #: ../src/virt-viewer-window.c:549
492 #: ../src/virt-viewer-window.c:546
547493 msgid "Ctrl+Alt+F1_0"
548494 msgstr "Ctrl+Alt+F1_0"
549495
550 #: ../src/virt-viewer-window.c:550
496 #: ../src/virt-viewer-window.c:547
551497 msgid "Ctrl+Alt+F11"
552498 msgstr "Ctrl+Alt+F11"
553499
554 #: ../src/virt-viewer-window.c:551
500 #: ../src/virt-viewer-window.c:548
555501 msgid "Ctrl+Alt+F12"
556502 msgstr "Ctrl+Alt+F12"
557503
558 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
504 #: ../src/virt-viewer-window.c:919
505 msgid "_Save"
506 msgstr ""
507
508 #: ../src/virt-viewer-window.c:927
559509 msgid "Screenshot"
560510 msgstr "స్క్రీన్‌షాట్"
561511
562 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
512 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
563513 msgid "Unknown"
564514 msgstr ""
565515
566 #: ../src/virt-viewer-window.c:1062
516 #: ../src/virt-viewer-window.c:1071
567517 msgid "Disconnect"
568518 msgstr "అననుసంధానించు"
569519
570 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
571 #: ../src/virt-viewer.xml.h:3
520 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
572521 msgid "USB device selection"
573522 msgstr "USB పరికర యెంపిక"
574523
575 #: ../src/virt-viewer-window.c:1081
524 #: ../src/virt-viewer-window.c:1089
576525 msgid "Send key combination"
577526 msgstr "కీ జోడీను పంపు"
578527
579 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
528 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
580529 msgid "Leave fullscreen"
581530 msgstr "నిండుతెర విడు"
582531
583 #: ../src/virt-viewer-window.c:1173
532 #: ../src/virt-viewer-window.c:1175
584533 msgid "Ctrl+Alt"
585534 msgstr "Ctrl+Alt"
586535
587 #: ../src/virt-viewer-window.c:1176
536 #: ../src/virt-viewer-window.c:1178
588537 #, c-format
589538 msgid "(Press %s to release pointer)"
590539 msgstr "(సూచీను విడుదల చేయుటకు %s వత్తండి)"
593542 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
594543 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
595544 #.
596 #: ../src/virt-viewer-window.c:1187
545 #: ../src/virt-viewer-window.c:1189
597546 #, c-format
598547 msgid "%s%s%s - %s"
599548 msgstr "%s%s%s - %s"
600549
601550 #. translators: <space>
602 #: ../src/virt-viewer-window.c:1191
551 #: ../src/virt-viewer-window.c:1193
603552 msgid " "
604553 msgstr " "
605554
606 #: ../src/virt-viewer-file.c:825
555 #: ../src/virt-viewer-file.c:843
607556 #, c-format
608557 msgid ""
609558 "At least %s version %s is required to setup this connection, see %s for "
610559 "details"
611560 msgstr ""
612561
613 #: ../src/virt-viewer-file.c:833
562 #: ../src/virt-viewer-file.c:851
614563 #, c-format
615564 msgid "At least %s version %s is required to setup this connection"
616565 msgstr "కనీసం% s వెర్షన్% s వద్ద ఈ కనెక్షన్ని సెటప్ చెయ్యడానికి అవసరం"
617566
618 #: ../src/virt-viewer.c:163
567 #: ../src/virt-viewer.c:90
568 msgid "Direct connection with no automatic tunnels"
569 msgstr "ఎటువంటి స్వయంచాలక టన్నెల్సు లేకుండా నేరుగా అనుసంధానము"
570
571 #: ../src/virt-viewer.c:92
572 msgid "Attach to the local display using libvirt"
573 msgstr "libvirt వుపయోగించి స్థానిక ప్రదర్శనకు అనుబందించు"
574
575 #: ../src/virt-viewer.c:94
576 msgid "Connect to hypervisor"
577 msgstr "హైపర్విజర్‌కు అనుసంధానమవ్వు"
578
579 #: ../src/virt-viewer.c:96
580 msgid "Wait for domain to start"
581 msgstr "ప్రారంభమగుటకు డొమైన్ కొరకు వేచివుండుము"
582
583 #: ../src/virt-viewer.c:98
584 msgid "Reconnect to domain upon restart"
585 msgstr "పునఃప్రారంభముపై డొమైన్‌కు తిరిగిఅనుసంధానమవ్వు"
586
587 #: ../src/virt-viewer.c:105
588 msgid "Virtual machine graphical console"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:124
592 #, c-format
593 msgid ""
594 "\n"
595 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
596 "\n"
597 msgstr ""
598
599 #: ../src/virt-viewer.c:136
600 #, c-format
601 msgid ""
602 "\n"
603 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
604 "\n"
605 msgstr ""
606
607 #: ../src/virt-viewer.c:250
619608 msgid "Waiting for guest domain to re-start"
620609 msgstr "అతిథి డొమైన్ పునఃప్రారంభం కొరకు వేచివుంది"
621610
622 #: ../src/virt-viewer.c:409
611 #: ../src/virt-viewer.c:496
623612 #, c-format
624613 msgid "Cannot determine the graphic type for the guest %s"
625614 msgstr "అతిథి %s కొరకు గ్రాఫిక్ రకంను నిర్థారించలేక పోయింది"
626615
627 #: ../src/virt-viewer.c:448
616 #: ../src/virt-viewer.c:535
628617 #, c-format
629618 msgid "Cannot determine the host for the guest %s"
630619 msgstr "అతిథి %s కొరకు అతిథేయను నిర్ధారించలేదు"
631620
632 #: ../src/virt-viewer.c:476
621 #: ../src/virt-viewer.c:563
633622 #, c-format
634623 msgid "Guest '%s' is not reachable"
635624 msgstr ""
636625
637 #: ../src/virt-viewer.c:697
626 #: ../src/virt-viewer.c:784
638627 #, c-format
639628 msgid "Virtual machine %s is not running"
640629 msgstr ""
641630
642 #: ../src/virt-viewer.c:720
631 #: ../src/virt-viewer.c:807
643632 msgid "Waiting for libvirt to start"
644633 msgstr "libvirt ప్రారంభించడానికి కోసం వేచి ఉన్నారు"
645634
646 #: ../src/virt-viewer.c:724
635 #: ../src/virt-viewer.c:811
647636 msgid "Finding guest domain"
648637 msgstr "అతిథి డొమైన్‌ కనుగొనుచున్నది"
649638
650 #: ../src/virt-viewer.c:728
639 #: ../src/virt-viewer.c:815
651640 msgid "Waiting for guest domain to be created"
652641 msgstr "అతిథి డొమైన్ సృష్టించబడుటకు వేచివుంది"
653642
654 #: ../src/virt-viewer.c:750
643 #: ../src/virt-viewer.c:837
655644 msgid "Checking guest domain status"
656645 msgstr "అతిథి డొమైన్‌ స్థితి పరిశీలిస్తోంది"
657646
658 #: ../src/virt-viewer.c:753
647 #: ../src/virt-viewer.c:840
659648 msgid "Cannot get guest state"
660649 msgstr ""
661650
662 #: ../src/virt-viewer.c:759
651 #: ../src/virt-viewer.c:846
663652 msgid "Waiting for guest domain to start"
664653 msgstr "అతిథి డొమైన్ ప్రారంభమగుటకు వేచివుంది"
665654
666 #: ../src/virt-viewer.c:863
655 #: ../src/virt-viewer.c:950
667656 #, c-format
668657 msgid "Unable to connect to libvirt with URI: %s."
669658 msgstr ""
670659
671 #: ../src/virt-viewer.c:864
660 #: ../src/virt-viewer.c:951
672661 msgid "[none]"
673662 msgstr "[ఏదీకాదు]"
674663
675 #: ../src/virt-viewer.c:871
664 #: ../src/virt-viewer.c:958
676665 msgid "Authentication failed."
677666 msgstr ""
678667
679 #: ../src/virt-viewer.c:931
668 #: ../src/virt-viewer.c:1018
680669 msgid "Failed to connect: "
681670 msgstr ""
682671
687676 #. * indent-tabs-mode: nil
688677 #. * End:
689678 #.
690 #: ../src/virt-viewer.xml.h:1
679 #: ../src/resources/ui/virt-viewer.ui.h:1
691680 msgid "_File"
692681 msgstr "ఫైలు (_F)"
693682
694 #: ../src/virt-viewer.xml.h:4
683 #: ../src/resources/ui/virt-viewer.ui.h:2
684 msgid "_Screenshot"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:3
688 msgid "_USB device selection"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:4
695692 msgid "Smartcard insertion"
696693 msgstr "స్మార్టుకార్డ్ చొప్పింత"
697694
698 #: ../src/virt-viewer.xml.h:5
695 #: ../src/resources/ui/virt-viewer.ui.h:5
699696 msgid "Smartcard removal"
700697 msgstr "స్మార్టుకార్డ్ తీసివేత"
701698
702 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
703 msgid "Preferences"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:7
699 #: ../src/resources/ui/virt-viewer.ui.h:6
700 msgid "_Preferences"
701 msgstr ""
702
703 #: ../src/resources/ui/virt-viewer.ui.h:7
704 msgid "_Quit"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:8
707708 msgid "_View"
708709 msgstr "దర్శించు (_V)"
709710
710 #: ../src/virt-viewer.xml.h:8
711 msgid "Full screen"
712 msgstr "నిండు తెర"
713
714 #: ../src/virt-viewer.xml.h:9
711 #: ../src/resources/ui/virt-viewer.ui.h:9
712 msgid "_Full screen"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:10
715716 msgid "_Zoom"
716717 msgstr "జూమ్ (_Z)"
717718
718 #: ../src/virt-viewer.xml.h:10
719 msgid "Displays"
720 msgstr "ప్రదర్శనలు"
721
722 #: ../src/virt-viewer.xml.h:11
719 #: ../src/resources/ui/virt-viewer.ui.h:11
720 msgid "Zoom _In"
721 msgstr ""
722
723 #: ../src/resources/ui/virt-viewer.ui.h:12
724 msgid "Zoom _Out"
725 msgstr ""
726
727 #: ../src/resources/ui/virt-viewer.ui.h:13
728 msgid "_Normal Size"
729 msgstr ""
730
731 #: ../src/resources/ui/virt-viewer.ui.h:14
732 msgid "_Displays"
733 msgstr ""
734
735 #: ../src/resources/ui/virt-viewer.ui.h:15
723736 msgid "Release cursor"
724737 msgstr "సూచీ విడుదలచేయి"
725738
726 #: ../src/virt-viewer.xml.h:12
739 #: ../src/resources/ui/virt-viewer.ui.h:16
727740 msgid "_Send key"
728741 msgstr "పంపు కీ(_S)"
729742
730 #: ../src/virt-viewer.xml.h:13
743 #: ../src/resources/ui/virt-viewer.ui.h:17
731744 msgid "_Help"
732745 msgstr "సహాయము(_H)"
733746
734 #: ../src/virt-viewer.xml.h:14
747 #: ../src/resources/ui/virt-viewer.ui.h:18
735748 msgid "_Guest Details"
736749 msgstr ""
737750
738 #: ../src/virt-viewer-guest-details.xml.h:1
751 #: ../src/resources/ui/virt-viewer.ui.h:19
752 msgid "_About"
753 msgstr ""
754
755 #: ../src/resources/ui/virt-viewer.ui.h:20
756 msgid "_Change CD"
757 msgstr ""
758
759 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
739760 msgid "Guest Details"
740761 msgstr ""
741762
742 #: ../src/virt-viewer-guest-details.xml.h:2
763 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
743764 msgid "Name:"
744765 msgstr ""
745766
746 #: ../src/virt-viewer-guest-details.xml.h:3
767 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
747768 msgid "GUID:"
748769 msgstr ""
749770
750 #: ../src/virt-viewer-vm-connection.xml.h:1
771 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
751772 msgid "Choose a virtual machine"
752773 msgstr ""
753774
754 #: ../src/virt-viewer-vm-connection.xml.h:2
775 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
755776 msgid "Name"
756777 msgstr ""
757778
758 #: ../src/virt-viewer-vm-connection.xml.h:3
779 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
759780 msgid "Available virtual machines"
760781 msgstr ""
761782
762 #: ../src/virt-viewer-preferences.xml.h:2
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
784 msgid "Preferences"
785 msgstr ""
786
787 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
763788 msgid "Folder sharing"
764789 msgstr ""
765790
766 #: ../src/virt-viewer-preferences.xml.h:3
791 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
767792 msgid "Share folder"
768793 msgstr ""
769794
770 #: ../src/virt-viewer-preferences.xml.h:4
795 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
771796 msgid "Read-only"
772797 msgstr ""
773798
774 #: ../src/virt-viewer-preferences.xml.h:5
799 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
775800 msgid "Spice"
776801 msgstr ""
+343
-316
po/tg.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/th.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+302
-275
po/tr.po less more
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
10 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1111 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
1212 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
1313 "Language-Team: Turkish (http://www.transifex.com/projects/p/virt-viewer/"
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.7.3\n"
21
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
20 "X-Generator: Zanata 3.8.4\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
2324 msgid "Remote Viewer"
25 msgstr ""
26
27 #: ../data/remote-viewer.appdata.xml.in.h:2
28 msgid "Remotely access virtual machines"
29 msgstr ""
30
31 #: ../data/remote-viewer.appdata.xml.in.h:3
32 msgid ""
33 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
34 "time it supports guest OS using the VNC or SPICE protocols. Further "
35 "protocols may be supported in the future as user demand dictates. The viewer "
36 "can connect directly to both local and remotely hosted guest OS, optionally "
37 "using SSL/TLS encryption."
2438 msgstr ""
2539
2640 #: ../data/remote-viewer.desktop.in.h:2
3145 msgid "Virt-Viewer connection file"
3246 msgstr ""
3347
34 #: ../src/gbinding.c:637
35 msgid "Source"
36 msgstr "Kaynak"
37
38 #: ../src/gbinding.c:638
39 msgid "The source of the binding"
40 msgstr ""
41
42 #: ../src/gbinding.c:652
43 msgid "Target"
44 msgstr "Hedef"
45
46 #: ../src/gbinding.c:653
47 msgid "The target of the binding"
48 msgstr ""
49
50 #: ../src/gbinding.c:668
51 msgid "Source Property"
52 msgstr ""
53
54 #: ../src/gbinding.c:669
55 msgid "The property on the source to bind"
56 msgstr ""
57
58 #: ../src/gbinding.c:684
59 msgid "Target Property"
60 msgstr ""
61
62 #: ../src/gbinding.c:685
63 msgid "The property on the target to bind"
64 msgstr ""
65
66 #: ../src/gbinding.c:699
67 msgid "Flags"
68 msgstr "Bayraklar"
69
70 #: ../src/gbinding.c:700
71 msgid "The binding flags"
72 msgstr ""
73
74 #: ../src/remote-viewer-main.c:50
75 #, c-format
76 msgid "remote-viewer version %s"
77 msgstr ""
78
79 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
80 msgid "Display version information"
81 msgstr "Sürüm bilgisini göster"
82
83 #: ../src/remote-viewer-main.c:105
48 #: ../src/remote-viewer.c:139
8449 msgid "Set window title"
8550 msgstr ""
8651
87 #: ../src/remote-viewer-main.c:108
52 #: ../src/remote-viewer.c:142
8853 msgid "Open connection using Spice controller communication"
8954 msgstr ""
9055
91 #: ../src/remote-viewer-main.c:120
56 #: ../src/remote-viewer.c:150
9257 msgid "Remote viewer client"
9358 msgstr ""
9459
95 #: ../src/remote-viewer-main.c:138
96 #, c-format
97 msgid ""
98 "%s\n"
99 "Run '%s --help' to see a full list of available command line options\n"
100 msgstr ""
101
102 #: ../src/remote-viewer-main.c:149
103 #, c-format
104 msgid "Error: extra arguments given while using Spice controller\n"
105 msgstr ""
106
107 #: ../src/remote-viewer-main.c:156
108 #, c-format
109 msgid "Error: can't handle multiple URIs\n"
110 msgstr ""
111
112 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
60 #: ../src/remote-viewer.c:175
61 #, c-format
62 msgid ""
63 "\n"
64 "Error: can't handle multiple URIs\n"
65 "\n"
66 msgstr ""
67
68 #: ../src/remote-viewer.c:187
69 #, c-format
70 msgid ""
71 "\n"
72 "Error: extra arguments given while using Spice controller\n"
73 "\n"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
77 #, c-format
78 msgid "Run '%s --help' to see a full list of available command line options\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11382 msgid "Failed to initiate connection"
11483 msgstr ""
11584
116 #: ../src/remote-viewer.c:313
85 #: ../src/remote-viewer.c:297
11786 msgid "Display disabled by controller"
11887 msgstr ""
11988
120 #: ../src/remote-viewer.c:609
89 #: ../src/remote-viewer.c:593
12190 #, c-format
12291 msgid "Controller connection failed: %s"
12392 msgstr ""
12493
125 #: ../src/remote-viewer.c:755
126 msgid "_Change CD"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:855
94 #: ../src/remote-viewer.c:848
13095 msgid "failed to parse ovirt uri"
13196 msgstr ""
13297
133 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
98 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13499 msgid "Authentication was cancelled"
135100 msgstr ""
136101
137 #: ../src/remote-viewer.c:900
102 #: ../src/remote-viewer.c:893
138103 #, c-format
139104 msgid "oVirt VM %s is not running"
140105 msgstr ""
141106
142 #: ../src/remote-viewer.c:914
107 #: ../src/remote-viewer.c:907
143108 #, c-format
144109 msgid "oVirt VM %s has no display"
145110 msgstr ""
146111
147 #: ../src/remote-viewer.c:940
112 #: ../src/remote-viewer.c:933
148113 #, c-format
149114 msgid "oVirt VM %s has no host information"
150115 msgstr ""
151116
152 #: ../src/remote-viewer.c:951
117 #: ../src/remote-viewer.c:944
153118 #, c-format
154119 msgid "oVirt VM %s has unknown display type: %d"
155120 msgstr ""
156121
157 #: ../src/remote-viewer.c:1094
122 #: ../src/remote-viewer.c:1115
158123 msgid "Setting up Spice session..."
159124 msgstr ""
160125
161 #: ../src/remote-viewer.c:1102
126 #: ../src/remote-viewer.c:1123
162127 msgid "No connection was chosen"
163128 msgstr ""
164129
165 #: ../src/remote-viewer.c:1120
130 #: ../src/remote-viewer.c:1141
166131 #, c-format
167132 msgid "Invalid file %s: "
168133 msgstr ""
169134
170 #: ../src/remote-viewer.c:1128
135 #: ../src/remote-viewer.c:1149
171136 msgid "Cannot determine the connection type from URI"
172137 msgstr ""
173138
174 #: ../src/remote-viewer.c:1134
139 #: ../src/remote-viewer.c:1155
175140 msgid "Couldn't open oVirt session: "
176141 msgstr ""
177142
182147 #. * indent-tabs-mode: nil
183148 #. * End:
184149 #.
185 #: ../src/remote-viewer-connect.xml.h:1
150 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
186151 msgid "Connection details"
187152 msgstr ""
188153
189 #: ../src/remote-viewer-connect.xml.h:2
190 msgid "Connection Address"
191 msgstr ""
192
193 #: ../src/remote-viewer-connect.xml.h:3
154 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 msgid "Connection _Address"
156 msgstr ""
157
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
194159 msgid "For example, spice://foo.example.org:5900"
195160 msgstr ""
196161
197 #: ../src/remote-viewer-connect.xml.h:4
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
198163 msgid "Recent connections"
199164 msgstr ""
200165
201 #: ../src/remote-viewer-connect.xml.h:5
202 msgid "Cancel"
203 msgstr ""
204
205 #: ../src/remote-viewer-connect.xml.h:6
206 msgid "Connect"
207 msgstr ""
208
209 #: ../src/virt-viewer-about.xml.h:1
210 msgid "About Glade"
211 msgstr "Glade Hakkında"
212
213 #: ../src/virt-viewer-about.xml.h:2
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
167 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
168 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
169 msgid "_Cancel"
170 msgstr ""
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 msgid "C_onnect"
175 msgstr ""
176
177 #: ../src/resources/ui/virt-viewer-about.ui.h:1
178 msgid "About Virt-Viewer"
179 msgstr ""
180
181 #: ../src/resources/ui/virt-viewer-about.ui.h:2
214182 msgid ""
215183 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216184 "Copyright (C) 2007-2014 Red Hat, Inc."
217185 msgstr ""
218186
219 #: ../src/virt-viewer-about.xml.h:4
187 #: ../src/resources/ui/virt-viewer-about.ui.h:4
220188 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221189 msgstr ""
222190
223 #: ../src/virt-viewer-about.xml.h:5
191 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224192 msgid "virt-manager.org"
225193 msgstr "virt-manager.org"
226194
227 #: ../src/virt-viewer-about.xml.h:6
195 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228196 msgid ""
229197 "This program is free software; you can redistribute it and/or modify\n"
230198 "it under the terms of the GNU General Public License as published by\n"
241209 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
242210 msgstr ""
243211
244 #: ../src/virt-viewer-about.xml.h:20
212 #: ../src/resources/ui/virt-viewer-about.ui.h:20
245213 msgid "The Fedora Translation Team"
246214 msgstr "Fedora Çeviri Ekibi"
247215
248 #: ../src/virt-viewer-app.c:526
216 #: ../src/virt-viewer-app.c:458
249217 msgid "Do you want to close the session?"
250218 msgstr ""
251219
252 #: ../src/virt-viewer-app.c:528
220 #: ../src/virt-viewer-app.c:460
253221 msgid "Do not ask me again"
254222 msgstr ""
255223
256 #: ../src/virt-viewer-app.c:1008
224 #: ../src/virt-viewer-app.c:948
257225 #, c-format
258226 msgid "Waiting for display %d..."
259227 msgstr ""
260228
261 #: ../src/virt-viewer-app.c:1117
229 #: ../src/virt-viewer-app.c:1055
262230 #, c-format
263231 msgid "Unsupported graphic type '%s'"
264232 msgstr ""
265233
266 #: ../src/virt-viewer-app.c:1200
234 #: ../src/virt-viewer-app.c:1138
267235 msgid "Connect to ssh failed."
268236 msgstr "Ssh bağlantısı başarısız oldu."
269237
270 #: ../src/virt-viewer-app.c:1202
238 #: ../src/virt-viewer-app.c:1140
271239 msgid "Can't connect to channel, SSH only supported."
272240 msgstr ""
273241
242 #: ../src/virt-viewer-app.c:1152
243 msgid "Connect to channel unsupported."
244 msgstr ""
245
274246 #: ../src/virt-viewer-app.c:1214
275 msgid "Connect to channel unsupported."
276 msgstr ""
277
278 #: ../src/virt-viewer-app.c:1276
279247 msgid "Display can only be attached through libvirt with --attach"
280248 msgstr ""
281249
282 #: ../src/virt-viewer-app.c:1299
250 #: ../src/virt-viewer-app.c:1237
283251 msgid "Connecting to graphic server"
284252 msgstr "Grafik sunucuya bağlanıyor"
285253
286 #: ../src/virt-viewer-app.c:1398
254 #: ../src/virt-viewer-app.c:1336
287255 msgid "Guest domain has shutdown"
288256 msgstr ""
289257
290 #: ../src/virt-viewer-app.c:1459
258 #: ../src/virt-viewer-app.c:1397
291259 msgid "Connected to graphic server"
292260 msgstr "Grafik sunucuya bağlandı"
293261
294 #: ../src/virt-viewer-app.c:1486
262 #: ../src/virt-viewer-app.c:1424
295263 #, c-format
296264 msgid "Unable to connect to the graphic server %s"
297265 msgstr ""
298266
299 #: ../src/virt-viewer-app.c:1512
267 #: ../src/virt-viewer-app.c:1450
300268 #, c-format
301269 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
302270 msgstr ""
303271
304 #: ../src/virt-viewer-app.c:1525
272 #: ../src/virt-viewer-app.c:1463
305273 #, c-format
306274 msgid "Unable to authenticate with remote desktop server: %s"
307275 msgstr ""
308276
309 #: ../src/virt-viewer-app.c:1533
277 #: ../src/virt-viewer-app.c:1471
310278 #, c-format
311279 msgid "USB redirection error: %s"
312280 msgstr "USB yönlendirme hatası: %s"
313281
314 #: ../src/virt-viewer-app.c:1786
282 #: ../src/virt-viewer-app.c:1805
315283 #, c-format
316284 msgid "Zoom level must be within %d-%d\n"
317285 msgstr ""
318286
319 #: ../src/virt-viewer-app.c:2296
320 #, c-format
321 msgid "Display %d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2552
287 #: ../src/virt-viewer-app.c:1858
288 #, c-format
289 msgid "%s\n"
290 msgstr ""
291
292 #: ../src/virt-viewer-app.c:1868
293 #, c-format
294 msgid "%s version %s"
295 msgstr ""
296
297 #: ../src/virt-viewer-app.c:2292
298 #, c-format
299 msgid "Display _%d"
300 msgstr ""
301
302 #: ../src/virt-viewer-app.c:2548
325303 #, c-format
326304 msgid "Invalid kiosk-quit argument: %s"
327305 msgstr ""
306
307 #: ../src/virt-viewer-app.c:2559
308 msgid "Display version information"
309 msgstr "Sürüm bilgisini göster"
328310
329311 #: ../src/virt-viewer-app.c:2561
330312 msgid "Zoom level of window, in percentage"
358340 msgid "Display debugging information"
359341 msgstr "Hata ayıklama bilgisini görüntüle"
360342
361 #: ../src/virt-viewer-auth.c:88
343 #: ../src/virt-viewer-auth.c:89
362344 #, c-format
363345 msgid ""
364346 "Authentication is required for the %s connection to:\n"
367349 "\n"
368350 msgstr ""
369351
370 #: ../src/virt-viewer-auth.c:92
352 #: ../src/virt-viewer-auth.c:93
371353 #, c-format
372354 msgid "Authentication is required for the %s connection:\n"
373355 msgstr ""
379361 #. * indent-tabs-mode: nil
380362 #. * End:
381363 #.
382 #: ../src/virt-viewer-auth.xml.h:1
364 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
383365 msgid "Authentication required"
384366 msgstr "Kimlik Doğrulama gerekli"
385367
386 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
368 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
369 msgid "_OK"
370 msgstr ""
371
372 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
373 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
387374 msgid "label"
388375 msgstr "etiket"
389376
390 #: ../src/virt-viewer-auth.xml.h:3
377 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
391378 msgid "Password:"
392379 msgstr "Parola:"
393380
394 #: ../src/virt-viewer-auth.xml.h:4
381 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
395382 msgid "Username:"
396383 msgstr "Kullanıcı Adı:"
397384
398 #: ../src/virt-viewer-auth.xml.h:5
385 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
399386 msgid "Show password"
400387 msgstr ""
401388
402 #: ../src/virt-viewer-display-vnc.c:133
389 #: ../src/virt-viewer-display-vnc.c:134
403390 msgid "VNC does not provide GUID"
404391 msgstr ""
405392
393 #: ../src/virt-viewer-file-transfer-dialog.c:152
394 msgid "Cancel"
395 msgstr ""
396
397 #: ../src/virt-viewer-file-transfer-dialog.c:163
398 msgid "File Transfers"
399 msgstr ""
400
406401 #: ../src/virt-viewer-main.c:38
407 #, c-format
408 msgid "%s version %s\n"
409 msgstr "%s sürüm %s\n"
410
411 #: ../src/virt-viewer-main.c:62
412 msgid "Direct connection with no automatic tunnels"
413 msgstr ""
414
415 #: ../src/virt-viewer-main.c:64
416 msgid "Attach to the local display using libvirt"
417 msgstr ""
418
419 #: ../src/virt-viewer-main.c:66
420 msgid "Connect to hypervisor"
421 msgstr ""
422
423 #: ../src/virt-viewer-main.c:68
424 msgid "Wait for domain to start"
425 msgstr ""
426
427 #: ../src/virt-viewer-main.c:70
428 msgid "Reconnect to domain upon restart"
429 msgstr ""
430
431 #: ../src/virt-viewer-main.c:77
432402 msgid "Virt Viewer"
433403 msgstr ""
434404
435 #: ../src/virt-viewer-main.c:80
436 #, c-format
437 msgid "Run '%s --help' to see a full list of available command line options"
438 msgstr ""
439
440 #: ../src/virt-viewer-main.c:86
441 msgid "Virtual machine graphical console"
442 msgstr ""
443
444 #: ../src/virt-viewer-main.c:107
445 #, c-format
446 msgid ""
447 "\n"
448 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
449 "\n"
450 "%s\n"
451 "\n"
452 msgstr ""
453
454 #: ../src/virt-viewer-main.c:112
455 #, c-format
456 msgid ""
457 "\n"
458 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
459 "\n"
460 msgstr ""
461
462 #: ../src/virt-viewer-session-spice.c:694
405 #: ../src/virt-viewer-session-spice.c:705
463406 msgid "Invalid password"
464407 msgstr ""
465408
466409 #. Create the widgets
467 #: ../src/virt-viewer-session-spice.c:786
410 #: ../src/virt-viewer-session-spice.c:797
468411 msgid "Select USB devices for redirection"
469412 msgstr ""
470413
471 #: ../src/virt-viewer-session-vnc.c:153
414 #: ../src/virt-viewer-session-spice.c:799
415 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
416 msgid "_Close"
417 msgstr ""
418
419 #: ../src/virt-viewer-session-vnc.c:156
472420 #, c-format
473421 msgid "Unsupported authentication type %d"
474422 msgstr ""
481429 msgid "No virtual machine was chosen"
482430 msgstr ""
483431
484 #: ../src/virt-viewer-window.c:537
432 #: ../src/virt-viewer-window.c:534
485433 msgid "Ctrl+Alt+_Del"
486434 msgstr "Ctrl+Alt+_Del"
487435
488 #: ../src/virt-viewer-window.c:538
436 #: ../src/virt-viewer-window.c:535
489437 msgid "Ctrl+Alt+_Backspace"
490438 msgstr "Ctrl+Alt+_Backspace"
491439
492 #: ../src/virt-viewer-window.c:540
440 #: ../src/virt-viewer-window.c:537
493441 msgid "Ctrl+Alt+F_1"
494442 msgstr "Ctrl+Alt+F_1"
495443
496 #: ../src/virt-viewer-window.c:541
444 #: ../src/virt-viewer-window.c:538
497445 msgid "Ctrl+Alt+F_2"
498446 msgstr "Ctrl+Alt+F_2"
499447
500 #: ../src/virt-viewer-window.c:542
448 #: ../src/virt-viewer-window.c:539
501449 msgid "Ctrl+Alt+F_3"
502450 msgstr "Ctrl+Alt+F_3"
503451
504 #: ../src/virt-viewer-window.c:543
452 #: ../src/virt-viewer-window.c:540
505453 msgid "Ctrl+Alt+F_4"
506454 msgstr "Ctrl+Alt+F_4"
507455
508 #: ../src/virt-viewer-window.c:544
456 #: ../src/virt-viewer-window.c:541
509457 msgid "Ctrl+Alt+F_5"
510458 msgstr "Ctrl+Alt+F_5"
511459
512 #: ../src/virt-viewer-window.c:545
460 #: ../src/virt-viewer-window.c:542
513461 msgid "Ctrl+Alt+F_6"
514462 msgstr "Ctrl+Alt+F_6"
515463
516 #: ../src/virt-viewer-window.c:546
464 #: ../src/virt-viewer-window.c:543
517465 msgid "Ctrl+Alt+F_7"
518466 msgstr "Ctrl+Alt+F_7"
519467
520 #: ../src/virt-viewer-window.c:547
468 #: ../src/virt-viewer-window.c:544
521469 msgid "Ctrl+Alt+F_8"
522470 msgstr "Ctrl+Alt+F_8"
523471
524 #: ../src/virt-viewer-window.c:548
472 #: ../src/virt-viewer-window.c:545
525473 msgid "Ctrl+Alt+F_9"
526474 msgstr "Ctrl+Alt+F_9"
527475
528 #: ../src/virt-viewer-window.c:549
476 #: ../src/virt-viewer-window.c:546
529477 msgid "Ctrl+Alt+F1_0"
530478 msgstr "Ctrl+Alt+F1_0"
531479
532 #: ../src/virt-viewer-window.c:550
480 #: ../src/virt-viewer-window.c:547
533481 msgid "Ctrl+Alt+F11"
534482 msgstr "Ctrl+Alt+F11"
535483
536 #: ../src/virt-viewer-window.c:551
484 #: ../src/virt-viewer-window.c:548
537485 msgid "Ctrl+Alt+F12"
538486 msgstr "Ctrl+Alt+F12"
539487
540 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
488 #: ../src/virt-viewer-window.c:919
489 msgid "_Save"
490 msgstr ""
491
492 #: ../src/virt-viewer-window.c:927
541493 msgid "Screenshot"
542494 msgstr "Ekran Görüntüsü"
543495
544 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
496 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
545497 msgid "Unknown"
546498 msgstr ""
547499
548 #: ../src/virt-viewer-window.c:1062
500 #: ../src/virt-viewer-window.c:1071
549501 msgid "Disconnect"
550502 msgstr "Bağlantıyı Kes"
551503
552 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
553 #: ../src/virt-viewer.xml.h:3
504 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
554505 msgid "USB device selection"
555506 msgstr "USB aygıt seçimi"
556507
557 #: ../src/virt-viewer-window.c:1081
508 #: ../src/virt-viewer-window.c:1089
558509 msgid "Send key combination"
559510 msgstr ""
560511
561 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
512 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
562513 msgid "Leave fullscreen"
563514 msgstr "Tam ekrandan ayrıl"
564515
565 #: ../src/virt-viewer-window.c:1173
516 #: ../src/virt-viewer-window.c:1175
566517 msgid "Ctrl+Alt"
567518 msgstr ""
568519
569 #: ../src/virt-viewer-window.c:1176
520 #: ../src/virt-viewer-window.c:1178
570521 #, c-format
571522 msgid "(Press %s to release pointer)"
572523 msgstr ""
575526 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
576527 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
577528 #.
578 #: ../src/virt-viewer-window.c:1187
529 #: ../src/virt-viewer-window.c:1189
579530 #, c-format
580531 msgid "%s%s%s - %s"
581532 msgstr "%s%s%s - %s"
582533
583534 #. translators: <space>
584 #: ../src/virt-viewer-window.c:1191
535 #: ../src/virt-viewer-window.c:1193
585536 msgid " "
586537 msgstr " "
587538
588 #: ../src/virt-viewer-file.c:825
539 #: ../src/virt-viewer-file.c:843
589540 #, c-format
590541 msgid ""
591542 "At least %s version %s is required to setup this connection, see %s for "
592543 "details"
593544 msgstr ""
594545
595 #: ../src/virt-viewer-file.c:833
546 #: ../src/virt-viewer-file.c:851
596547 #, c-format
597548 msgid "At least %s version %s is required to setup this connection"
598549 msgstr ""
599550
600 #: ../src/virt-viewer.c:163
551 #: ../src/virt-viewer.c:90
552 msgid "Direct connection with no automatic tunnels"
553 msgstr ""
554
555 #: ../src/virt-viewer.c:92
556 msgid "Attach to the local display using libvirt"
557 msgstr ""
558
559 #: ../src/virt-viewer.c:94
560 msgid "Connect to hypervisor"
561 msgstr ""
562
563 #: ../src/virt-viewer.c:96
564 msgid "Wait for domain to start"
565 msgstr ""
566
567 #: ../src/virt-viewer.c:98
568 msgid "Reconnect to domain upon restart"
569 msgstr ""
570
571 #: ../src/virt-viewer.c:105
572 msgid "Virtual machine graphical console"
573 msgstr ""
574
575 #: ../src/virt-viewer.c:124
576 #, c-format
577 msgid ""
578 "\n"
579 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
580 "\n"
581 msgstr ""
582
583 #: ../src/virt-viewer.c:136
584 #, c-format
585 msgid ""
586 "\n"
587 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
588 "\n"
589 msgstr ""
590
591 #: ../src/virt-viewer.c:250
601592 msgid "Waiting for guest domain to re-start"
602593 msgstr ""
603594
604 #: ../src/virt-viewer.c:409
595 #: ../src/virt-viewer.c:496
605596 #, c-format
606597 msgid "Cannot determine the graphic type for the guest %s"
607598 msgstr ""
608599
609 #: ../src/virt-viewer.c:448
600 #: ../src/virt-viewer.c:535
610601 #, c-format
611602 msgid "Cannot determine the host for the guest %s"
612603 msgstr ""
613604
614 #: ../src/virt-viewer.c:476
605 #: ../src/virt-viewer.c:563
615606 #, c-format
616607 msgid "Guest '%s' is not reachable"
617608 msgstr ""
618609
619 #: ../src/virt-viewer.c:697
610 #: ../src/virt-viewer.c:784
620611 #, c-format
621612 msgid "Virtual machine %s is not running"
622613 msgstr ""
623614
624 #: ../src/virt-viewer.c:720
615 #: ../src/virt-viewer.c:807
625616 msgid "Waiting for libvirt to start"
626617 msgstr ""
627618
628 #: ../src/virt-viewer.c:724
619 #: ../src/virt-viewer.c:811
629620 msgid "Finding guest domain"
630621 msgstr ""
631622
632 #: ../src/virt-viewer.c:728
623 #: ../src/virt-viewer.c:815
633624 msgid "Waiting for guest domain to be created"
634625 msgstr ""
635626
636 #: ../src/virt-viewer.c:750
627 #: ../src/virt-viewer.c:837
637628 msgid "Checking guest domain status"
638629 msgstr ""
639630
640 #: ../src/virt-viewer.c:753
631 #: ../src/virt-viewer.c:840
641632 msgid "Cannot get guest state"
642633 msgstr ""
643634
644 #: ../src/virt-viewer.c:759
635 #: ../src/virt-viewer.c:846
645636 msgid "Waiting for guest domain to start"
646637 msgstr ""
647638
648 #: ../src/virt-viewer.c:863
639 #: ../src/virt-viewer.c:950
649640 #, c-format
650641 msgid "Unable to connect to libvirt with URI: %s."
651642 msgstr ""
652643
653 #: ../src/virt-viewer.c:864
644 #: ../src/virt-viewer.c:951
654645 msgid "[none]"
655646 msgstr ""
656647
657 #: ../src/virt-viewer.c:871
648 #: ../src/virt-viewer.c:958
658649 msgid "Authentication failed."
659650 msgstr ""
660651
661 #: ../src/virt-viewer.c:931
652 #: ../src/virt-viewer.c:1018
662653 msgid "Failed to connect: "
663654 msgstr ""
664655
669660 #. * indent-tabs-mode: nil
670661 #. * End:
671662 #.
672 #: ../src/virt-viewer.xml.h:1
663 #: ../src/resources/ui/virt-viewer.ui.h:1
673664 msgid "_File"
674665 msgstr "_Dosya"
675666
676 #: ../src/virt-viewer.xml.h:4
667 #: ../src/resources/ui/virt-viewer.ui.h:2
668 msgid "_Screenshot"
669 msgstr ""
670
671 #: ../src/resources/ui/virt-viewer.ui.h:3
672 msgid "_USB device selection"
673 msgstr ""
674
675 #: ../src/resources/ui/virt-viewer.ui.h:4
677676 msgid "Smartcard insertion"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.xml.h:5
679 #: ../src/resources/ui/virt-viewer.ui.h:5
681680 msgid "Smartcard removal"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
685 msgid "Preferences"
686 msgstr ""
687
688 #: ../src/virt-viewer.xml.h:7
683 #: ../src/resources/ui/virt-viewer.ui.h:6
684 msgid "_Preferences"
685 msgstr ""
686
687 #: ../src/resources/ui/virt-viewer.ui.h:7
688 msgid "_Quit"
689 msgstr ""
690
691 #: ../src/resources/ui/virt-viewer.ui.h:8
689692 msgid "_View"
690693 msgstr ""
691694
692 #: ../src/virt-viewer.xml.h:8
693 msgid "Full screen"
694 msgstr "Tam Ekran"
695
696 #: ../src/virt-viewer.xml.h:9
695 #: ../src/resources/ui/virt-viewer.ui.h:9
696 msgid "_Full screen"
697 msgstr ""
698
699 #: ../src/resources/ui/virt-viewer.ui.h:10
697700 msgid "_Zoom"
698701 msgstr ""
699702
700 #: ../src/virt-viewer.xml.h:10
701 msgid "Displays"
702 msgstr ""
703
704 #: ../src/virt-viewer.xml.h:11
703 #: ../src/resources/ui/virt-viewer.ui.h:11
704 msgid "Zoom _In"
705 msgstr ""
706
707 #: ../src/resources/ui/virt-viewer.ui.h:12
708 msgid "Zoom _Out"
709 msgstr ""
710
711 #: ../src/resources/ui/virt-viewer.ui.h:13
712 msgid "_Normal Size"
713 msgstr ""
714
715 #: ../src/resources/ui/virt-viewer.ui.h:14
716 msgid "_Displays"
717 msgstr ""
718
719 #: ../src/resources/ui/virt-viewer.ui.h:15
705720 msgid "Release cursor"
706721 msgstr ""
707722
708 #: ../src/virt-viewer.xml.h:12
723 #: ../src/resources/ui/virt-viewer.ui.h:16
709724 msgid "_Send key"
710725 msgstr ""
711726
712 #: ../src/virt-viewer.xml.h:13
727 #: ../src/resources/ui/virt-viewer.ui.h:17
713728 msgid "_Help"
714729 msgstr "_Yardım"
715730
716 #: ../src/virt-viewer.xml.h:14
731 #: ../src/resources/ui/virt-viewer.ui.h:18
717732 msgid "_Guest Details"
718733 msgstr ""
719734
720 #: ../src/virt-viewer-guest-details.xml.h:1
735 #: ../src/resources/ui/virt-viewer.ui.h:19
736 msgid "_About"
737 msgstr ""
738
739 #: ../src/resources/ui/virt-viewer.ui.h:20
740 msgid "_Change CD"
741 msgstr ""
742
743 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
721744 msgid "Guest Details"
722745 msgstr ""
723746
724 #: ../src/virt-viewer-guest-details.xml.h:2
747 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
725748 msgid "Name:"
726749 msgstr ""
727750
728 #: ../src/virt-viewer-guest-details.xml.h:3
751 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
729752 msgid "GUID:"
730753 msgstr ""
731754
732 #: ../src/virt-viewer-vm-connection.xml.h:1
755 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
733756 msgid "Choose a virtual machine"
734757 msgstr ""
735758
736 #: ../src/virt-viewer-vm-connection.xml.h:2
759 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
737760 msgid "Name"
738761 msgstr ""
739762
740 #: ../src/virt-viewer-vm-connection.xml.h:3
763 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
741764 msgid "Available virtual machines"
742765 msgstr ""
743766
744 #: ../src/virt-viewer-preferences.xml.h:2
767 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
768 msgid "Preferences"
769 msgstr ""
770
771 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
745772 msgid "Folder sharing"
746773 msgstr ""
747774
748 #: ../src/virt-viewer-preferences.xml.h:3
775 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
749776 msgid "Share folder"
750777 msgstr ""
751778
752 #: ../src/virt-viewer-preferences.xml.h:4
779 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
753780 msgid "Read-only"
754781 msgstr ""
755782
756 #: ../src/virt-viewer-preferences.xml.h:5
783 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
757784 msgid "Spice"
758785 msgstr ""
+343
-316
po/tw.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+345
-317
po/uk.po less more
44 # Translators:
55 # Yuri Chornoivan <yurchor@ukr.net>, 2011-2014
66 # Yuri Chornoivan <yurchor@ukr.net>, 2015. #zanata
7 # Yuri Chornoivan <yurchor@ukr.net>, 2016. #zanata
78 msgid ""
89 msgstr ""
910 "Project-Id-Version: PACKAGE VERSION\n"
1011 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
12 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1213 "PO-Revision-Date: 2015-12-07 12:22-0500\n"
1314 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
1415 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/virt-viewer/"
1920 "Content-Transfer-Encoding: 8bit\n"
2021 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
2122 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
22 "X-Generator: Zanata 3.7.3\n"
23
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
23 "X-Generator: Zanata 3.8.4\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
2527 msgid "Remote Viewer"
2628 msgstr "Віддалений переглядач"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 msgid ""
36 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
37 "time it supports guest OS using the VNC or SPICE protocols. Further "
38 "protocols may be supported in the future as user demand dictates. The viewer "
39 "can connect directly to both local and remotely hosted guest OS, optionally "
40 "using SSL/TLS encryption."
41 msgstr ""
2742
2843 #: ../data/remote-viewer.desktop.in.h:2
2944 msgid "Access remote desktops"
3348 msgid "Virt-Viewer connection file"
3449 msgstr "Файл з’єднань Virt-Viewer"
3550
36 #: ../src/gbinding.c:637
37 msgid "Source"
38 msgstr "Джерело"
39
40 #: ../src/gbinding.c:638
41 msgid "The source of the binding"
42 msgstr "Початковий об’єкт прив’язки"
43
44 #: ../src/gbinding.c:652
45 msgid "Target"
46 msgstr "Призначення"
47
48 #: ../src/gbinding.c:653
49 msgid "The target of the binding"
50 msgstr "Об’єкт призначення прив’язування"
51
52 #: ../src/gbinding.c:668
53 msgid "Source Property"
54 msgstr "Властивість джерела"
55
56 #: ../src/gbinding.c:669
57 msgid "The property on the source to bind"
58 msgstr "Властивість джерела прив’язування"
59
60 #: ../src/gbinding.c:684
61 msgid "Target Property"
62 msgstr "Властивість призначення"
63
64 #: ../src/gbinding.c:685
65 msgid "The property on the target to bind"
66 msgstr "Властивість призначення прив’язування"
67
68 #: ../src/gbinding.c:699
69 msgid "Flags"
70 msgstr "Прапорці"
71
72 #: ../src/gbinding.c:700
73 msgid "The binding flags"
74 msgstr "Прапорці прив’язування"
75
76 #: ../src/remote-viewer-main.c:50
77 #, c-format
78 msgid "remote-viewer version %s"
79 msgstr "remote-viewer версії %s"
80
81 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
82 msgid "Display version information"
83 msgstr "Показати інформацію щодо версії"
84
85 #: ../src/remote-viewer-main.c:105
51 #: ../src/remote-viewer.c:139
8652 msgid "Set window title"
8753 msgstr "Встановити вказаний заголовок вікна"
8854
89 #: ../src/remote-viewer-main.c:108
55 #: ../src/remote-viewer.c:142
9056 msgid "Open connection using Spice controller communication"
9157 msgstr "Встановити з’єднання за допомогою обміну даними з контролером Spice"
9258
93 #: ../src/remote-viewer-main.c:120
59 #: ../src/remote-viewer.c:150
9460 msgid "Remote viewer client"
9561 msgstr "Клієнтська програма для перегляду віддалених систем"
9662
97 #: ../src/remote-viewer-main.c:138
98 #, c-format
99 msgid ""
100 "%s\n"
101 "Run '%s --help' to see a full list of available command line options\n"
102 msgstr ""
103 "%s\n"
63 #: ../src/remote-viewer.c:175
64 #, c-format
65 msgid ""
66 "\n"
67 "Error: can't handle multiple URIs\n"
68 "\n"
69 msgstr ""
70 "\n"
71 "Помилка: обробки декількох адрес одразу не передбачено\n"
72 "\n"
73
74 #: ../src/remote-viewer.c:187
75 #, c-format
76 msgid ""
77 "\n"
78 "Error: extra arguments given while using Spice controller\n"
79 "\n"
80 msgstr ""
81 "\n"
82 "Помилка: під час використання контролера Spice задано зайві аргументи\n"
83 "\n"
84
85 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
86 #, c-format
87 msgid "Run '%s --help' to see a full list of available command line options\n"
88 msgstr ""
10489 "Щоб переглянути повний список можливих параметрів командного рядка, віддайте "
10590 "команду «%s --help»\n"
10691
107 #: ../src/remote-viewer-main.c:149
108 #, c-format
109 msgid "Error: extra arguments given while using Spice controller\n"
110 msgstr ""
111 "Помилка: під час використання контролера Spice передано зайві параметри\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "Помилка: обробка декількох адрес одночасно неможлива\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
92 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11993 msgid "Failed to initiate connection"
12094 msgstr "Не вдалося започаткувати з’єднання"
12195
122 #: ../src/remote-viewer.c:313
96 #: ../src/remote-viewer.c:297
12397 msgid "Display disabled by controller"
12498 msgstr "Екран вимкнено контролером"
12599
126 #: ../src/remote-viewer.c:609
100 #: ../src/remote-viewer.c:593
127101 #, c-format
128102 msgid "Controller connection failed: %s"
129103 msgstr "Помилка з’єднання з контролером: %s"
130104
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr "За_мінити CD"
134
135 #: ../src/remote-viewer.c:855
105 #: ../src/remote-viewer.c:848
136106 msgid "failed to parse ovirt uri"
137107 msgstr "не вдалося обробити адресу ovirt"
138108
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
109 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140110 msgid "Authentication was cancelled"
141111 msgstr "Розпізнавання було скасовано"
142112
143 #: ../src/remote-viewer.c:900
113 #: ../src/remote-viewer.c:893
144114 #, c-format
145115 msgid "oVirt VM %s is not running"
146116 msgstr "ВМ oVirt %s не запущено"
147117
148 #: ../src/remote-viewer.c:914
118 #: ../src/remote-viewer.c:907
149119 #, c-format
150120 msgid "oVirt VM %s has no display"
151121 msgstr "ВМ oVirt %s не має дисплея"
152122
153 #: ../src/remote-viewer.c:940
123 #: ../src/remote-viewer.c:933
154124 #, c-format
155125 msgid "oVirt VM %s has no host information"
156126 msgstr "ВМ oVirt %s не містить даних щодо основної системи"
157127
158 #: ../src/remote-viewer.c:951
128 #: ../src/remote-viewer.c:944
159129 #, c-format
160130 msgid "oVirt VM %s has unknown display type: %d"
161131 msgstr "Дисплей ВМ oVirt %s належить до невідомого типу: %d"
162132
163 #: ../src/remote-viewer.c:1094
133 #: ../src/remote-viewer.c:1115
164134 msgid "Setting up Spice session..."
165135 msgstr "Налаштування сеансу Spice…"
166136
167 #: ../src/remote-viewer.c:1102
137 #: ../src/remote-viewer.c:1123
168138 msgid "No connection was chosen"
169139 msgstr "Не вибрано з’єднання"
170140
171 #: ../src/remote-viewer.c:1120
141 #: ../src/remote-viewer.c:1141
172142 #, c-format
173143 msgid "Invalid file %s: "
174144 msgstr "Некоректний файл %s: "
175145
176 #: ../src/remote-viewer.c:1128
146 #: ../src/remote-viewer.c:1149
177147 msgid "Cannot determine the connection type from URI"
178148 msgstr "Не вдалося визначити тип з’єднання за адресою"
179149
180 #: ../src/remote-viewer.c:1134
150 #: ../src/remote-viewer.c:1155
181151 msgid "Couldn't open oVirt session: "
182152 msgstr "Не вдалося відкрити сеанс oVirt: "
183153
188158 #. * indent-tabs-mode: nil
189159 #. * End:
190160 #.
191 #: ../src/remote-viewer-connect.xml.h:1
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192162 msgid "Connection details"
193163 msgstr "Параметри з’єднання"
194164
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr "Адреса з’єднання"
198
199 #: ../src/remote-viewer-connect.xml.h:3
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
166 msgid "Connection _Address"
167 msgstr ""
168
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200170 msgid "For example, spice://foo.example.org:5900"
201171 msgstr "Приклад: spice://foo.example.org:5900"
202172
203 #: ../src/remote-viewer-connect.xml.h:4
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204174 msgid "Recent connections"
205175 msgstr "Нещодавні з’єднання"
206176
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr "Скасувати"
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr "З'єднатися"
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "Про Glade"
218
219 #: ../src/virt-viewer-about.xml.h:2
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:918
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 msgid "_Cancel"
181 msgstr "_Скасувати"
182
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
185 msgid "C_onnect"
186 msgstr "З’_єднати"
187
188 #: ../src/resources/ui/virt-viewer-about.ui.h:1
189 msgid "About Virt-Viewer"
190 msgstr "Про Virt-Viewer"
191
192 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220193 msgid ""
221194 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222195 "Copyright (C) 2007-2014 Red Hat, Inc."
224197 "© Daniel P. Berrange, 2007–2012\n"
225198 "© Red Hat, Inc., 2007–2014"
226199
227 #: ../src/virt-viewer-about.xml.h:4
200 #: ../src/resources/ui/virt-viewer-about.ui.h:4
228201 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
229202 msgstr ""
230203 "Клієнтську частину віддаленого керування стільницею побудовано на основі GTK-"
231204 "VNC, SPICE-GTK та libvirt"
232205
233 #: ../src/virt-viewer-about.xml.h:5
206 #: ../src/resources/ui/virt-viewer-about.ui.h:5
234207 msgid "virt-manager.org"
235208 msgstr "virt-manager.org"
236209
237 #: ../src/virt-viewer-about.xml.h:6
210 #: ../src/resources/ui/virt-viewer-about.ui.h:6
238211 msgid ""
239212 "This program is free software; you can redistribute it and/or modify\n"
240213 "it under the terms of the GNU General Public License as published by\n"
263236 "Якщо ви її не отримали, повідомте про це на адресу Free Software\n"
264237 "Foundation, Inc, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
265238
266 #: ../src/virt-viewer-about.xml.h:20
239 #: ../src/resources/ui/virt-viewer-about.ui.h:20
267240 msgid "The Fedora Translation Team"
268241 msgstr "Команда локалізації Fedora"
269242
270 #: ../src/virt-viewer-app.c:526
243 #: ../src/virt-viewer-app.c:458
271244 msgid "Do you want to close the session?"
272245 msgstr "Бажаєте завершити сеанс?"
273246
274 #: ../src/virt-viewer-app.c:528
247 #: ../src/virt-viewer-app.c:460
275248 msgid "Do not ask me again"
276249 msgstr "Більше не питати про це"
277250
278 #: ../src/virt-viewer-app.c:1008
251 #: ../src/virt-viewer-app.c:948
279252 #, c-format
280253 msgid "Waiting for display %d..."
281254 msgstr "Очікування на показ %d…"
282255
283 #: ../src/virt-viewer-app.c:1117
256 #: ../src/virt-viewer-app.c:1055
284257 #, c-format
285258 msgid "Unsupported graphic type '%s'"
286259 msgstr "Непідтримуваний тип графіки, «%s»"
287260
288 #: ../src/virt-viewer-app.c:1200
261 #: ../src/virt-viewer-app.c:1138
289262 msgid "Connect to ssh failed."
290263 msgstr "Спроба встановлення з’єднання ssh зазнала невдачі."
291264
292 #: ../src/virt-viewer-app.c:1202
265 #: ../src/virt-viewer-app.c:1140
293266 msgid "Can't connect to channel, SSH only supported."
294267 msgstr "Не вдалося встановити з’єднання з каналом, підтримується лише SSH."
295268
296 #: ../src/virt-viewer-app.c:1214
269 #: ../src/virt-viewer-app.c:1152
297270 msgid "Connect to channel unsupported."
298271 msgstr "Встановлення з’єднання з каналом не підтримується."
299272
300 #: ../src/virt-viewer-app.c:1276
273 #: ../src/virt-viewer-app.c:1214
301274 msgid "Display can only be attached through libvirt with --attach"
302275 msgstr "Дисплей можна з’єднати лише за допомогою libvirt з параметром --attach"
303276
304 #: ../src/virt-viewer-app.c:1299
277 #: ../src/virt-viewer-app.c:1237
305278 msgid "Connecting to graphic server"
306279 msgstr "Встановлення з’єднання з графічним сервером"
307280
308 #: ../src/virt-viewer-app.c:1398
281 #: ../src/virt-viewer-app.c:1336
309282 msgid "Guest domain has shutdown"
310283 msgstr "Гостьовий домен завершив роботу"
311284
312 #: ../src/virt-viewer-app.c:1459
285 #: ../src/virt-viewer-app.c:1397
313286 msgid "Connected to graphic server"
314287 msgstr "Встановлено з’єднання з графічним сервером"
315288
316 #: ../src/virt-viewer-app.c:1486
289 #: ../src/virt-viewer-app.c:1424
317290 #, c-format
318291 msgid "Unable to connect to the graphic server %s"
319292 msgstr "Не вдалося встановити з’єднання з графічним сервером %s"
320293
321 #: ../src/virt-viewer-app.c:1512
294 #: ../src/virt-viewer-app.c:1450
322295 #, c-format
323296 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
324297 msgstr ""
325298 "Не вдалося пройти розпізнавання на сервері віддаленої стільниці за адресою "
326299 "%s: %s\n"
327300
328 #: ../src/virt-viewer-app.c:1525
301 #: ../src/virt-viewer-app.c:1463
329302 #, c-format
330303 msgid "Unable to authenticate with remote desktop server: %s"
331304 msgstr "Не вдалося пройти розпізнавання на сервері віддаленої стільниці: %s"
332305
333 #: ../src/virt-viewer-app.c:1533
306 #: ../src/virt-viewer-app.c:1471
334307 #, c-format
335308 msgid "USB redirection error: %s"
336309 msgstr "Помилка переспрямування USB: %s"
337310
338 #: ../src/virt-viewer-app.c:1786
311 #: ../src/virt-viewer-app.c:1805
339312 #, c-format
340313 msgid "Zoom level must be within %d-%d\n"
341314 msgstr "Масштаб слід вказувати у діапазоні від %d до %d\n"
342315
343 #: ../src/virt-viewer-app.c:2296
344 #, c-format
345 msgid "Display %d"
346 msgstr "Дисплей %d"
347
348 #: ../src/virt-viewer-app.c:2552
316 #: ../src/virt-viewer-app.c:1858
317 #, c-format
318 msgid "%s\n"
319 msgstr "%s\n"
320
321 #: ../src/virt-viewer-app.c:1868
322 #, c-format
323 msgid "%s version %s"
324 msgstr "%s, версія %s"
325
326 #: ../src/virt-viewer-app.c:2292
327 #, c-format
328 msgid "Display _%d"
329 msgstr "Дисплей _%d"
330
331 #: ../src/virt-viewer-app.c:2548
349332 #, c-format
350333 msgid "Invalid kiosk-quit argument: %s"
351334 msgstr "Некоректний параметр kiosk-quit: %s"
335
336 #: ../src/virt-viewer-app.c:2559
337 msgid "Display version information"
338 msgstr "Показати інформацію щодо версії"
352339
353340 #: ../src/virt-viewer-app.c:2561
354341 msgid "Zoom level of window, in percentage"
384371 msgid "Display debugging information"
385372 msgstr "Показати діагностичну інформацію"
386373
387 #: ../src/virt-viewer-auth.c:88
374 #: ../src/virt-viewer-auth.c:89
388375 #, c-format
389376 msgid ""
390377 "Authentication is required for the %s connection to:\n"
397384 "<b>%s</b>\n"
398385 "\n"
399386
400 #: ../src/virt-viewer-auth.c:92
387 #: ../src/virt-viewer-auth.c:93
401388 #, c-format
402389 msgid "Authentication is required for the %s connection:\n"
403390 msgstr "Для встановлення з’єднання з %s слід пройти розпізнавання:\n"
409396 #. * indent-tabs-mode: nil
410397 #. * End:
411398 #.
412 #: ../src/virt-viewer-auth.xml.h:1
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
413400 msgid "Authentication required"
414401 msgstr "Потрібно пройти розпізнавання"
415402
416 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
403 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
404 msgid "_OK"
405 msgstr "_Гаразд"
406
407 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
408 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
417409 msgid "label"
418410 msgstr "мітка"
419411
420 #: ../src/virt-viewer-auth.xml.h:3
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
421413 msgid "Password:"
422414 msgstr "Пароль:"
423415
424 #: ../src/virt-viewer-auth.xml.h:4
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
425417 msgid "Username:"
426418 msgstr "Користувач:"
427419
428 #: ../src/virt-viewer-auth.xml.h:5
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
429421 msgid "Show password"
430422 msgstr "Показувати пароль"
431423
432 #: ../src/virt-viewer-display-vnc.c:133
424 #: ../src/virt-viewer-display-vnc.c:134
433425 msgid "VNC does not provide GUID"
434426 msgstr "VNC не надає GUID"
435427
428 #: ../src/virt-viewer-file-transfer-dialog.c:152
429 msgid "Cancel"
430 msgstr "Скасувати"
431
432 #: ../src/virt-viewer-file-transfer-dialog.c:163
433 msgid "File Transfers"
434 msgstr "Передавання файлів"
435
436436 #: ../src/virt-viewer-main.c:38
437 #, c-format
438 msgid "%s version %s\n"
439 msgstr "%s версія %s\n"
440
441 #: ../src/virt-viewer-main.c:62
442 msgid "Direct connection with no automatic tunnels"
443 msgstr "Пряме з’єднання без тунелів"
444
445 #: ../src/virt-viewer-main.c:64
446 msgid "Attach to the local display using libvirt"
447 msgstr "З’єднатися з локальним графічним сеансом за допомогою libvirt"
448
449 #: ../src/virt-viewer-main.c:66
450 msgid "Connect to hypervisor"
451 msgstr "З’єднатися з гіпервізором"
452
453 #: ../src/virt-viewer-main.c:68
454 msgid "Wait for domain to start"
455 msgstr "Чекати на запуск служби"
456
457 #: ../src/virt-viewer-main.c:70
458 msgid "Reconnect to domain upon restart"
459 msgstr "Заново приєднатися до домену після перезапуску"
460
461 #: ../src/virt-viewer-main.c:77
462437 msgid "Virt Viewer"
463438 msgstr "Перегляд віртуальних систем"
464439
465 #: ../src/virt-viewer-main.c:80
466 #, c-format
467 msgid "Run '%s --help' to see a full list of available command line options"
468 msgstr ""
469 "Виконайте «%s --help», щоб побачити повний перелік доступних параметрів "
470 "командного рядка."
471
472 #: ../src/virt-viewer-main.c:86
473 msgid "Virtual machine graphical console"
474 msgstr "Графічна консоль віртуальної машини"
475
476 #: ../src/virt-viewer-main.c:107
477 #, c-format
478 msgid ""
479 "\n"
480 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
481 "\n"
482 "%s\n"
483 "\n"
484 msgstr ""
485 "\n"
486 "Користування: %s [ПАРАМЕТРИ] [НАЗВА_ДОМЕНУ|ID|UUID]\n"
487 "\n"
488 "%s\n"
489 "\n"
490
491 #: ../src/virt-viewer-main.c:112
492 #, c-format
493 msgid ""
494 "\n"
495 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
496 "\n"
497 msgstr ""
498 "\n"
499 "Не вказано НАЗВИ_ДОМЕНУ|Ід.|UUID у «--wait»\n"
500 "\n"
501
502 #: ../src/virt-viewer-session-spice.c:694
440 #: ../src/virt-viewer-session-spice.c:705
503441 msgid "Invalid password"
504442 msgstr "Некоректний пароль"
505443
506444 #. Create the widgets
507 #: ../src/virt-viewer-session-spice.c:786
445 #: ../src/virt-viewer-session-spice.c:797
508446 msgid "Select USB devices for redirection"
509447 msgstr "Виберіть пристрої USB для переспрямування"
510448
511 #: ../src/virt-viewer-session-vnc.c:153
449 #: ../src/virt-viewer-session-spice.c:799
450 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
451 msgid "_Close"
452 msgstr "З_акрити"
453
454 #: ../src/virt-viewer-session-vnc.c:156
512455 #, c-format
513456 msgid "Unsupported authentication type %d"
514457 msgstr "Непідтримуваний тип розпізнавання %d"
521464 msgid "No virtual machine was chosen"
522465 msgstr "Не вибрано віртуальної машини"
523466
524 #: ../src/virt-viewer-window.c:537
467 #: ../src/virt-viewer-window.c:534
525468 msgid "Ctrl+Alt+_Del"
526469 msgstr "Ctrl+Alt+_Del"
527470
528 #: ../src/virt-viewer-window.c:538
471 #: ../src/virt-viewer-window.c:535
529472 msgid "Ctrl+Alt+_Backspace"
530473 msgstr "Ctrl+Alt+_Backspace"
531474
532 #: ../src/virt-viewer-window.c:540
475 #: ../src/virt-viewer-window.c:537
533476 msgid "Ctrl+Alt+F_1"
534477 msgstr "Ctrl+Alt+F_1"
535478
536 #: ../src/virt-viewer-window.c:541
479 #: ../src/virt-viewer-window.c:538
537480 msgid "Ctrl+Alt+F_2"
538481 msgstr "Ctrl+Alt+F_2"
539482
540 #: ../src/virt-viewer-window.c:542
483 #: ../src/virt-viewer-window.c:539
541484 msgid "Ctrl+Alt+F_3"
542485 msgstr "Ctrl+Alt+F_3"
543486
544 #: ../src/virt-viewer-window.c:543
487 #: ../src/virt-viewer-window.c:540
545488 msgid "Ctrl+Alt+F_4"
546489 msgstr "Ctrl+Alt+F_4"
547490
548 #: ../src/virt-viewer-window.c:544
491 #: ../src/virt-viewer-window.c:541
549492 msgid "Ctrl+Alt+F_5"
550493 msgstr "Ctrl+Alt+F_5"
551494
552 #: ../src/virt-viewer-window.c:545
495 #: ../src/virt-viewer-window.c:542
553496 msgid "Ctrl+Alt+F_6"
554497 msgstr "Ctrl+Alt+F_6"
555498
556 #: ../src/virt-viewer-window.c:546
499 #: ../src/virt-viewer-window.c:543
557500 msgid "Ctrl+Alt+F_7"
558501 msgstr "Ctrl+Alt+F_7"
559502
560 #: ../src/virt-viewer-window.c:547
503 #: ../src/virt-viewer-window.c:544
561504 msgid "Ctrl+Alt+F_8"
562505 msgstr "Ctrl+Alt+F_8"
563506
564 #: ../src/virt-viewer-window.c:548
507 #: ../src/virt-viewer-window.c:545
565508 msgid "Ctrl+Alt+F_9"
566509 msgstr "Ctrl+Alt+F_9"
567510
568 #: ../src/virt-viewer-window.c:549
511 #: ../src/virt-viewer-window.c:546
569512 msgid "Ctrl+Alt+F1_0"
570513 msgstr "Ctrl+Alt+F1_0"
571514
572 #: ../src/virt-viewer-window.c:550
515 #: ../src/virt-viewer-window.c:547
573516 msgid "Ctrl+Alt+F11"
574517 msgstr "Ctrl+Alt+F11"
575518
576 #: ../src/virt-viewer-window.c:551
519 #: ../src/virt-viewer-window.c:548
577520 msgid "Ctrl+Alt+F12"
578521 msgstr "Ctrl+Alt+F12"
579522
580 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
523 #: ../src/virt-viewer-window.c:919
524 msgid "_Save"
525 msgstr "З_берегти"
526
527 #: ../src/virt-viewer-window.c:927
581528 msgid "Screenshot"
582529 msgstr "Знімок вікна"
583530
584 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
531 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
585532 msgid "Unknown"
586533 msgstr "Невідомо"
587534
588 #: ../src/virt-viewer-window.c:1062
535 #: ../src/virt-viewer-window.c:1071
589536 msgid "Disconnect"
590537 msgstr "Від’єднатися"
591538
592 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
593 #: ../src/virt-viewer.xml.h:3
539 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
594540 msgid "USB device selection"
595541 msgstr "Вибір пристрою USB"
596542
597 #: ../src/virt-viewer-window.c:1081
543 #: ../src/virt-viewer-window.c:1089
598544 msgid "Send key combination"
599545 msgstr "Надіслати комбінацію ключів"
600546
601 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
547 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
602548 msgid "Leave fullscreen"
603549 msgstr "Вийти з повноекранного режиму"
604550
605 #: ../src/virt-viewer-window.c:1173
551 #: ../src/virt-viewer-window.c:1175
606552 msgid "Ctrl+Alt"
607553 msgstr "Ctrl+Alt"
608554
609 #: ../src/virt-viewer-window.c:1176
555 #: ../src/virt-viewer-window.c:1178
610556 #, c-format
611557 msgid "(Press %s to release pointer)"
612558 msgstr "(Натисніть %s, щоб вивільнити вказівник)"
615561 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
616562 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
617563 #.
618 #: ../src/virt-viewer-window.c:1187
564 #: ../src/virt-viewer-window.c:1189
619565 #, c-format
620566 msgid "%s%s%s - %s"
621567 msgstr "%s%s%s — %s"
622568
623569 #. translators: <space>
624 #: ../src/virt-viewer-window.c:1191
570 #: ../src/virt-viewer-window.c:1193
625571 msgid " "
626572 msgstr " "
627573
628 #: ../src/virt-viewer-file.c:825
574 #: ../src/virt-viewer-file.c:843
629575 #, c-format
630576 msgid ""
631577 "At least %s version %s is required to setup this connection, see %s for "
634580 "Для налаштовування цього з’єднання потрібна принаймні версія %s %s, див. %s, "
635581 "щоб дізнатися більше"
636582
637 #: ../src/virt-viewer-file.c:833
583 #: ../src/virt-viewer-file.c:851
638584 #, c-format
639585 msgid "At least %s version %s is required to setup this connection"
640586 msgstr "Для налаштовування цього з’єднання потрібна принаймні версія %s %s"
641587
642 #: ../src/virt-viewer.c:163
588 #: ../src/virt-viewer.c:90
589 msgid "Direct connection with no automatic tunnels"
590 msgstr "Пряме з’єднання без тунелів"
591
592 #: ../src/virt-viewer.c:92
593 msgid "Attach to the local display using libvirt"
594 msgstr "З’єднатися з локальним графічним сеансом за допомогою libvirt"
595
596 #: ../src/virt-viewer.c:94
597 msgid "Connect to hypervisor"
598 msgstr "З’єднатися з гіпервізором"
599
600 #: ../src/virt-viewer.c:96
601 msgid "Wait for domain to start"
602 msgstr "Чекати на запуск служби"
603
604 #: ../src/virt-viewer.c:98
605 msgid "Reconnect to domain upon restart"
606 msgstr "Заново приєднатися до домену після перезапуску"
607
608 #: ../src/virt-viewer.c:105
609 msgid "Virtual machine graphical console"
610 msgstr "Графічна консоль віртуальної машини"
611
612 #: ../src/virt-viewer.c:124
613 #, c-format
614 msgid ""
615 "\n"
616 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
617 "\n"
618 msgstr ""
619 "\n"
620 "Користування: s [ПАРАМЕТРИ] [НАЗВА_ДОМЕНУ|ID|UUID]\n"
621 "\n"
622
623 #: ../src/virt-viewer.c:136
624 #, c-format
625 msgid ""
626 "\n"
627 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
628 "\n"
629 msgstr ""
630 "\n"
631 "Не вказано НАЗВИ_ДОМЕНУ|Ід.|UUID у «--wait»\n"
632 "\n"
633
634 #: ../src/virt-viewer.c:250
643635 msgid "Waiting for guest domain to re-start"
644636 msgstr "Очікування на перезапуск гостьового домену"
645637
646 #: ../src/virt-viewer.c:409
638 #: ../src/virt-viewer.c:496
647639 #, c-format
648640 msgid "Cannot determine the graphic type for the guest %s"
649641 msgstr "Не вдалося визначити тип графічної підсистеми для гостьової системи %s"
650642
651 #: ../src/virt-viewer.c:448
643 #: ../src/virt-viewer.c:535
652644 #, c-format
653645 msgid "Cannot determine the host for the guest %s"
654646 msgstr "Не вдалося визначити вузол для гостьової системи %s"
655647
656 #: ../src/virt-viewer.c:476
648 #: ../src/virt-viewer.c:563
657649 #, c-format
658650 msgid "Guest '%s' is not reachable"
659651 msgstr "Гостьова система «%s» недоступна"
660652
661 #: ../src/virt-viewer.c:697
653 #: ../src/virt-viewer.c:784
662654 #, c-format
663655 msgid "Virtual machine %s is not running"
664656 msgstr "Віртуальну машину %s не запущено"
665657
666 #: ../src/virt-viewer.c:720
658 #: ../src/virt-viewer.c:807
667659 msgid "Waiting for libvirt to start"
668660 msgstr "Очікуємо на запуск libvirt"
669661
670 #: ../src/virt-viewer.c:724
662 #: ../src/virt-viewer.c:811
671663 msgid "Finding guest domain"
672664 msgstr "Пошук гостьового домену"
673665
674 #: ../src/virt-viewer.c:728
666 #: ../src/virt-viewer.c:815
675667 msgid "Waiting for guest domain to be created"
676668 msgstr "Очікування на створення гостьового домену"
677669
678 #: ../src/virt-viewer.c:750
670 #: ../src/virt-viewer.c:837
679671 msgid "Checking guest domain status"
680672 msgstr "Перевірка стану гостьового домену"
681673
682 #: ../src/virt-viewer.c:753
674 #: ../src/virt-viewer.c:840
683675 msgid "Cannot get guest state"
684676 msgstr "Не вдалося отримати стан гостьової системи"
685677
686 #: ../src/virt-viewer.c:759
678 #: ../src/virt-viewer.c:846
687679 msgid "Waiting for guest domain to start"
688680 msgstr "Очікування на запуск гостьового домену"
689681
690 #: ../src/virt-viewer.c:863
682 #: ../src/virt-viewer.c:950
691683 #, c-format
692684 msgid "Unable to connect to libvirt with URI: %s."
693685 msgstr "Не вдалося з’єднатися з libvirt з адресою %s."
694686
695 #: ../src/virt-viewer.c:864
687 #: ../src/virt-viewer.c:951
696688 msgid "[none]"
697689 msgstr "[немає]"
698690
699 #: ../src/virt-viewer.c:871
691 #: ../src/virt-viewer.c:958
700692 msgid "Authentication failed."
701693 msgstr "Спроба пройти розпізнавання зазнала невдачі."
702694
703 #: ../src/virt-viewer.c:931
695 #: ../src/virt-viewer.c:1018
704696 msgid "Failed to connect: "
705697 msgstr "Не вдалося з’єднатися: "
706698
711703 #. * indent-tabs-mode: nil
712704 #. * End:
713705 #.
714 #: ../src/virt-viewer.xml.h:1
706 #: ../src/resources/ui/virt-viewer.ui.h:1
715707 msgid "_File"
716708 msgstr "_Файл"
717709
718 #: ../src/virt-viewer.xml.h:4
710 #: ../src/resources/ui/virt-viewer.ui.h:2
711 msgid "_Screenshot"
712 msgstr "З_німок вікна"
713
714 #: ../src/resources/ui/virt-viewer.ui.h:3
715 msgid "_USB device selection"
716 msgstr "_Вибір пристрою USB"
717
718 #: ../src/resources/ui/virt-viewer.ui.h:4
719719 msgid "Smartcard insertion"
720720 msgstr "Вставлення картки пам’яті"
721721
722 #: ../src/virt-viewer.xml.h:5
722 #: ../src/resources/ui/virt-viewer.ui.h:5
723723 msgid "Smartcard removal"
724724 msgstr "Вилучення картки пам’яті"
725725
726 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
726 #: ../src/resources/ui/virt-viewer.ui.h:6
727 msgid "_Preferences"
728 msgstr "_Налаштування"
729
730 #: ../src/resources/ui/virt-viewer.ui.h:7
731 msgid "_Quit"
732 msgstr "Ви_йти"
733
734 #: ../src/resources/ui/virt-viewer.ui.h:8
735 msgid "_View"
736 msgstr "П_ерегляд"
737
738 #: ../src/resources/ui/virt-viewer.ui.h:9
739 msgid "_Full screen"
740 msgstr "_Повноекранний режим"
741
742 #: ../src/resources/ui/virt-viewer.ui.h:10
743 msgid "_Zoom"
744 msgstr "_Масштаб"
745
746 #: ../src/resources/ui/virt-viewer.ui.h:11
747 msgid "Zoom _In"
748 msgstr "З_більшити"
749
750 #: ../src/resources/ui/virt-viewer.ui.h:12
751 msgid "Zoom _Out"
752 msgstr "З_меншити"
753
754 #: ../src/resources/ui/virt-viewer.ui.h:13
755 msgid "_Normal Size"
756 msgstr "З_вичайний розмір"
757
758 #: ../src/resources/ui/virt-viewer.ui.h:14
759 msgid "_Displays"
760 msgstr "_Дисплеї"
761
762 #: ../src/resources/ui/virt-viewer.ui.h:15
763 msgid "Release cursor"
764 msgstr "Вивільнити вказівник"
765
766 #: ../src/resources/ui/virt-viewer.ui.h:16
767 msgid "_Send key"
768 msgstr "_Надіслати клавішу"
769
770 #: ../src/resources/ui/virt-viewer.ui.h:17
771 msgid "_Help"
772 msgstr "_Довідка"
773
774 #: ../src/resources/ui/virt-viewer.ui.h:18
775 msgid "_Guest Details"
776 msgstr "Параметри _гостьової системи"
777
778 #: ../src/resources/ui/virt-viewer.ui.h:19
779 msgid "_About"
780 msgstr "_Про програму"
781
782 #: ../src/resources/ui/virt-viewer.ui.h:20
783 msgid "_Change CD"
784 msgstr "За_мінити CD"
785
786 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
787 msgid "Guest Details"
788 msgstr "Параметри гостьової системи"
789
790 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
791 msgid "Name:"
792 msgstr "Назва:"
793
794 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
795 msgid "GUID:"
796 msgstr "GUID:"
797
798 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
799 msgid "Choose a virtual machine"
800 msgstr "Виберіть віртуальну машину"
801
802 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
803 msgid "Name"
804 msgstr "Назва"
805
806 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
807 msgid "Available virtual machines"
808 msgstr "Доступні віртуальні машини"
809
810 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
727811 msgid "Preferences"
728812 msgstr "Параметри"
729813
730 #: ../src/virt-viewer.xml.h:7
731 msgid "_View"
732 msgstr "П_ерегляд"
733
734 #: ../src/virt-viewer.xml.h:8
735 msgid "Full screen"
736 msgstr "Повноекранний"
737
738 #: ../src/virt-viewer.xml.h:9
739 msgid "_Zoom"
740 msgstr "_Масштаб"
741
742 #: ../src/virt-viewer.xml.h:10
743 msgid "Displays"
744 msgstr "Екрани"
745
746 #: ../src/virt-viewer.xml.h:11
747 msgid "Release cursor"
748 msgstr "Вивільнити вказівник"
749
750 #: ../src/virt-viewer.xml.h:12
751 msgid "_Send key"
752 msgstr "_Надіслати клавішу"
753
754 #: ../src/virt-viewer.xml.h:13
755 msgid "_Help"
756 msgstr "_Довідка"
757
758 #: ../src/virt-viewer.xml.h:14
759 msgid "_Guest Details"
760 msgstr "Параметри _гостьової системи"
761
762 #: ../src/virt-viewer-guest-details.xml.h:1
763 msgid "Guest Details"
764 msgstr "Параметри гостьової системи"
765
766 #: ../src/virt-viewer-guest-details.xml.h:2
767 msgid "Name:"
768 msgstr "Назва:"
769
770 #: ../src/virt-viewer-guest-details.xml.h:3
771 msgid "GUID:"
772 msgstr "GUID:"
773
774 #: ../src/virt-viewer-vm-connection.xml.h:1
775 msgid "Choose a virtual machine"
776 msgstr "Виберіть віртуальну машину"
777
778 #: ../src/virt-viewer-vm-connection.xml.h:2
779 msgid "Name"
780 msgstr "Назва"
781
782 #: ../src/virt-viewer-vm-connection.xml.h:3
783 msgid "Available virtual machines"
784 msgstr "Доступні віртуальні машини"
785
786 #: ../src/virt-viewer-preferences.xml.h:2
814 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
787815 msgid "Folder sharing"
788816 msgstr "Спільне використання тек"
789817
790 #: ../src/virt-viewer-preferences.xml.h:3
818 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
791819 msgid "Share folder"
792820 msgstr "Оприлюднити теку"
793821
794 #: ../src/virt-viewer-preferences.xml.h:4
822 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
795823 msgid "Read-only"
796824 msgstr "Лише читання"
797825
798 #: ../src/virt-viewer-preferences.xml.h:5
826 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
799827 msgid "Spice"
800828 msgstr "Spice"
+343
-316
po/ur.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/vi.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: wba\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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
+343
-316
po/yo.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
77 # Leah Liu <lliu@redhat.com>, 2010
88 # Tommy He <lovenemesis@gmail.com>, 2013
99 # Wei Liu <LLIU@REDHAT.COM>, 2012-2013
10 # Leah Liu <lliu@redhat.com>, 2016. #zanata
1011 msgid ""
1112 msgstr ""
1213 "Project-Id-Version: PACKAGE VERSION\n"
1314 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
15 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
16 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
15 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
16 "PO-Revision-Date: 2016-02-23 12:28-0500\n"
17 "Last-Translator: Leah Liu <lliu@redhat.com>\n"
1718 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/virt-"
1819 "viewer/language/zh_CN/)\n"
1920 "Language: zh-CN\n"
2122 "Content-Type: text/plain; charset=UTF-8\n"
2223 "Content-Transfer-Encoding: 8bit\n"
2324 "Plural-Forms: nplurals=1; plural=0;\n"
24 "X-Generator: Zanata 3.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
25 "X-Generator: Zanata 3.8.4\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
2729 msgid "Remote Viewer"
2830 msgstr "远程查看程序"
31
32 #: ../data/remote-viewer.appdata.xml.in.h:2
33 msgid "Remotely access virtual machines"
34 msgstr ""
35
36 #: ../data/remote-viewer.appdata.xml.in.h:3
37 msgid ""
38 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
39 "time it supports guest OS using the VNC or SPICE protocols. Further "
40 "protocols may be supported in the future as user demand dictates. The viewer "
41 "can connect directly to both local and remotely hosted guest OS, optionally "
42 "using SSL/TLS encryption."
43 msgstr ""
2944
3045 #: ../data/remote-viewer.desktop.in.h:2
3146 msgid "Access remote desktops"
3550 msgid "Virt-Viewer connection file"
3651 msgstr "Virt-Viewer 连接文件"
3752
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "源"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "捆绑的源"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "目标"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "捆绑的目标"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "源属性"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "要捆绑的源的属性"
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "目标属性"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "要捆绑的目标的属性"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "标记"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "捆绑标记"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "显示版本信息"
86
87 #: ../src/remote-viewer-main.c:105
53 #: ../src/remote-viewer.c:139
8854 msgid "Set window title"
8955 msgstr "设置窗口标题"
9056
91 #: ../src/remote-viewer-main.c:108
57 #: ../src/remote-viewer.c:142
9258 msgid "Open connection using Spice controller communication"
9359 msgstr "使用 Spice 控制器沟通打开连接"
9460
95 #: ../src/remote-viewer-main.c:120
61 #: ../src/remote-viewer.c:150
9662 msgid "Remote viewer client"
97 msgstr ""
98
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "运行 '%s --help' 来查看可用命令行选项的完整列表\n"
107
108 #: ../src/remote-viewer-main.c:149
109 #, c-format
110 msgid "Error: extra arguments given while using Spice controller\n"
111 msgstr "错误:使用 Spice 控制器时给出额外参数\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "错误:无法控制多个 URI\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
63 msgstr "远程查看客户端"
64
65 #: ../src/remote-viewer.c:175
66 #, c-format
67 msgid ""
68 "\n"
69 "Error: can't handle multiple URIs\n"
70 "\n"
71 msgstr ""
72
73 #: ../src/remote-viewer.c:187
74 #, c-format
75 msgid ""
76 "\n"
77 "Error: extra arguments given while using Spice controller\n"
78 "\n"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
82 #, c-format
83 msgid "Run '%s --help' to see a full list of available command line options\n"
84 msgstr ""
85
86 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11987 msgid "Failed to initiate connection"
12088 msgstr "初始化连接失败"
12189
122 #: ../src/remote-viewer.c:313
90 #: ../src/remote-viewer.c:297
12391 msgid "Display disabled by controller"
12492 msgstr "显示控制器禁用的"
12593
126 #: ../src/remote-viewer.c:609
94 #: ../src/remote-viewer.c:593
12795 #, c-format
12896 msgid "Controller connection failed: %s"
12997 msgstr "控制器连接失败:%s"
13098
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr ""
134
135 #: ../src/remote-viewer.c:855
99 #: ../src/remote-viewer.c:848
136100 msgid "failed to parse ovirt uri"
137 msgstr ""
138
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
101 msgstr "解析 ovirt uri 失败"
102
103 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140104 msgid "Authentication was cancelled"
141 msgstr ""
142
143 #: ../src/remote-viewer.c:900
105 msgstr "已取消认证"
106
107 #: ../src/remote-viewer.c:893
144108 #, c-format
145109 msgid "oVirt VM %s is not running"
146 msgstr ""
147
148 #: ../src/remote-viewer.c:914
110 msgstr "oVirt VM %s 未运行"
111
112 #: ../src/remote-viewer.c:907
149113 #, c-format
150114 msgid "oVirt VM %s has no display"
151 msgstr ""
152
153 #: ../src/remote-viewer.c:940
115 msgstr "oVirt VM %s 没有显示器"
116
117 #: ../src/remote-viewer.c:933
154118 #, c-format
155119 msgid "oVirt VM %s has no host information"
156 msgstr ""
157
158 #: ../src/remote-viewer.c:951
120 msgstr "oVirt VM %s 没有主机虚拟系"
121
122 #: ../src/remote-viewer.c:944
159123 #, c-format
160124 msgid "oVirt VM %s has unknown display type: %d"
161 msgstr ""
162
163 #: ../src/remote-viewer.c:1094
125 msgstr "oVirt VM %s 有未知限制器类型:%d"
126
127 #: ../src/remote-viewer.c:1115
164128 msgid "Setting up Spice session..."
165129 msgstr "设置 Spice 会话......"
166130
167 #: ../src/remote-viewer.c:1102
131 #: ../src/remote-viewer.c:1123
168132 msgid "No connection was chosen"
169 msgstr ""
170
171 #: ../src/remote-viewer.c:1120
133 msgstr "没有选择任何连接"
134
135 #: ../src/remote-viewer.c:1141
172136 #, c-format
173137 msgid "Invalid file %s: "
174 msgstr ""
175
176 #: ../src/remote-viewer.c:1128
138 msgstr "无效文件 %s:"
139
140 #: ../src/remote-viewer.c:1149
177141 msgid "Cannot determine the connection type from URI"
178142 msgstr "无法确定 URI 的连接类型"
179143
180 #: ../src/remote-viewer.c:1134
144 #: ../src/remote-viewer.c:1155
181145 msgid "Couldn't open oVirt session: "
182 msgstr ""
146 msgstr "无法打开 oVirt 会话:"
183147
184148 #.
185149 #. * Local variables:
188152 #. * indent-tabs-mode: nil
189153 #. * End:
190154 #.
191 #: ../src/remote-viewer-connect.xml.h:1
155 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192156 msgid "Connection details"
193157 msgstr "连接详情"
194158
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr ""
198
199 #: ../src/remote-viewer-connect.xml.h:3
159 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
160 msgid "Connection _Address"
161 msgstr ""
162
163 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200164 msgid "For example, spice://foo.example.org:5900"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:4
165 msgstr "例如:spice://foo.example.org:5900"
166
167 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204168 msgid "Recent connections"
205 msgstr ""
206
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr ""
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "关于 Glade"
218
219 #: ../src/virt-viewer-about.xml.h:2
169 msgstr "最近的连接"
170
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
172 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
173 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
174 msgid "_Cancel"
175 msgstr ""
176
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
179 msgid "C_onnect"
180 msgstr ""
181
182 #: ../src/resources/ui/virt-viewer-about.ui.h:1
183 msgid "About Virt-Viewer"
184 msgstr ""
185
186 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220187 msgid ""
221188 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222189 "Copyright (C) 2007-2014 Red Hat, Inc."
223190 msgstr ""
224
225 #: ../src/virt-viewer-about.xml.h:4
191 "版权所有 (C) 2007-2012 Daniel P. Berrange\n"
192 "版权所有 (C) 2007-2010 Red Hat, Inc."
193
194 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226195 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227196 msgstr "使用 GTK-VNC, SPICE-GTK 和 libvirt 构建远程桌面客户端"
228197
229 #: ../src/virt-viewer-about.xml.h:5
198 #: ../src/resources/ui/virt-viewer-about.ui.h:5
230199 msgid "virt-manager.org"
231200 msgstr "virt-manager.org"
232201
233 #: ../src/virt-viewer-about.xml.h:6
202 #: ../src/resources/ui/virt-viewer-about.ui.h:6
234203 msgid ""
235204 "This program is free software; you can redistribute it and/or modify\n"
236205 "it under the terms of the GNU General Public License as published by\n"
258227 "如果没有,请致电自由软件基金\n"
259228 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA⏎ \n"
260229
261 #: ../src/virt-viewer-about.xml.h:20
230 #: ../src/resources/ui/virt-viewer-about.ui.h:20
262231 msgid "The Fedora Translation Team"
263232 msgstr "Fedora 翻译团队"
264233
265 #: ../src/virt-viewer-app.c:526
234 #: ../src/virt-viewer-app.c:458
266235 msgid "Do you want to close the session?"
267236 msgstr "您要关闭这个会话吗?"
268237
269 #: ../src/virt-viewer-app.c:528
238 #: ../src/virt-viewer-app.c:460
270239 msgid "Do not ask me again"
271240 msgstr "不要再问我"
272241
273 #: ../src/virt-viewer-app.c:1008
242 #: ../src/virt-viewer-app.c:948
274243 #, c-format
275244 msgid "Waiting for display %d..."
276 msgstr "等待画面 %d......"
277
278 #: ../src/virt-viewer-app.c:1117
245 msgstr "等待显示器 %d......"
246
247 #: ../src/virt-viewer-app.c:1055
279248 #, c-format
280249 msgid "Unsupported graphic type '%s'"
281 msgstr ""
282
283 #: ../src/virt-viewer-app.c:1200
250 msgstr "不支持的图形类型 '%s'"
251
252 #: ../src/virt-viewer-app.c:1138
284253 msgid "Connect to ssh failed."
285254 msgstr "连接到 ssh 失败"
286255
287 #: ../src/virt-viewer-app.c:1202
256 #: ../src/virt-viewer-app.c:1140
288257 msgid "Can't connect to channel, SSH only supported."
289258 msgstr "无法连接到通道,只支持 SSH。"
290259
291 #: ../src/virt-viewer-app.c:1214
260 #: ../src/virt-viewer-app.c:1152
292261 msgid "Connect to channel unsupported."
293262 msgstr "无法连接到不支持的通道。"
294263
295 #: ../src/virt-viewer-app.c:1276
264 #: ../src/virt-viewer-app.c:1214
296265 msgid "Display can only be attached through libvirt with --attach"
297 msgstr ""
298
299 #: ../src/virt-viewer-app.c:1299
266 msgstr "只能通过 libvirt 使用 --attach 连接显示器"
267
268 #: ../src/virt-viewer-app.c:1237
300269 msgid "Connecting to graphic server"
301270 msgstr "正在连接到图形服务器"
302271
303 #: ../src/virt-viewer-app.c:1398
272 #: ../src/virt-viewer-app.c:1336
304273 msgid "Guest domain has shutdown"
305274 msgstr "已关闭虚拟机域"
306275
307 #: ../src/virt-viewer-app.c:1459
276 #: ../src/virt-viewer-app.c:1397
308277 msgid "Connected to graphic server"
309278 msgstr "已连接到图形服务器"
310279
311 #: ../src/virt-viewer-app.c:1486
280 #: ../src/virt-viewer-app.c:1424
312281 #, c-format
313282 msgid "Unable to connect to the graphic server %s"
314283 msgstr "无法连接到图形服务器 %s"
315284
316 #: ../src/virt-viewer-app.c:1512
285 #: ../src/virt-viewer-app.c:1450
317286 #, c-format
318287 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319 msgstr ""
320
321 #: ../src/virt-viewer-app.c:1525
288 msgstr "无法使用远程桌面服务器在 %s 认证: %s\n"
289
290 #: ../src/virt-viewer-app.c:1463
322291 #, c-format
323292 msgid "Unable to authenticate with remote desktop server: %s"
324293 msgstr "无法使用远程桌面服务器验证:%s"
325294
326 #: ../src/virt-viewer-app.c:1533
295 #: ../src/virt-viewer-app.c:1471
327296 #, c-format
328297 msgid "USB redirection error: %s"
329298 msgstr "USB 重新定向错误:%s"
330299
331 #: ../src/virt-viewer-app.c:1786
300 #: ../src/virt-viewer-app.c:1805
332301 #, c-format
333302 msgid "Zoom level must be within %d-%d\n"
334 msgstr ""
335
336 #: ../src/virt-viewer-app.c:2296
337 #, c-format
338 msgid "Display %d"
339 msgstr "显示 %d"
340
341 #: ../src/virt-viewer-app.c:2552
303 msgstr "缩放级别必须在 %d-%d 之间\n"
304
305 #: ../src/virt-viewer-app.c:1858
306 #, c-format
307 msgid "%s\n"
308 msgstr ""
309
310 #: ../src/virt-viewer-app.c:1868
311 #, c-format
312 msgid "%s version %s"
313 msgstr ""
314
315 #: ../src/virt-viewer-app.c:2292
316 #, c-format
317 msgid "Display _%d"
318 msgstr ""
319
320 #: ../src/virt-viewer-app.c:2548
342321 #, c-format
343322 msgid "Invalid kiosk-quit argument: %s"
344323 msgstr "无效的 kiosk-quit 参数:%s"
324
325 #: ../src/virt-viewer-app.c:2559
326 msgid "Display version information"
327 msgstr "显示版本信息"
345328
346329 #: ../src/virt-viewer-app.c:2561
347330 msgid "Zoom level of window, in percentage"
349332
350333 #: ../src/virt-viewer-app.c:2563
351334 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
352 msgstr ""
335 msgstr "以全屏模式打开(调整虚拟机解析度使其适用于客户端)"
353336
354337 #: ../src/virt-viewer-app.c:2565
355338 msgid "Customise hotkeys"
361344
362345 #: ../src/virt-viewer-app.c:2569
363346 msgid "Quit on given condition in kiosk mode"
364 msgstr ""
347 msgstr "以 kiosk 模式中给出的条件退出"
365348
366349 #: ../src/virt-viewer-app.c:2569
367350 msgid "<never|on-disconnect>"
375358 msgid "Display debugging information"
376359 msgstr "显示调试信息"
377360
378 #: ../src/virt-viewer-auth.c:88
361 #: ../src/virt-viewer-auth.c:89
379362 #, c-format
380363 msgid ""
381364 "Authentication is required for the %s connection to:\n"
383366 "<b>%s</b>\n"
384367 "\n"
385368 msgstr ""
386
387 #: ../src/virt-viewer-auth.c:92
369 "%s 连接需要认证:\n"
370 "\n"
371 "<b>%s</b>\n"
372 "\n"
373
374 #: ../src/virt-viewer-auth.c:93
388375 #, c-format
389376 msgid "Authentication is required for the %s connection:\n"
390 msgstr ""
377 msgstr "需要为 %s 连接进行认证:\n"
391378
392379 #.
393380 #. * Local variables:
396383 #. * indent-tabs-mode: nil
397384 #. * End:
398385 #.
399 #: ../src/virt-viewer-auth.xml.h:1
386 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
400387 msgid "Authentication required"
401388 msgstr "所需验证"
402389
403 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
390 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
391 msgid "_OK"
392 msgstr ""
393
394 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
395 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
404396 msgid "label"
405397 msgstr "标签"
406398
407 #: ../src/virt-viewer-auth.xml.h:3
399 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408400 msgid "Password:"
409401 msgstr "密码:"
410402
411 #: ../src/virt-viewer-auth.xml.h:4
403 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412404 msgid "Username:"
413405 msgstr "用户名:"
414406
415 #: ../src/virt-viewer-auth.xml.h:5
407 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416408 msgid "Show password"
417 msgstr ""
418
419 #: ../src/virt-viewer-display-vnc.c:133
409 msgstr "显示密码"
410
411 #: ../src/virt-viewer-display-vnc.c:134
420412 msgid "VNC does not provide GUID"
413 msgstr "VNC 不提供 GUID"
414
415 #: ../src/virt-viewer-file-transfer-dialog.c:152
416 msgid "Cancel"
417 msgstr "取消"
418
419 #: ../src/virt-viewer-file-transfer-dialog.c:163
420 msgid "File Transfers"
421421 msgstr ""
422422
423423 #: ../src/virt-viewer-main.c:38
424 #, c-format
425 msgid "%s version %s\n"
426 msgstr "%s 版本 %s\n"
427
428 #: ../src/virt-viewer-main.c:62
429 msgid "Direct connection with no automatic tunnels"
430 msgstr "无自动通道的直接连接"
431
432 #: ../src/virt-viewer-main.c:64
433 msgid "Attach to the local display using libvirt"
434 msgstr "使用 libvirt 附加本地画面"
435
436 #: ../src/virt-viewer-main.c:66
437 msgid "Connect to hypervisor"
438 msgstr "连接到管理程序(hypervisor)"
439
440 #: ../src/virt-viewer-main.c:68
441 msgid "Wait for domain to start"
442 msgstr "等待域启动"
443
444 #: ../src/virt-viewer-main.c:70
445 msgid "Reconnect to domain upon restart"
446 msgstr "重启后重新连接到域"
447
448 #: ../src/virt-viewer-main.c:77
449424 msgid "Virt Viewer"
450425 msgstr "Virt Viewer"
451426
452 #: ../src/virt-viewer-main.c:80
453 #, c-format
454 msgid "Run '%s --help' to see a full list of available command line options"
455 msgstr "运行 '%s --help' 来查看可用命令行选项的完整列表"
456
457 #: ../src/virt-viewer-main.c:86
458 msgid "Virtual machine graphical console"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:107
462 #, c-format
463 msgid ""
464 "\n"
465 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
466 "\n"
467 "%s\n"
468 "\n"
469 msgstr ""
470
471 #: ../src/virt-viewer-main.c:112
472 #, c-format
473 msgid ""
474 "\n"
475 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
476 "\n"
477 msgstr ""
478
479 #: ../src/virt-viewer-session-spice.c:694
427 #: ../src/virt-viewer-session-spice.c:705
480428 msgid "Invalid password"
481 msgstr ""
429 msgstr "无效密码"
482430
483431 #. Create the widgets
484 #: ../src/virt-viewer-session-spice.c:786
432 #: ../src/virt-viewer-session-spice.c:797
485433 msgid "Select USB devices for redirection"
486434 msgstr "为重新定向选择 USB 设备"
487435
488 #: ../src/virt-viewer-session-vnc.c:153
436 #: ../src/virt-viewer-session-spice.c:799
437 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
438 msgid "_Close"
439 msgstr ""
440
441 #: ../src/virt-viewer-session-vnc.c:156
489442 #, c-format
490443 msgid "Unsupported authentication type %d"
491444 msgstr "不支持的验证类型 %d"
492445
493446 #: ../src/virt-viewer-vm-connection.c:64
494447 msgid "No virtual machine found"
495 msgstr ""
448 msgstr "未找到虚拟机"
496449
497450 #: ../src/virt-viewer-vm-connection.c:93
498451 msgid "No virtual machine was chosen"
499 msgstr ""
500
501 #: ../src/virt-viewer-window.c:537
452 msgstr "未选择虚拟机"
453
454 #: ../src/virt-viewer-window.c:534
502455 msgid "Ctrl+Alt+_Del"
503456 msgstr "Ctrl+Alt+_Del"
504457
505 #: ../src/virt-viewer-window.c:538
458 #: ../src/virt-viewer-window.c:535
506459 msgid "Ctrl+Alt+_Backspace"
507460 msgstr "Ctrl+Alt+_Backspace"
508461
509 #: ../src/virt-viewer-window.c:540
462 #: ../src/virt-viewer-window.c:537
510463 msgid "Ctrl+Alt+F_1"
511464 msgstr "Ctrl+Alt+F_1"
512465
513 #: ../src/virt-viewer-window.c:541
466 #: ../src/virt-viewer-window.c:538
514467 msgid "Ctrl+Alt+F_2"
515468 msgstr "Ctrl+Alt+F_2"
516469
517 #: ../src/virt-viewer-window.c:542
470 #: ../src/virt-viewer-window.c:539
518471 msgid "Ctrl+Alt+F_3"
519472 msgstr "Ctrl+Alt+F_3"
520473
521 #: ../src/virt-viewer-window.c:543
474 #: ../src/virt-viewer-window.c:540
522475 msgid "Ctrl+Alt+F_4"
523476 msgstr "Ctrl+Alt+F_4"
524477
525 #: ../src/virt-viewer-window.c:544
478 #: ../src/virt-viewer-window.c:541
526479 msgid "Ctrl+Alt+F_5"
527480 msgstr "Ctrl+Alt+F_5"
528481
529 #: ../src/virt-viewer-window.c:545
482 #: ../src/virt-viewer-window.c:542
530483 msgid "Ctrl+Alt+F_6"
531484 msgstr "Ctrl+Alt+F_6"
532485
533 #: ../src/virt-viewer-window.c:546
486 #: ../src/virt-viewer-window.c:543
534487 msgid "Ctrl+Alt+F_7"
535488 msgstr "Ctrl+Alt+F_7"
536489
537 #: ../src/virt-viewer-window.c:547
490 #: ../src/virt-viewer-window.c:544
538491 msgid "Ctrl+Alt+F_8"
539492 msgstr "Ctrl+Alt+F_8"
540493
541 #: ../src/virt-viewer-window.c:548
494 #: ../src/virt-viewer-window.c:545
542495 msgid "Ctrl+Alt+F_9"
543496 msgstr "Ctrl+Alt+F_9"
544497
545 #: ../src/virt-viewer-window.c:549
498 #: ../src/virt-viewer-window.c:546
546499 msgid "Ctrl+Alt+F1_0"
547500 msgstr "Ctrl+Alt+F1_0"
548501
549 #: ../src/virt-viewer-window.c:550
502 #: ../src/virt-viewer-window.c:547
550503 msgid "Ctrl+Alt+F11"
551504 msgstr "Ctrl+Alt+F11"
552505
553 #: ../src/virt-viewer-window.c:551
506 #: ../src/virt-viewer-window.c:548
554507 msgid "Ctrl+Alt+F12"
555508 msgstr "Ctrl+Alt+F12"
556509
557 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
510 #: ../src/virt-viewer-window.c:919
511 msgid "_Save"
512 msgstr ""
513
514 #: ../src/virt-viewer-window.c:927
558515 msgid "Screenshot"
559516 msgstr "截屏"
560517
561 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
518 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
562519 msgid "Unknown"
563 msgstr ""
564
565 #: ../src/virt-viewer-window.c:1062
520 msgstr "未知"
521
522 #: ../src/virt-viewer-window.c:1071
566523 msgid "Disconnect"
567524 msgstr "断开连接"
568525
569 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
570 #: ../src/virt-viewer.xml.h:3
526 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
571527 msgid "USB device selection"
572528 msgstr "USB 设备选择"
573529
574 #: ../src/virt-viewer-window.c:1081
530 #: ../src/virt-viewer-window.c:1089
575531 msgid "Send key combination"
576532 msgstr "发送按键组合"
577533
578 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
534 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
579535 msgid "Leave fullscreen"
580536 msgstr "离开全屏"
581537
582 #: ../src/virt-viewer-window.c:1173
538 #: ../src/virt-viewer-window.c:1175
583539 msgid "Ctrl+Alt"
584540 msgstr "Ctrl+Alt"
585541
586 #: ../src/virt-viewer-window.c:1176
542 #: ../src/virt-viewer-window.c:1178
587543 #, c-format
588544 msgid "(Press %s to release pointer)"
589545 msgstr "(按 %s 释放光标)"
592548 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
593549 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
594550 #.
595 #: ../src/virt-viewer-window.c:1187
551 #: ../src/virt-viewer-window.c:1189
596552 #, c-format
597553 msgid "%s%s%s - %s"
598554 msgstr "%s%s%s - %s"
599555
600556 #. translators: <space>
601 #: ../src/virt-viewer-window.c:1191
557 #: ../src/virt-viewer-window.c:1193
602558 msgid " "
603559 msgstr " "
604560
605 #: ../src/virt-viewer-file.c:825
561 #: ../src/virt-viewer-file.c:843
606562 #, c-format
607563 msgid ""
608564 "At least %s version %s is required to setup this connection, see %s for "
609565 "details"
610 msgstr ""
611
612 #: ../src/virt-viewer-file.c:833
566 msgstr "设置这个连接至少需要 %s 的 %s 版本,详情请查看 %s"
567
568 #: ../src/virt-viewer-file.c:851
613569 #, c-format
614570 msgid "At least %s version %s is required to setup this connection"
615 msgstr ""
616
617 #: ../src/virt-viewer.c:163
571 msgstr "设置这个连接至少需要 %s 的 %s 版本"
572
573 #: ../src/virt-viewer.c:90
574 msgid "Direct connection with no automatic tunnels"
575 msgstr "无自动通道的直接连接"
576
577 #: ../src/virt-viewer.c:92
578 msgid "Attach to the local display using libvirt"
579 msgstr "使用 libvirt 附加本地画面"
580
581 #: ../src/virt-viewer.c:94
582 msgid "Connect to hypervisor"
583 msgstr "连接到管理程序(hypervisor)"
584
585 #: ../src/virt-viewer.c:96
586 msgid "Wait for domain to start"
587 msgstr "等待域启动"
588
589 #: ../src/virt-viewer.c:98
590 msgid "Reconnect to domain upon restart"
591 msgstr "重启后重新连接到域"
592
593 #: ../src/virt-viewer.c:105
594 msgid "Virtual machine graphical console"
595 msgstr "虚拟机图形控制台"
596
597 #: ../src/virt-viewer.c:124
598 #, c-format
599 msgid ""
600 "\n"
601 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
602 "\n"
603 msgstr ""
604
605 #: ../src/virt-viewer.c:136
606 #, c-format
607 msgid ""
608 "\n"
609 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
610 "\n"
611 msgstr ""
612 "\n"
613 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
614 "\n"
615
616 #: ../src/virt-viewer.c:250
618617 msgid "Waiting for guest domain to re-start"
619618 msgstr "等待虚拟机域重启"
620619
621 #: ../src/virt-viewer.c:409
620 #: ../src/virt-viewer.c:496
622621 #, c-format
623622 msgid "Cannot determine the graphic type for the guest %s"
624623 msgstr "无法确定虚拟机 %s 的图形类型"
625624
626 #: ../src/virt-viewer.c:448
625 #: ../src/virt-viewer.c:535
627626 #, c-format
628627 msgid "Cannot determine the host for the guest %s"
629628 msgstr "无法确定虚拟机 %s 的主机"
630629
631 #: ../src/virt-viewer.c:476
630 #: ../src/virt-viewer.c:563
632631 #, c-format
633632 msgid "Guest '%s' is not reachable"
634 msgstr ""
635
636 #: ../src/virt-viewer.c:697
633 msgstr "无法访问 '%s'"
634
635 #: ../src/virt-viewer.c:784
637636 #, c-format
638637 msgid "Virtual machine %s is not running"
639 msgstr ""
640
641 #: ../src/virt-viewer.c:720
638 msgstr "虚拟机 %s 未运行"
639
640 #: ../src/virt-viewer.c:807
642641 msgid "Waiting for libvirt to start"
643642 msgstr "等待 libvirt 启动"
644643
645 #: ../src/virt-viewer.c:724
644 #: ../src/virt-viewer.c:811
646645 msgid "Finding guest domain"
647646 msgstr "正在查找虚拟机域"
648647
649 #: ../src/virt-viewer.c:728
648 #: ../src/virt-viewer.c:815
650649 msgid "Waiting for guest domain to be created"
651650 msgstr "正在等待生成虚拟机域"
652651
653 #: ../src/virt-viewer.c:750
652 #: ../src/virt-viewer.c:837
654653 msgid "Checking guest domain status"
655654 msgstr "正在检查虚拟机域状态"
656655
657 #: ../src/virt-viewer.c:753
656 #: ../src/virt-viewer.c:840
658657 msgid "Cannot get guest state"
659 msgstr ""
660
661 #: ../src/virt-viewer.c:759
658 msgstr "无法获得虚拟机状态"
659
660 #: ../src/virt-viewer.c:846
662661 msgid "Waiting for guest domain to start"
663662 msgstr "正在等待虚拟机域启动"
664663
665 #: ../src/virt-viewer.c:863
664 #: ../src/virt-viewer.c:950
666665 #, c-format
667666 msgid "Unable to connect to libvirt with URI: %s."
668 msgstr ""
669
670 #: ../src/virt-viewer.c:864
667 msgstr "无论使用 URI 连接到 libvirt:%s"
668
669 #: ../src/virt-viewer.c:951
671670 msgid "[none]"
672671 msgstr "[无]"
673672
674 #: ../src/virt-viewer.c:871
673 #: ../src/virt-viewer.c:958
675674 msgid "Authentication failed."
676 msgstr ""
677
678 #: ../src/virt-viewer.c:931
675 msgstr "认证失败。"
676
677 #: ../src/virt-viewer.c:1018
679678 msgid "Failed to connect: "
680 msgstr ""
679 msgstr "无法连接:"
681680
682681 #.
683682 #. * Local variables:
686685 #. * indent-tabs-mode: nil
687686 #. * End:
688687 #.
689 #: ../src/virt-viewer.xml.h:1
688 #: ../src/resources/ui/virt-viewer.ui.h:1
690689 msgid "_File"
691690 msgstr "文件(_F)"
692691
693 #: ../src/virt-viewer.xml.h:4
692 #: ../src/resources/ui/virt-viewer.ui.h:2
693 msgid "_Screenshot"
694 msgstr ""
695
696 #: ../src/resources/ui/virt-viewer.ui.h:3
697 msgid "_USB device selection"
698 msgstr ""
699
700 #: ../src/resources/ui/virt-viewer.ui.h:4
694701 msgid "Smartcard insertion"
695702 msgstr "插入智能卡"
696703
697 #: ../src/virt-viewer.xml.h:5
704 #: ../src/resources/ui/virt-viewer.ui.h:5
698705 msgid "Smartcard removal"
699706 msgstr "删除智能卡"
700707
701 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
702 msgid "Preferences"
703 msgstr ""
704
705 #: ../src/virt-viewer.xml.h:7
708 #: ../src/resources/ui/virt-viewer.ui.h:6
709 msgid "_Preferences"
710 msgstr ""
711
712 #: ../src/resources/ui/virt-viewer.ui.h:7
713 msgid "_Quit"
714 msgstr ""
715
716 #: ../src/resources/ui/virt-viewer.ui.h:8
706717 msgid "_View"
707718 msgstr "查看(_V)"
708719
709 #: ../src/virt-viewer.xml.h:8
710 msgid "Full screen"
711 msgstr "全屏"
712
713 #: ../src/virt-viewer.xml.h:9
720 #: ../src/resources/ui/virt-viewer.ui.h:9
721 msgid "_Full screen"
722 msgstr ""
723
724 #: ../src/resources/ui/virt-viewer.ui.h:10
714725 msgid "_Zoom"
715726 msgstr "缩放(_Z)"
716727
717 #: ../src/virt-viewer.xml.h:10
718 msgid "Displays"
719 msgstr "画面"
720
721 #: ../src/virt-viewer.xml.h:11
728 #: ../src/resources/ui/virt-viewer.ui.h:11
729 msgid "Zoom _In"
730 msgstr ""
731
732 #: ../src/resources/ui/virt-viewer.ui.h:12
733 msgid "Zoom _Out"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:13
737 msgid "_Normal Size"
738 msgstr ""
739
740 #: ../src/resources/ui/virt-viewer.ui.h:14
741 msgid "_Displays"
742 msgstr ""
743
744 #: ../src/resources/ui/virt-viewer.ui.h:15
722745 msgid "Release cursor"
723746 msgstr "释放光标"
724747
725 #: ../src/virt-viewer.xml.h:12
748 #: ../src/resources/ui/virt-viewer.ui.h:16
726749 msgid "_Send key"
727750 msgstr "发送按键(_S)"
728751
729 #: ../src/virt-viewer.xml.h:13
752 #: ../src/resources/ui/virt-viewer.ui.h:17
730753 msgid "_Help"
731754 msgstr "帮助(_H)"
732755
733 #: ../src/virt-viewer.xml.h:14
756 #: ../src/resources/ui/virt-viewer.ui.h:18
734757 msgid "_Guest Details"
735 msgstr ""
736
737 #: ../src/virt-viewer-guest-details.xml.h:1
758 msgstr "虚拟机详情(_G)"
759
760 #: ../src/resources/ui/virt-viewer.ui.h:19
761 msgid "_About"
762 msgstr ""
763
764 #: ../src/resources/ui/virt-viewer.ui.h:20
765 msgid "_Change CD"
766 msgstr "更换设备(_C)"
767
768 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
738769 msgid "Guest Details"
739 msgstr ""
740
741 #: ../src/virt-viewer-guest-details.xml.h:2
770 msgstr "虚拟机详情"
771
772 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
742773 msgid "Name:"
743 msgstr ""
744
745 #: ../src/virt-viewer-guest-details.xml.h:3
774 msgstr "名称:"
775
776 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
746777 msgid "GUID:"
747 msgstr ""
748
749 #: ../src/virt-viewer-vm-connection.xml.h:1
778 msgstr "GUID:"
779
780 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
750781 msgid "Choose a virtual machine"
751 msgstr ""
752
753 #: ../src/virt-viewer-vm-connection.xml.h:2
782 msgstr "选择虚拟机"
783
784 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
754785 msgid "Name"
755 msgstr ""
756
757 #: ../src/virt-viewer-vm-connection.xml.h:3
786 msgstr "名称"
787
788 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
758789 msgid "Available virtual machines"
759 msgstr ""
760
761 #: ../src/virt-viewer-preferences.xml.h:2
790 msgstr "可用虚拟机"
791
792 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
793 msgid "Preferences"
794 msgstr "属性"
795
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
762797 msgid "Folder sharing"
763 msgstr ""
764
765 #: ../src/virt-viewer-preferences.xml.h:3
798 msgstr "文件夹共享"
799
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
766801 msgid "Share folder"
767 msgstr ""
768
769 #: ../src/virt-viewer-preferences.xml.h:4
802 msgstr "共享文件夹"
803
804 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
770805 msgid "Read-only"
771 msgstr ""
772
773 #: ../src/virt-viewer-preferences.xml.h:5
806 msgstr "只读"
807
808 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
774809 msgid "Spice"
775 msgstr ""
810 msgstr "Spice"
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Chinese (Hong Kong SAR China)\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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
77 # Terry Chuang <tchuang at redhat>, 2010
88 # Terry Chuang <tchuang@redhat.com>, 2012-2013
99 # Walter Cheuk <wwycheuk@gmail.com>, 2012
10 # Chester Cheng <snowlet.cheng@gmail.com>, 2016. #zanata
11 # Terry Chuang <tchuang@redhat.com>, 2016. #zanata
1012 msgid ""
1113 msgstr ""
1214 "Project-Id-Version: PACKAGE VERSION\n"
1315 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
15 "PO-Revision-Date: 2015-01-12 06:21-0500\n"
16 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
16 "POT-Creation-Date: 2016-06-30 13:46+0100\n"
17 "PO-Revision-Date: 2016-02-25 07:46-0500\n"
18 "Last-Translator: Chester Cheng <snowlet.cheng@gmail.com>\n"
1719 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/virt-"
1820 "viewer/language/zh_TW/)\n"
1921 "Language: zh-TW\n"
2123 "Content-Type: text/plain; charset=UTF-8\n"
2224 "Content-Transfer-Encoding: 8bit\n"
2325 "Plural-Forms: nplurals=1; plural=0;\n"
24 "X-Generator: Zanata 3.7.3\n"
25
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
26 "X-Generator: Zanata 3.8.4\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
2730 msgid "Remote Viewer"
2831 msgstr "遠端檢視器"
32
33 #: ../data/remote-viewer.appdata.xml.in.h:2
34 msgid "Remotely access virtual machines"
35 msgstr ""
36
37 #: ../data/remote-viewer.appdata.xml.in.h:3
38 msgid ""
39 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
40 "time it supports guest OS using the VNC or SPICE protocols. Further "
41 "protocols may be supported in the future as user demand dictates. The viewer "
42 "can connect directly to both local and remotely hosted guest OS, optionally "
43 "using SSL/TLS encryption."
44 msgstr ""
2945
3046 #: ../data/remote-viewer.desktop.in.h:2
3147 msgid "Access remote desktops"
3551 msgid "Virt-Viewer connection file"
3652 msgstr "Virt-Viewer 連線檔案"
3753
38 #: ../src/gbinding.c:637
39 msgid "Source"
40 msgstr "來源"
41
42 #: ../src/gbinding.c:638
43 msgid "The source of the binding"
44 msgstr "綁定的來源"
45
46 #: ../src/gbinding.c:652
47 msgid "Target"
48 msgstr "目標"
49
50 #: ../src/gbinding.c:653
51 msgid "The target of the binding"
52 msgstr "綁定的目標"
53
54 #: ../src/gbinding.c:668
55 msgid "Source Property"
56 msgstr "來源屬性"
57
58 #: ../src/gbinding.c:669
59 msgid "The property on the source to bind"
60 msgstr "欲綁定之來源的屬性"
61
62 #: ../src/gbinding.c:684
63 msgid "Target Property"
64 msgstr "目標屬性"
65
66 #: ../src/gbinding.c:685
67 msgid "The property on the target to bind"
68 msgstr "欲綁定之目標的屬性"
69
70 #: ../src/gbinding.c:699
71 msgid "Flags"
72 msgstr "旗標"
73
74 #: ../src/gbinding.c:700
75 msgid "The binding flags"
76 msgstr "綁定旗標"
77
78 #: ../src/remote-viewer-main.c:50
79 #, c-format
80 msgid "remote-viewer version %s"
81 msgstr ""
82
83 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
84 msgid "Display version information"
85 msgstr "顯示版本資訊"
86
87 #: ../src/remote-viewer-main.c:105
54 #: ../src/remote-viewer.c:139
8855 msgid "Set window title"
8956 msgstr "設定視窗標題"
9057
91 #: ../src/remote-viewer-main.c:108
58 #: ../src/remote-viewer.c:142
9259 msgid "Open connection using Spice controller communication"
9360 msgstr "透過 Spice 控制器通訊來開啟連線"
9461
95 #: ../src/remote-viewer-main.c:120
62 #: ../src/remote-viewer.c:150
9663 msgid "Remote viewer client"
9764 msgstr "遠端檢視器客戶端"
9865
99 #: ../src/remote-viewer-main.c:138
100 #, c-format
101 msgid ""
102 "%s\n"
103 "Run '%s --help' to see a full list of available command line options\n"
104 msgstr ""
105 "%s\n"
106 "請執行「%s --help」以檢視可用指令選項的完整清單\n"
107
108 #: ../src/remote-viewer-main.c:149
109 #, c-format
110 msgid "Error: extra arguments given while using Spice controller\n"
111 msgstr "錯誤:額使用 Spice 控制器時給定額外引數\n"
112
113 #: ../src/remote-viewer-main.c:156
114 #, c-format
115 msgid "Error: can't handle multiple URIs\n"
116 msgstr "錯誤:無法處理 URI\n"
117
118 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
66 #: ../src/remote-viewer.c:175
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: can't handle multiple URIs\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:187
75 #, c-format
76 msgid ""
77 "\n"
78 "Error: extra arguments given while using Spice controller\n"
79 "\n"
80 msgstr ""
81
82 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
83 #, c-format
84 msgid "Run '%s --help' to see a full list of available command line options\n"
85 msgstr ""
86
87 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11988 msgid "Failed to initiate connection"
12089 msgstr "初始化連線失敗"
12190
122 #: ../src/remote-viewer.c:313
91 #: ../src/remote-viewer.c:297
12392 msgid "Display disabled by controller"
12493 msgstr "畫面已被控制器停用"
12594
126 #: ../src/remote-viewer.c:609
95 #: ../src/remote-viewer.c:593
12796 #, c-format
12897 msgid "Controller connection failed: %s"
12998 msgstr "控制器連線失敗:%s"
13099
131 #: ../src/remote-viewer.c:755
132 msgid "_Change CD"
133 msgstr ""
134
135 #: ../src/remote-viewer.c:855
100 #: ../src/remote-viewer.c:848
136101 msgid "failed to parse ovirt uri"
137 msgstr ""
138
139 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
102 msgstr "無法叵析 ovirt uri"
103
104 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
140105 msgid "Authentication was cancelled"
141 msgstr ""
142
143 #: ../src/remote-viewer.c:900
106 msgstr "認證已取消"
107
108 #: ../src/remote-viewer.c:893
144109 #, c-format
145110 msgid "oVirt VM %s is not running"
146 msgstr ""
147
148 #: ../src/remote-viewer.c:914
111 msgstr "oVirt VM %s 沒有在執行"
112
113 #: ../src/remote-viewer.c:907
149114 #, c-format
150115 msgid "oVirt VM %s has no display"
151 msgstr ""
152
153 #: ../src/remote-viewer.c:940
116 msgstr "oVirt VM %s 沒有畫面"
117
118 #: ../src/remote-viewer.c:933
154119 #, c-format
155120 msgid "oVirt VM %s has no host information"
156 msgstr ""
157
158 #: ../src/remote-viewer.c:951
121 msgstr "oVirt VM %s 沒有主機資訊"
122
123 #: ../src/remote-viewer.c:944
159124 #, c-format
160125 msgid "oVirt VM %s has unknown display type: %d"
161 msgstr ""
162
163 #: ../src/remote-viewer.c:1094
126 msgstr "oVirt VM %s 含有不明顯示類型:%d"
127
128 #: ../src/remote-viewer.c:1115
164129 msgid "Setting up Spice session..."
165 msgstr "正在設置 Spice 作業階段..."
166
167 #: ../src/remote-viewer.c:1102
130 msgstr "正在設置 Spice session..."
131
132 #: ../src/remote-viewer.c:1123
168133 msgid "No connection was chosen"
169 msgstr ""
170
171 #: ../src/remote-viewer.c:1120
134 msgstr "未選擇連線"
135
136 #: ../src/remote-viewer.c:1141
172137 #, c-format
173138 msgid "Invalid file %s: "
174 msgstr ""
175
176 #: ../src/remote-viewer.c:1128
139 msgstr "無效的檔案 %s:"
140
141 #: ../src/remote-viewer.c:1149
177142 msgid "Cannot determine the connection type from URI"
178143 msgstr "無法從 URI 判斷連線類型"
179144
180 #: ../src/remote-viewer.c:1134
145 #: ../src/remote-viewer.c:1155
181146 msgid "Couldn't open oVirt session: "
182 msgstr ""
147 msgstr "無法開啟 oVirt session:"
183148
184149 #.
185150 #. * Local variables:
188153 #. * indent-tabs-mode: nil
189154 #. * End:
190155 #.
191 #: ../src/remote-viewer-connect.xml.h:1
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
192157 msgid "Connection details"
193158 msgstr "連線細節"
194159
195 #: ../src/remote-viewer-connect.xml.h:2
196 msgid "Connection Address"
197 msgstr ""
198
199 #: ../src/remote-viewer-connect.xml.h:3
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
161 msgid "Connection _Address"
162 msgstr ""
163
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
200165 msgid "For example, spice://foo.example.org:5900"
201 msgstr "例,spice://foo.example.org:5900"
202
203 #: ../src/remote-viewer-connect.xml.h:4
166 msgstr "例如 spice://foo.example.org:5900"
167
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
204169 msgid "Recent connections"
205 msgstr ""
206
207 #: ../src/remote-viewer-connect.xml.h:5
208 msgid "Cancel"
209 msgstr ""
210
211 #: ../src/remote-viewer-connect.xml.h:6
212 msgid "Connect"
213 msgstr ""
214
215 #: ../src/virt-viewer-about.xml.h:1
216 msgid "About Glade"
217 msgstr "關於 Glade"
218
219 #: ../src/virt-viewer-about.xml.h:2
170 msgstr "最近的連線"
171
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
173 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
174 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
175 msgid "_Cancel"
176 msgstr ""
177
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
180 msgid "C_onnect"
181 msgstr ""
182
183 #: ../src/resources/ui/virt-viewer-about.ui.h:1
184 msgid "About Virt-Viewer"
185 msgstr ""
186
187 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220188 msgid ""
221189 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222190 "Copyright (C) 2007-2014 Red Hat, Inc."
224192 "著作權 (C) 2007-2012 Daniel P. Berrange\n"
225193 "著作權 (C) 2007-2014 Red Hat, Inc."
226194
227 #: ../src/virt-viewer-about.xml.h:4
195 #: ../src/resources/ui/virt-viewer-about.ui.h:4
228196 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
229197 msgstr "以 GTK-VNC、SPICE-GTK 和 libvirt 所建立的遠端桌面客戶端"
230198
231 #: ../src/virt-viewer-about.xml.h:5
199 #: ../src/resources/ui/virt-viewer-about.ui.h:5
232200 msgid "virt-manager.org"
233201 msgstr "virt-manager.org"
234202
235 #: ../src/virt-viewer-about.xml.h:6
203 #: ../src/resources/ui/virt-viewer-about.ui.h:6
236204 msgid ""
237205 "This program is free software; you can redistribute it and/or modify\n"
238206 "it under the terms of the GNU General Public License as published by\n"
263231 "基金會(Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, "
264232 "MA 02111-1307 USA\n"
265233
266 #: ../src/virt-viewer-about.xml.h:20
234 #: ../src/resources/ui/virt-viewer-about.ui.h:20
267235 msgid "The Fedora Translation Team"
268236 msgstr "Fedora 翻譯團隊"
269237
270 #: ../src/virt-viewer-app.c:526
238 #: ../src/virt-viewer-app.c:458
271239 msgid "Do you want to close the session?"
272240 msgstr "您是否希望關閉本作業階段?"
273241
274 #: ../src/virt-viewer-app.c:528
242 #: ../src/virt-viewer-app.c:460
275243 msgid "Do not ask me again"
276244 msgstr "不再詢問我"
277245
278 #: ../src/virt-viewer-app.c:1008
246 #: ../src/virt-viewer-app.c:948
279247 #, c-format
280248 msgid "Waiting for display %d..."
281249 msgstr "正在等候顯示器 %d..."
282250
283 #: ../src/virt-viewer-app.c:1117
251 #: ../src/virt-viewer-app.c:1055
284252 #, c-format
285253 msgid "Unsupported graphic type '%s'"
286 msgstr ""
287
288 #: ../src/virt-viewer-app.c:1200
254 msgstr "不支援的圖形類型「%s」"
255
256 #: ../src/virt-viewer-app.c:1138
289257 msgid "Connect to ssh failed."
290258 msgstr "連至 ssh 的連線失敗。"
291259
292 #: ../src/virt-viewer-app.c:1202
260 #: ../src/virt-viewer-app.c:1140
293261 msgid "Can't connect to channel, SSH only supported."
294262 msgstr "無法連至頻道,僅支援 SSH。"
295263
296 #: ../src/virt-viewer-app.c:1214
264 #: ../src/virt-viewer-app.c:1152
297265 msgid "Connect to channel unsupported."
298266 msgstr "不支援頻道的連接。"
299267
300 #: ../src/virt-viewer-app.c:1276
268 #: ../src/virt-viewer-app.c:1214
301269 msgid "Display can only be attached through libvirt with --attach"
302 msgstr ""
303
304 #: ../src/virt-viewer-app.c:1299
270 msgstr "顯示器僅能以 --attach 透過 libvirt 來連接"
271
272 #: ../src/virt-viewer-app.c:1237
305273 msgid "Connecting to graphic server"
306274 msgstr "正在連接圖形化伺服器"
307275
308 #: ../src/virt-viewer-app.c:1398
276 #: ../src/virt-viewer-app.c:1336
309277 msgid "Guest domain has shutdown"
310 msgstr "客端網域已關閉"
311
312 #: ../src/virt-viewer-app.c:1459
278 msgstr "客座端網域已關閉"
279
280 #: ../src/virt-viewer-app.c:1397
313281 msgid "Connected to graphic server"
314282 msgstr "已連上圖形化伺服器"
315283
316 #: ../src/virt-viewer-app.c:1486
284 #: ../src/virt-viewer-app.c:1424
317285 #, c-format
318286 msgid "Unable to connect to the graphic server %s"
319287 msgstr "無法連接圖形化伺服器 %s"
320288
321 #: ../src/virt-viewer-app.c:1512
289 #: ../src/virt-viewer-app.c:1450
322290 #, c-format
323291 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
324 msgstr ""
325
326 #: ../src/virt-viewer-app.c:1525
292 msgstr "無法取得位於 %s 的遠端桌面伺服器的認證:%s\n"
293
294 #: ../src/virt-viewer-app.c:1463
327295 #, c-format
328296 msgid "Unable to authenticate with remote desktop server: %s"
329 msgstr "無法在遠端桌面伺服器驗證:%s"
330
331 #: ../src/virt-viewer-app.c:1533
297 msgstr "無法取得遠端桌面伺服器的認證:%s"
298
299 #: ../src/virt-viewer-app.c:1471
332300 #, c-format
333301 msgid "USB redirection error: %s"
334 msgstr "USB 重新導引錯誤:%s"
335
336 #: ../src/virt-viewer-app.c:1786
302 msgstr "USB 重定向錯誤:%s"
303
304 #: ../src/virt-viewer-app.c:1805
337305 #, c-format
338306 msgid "Zoom level must be within %d-%d\n"
339 msgstr "遠近等級必須介於 %d-%d\n"
340
341 #: ../src/virt-viewer-app.c:2296
342 #, c-format
343 msgid "Display %d"
344 msgstr "顯示 %d"
345
346 #: ../src/virt-viewer-app.c:2552
307 msgstr "縮放等級必須介於 %d-%d\n"
308
309 #: ../src/virt-viewer-app.c:1858
310 #, c-format
311 msgid "%s\n"
312 msgstr ""
313
314 #: ../src/virt-viewer-app.c:1868
315 #, c-format
316 msgid "%s version %s"
317 msgstr ""
318
319 #: ../src/virt-viewer-app.c:2292
320 #, c-format
321 msgid "Display _%d"
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:2548
347325 #, c-format
348326 msgid "Invalid kiosk-quit argument: %s"
349327 msgstr "無效的 kiosk-quit 引數:%s"
328
329 #: ../src/virt-viewer-app.c:2559
330 msgid "Display version information"
331 msgstr "顯示版本資訊"
350332
351333 #: ../src/virt-viewer-app.c:2561
352334 msgid "Zoom level of window, in percentage"
380362 msgid "Display debugging information"
381363 msgstr "顯示除錯資訊"
382364
383 #: ../src/virt-viewer-auth.c:88
365 #: ../src/virt-viewer-auth.c:89
384366 #, c-format
385367 msgid ""
386368 "Authentication is required for the %s connection to:\n"
388370 "<b>%s</b>\n"
389371 "\n"
390372 msgstr ""
391
392 #: ../src/virt-viewer-auth.c:92
373 "需通過認證,%s 連線才能:\n"
374 "\n"
375 "<b>%s</b>\n"
376 "\n"
377
378 #: ../src/virt-viewer-auth.c:93
393379 #, c-format
394380 msgid "Authentication is required for the %s connection:\n"
395 msgstr ""
381 msgstr "%s 連線需通過認證:\n"
396382
397383 #.
398384 #. * Local variables:
401387 #. * indent-tabs-mode: nil
402388 #. * End:
403389 #.
404 #: ../src/virt-viewer-auth.xml.h:1
390 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
405391 msgid "Authentication required"
406 msgstr "須要通過驗證"
407
408 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
392 msgstr "須要通過認證"
393
394 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
395 msgid "_OK"
396 msgstr ""
397
398 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
399 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
409400 msgid "label"
410401 msgstr "標籤"
411402
412 #: ../src/virt-viewer-auth.xml.h:3
403 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
413404 msgid "Password:"
414405 msgstr "密碼:"
415406
416 #: ../src/virt-viewer-auth.xml.h:4
407 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
417408 msgid "Username:"
418409 msgstr "使用者名稱:"
419410
420 #: ../src/virt-viewer-auth.xml.h:5
411 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
421412 msgid "Show password"
422 msgstr ""
423
424 #: ../src/virt-viewer-display-vnc.c:133
413 msgstr "顯示密碼"
414
415 #: ../src/virt-viewer-display-vnc.c:134
425416 msgid "VNC does not provide GUID"
417 msgstr "VNC 不提供 GUID"
418
419 #: ../src/virt-viewer-file-transfer-dialog.c:152
420 msgid "Cancel"
421 msgstr "取消"
422
423 #: ../src/virt-viewer-file-transfer-dialog.c:163
424 msgid "File Transfers"
426425 msgstr ""
427426
428427 #: ../src/virt-viewer-main.c:38
429 #, c-format
430 msgid "%s version %s\n"
431 msgstr "%s 版本 %s\n"
432
433 #: ../src/virt-viewer-main.c:62
434 msgid "Direct connection with no automatic tunnels"
435 msgstr "無自動穿隧的直接連線"
436
437 #: ../src/virt-viewer-main.c:64
438 msgid "Attach to the local display using libvirt"
439 msgstr "使用 libvirt 接至本機顯示"
440
441 #: ../src/virt-viewer-main.c:66
442 msgid "Connect to hypervisor"
443 msgstr "連接 hypervisor"
444
445 #: ../src/virt-viewer-main.c:68
446 msgid "Wait for domain to start"
447 msgstr "等候網域啟動"
448
449 #: ../src/virt-viewer-main.c:70
450 msgid "Reconnect to domain upon restart"
451 msgstr "重新啓動時重新連接網域"
452
453 #: ../src/virt-viewer-main.c:77
454428 msgid "Virt Viewer"
455429 msgstr "Virt 檢視器"
456430
457 #: ../src/virt-viewer-main.c:80
458 #, c-format
459 msgid "Run '%s --help' to see a full list of available command line options"
460 msgstr "請執行「%s --help」以檢視可用指令選項的完整清單"
461
462 #: ../src/virt-viewer-main.c:86
463 msgid "Virtual machine graphical console"
464 msgstr "虛擬機圖形化主控臺"
465
466 #: ../src/virt-viewer-main.c:107
467 #, c-format
468 msgid ""
469 "\n"
470 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
471 "\n"
472 "%s\n"
473 "\n"
474 msgstr ""
475
476 #: ../src/virt-viewer-main.c:112
477 #, c-format
478 msgid ""
479 "\n"
480 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
481 "\n"
482 msgstr ""
483
484 #: ../src/virt-viewer-session-spice.c:694
431 #: ../src/virt-viewer-session-spice.c:705
485432 msgid "Invalid password"
486 msgstr ""
433 msgstr "密碼無效"
487434
488435 #. Create the widgets
489 #: ../src/virt-viewer-session-spice.c:786
436 #: ../src/virt-viewer-session-spice.c:797
490437 msgid "Select USB devices for redirection"
491 msgstr "選擇欲重新導引的 USB 裝置"
492
493 #: ../src/virt-viewer-session-vnc.c:153
438 msgstr "選擇欲重定向的 USB 裝置"
439
440 #: ../src/virt-viewer-session-spice.c:799
441 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
442 msgid "_Close"
443 msgstr ""
444
445 #: ../src/virt-viewer-session-vnc.c:156
494446 #, c-format
495447 msgid "Unsupported authentication type %d"
496448 msgstr "不支援的認證類型 %d"
497449
498450 #: ../src/virt-viewer-vm-connection.c:64
499451 msgid "No virtual machine found"
500 msgstr ""
452 msgstr "找不到虛擬機器"
501453
502454 #: ../src/virt-viewer-vm-connection.c:93
503455 msgid "No virtual machine was chosen"
504 msgstr ""
505
506 #: ../src/virt-viewer-window.c:537
456 msgstr "未選擇虛擬機器"
457
458 #: ../src/virt-viewer-window.c:534
507459 msgid "Ctrl+Alt+_Del"
508460 msgstr "Ctrl+Alt+_Del"
509461
510 #: ../src/virt-viewer-window.c:538
462 #: ../src/virt-viewer-window.c:535
511463 msgid "Ctrl+Alt+_Backspace"
512464 msgstr "Ctrl+Alt+_Backspace"
513465
514 #: ../src/virt-viewer-window.c:540
466 #: ../src/virt-viewer-window.c:537
515467 msgid "Ctrl+Alt+F_1"
516468 msgstr "Ctrl+Alt+F_1"
517469
518 #: ../src/virt-viewer-window.c:541
470 #: ../src/virt-viewer-window.c:538
519471 msgid "Ctrl+Alt+F_2"
520472 msgstr "Ctrl+Alt+F_2"
521473
522 #: ../src/virt-viewer-window.c:542
474 #: ../src/virt-viewer-window.c:539
523475 msgid "Ctrl+Alt+F_3"
524476 msgstr "Ctrl+Alt+F_3"
525477
526 #: ../src/virt-viewer-window.c:543
478 #: ../src/virt-viewer-window.c:540
527479 msgid "Ctrl+Alt+F_4"
528480 msgstr "Ctrl+Alt+F_4"
529481
530 #: ../src/virt-viewer-window.c:544
482 #: ../src/virt-viewer-window.c:541
531483 msgid "Ctrl+Alt+F_5"
532484 msgstr "Ctrl+Alt+F_5"
533485
534 #: ../src/virt-viewer-window.c:545
486 #: ../src/virt-viewer-window.c:542
535487 msgid "Ctrl+Alt+F_6"
536488 msgstr "Ctrl+Alt+F_6"
537489
538 #: ../src/virt-viewer-window.c:546
490 #: ../src/virt-viewer-window.c:543
539491 msgid "Ctrl+Alt+F_7"
540492 msgstr "Ctrl+Alt+F_7"
541493
542 #: ../src/virt-viewer-window.c:547
494 #: ../src/virt-viewer-window.c:544
543495 msgid "Ctrl+Alt+F_8"
544496 msgstr "Ctrl+Alt+F_8"
545497
546 #: ../src/virt-viewer-window.c:548
498 #: ../src/virt-viewer-window.c:545
547499 msgid "Ctrl+Alt+F_9"
548500 msgstr "Ctrl+Alt+F_9"
549501
550 #: ../src/virt-viewer-window.c:549
502 #: ../src/virt-viewer-window.c:546
551503 msgid "Ctrl+Alt+F1_0"
552504 msgstr "Ctrl+Alt+F1_0"
553505
554 #: ../src/virt-viewer-window.c:550
506 #: ../src/virt-viewer-window.c:547
555507 msgid "Ctrl+Alt+F11"
556508 msgstr "Ctrl+Alt+F11"
557509
558 #: ../src/virt-viewer-window.c:551
510 #: ../src/virt-viewer-window.c:548
559511 msgid "Ctrl+Alt+F12"
560512 msgstr "Ctrl+Alt+F12"
561513
562 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
514 #: ../src/virt-viewer-window.c:919
515 msgid "_Save"
516 msgstr ""
517
518 #: ../src/virt-viewer-window.c:927
563519 msgid "Screenshot"
564520 msgstr "螢幕快照"
565521
566 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
522 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
567523 msgid "Unknown"
568 msgstr ""
569
570 #: ../src/virt-viewer-window.c:1062
524 msgstr "不明"
525
526 #: ../src/virt-viewer-window.c:1071
571527 msgid "Disconnect"
572528 msgstr "中斷連接"
573529
574 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
575 #: ../src/virt-viewer.xml.h:3
530 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
576531 msgid "USB device selection"
577532 msgstr "USB 裝置選取"
578533
579 #: ../src/virt-viewer-window.c:1081
534 #: ../src/virt-viewer-window.c:1089
580535 msgid "Send key combination"
581536 msgstr "傳送按鍵組合"
582537
583 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
538 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
584539 msgid "Leave fullscreen"
585540 msgstr "離開全螢幕"
586541
587 #: ../src/virt-viewer-window.c:1173
542 #: ../src/virt-viewer-window.c:1175
588543 msgid "Ctrl+Alt"
589544 msgstr "Ctrl+Alt"
590545
591 #: ../src/virt-viewer-window.c:1176
546 #: ../src/virt-viewer-window.c:1178
592547 #, c-format
593548 msgid "(Press %s to release pointer)"
594549 msgstr "(按下 %s 以釋放游標)"
597552 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598553 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599554 #.
600 #: ../src/virt-viewer-window.c:1187
555 #: ../src/virt-viewer-window.c:1189
601556 #, c-format
602557 msgid "%s%s%s - %s"
603558 msgstr "%s%s%s - %s"
604559
605560 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1191
561 #: ../src/virt-viewer-window.c:1193
607562 msgid " "
608563 msgstr " "
609564
610 #: ../src/virt-viewer-file.c:825
565 #: ../src/virt-viewer-file.c:843
611566 #, c-format
612567 msgid ""
613568 "At least %s version %s is required to setup this connection, see %s for "
614569 "details"
615 msgstr ""
616
617 #: ../src/virt-viewer-file.c:833
570 msgstr "至少需要 %s 版本 %s 以上才能設置此連線,詳情請見 %s"
571
572 #: ../src/virt-viewer-file.c:851
618573 #, c-format
619574 msgid "At least %s version %s is required to setup this connection"
620575 msgstr "至少需要 %s 版本 %s 以上才能設置此連線"
621576
622 #: ../src/virt-viewer.c:163
577 #: ../src/virt-viewer.c:90
578 msgid "Direct connection with no automatic tunnels"
579 msgstr "無自動穿隧的直接連線"
580
581 #: ../src/virt-viewer.c:92
582 msgid "Attach to the local display using libvirt"
583 msgstr "使用 libvirt 接至本機顯示器"
584
585 #: ../src/virt-viewer.c:94
586 msgid "Connect to hypervisor"
587 msgstr "連接 hypervisor"
588
589 #: ../src/virt-viewer.c:96
590 msgid "Wait for domain to start"
591 msgstr "等候網域啟動"
592
593 #: ../src/virt-viewer.c:98
594 msgid "Reconnect to domain upon restart"
595 msgstr "重新啓動時重新連接網域"
596
597 #: ../src/virt-viewer.c:105
598 msgid "Virtual machine graphical console"
599 msgstr "虛擬機圖形化主控臺"
600
601 #: ../src/virt-viewer.c:124
602 #, c-format
603 msgid ""
604 "\n"
605 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
606 "\n"
607 msgstr ""
608
609 #: ../src/virt-viewer.c:136
610 #, c-format
611 msgid ""
612 "\n"
613 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
614 "\n"
615 msgstr ""
616 "\n"
617 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
618 "\n"
619
620 #: ../src/virt-viewer.c:250
623621 msgid "Waiting for guest domain to re-start"
624622 msgstr "正在等候客端網域重新啓用"
625623
626 #: ../src/virt-viewer.c:409
624 #: ../src/virt-viewer.c:496
627625 #, c-format
628626 msgid "Cannot determine the graphic type for the guest %s"
629627 msgstr "無法判斷客端 %s 的圖形化類型為何"
630628
631 #: ../src/virt-viewer.c:448
629 #: ../src/virt-viewer.c:535
632630 #, c-format
633631 msgid "Cannot determine the host for the guest %s"
634632 msgstr "無法判斷客端 %s 的主機為何"
635633
636 #: ../src/virt-viewer.c:476
634 #: ../src/virt-viewer.c:563
637635 #, c-format
638636 msgid "Guest '%s' is not reachable"
639 msgstr ""
640
641 #: ../src/virt-viewer.c:697
637 msgstr "無法連上客座端 '%s'"
638
639 #: ../src/virt-viewer.c:784
642640 #, c-format
643641 msgid "Virtual machine %s is not running"
644 msgstr ""
645
646 #: ../src/virt-viewer.c:720
642 msgstr "虛擬機器 %s 沒有在執行"
643
644 #: ../src/virt-viewer.c:807
647645 msgid "Waiting for libvirt to start"
648646 msgstr "等候 libvirt 啟動"
649647
650 #: ../src/virt-viewer.c:724
648 #: ../src/virt-viewer.c:811
651649 msgid "Finding guest domain"
652650 msgstr "正在尋找客端網域"
653651
654 #: ../src/virt-viewer.c:728
652 #: ../src/virt-viewer.c:815
655653 msgid "Waiting for guest domain to be created"
656654 msgstr "正在等候客端網域被建立"
657655
658 #: ../src/virt-viewer.c:750
656 #: ../src/virt-viewer.c:837
659657 msgid "Checking guest domain status"
660658 msgstr "正在檢查客端網域狀態"
661659
662 #: ../src/virt-viewer.c:753
660 #: ../src/virt-viewer.c:840
663661 msgid "Cannot get guest state"
664 msgstr ""
665
666 #: ../src/virt-viewer.c:759
662 msgstr "無法取得客座端狀態"
663
664 #: ../src/virt-viewer.c:846
667665 msgid "Waiting for guest domain to start"
668666 msgstr "正在等候客端網域啟動"
669667
670 #: ../src/virt-viewer.c:863
668 #: ../src/virt-viewer.c:950
671669 #, c-format
672670 msgid "Unable to connect to libvirt with URI: %s."
673 msgstr ""
674
675 #: ../src/virt-viewer.c:864
671 msgstr "無法透過 URI 連接 libvirt:%s。"
672
673 #: ../src/virt-viewer.c:951
676674 msgid "[none]"
677675 msgstr "[無]"
678676
679 #: ../src/virt-viewer.c:871
677 #: ../src/virt-viewer.c:958
680678 msgid "Authentication failed."
681 msgstr ""
682
683 #: ../src/virt-viewer.c:931
679 msgstr "認證失敗。"
680
681 #: ../src/virt-viewer.c:1018
684682 msgid "Failed to connect: "
685 msgstr ""
683 msgstr "無法連上:"
686684
687685 #.
688686 #. * Local variables:
691689 #. * indent-tabs-mode: nil
692690 #. * End:
693691 #.
694 #: ../src/virt-viewer.xml.h:1
692 #: ../src/resources/ui/virt-viewer.ui.h:1
695693 msgid "_File"
696694 msgstr "檔案(_F)"
697695
698 #: ../src/virt-viewer.xml.h:4
696 #: ../src/resources/ui/virt-viewer.ui.h:2
697 msgid "_Screenshot"
698 msgstr ""
699
700 #: ../src/resources/ui/virt-viewer.ui.h:3
701 msgid "_USB device selection"
702 msgstr ""
703
704 #: ../src/resources/ui/virt-viewer.ui.h:4
699705 msgid "Smartcard insertion"
700706 msgstr "智慧卡插入"
701707
702 #: ../src/virt-viewer.xml.h:5
708 #: ../src/resources/ui/virt-viewer.ui.h:5
703709 msgid "Smartcard removal"
704710 msgstr "智慧卡移除"
705711
706 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
707 msgid "Preferences"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:7
712 #: ../src/resources/ui/virt-viewer.ui.h:6
713 msgid "_Preferences"
714 msgstr ""
715
716 #: ../src/resources/ui/virt-viewer.ui.h:7
717 msgid "_Quit"
718 msgstr ""
719
720 #: ../src/resources/ui/virt-viewer.ui.h:8
711721 msgid "_View"
712722 msgstr "檢視(_V)"
713723
714 #: ../src/virt-viewer.xml.h:8
715 msgid "Full screen"
716 msgstr "全螢幕"
717
718 #: ../src/virt-viewer.xml.h:9
724 #: ../src/resources/ui/virt-viewer.ui.h:9
725 msgid "_Full screen"
726 msgstr ""
727
728 #: ../src/resources/ui/virt-viewer.ui.h:10
719729 msgid "_Zoom"
720730 msgstr "遠近(_Z)"
721731
722 #: ../src/virt-viewer.xml.h:10
723 msgid "Displays"
724 msgstr "顯示"
725
726 #: ../src/virt-viewer.xml.h:11
732 #: ../src/resources/ui/virt-viewer.ui.h:11
733 msgid "Zoom _In"
734 msgstr ""
735
736 #: ../src/resources/ui/virt-viewer.ui.h:12
737 msgid "Zoom _Out"
738 msgstr ""
739
740 #: ../src/resources/ui/virt-viewer.ui.h:13
741 msgid "_Normal Size"
742 msgstr ""
743
744 #: ../src/resources/ui/virt-viewer.ui.h:14
745 msgid "_Displays"
746 msgstr ""
747
748 #: ../src/resources/ui/virt-viewer.ui.h:15
727749 msgid "Release cursor"
728750 msgstr "釋放游標"
729751
730 #: ../src/virt-viewer.xml.h:12
752 #: ../src/resources/ui/virt-viewer.ui.h:16
731753 msgid "_Send key"
732754 msgstr "傳送按鍵(_S)"
733755
734 #: ../src/virt-viewer.xml.h:13
756 #: ../src/resources/ui/virt-viewer.ui.h:17
735757 msgid "_Help"
736758 msgstr "求助(_H)"
737759
738 #: ../src/virt-viewer.xml.h:14
760 #: ../src/resources/ui/virt-viewer.ui.h:18
739761 msgid "_Guest Details"
740 msgstr ""
741
742 #: ../src/virt-viewer-guest-details.xml.h:1
762 msgstr "客座端詳細資料 (_G)"
763
764 #: ../src/resources/ui/virt-viewer.ui.h:19
765 msgid "_About"
766 msgstr ""
767
768 #: ../src/resources/ui/virt-viewer.ui.h:20
769 msgid "_Change CD"
770 msgstr "更換 CD(_C)"
771
772 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
743773 msgid "Guest Details"
744 msgstr ""
745
746 #: ../src/virt-viewer-guest-details.xml.h:2
774 msgstr "客座端詳細資料"
775
776 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
747777 msgid "Name:"
748 msgstr ""
749
750 #: ../src/virt-viewer-guest-details.xml.h:3
778 msgstr "名稱:"
779
780 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
751781 msgid "GUID:"
752 msgstr ""
753
754 #: ../src/virt-viewer-vm-connection.xml.h:1
782 msgstr "GUID:"
783
784 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
755785 msgid "Choose a virtual machine"
756 msgstr ""
757
758 #: ../src/virt-viewer-vm-connection.xml.h:2
786 msgstr "選擇虛擬機器"
787
788 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
759789 msgid "Name"
760 msgstr ""
761
762 #: ../src/virt-viewer-vm-connection.xml.h:3
790 msgstr "名稱"
791
792 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
763793 msgid "Available virtual machines"
764 msgstr ""
765
766 #: ../src/virt-viewer-preferences.xml.h:2
794 msgstr "可用的虛擬機器"
795
796 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
797 msgid "Preferences"
798 msgstr "偏好設定"
799
800 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
767801 msgid "Folder sharing"
768 msgstr ""
769
770 #: ../src/virt-viewer-preferences.xml.h:3
802 msgstr "資料夾共享"
803
804 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
771805 msgid "Share folder"
772 msgstr ""
773
774 #: ../src/virt-viewer-preferences.xml.h:4
806 msgstr "共享資料夾"
807
808 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
775809 msgid "Read-only"
776 msgstr ""
777
778 #: ../src/virt-viewer-preferences.xml.h:5
810 msgstr "唯讀"
811
812 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
779813 msgid "Spice"
780 msgstr ""
814 msgstr "Spice"
+343
-316
po/zu.po less more
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2015-12-07 14:30+0000\n"
9 "POT-Creation-Date: 2016-06-30 13:46+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.5.1\n"
19
20 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:116
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
2122 msgid "Remote Viewer"
23 msgstr ""
24
25 #: ../data/remote-viewer.appdata.xml.in.h:2
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: ../data/remote-viewer.appdata.xml.in.h:3
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."
2236 msgstr ""
2337
2438 #: ../data/remote-viewer.desktop.in.h:2
2943 msgid "Virt-Viewer connection file"
3044 msgstr ""
3145
32 #: ../src/gbinding.c:637
33 msgid "Source"
34 msgstr ""
35
36 #: ../src/gbinding.c:638
37 msgid "The source of the binding"
38 msgstr ""
39
40 #: ../src/gbinding.c:652
41 msgid "Target"
42 msgstr ""
43
44 #: ../src/gbinding.c:653
45 msgid "The target of the binding"
46 msgstr ""
47
48 #: ../src/gbinding.c:668
49 msgid "Source Property"
50 msgstr ""
51
52 #: ../src/gbinding.c:669
53 msgid "The property on the source to bind"
54 msgstr ""
55
56 #: ../src/gbinding.c:684
57 msgid "Target Property"
58 msgstr ""
59
60 #: ../src/gbinding.c:685
61 msgid "The property on the target to bind"
62 msgstr ""
63
64 #: ../src/gbinding.c:699
65 msgid "Flags"
66 msgstr ""
67
68 #: ../src/gbinding.c:700
69 msgid "The binding flags"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:50
73 #, c-format
74 msgid "remote-viewer version %s"
75 msgstr ""
76
77 #: ../src/remote-viewer-main.c:103 ../src/virt-viewer-main.c:60
78 msgid "Display version information"
79 msgstr ""
80
81 #: ../src/remote-viewer-main.c:105
46 #: ../src/remote-viewer.c:139
8247 msgid "Set window title"
8348 msgstr ""
8449
85 #: ../src/remote-viewer-main.c:108
50 #: ../src/remote-viewer.c:142
8651 msgid "Open connection using Spice controller communication"
8752 msgstr ""
8853
89 #: ../src/remote-viewer-main.c:120
54 #: ../src/remote-viewer.c:150
9055 msgid "Remote viewer client"
9156 msgstr ""
9257
93 #: ../src/remote-viewer-main.c:138
94 #, c-format
95 msgid ""
96 "%s\n"
97 "Run '%s --help' to see a full list of available command line options\n"
98 msgstr ""
99
100 #: ../src/remote-viewer-main.c:149
101 #, c-format
102 msgid "Error: extra arguments given while using Spice controller\n"
103 msgstr ""
104
105 #: ../src/remote-viewer-main.c:156
106 #, c-format
107 msgid "Error: can't handle multiple URIs\n"
108 msgstr ""
109
110 #: ../src/remote-viewer.c:298 ../src/remote-viewer.c:1159
58 #: ../src/remote-viewer.c:175
59 #, c-format
60 msgid ""
61 "\n"
62 "Error: can't handle multiple URIs\n"
63 "\n"
64 msgstr ""
65
66 #: ../src/remote-viewer.c:187
67 #, c-format
68 msgid ""
69 "\n"
70 "Error: extra arguments given while using Spice controller\n"
71 "\n"
72 msgstr ""
73
74 #: ../src/remote-viewer.c:209 ../src/virt-viewer.c:152
75 #, c-format
76 msgid "Run '%s --help' to see a full list of available command line options\n"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:282 ../src/remote-viewer.c:1183
11180 msgid "Failed to initiate connection"
11281 msgstr ""
11382
114 #: ../src/remote-viewer.c:313
83 #: ../src/remote-viewer.c:297
11584 msgid "Display disabled by controller"
11685 msgstr ""
11786
118 #: ../src/remote-viewer.c:609
87 #: ../src/remote-viewer.c:593
11988 #, c-format
12089 msgid "Controller connection failed: %s"
12190 msgstr ""
12291
123 #: ../src/remote-viewer.c:755
124 msgid "_Change CD"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:855
92 #: ../src/remote-viewer.c:848
12893 msgid "failed to parse ovirt uri"
12994 msgstr ""
13095
131 #: ../src/remote-viewer.c:875 ../src/virt-viewer.c:924
96 #: ../src/remote-viewer.c:868 ../src/virt-viewer.c:1011
13297 msgid "Authentication was cancelled"
13398 msgstr ""
13499
135 #: ../src/remote-viewer.c:900
100 #: ../src/remote-viewer.c:893
136101 #, c-format
137102 msgid "oVirt VM %s is not running"
138103 msgstr ""
139104
140 #: ../src/remote-viewer.c:914
105 #: ../src/remote-viewer.c:907
141106 #, c-format
142107 msgid "oVirt VM %s has no display"
143108 msgstr ""
144109
145 #: ../src/remote-viewer.c:940
110 #: ../src/remote-viewer.c:933
146111 #, c-format
147112 msgid "oVirt VM %s has no host information"
148113 msgstr ""
149114
150 #: ../src/remote-viewer.c:951
115 #: ../src/remote-viewer.c:944
151116 #, c-format
152117 msgid "oVirt VM %s has unknown display type: %d"
153118 msgstr ""
154119
155 #: ../src/remote-viewer.c:1094
120 #: ../src/remote-viewer.c:1115
156121 msgid "Setting up Spice session..."
157122 msgstr ""
158123
159 #: ../src/remote-viewer.c:1102
124 #: ../src/remote-viewer.c:1123
160125 msgid "No connection was chosen"
161126 msgstr ""
162127
163 #: ../src/remote-viewer.c:1120
128 #: ../src/remote-viewer.c:1141
164129 #, c-format
165130 msgid "Invalid file %s: "
166131 msgstr ""
167132
168 #: ../src/remote-viewer.c:1128
133 #: ../src/remote-viewer.c:1149
169134 msgid "Cannot determine the connection type from URI"
170135 msgstr ""
171136
172 #: ../src/remote-viewer.c:1134
137 #: ../src/remote-viewer.c:1155
173138 msgid "Couldn't open oVirt session: "
174139 msgstr ""
175140
180145 #. * indent-tabs-mode: nil
181146 #. * End:
182147 #.
183 #: ../src/remote-viewer-connect.xml.h:1
148 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
184149 msgid "Connection details"
185150 msgstr ""
186151
187 #: ../src/remote-viewer-connect.xml.h:2
188 msgid "Connection Address"
189 msgstr ""
190
191 #: ../src/remote-viewer-connect.xml.h:3
152 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
192157 msgid "For example, spice://foo.example.org:5900"
193158 msgstr ""
194159
195 #: ../src/remote-viewer-connect.xml.h:4
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
196161 msgid "Recent connections"
197162 msgstr ""
198163
199 #: ../src/remote-viewer-connect.xml.h:5
200 msgid "Cancel"
201 msgstr ""
202
203 #: ../src/remote-viewer-connect.xml.h:6
204 msgid "Connect"
205 msgstr ""
206
207 #: ../src/virt-viewer-about.xml.h:1
208 msgid "About Glade"
209 msgstr ""
210
211 #: ../src/virt-viewer-about.xml.h:2
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
165 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:918
166 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
167 msgid "_Cancel"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
171 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 msgid "C_onnect"
173 msgstr ""
174
175 #: ../src/resources/ui/virt-viewer-about.ui.h:1
176 msgid "About Virt-Viewer"
177 msgstr ""
178
179 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212180 msgid ""
213181 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214182 "Copyright (C) 2007-2014 Red Hat, Inc."
215183 msgstr ""
216184
217 #: ../src/virt-viewer-about.xml.h:4
185 #: ../src/resources/ui/virt-viewer-about.ui.h:4
218186 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219187 msgstr ""
220188
221 #: ../src/virt-viewer-about.xml.h:5
189 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222190 msgid "virt-manager.org"
223191 msgstr ""
224192
225 #: ../src/virt-viewer-about.xml.h:6
193 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226194 msgid ""
227195 "This program is free software; you can redistribute it and/or modify\n"
228196 "it under the terms of the GNU General Public License as published by\n"
239207 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240208 msgstr ""
241209
242 #: ../src/virt-viewer-about.xml.h:20
210 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243211 msgid "The Fedora Translation Team"
244212 msgstr ""
245213
246 #: ../src/virt-viewer-app.c:526
214 #: ../src/virt-viewer-app.c:458
247215 msgid "Do you want to close the session?"
248216 msgstr ""
249217
250 #: ../src/virt-viewer-app.c:528
218 #: ../src/virt-viewer-app.c:460
251219 msgid "Do not ask me again"
252220 msgstr ""
253221
254 #: ../src/virt-viewer-app.c:1008
222 #: ../src/virt-viewer-app.c:948
255223 #, c-format
256224 msgid "Waiting for display %d..."
257225 msgstr ""
258226
259 #: ../src/virt-viewer-app.c:1117
227 #: ../src/virt-viewer-app.c:1055
260228 #, c-format
261229 msgid "Unsupported graphic type '%s'"
262230 msgstr ""
263231
264 #: ../src/virt-viewer-app.c:1200
232 #: ../src/virt-viewer-app.c:1138
265233 msgid "Connect to ssh failed."
266234 msgstr ""
267235
268 #: ../src/virt-viewer-app.c:1202
236 #: ../src/virt-viewer-app.c:1140
269237 msgid "Can't connect to channel, SSH only supported."
270238 msgstr ""
271239
240 #: ../src/virt-viewer-app.c:1152
241 msgid "Connect to channel unsupported."
242 msgstr ""
243
272244 #: ../src/virt-viewer-app.c:1214
273 msgid "Connect to channel unsupported."
274 msgstr ""
275
276 #: ../src/virt-viewer-app.c:1276
277245 msgid "Display can only be attached through libvirt with --attach"
278246 msgstr ""
279247
280 #: ../src/virt-viewer-app.c:1299
248 #: ../src/virt-viewer-app.c:1237
281249 msgid "Connecting to graphic server"
282250 msgstr ""
283251
284 #: ../src/virt-viewer-app.c:1398
252 #: ../src/virt-viewer-app.c:1336
285253 msgid "Guest domain has shutdown"
286254 msgstr ""
287255
288 #: ../src/virt-viewer-app.c:1459
256 #: ../src/virt-viewer-app.c:1397
289257 msgid "Connected to graphic server"
290258 msgstr ""
291259
292 #: ../src/virt-viewer-app.c:1486
260 #: ../src/virt-viewer-app.c:1424
293261 #, c-format
294262 msgid "Unable to connect to the graphic server %s"
295263 msgstr ""
296264
297 #: ../src/virt-viewer-app.c:1512
265 #: ../src/virt-viewer-app.c:1450
298266 #, c-format
299267 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
300268 msgstr ""
301269
302 #: ../src/virt-viewer-app.c:1525
270 #: ../src/virt-viewer-app.c:1463
303271 #, c-format
304272 msgid "Unable to authenticate with remote desktop server: %s"
305273 msgstr ""
306274
307 #: ../src/virt-viewer-app.c:1533
275 #: ../src/virt-viewer-app.c:1471
308276 #, c-format
309277 msgid "USB redirection error: %s"
310278 msgstr ""
311279
312 #: ../src/virt-viewer-app.c:1786
280 #: ../src/virt-viewer-app.c:1805
313281 #, c-format
314282 msgid "Zoom level must be within %d-%d\n"
315283 msgstr ""
316284
317 #: ../src/virt-viewer-app.c:2296
318 #, c-format
319 msgid "Display %d"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:2552
285 #: ../src/virt-viewer-app.c:1858
286 #, c-format
287 msgid "%s\n"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:1868
291 #, c-format
292 msgid "%s version %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:2292
296 #, c-format
297 msgid "Display _%d"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:2548
323301 #, c-format
324302 msgid "Invalid kiosk-quit argument: %s"
303 msgstr ""
304
305 #: ../src/virt-viewer-app.c:2559
306 msgid "Display version information"
325307 msgstr ""
326308
327309 #: ../src/virt-viewer-app.c:2561
356338 msgid "Display debugging information"
357339 msgstr ""
358340
359 #: ../src/virt-viewer-auth.c:88
341 #: ../src/virt-viewer-auth.c:89
360342 #, c-format
361343 msgid ""
362344 "Authentication is required for the %s connection to:\n"
365347 "\n"
366348 msgstr ""
367349
368 #: ../src/virt-viewer-auth.c:92
350 #: ../src/virt-viewer-auth.c:93
369351 #, c-format
370352 msgid "Authentication is required for the %s connection:\n"
371353 msgstr ""
377359 #. * indent-tabs-mode: nil
378360 #. * End:
379361 #.
380 #: ../src/virt-viewer-auth.xml.h:1
362 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
381363 msgid "Authentication required"
382364 msgstr ""
383365
384 #: ../src/virt-viewer-auth.xml.h:2 ../src/virt-viewer-guest-details.xml.h:4
366 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
367 msgid "_OK"
368 msgstr ""
369
370 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
371 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
385372 msgid "label"
386373 msgstr ""
387374
388 #: ../src/virt-viewer-auth.xml.h:3
375 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
389376 msgid "Password:"
390377 msgstr ""
391378
392 #: ../src/virt-viewer-auth.xml.h:4
379 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
393380 msgid "Username:"
394381 msgstr ""
395382
396 #: ../src/virt-viewer-auth.xml.h:5
383 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
397384 msgid "Show password"
398385 msgstr ""
399386
400 #: ../src/virt-viewer-display-vnc.c:133
387 #: ../src/virt-viewer-display-vnc.c:134
401388 msgid "VNC does not provide GUID"
402389 msgstr ""
403390
391 #: ../src/virt-viewer-file-transfer-dialog.c:152
392 msgid "Cancel"
393 msgstr ""
394
395 #: ../src/virt-viewer-file-transfer-dialog.c:163
396 msgid "File Transfers"
397 msgstr ""
398
404399 #: ../src/virt-viewer-main.c:38
405 #, c-format
406 msgid "%s version %s\n"
407 msgstr ""
408
409 #: ../src/virt-viewer-main.c:62
410 msgid "Direct connection with no automatic tunnels"
411 msgstr ""
412
413 #: ../src/virt-viewer-main.c:64
414 msgid "Attach to the local display using libvirt"
415 msgstr ""
416
417 #: ../src/virt-viewer-main.c:66
418 msgid "Connect to hypervisor"
419 msgstr ""
420
421 #: ../src/virt-viewer-main.c:68
422 msgid "Wait for domain to start"
423 msgstr ""
424
425 #: ../src/virt-viewer-main.c:70
426 msgid "Reconnect to domain upon restart"
427 msgstr ""
428
429 #: ../src/virt-viewer-main.c:77
430400 msgid "Virt Viewer"
431401 msgstr ""
432402
433 #: ../src/virt-viewer-main.c:80
434 #, c-format
435 msgid "Run '%s --help' to see a full list of available command line options"
436 msgstr ""
437
438 #: ../src/virt-viewer-main.c:86
439 msgid "Virtual machine graphical console"
440 msgstr ""
441
442 #: ../src/virt-viewer-main.c:107
443 #, c-format
444 msgid ""
445 "\n"
446 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
447 "\n"
448 "%s\n"
449 "\n"
450 msgstr ""
451
452 #: ../src/virt-viewer-main.c:112
453 #, c-format
454 msgid ""
455 "\n"
456 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
457 "\n"
458 msgstr ""
459
460 #: ../src/virt-viewer-session-spice.c:694
403 #: ../src/virt-viewer-session-spice.c:705
461404 msgid "Invalid password"
462405 msgstr ""
463406
464407 #. Create the widgets
465 #: ../src/virt-viewer-session-spice.c:786
408 #: ../src/virt-viewer-session-spice.c:797
466409 msgid "Select USB devices for redirection"
467410 msgstr ""
468411
469 #: ../src/virt-viewer-session-vnc.c:153
412 #: ../src/virt-viewer-session-spice.c:799
413 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
414 msgid "_Close"
415 msgstr ""
416
417 #: ../src/virt-viewer-session-vnc.c:156
470418 #, c-format
471419 msgid "Unsupported authentication type %d"
472420 msgstr ""
479427 msgid "No virtual machine was chosen"
480428 msgstr ""
481429
430 #: ../src/virt-viewer-window.c:534
431 msgid "Ctrl+Alt+_Del"
432 msgstr ""
433
434 #: ../src/virt-viewer-window.c:535
435 msgid "Ctrl+Alt+_Backspace"
436 msgstr ""
437
482438 #: ../src/virt-viewer-window.c:537
483 msgid "Ctrl+Alt+_Del"
439 msgid "Ctrl+Alt+F_1"
484440 msgstr ""
485441
486442 #: ../src/virt-viewer-window.c:538
487 msgid "Ctrl+Alt+_Backspace"
443 msgid "Ctrl+Alt+F_2"
444 msgstr ""
445
446 #: ../src/virt-viewer-window.c:539
447 msgid "Ctrl+Alt+F_3"
488448 msgstr ""
489449
490450 #: ../src/virt-viewer-window.c:540
491 msgid "Ctrl+Alt+F_1"
451 msgid "Ctrl+Alt+F_4"
492452 msgstr ""
493453
494454 #: ../src/virt-viewer-window.c:541
495 msgid "Ctrl+Alt+F_2"
455 msgid "Ctrl+Alt+F_5"
496456 msgstr ""
497457
498458 #: ../src/virt-viewer-window.c:542
499 msgid "Ctrl+Alt+F_3"
459 msgid "Ctrl+Alt+F_6"
500460 msgstr ""
501461
502462 #: ../src/virt-viewer-window.c:543
503 msgid "Ctrl+Alt+F_4"
463 msgid "Ctrl+Alt+F_7"
504464 msgstr ""
505465
506466 #: ../src/virt-viewer-window.c:544
507 msgid "Ctrl+Alt+F_5"
467 msgid "Ctrl+Alt+F_8"
508468 msgstr ""
509469
510470 #: ../src/virt-viewer-window.c:545
511 msgid "Ctrl+Alt+F_6"
471 msgid "Ctrl+Alt+F_9"
512472 msgstr ""
513473
514474 #: ../src/virt-viewer-window.c:546
515 msgid "Ctrl+Alt+F_7"
475 msgid "Ctrl+Alt+F1_0"
516476 msgstr ""
517477
518478 #: ../src/virt-viewer-window.c:547
519 msgid "Ctrl+Alt+F_8"
479 msgid "Ctrl+Alt+F11"
520480 msgstr ""
521481
522482 #: ../src/virt-viewer-window.c:548
523 msgid "Ctrl+Alt+F_9"
524 msgstr ""
525
526 #: ../src/virt-viewer-window.c:549
527 msgid "Ctrl+Alt+F1_0"
528 msgstr ""
529
530 #: ../src/virt-viewer-window.c:550
531 msgid "Ctrl+Alt+F11"
532 msgstr ""
533
534 #: ../src/virt-viewer-window.c:551
535483 msgid "Ctrl+Alt+F12"
536484 msgstr ""
537485
538 #: ../src/virt-viewer-window.c:933 ../src/virt-viewer.xml.h:2
486 #: ../src/virt-viewer-window.c:919
487 msgid "_Save"
488 msgstr ""
489
490 #: ../src/virt-viewer-window.c:927
539491 msgid "Screenshot"
540492 msgstr ""
541493
542 #: ../src/virt-viewer-window.c:1002 ../src/virt-viewer-window.c:1004
494 #: ../src/virt-viewer-window.c:996 ../src/virt-viewer-window.c:998
543495 msgid "Unknown"
544496 msgstr ""
545497
546 #: ../src/virt-viewer-window.c:1062
498 #: ../src/virt-viewer-window.c:1071
547499 msgid "Disconnect"
548500 msgstr ""
549501
550 #: ../src/virt-viewer-window.c:1071 ../src/virt-viewer-window.c:1072
551 #: ../src/virt-viewer.xml.h:3
502 #: ../src/virt-viewer-window.c:1079 ../src/virt-viewer-window.c:1080
552503 msgid "USB device selection"
553504 msgstr ""
554505
555 #: ../src/virt-viewer-window.c:1081
506 #: ../src/virt-viewer-window.c:1089
556507 msgid "Send key combination"
557508 msgstr ""
558509
559 #: ../src/virt-viewer-window.c:1090 ../src/virt-viewer-window.c:1091
510 #: ../src/virt-viewer-window.c:1099 ../src/virt-viewer-window.c:1100
560511 msgid "Leave fullscreen"
561512 msgstr ""
562513
563 #: ../src/virt-viewer-window.c:1173
514 #: ../src/virt-viewer-window.c:1175
564515 msgid "Ctrl+Alt"
565516 msgstr ""
566517
567 #: ../src/virt-viewer-window.c:1176
518 #: ../src/virt-viewer-window.c:1178
568519 #, c-format
569520 msgid "(Press %s to release pointer)"
570521 msgstr ""
573524 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
574525 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
575526 #.
576 #: ../src/virt-viewer-window.c:1187
527 #: ../src/virt-viewer-window.c:1189
577528 #, c-format
578529 msgid "%s%s%s - %s"
579530 msgstr ""
580531
581532 #. translators: <space>
582 #: ../src/virt-viewer-window.c:1191
533 #: ../src/virt-viewer-window.c:1193
583534 msgid " "
584535 msgstr ""
585536
586 #: ../src/virt-viewer-file.c:825
537 #: ../src/virt-viewer-file.c:843
587538 #, c-format
588539 msgid ""
589540 "At least %s version %s is required to setup this connection, see %s for "
590541 "details"
591542 msgstr ""
592543
593 #: ../src/virt-viewer-file.c:833
544 #: ../src/virt-viewer-file.c:851
594545 #, c-format
595546 msgid "At least %s version %s is required to setup this connection"
596547 msgstr ""
597548
598 #: ../src/virt-viewer.c:163
549 #: ../src/virt-viewer.c:90
550 msgid "Direct connection with no automatic tunnels"
551 msgstr ""
552
553 #: ../src/virt-viewer.c:92
554 msgid "Attach to the local display using libvirt"
555 msgstr ""
556
557 #: ../src/virt-viewer.c:94
558 msgid "Connect to hypervisor"
559 msgstr ""
560
561 #: ../src/virt-viewer.c:96
562 msgid "Wait for domain to start"
563 msgstr ""
564
565 #: ../src/virt-viewer.c:98
566 msgid "Reconnect to domain upon restart"
567 msgstr ""
568
569 #: ../src/virt-viewer.c:105
570 msgid "Virtual machine graphical console"
571 msgstr ""
572
573 #: ../src/virt-viewer.c:124
574 #, c-format
575 msgid ""
576 "\n"
577 "Usage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n"
578 "\n"
579 msgstr ""
580
581 #: ../src/virt-viewer.c:136
582 #, c-format
583 msgid ""
584 "\n"
585 "No DOMAIN-NAME|ID|UUID was specified for '--wait'\n"
586 "\n"
587 msgstr ""
588
589 #: ../src/virt-viewer.c:250
599590 msgid "Waiting for guest domain to re-start"
600591 msgstr ""
601592
602 #: ../src/virt-viewer.c:409
593 #: ../src/virt-viewer.c:496
603594 #, c-format
604595 msgid "Cannot determine the graphic type for the guest %s"
605596 msgstr ""
606597
607 #: ../src/virt-viewer.c:448
598 #: ../src/virt-viewer.c:535
608599 #, c-format
609600 msgid "Cannot determine the host for the guest %s"
610601 msgstr ""
611602
612 #: ../src/virt-viewer.c:476
603 #: ../src/virt-viewer.c:563
613604 #, c-format
614605 msgid "Guest '%s' is not reachable"
615606 msgstr ""
616607
617 #: ../src/virt-viewer.c:697
608 #: ../src/virt-viewer.c:784
618609 #, c-format
619610 msgid "Virtual machine %s is not running"
620611 msgstr ""
621612
622 #: ../src/virt-viewer.c:720
613 #: ../src/virt-viewer.c:807
623614 msgid "Waiting for libvirt to start"
624615 msgstr ""
625616
626 #: ../src/virt-viewer.c:724
617 #: ../src/virt-viewer.c:811
627618 msgid "Finding guest domain"
628619 msgstr ""
629620
630 #: ../src/virt-viewer.c:728
621 #: ../src/virt-viewer.c:815
631622 msgid "Waiting for guest domain to be created"
632623 msgstr ""
633624
634 #: ../src/virt-viewer.c:750
625 #: ../src/virt-viewer.c:837
635626 msgid "Checking guest domain status"
636627 msgstr ""
637628
638 #: ../src/virt-viewer.c:753
629 #: ../src/virt-viewer.c:840
639630 msgid "Cannot get guest state"
640631 msgstr ""
641632
642 #: ../src/virt-viewer.c:759
633 #: ../src/virt-viewer.c:846
643634 msgid "Waiting for guest domain to start"
644635 msgstr ""
645636
646 #: ../src/virt-viewer.c:863
637 #: ../src/virt-viewer.c:950
647638 #, c-format
648639 msgid "Unable to connect to libvirt with URI: %s."
649640 msgstr ""
650641
651 #: ../src/virt-viewer.c:864
642 #: ../src/virt-viewer.c:951
652643 msgid "[none]"
653644 msgstr ""
654645
655 #: ../src/virt-viewer.c:871
646 #: ../src/virt-viewer.c:958
656647 msgid "Authentication failed."
657648 msgstr ""
658649
659 #: ../src/virt-viewer.c:931
650 #: ../src/virt-viewer.c:1018
660651 msgid "Failed to connect: "
661652 msgstr ""
662653
667658 #. * indent-tabs-mode: nil
668659 #. * End:
669660 #.
670 #: ../src/virt-viewer.xml.h:1
661 #: ../src/resources/ui/virt-viewer.ui.h:1
671662 msgid "_File"
672663 msgstr ""
673664
674 #: ../src/virt-viewer.xml.h:4
665 #: ../src/resources/ui/virt-viewer.ui.h:2
666 msgid "_Screenshot"
667 msgstr ""
668
669 #: ../src/resources/ui/virt-viewer.ui.h:3
670 msgid "_USB device selection"
671 msgstr ""
672
673 #: ../src/resources/ui/virt-viewer.ui.h:4
675674 msgid "Smartcard insertion"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.xml.h:5
677 #: ../src/resources/ui/virt-viewer.ui.h:5
679678 msgid "Smartcard removal"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.xml.h:6 ../src/virt-viewer-preferences.xml.h:1
681 #: ../src/resources/ui/virt-viewer.ui.h:6
682 msgid "_Preferences"
683 msgstr ""
684
685 #: ../src/resources/ui/virt-viewer.ui.h:7
686 msgid "_Quit"
687 msgstr ""
688
689 #: ../src/resources/ui/virt-viewer.ui.h:8
690 msgid "_View"
691 msgstr ""
692
693 #: ../src/resources/ui/virt-viewer.ui.h:9
694 msgid "_Full screen"
695 msgstr ""
696
697 #: ../src/resources/ui/virt-viewer.ui.h:10
698 msgid "_Zoom"
699 msgstr ""
700
701 #: ../src/resources/ui/virt-viewer.ui.h:11
702 msgid "Zoom _In"
703 msgstr ""
704
705 #: ../src/resources/ui/virt-viewer.ui.h:12
706 msgid "Zoom _Out"
707 msgstr ""
708
709 #: ../src/resources/ui/virt-viewer.ui.h:13
710 msgid "_Normal Size"
711 msgstr ""
712
713 #: ../src/resources/ui/virt-viewer.ui.h:14
714 msgid "_Displays"
715 msgstr ""
716
717 #: ../src/resources/ui/virt-viewer.ui.h:15
718 msgid "Release cursor"
719 msgstr ""
720
721 #: ../src/resources/ui/virt-viewer.ui.h:16
722 msgid "_Send key"
723 msgstr ""
724
725 #: ../src/resources/ui/virt-viewer.ui.h:17
726 msgid "_Help"
727 msgstr ""
728
729 #: ../src/resources/ui/virt-viewer.ui.h:18
730 msgid "_Guest Details"
731 msgstr ""
732
733 #: ../src/resources/ui/virt-viewer.ui.h:19
734 msgid "_About"
735 msgstr ""
736
737 #: ../src/resources/ui/virt-viewer.ui.h:20
738 msgid "_Change CD"
739 msgstr ""
740
741 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
742 msgid "Guest Details"
743 msgstr ""
744
745 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
746 msgid "Name:"
747 msgstr ""
748
749 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
750 msgid "GUID:"
751 msgstr ""
752
753 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
754 msgid "Choose a virtual machine"
755 msgstr ""
756
757 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
758 msgid "Name"
759 msgstr ""
760
761 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
762 msgid "Available virtual machines"
763 msgstr ""
764
765 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
683766 msgid "Preferences"
684767 msgstr ""
685768
686 #: ../src/virt-viewer.xml.h:7
687 msgid "_View"
688 msgstr ""
689
690 #: ../src/virt-viewer.xml.h:8
691 msgid "Full screen"
692 msgstr ""
693
694 #: ../src/virt-viewer.xml.h:9
695 msgid "_Zoom"
696 msgstr ""
697
698 #: ../src/virt-viewer.xml.h:10
699 msgid "Displays"
700 msgstr ""
701
702 #: ../src/virt-viewer.xml.h:11
703 msgid "Release cursor"
704 msgstr ""
705
706 #: ../src/virt-viewer.xml.h:12
707 msgid "_Send key"
708 msgstr ""
709
710 #: ../src/virt-viewer.xml.h:13
711 msgid "_Help"
712 msgstr ""
713
714 #: ../src/virt-viewer.xml.h:14
715 msgid "_Guest Details"
716 msgstr ""
717
718 #: ../src/virt-viewer-guest-details.xml.h:1
719 msgid "Guest Details"
720 msgstr ""
721
722 #: ../src/virt-viewer-guest-details.xml.h:2
723 msgid "Name:"
724 msgstr ""
725
726 #: ../src/virt-viewer-guest-details.xml.h:3
727 msgid "GUID:"
728 msgstr ""
729
730 #: ../src/virt-viewer-vm-connection.xml.h:1
731 msgid "Choose a virtual machine"
732 msgstr ""
733
734 #: ../src/virt-viewer-vm-connection.xml.h:2
735 msgid "Name"
736 msgstr ""
737
738 #: ../src/virt-viewer-vm-connection.xml.h:3
739 msgid "Available virtual machines"
740 msgstr ""
741
742 #: ../src/virt-viewer-preferences.xml.h:2
769 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
743770 msgid "Folder sharing"
744771 msgstr ""
745772
746 #: ../src/virt-viewer-preferences.xml.h:3
773 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
747774 msgid "Share folder"
748775 msgstr ""
749776
750 #: ../src/virt-viewer-preferences.xml.h:4
777 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
751778 msgid "Read-only"
752779 msgstr ""
753780
754 #: ../src/virt-viewer-preferences.xml.h:5
781 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
755782 msgid "Spice"
756783 msgstr ""
22 MAINTAINERCLEANFILES =
33 bin_PROGRAMS =
44
5 noinst_LTLIBRARIES = libvirt-viewer.la
6
7 builderxmldir = $(pkgdatadir)/ui
8 builderxml_DATA = \
9 virt-viewer.xml \
10 virt-viewer-about.xml \
11 virt-viewer-auth.xml \
12 virt-viewer-guest-details.xml \
13 virt-viewer-vm-connection.xml \
14 virt-viewer-preferences.xml \
15 remote-viewer-connect.xml \
5 noinst_LTLIBRARIES = libvirt-viewer-util.la libvirt-viewer.la
6
7 noinst_DATA = \
8 resources/ui/virt-viewer.ui \
9 resources/ui/virt-viewer-about.ui \
10 resources/ui/virt-viewer-auth.ui \
11 resources/ui/virt-viewer-guest-details.ui \
12 resources/ui/virt-viewer-vm-connection.ui \
13 resources/ui/virt-viewer-preferences.ui \
14 resources/ui/remote-viewer-connect.ui \
1615 $(NULL)
1716
1817 EXTRA_DIST = \
19 $(builderxml_DATA) \
18 $(noinst_DATA) \
2019 virt-viewer-enums.c.etemplate \
2120 virt-viewer-enums.h.etemplate \
22 gbinding.c \
23 gbinding.h \
21 resources/virt-viewer.gresource.xml \
2422 $(NULL)
2523
2624 ENUMS_FILES = \
2826 $(NULL)
2927
3028 BUILT_SOURCES = \
29 virt-viewer-resources.h \
30 virt-viewer-resources.c \
3131 virt-viewer-enums.h \
3232 virt-viewer-enums.c \
3333 $(NULL)
3434
35 $(BUILT_SOURCES): %: %.etemplate $(ENUMS_FILES)
35 virt-viewer-resources.c virt-viewer-resources.h: resources/virt-viewer.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir=$(srcdir)/resources $(srcdir)/resources/virt-viewer.gresource.xml)
36 $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/resources --generate --c-name virt_viewer $<
37
38 virt-viewer-enums.c virt-viewer-enums.h: %: %.etemplate $(ENUMS_FILES)
3639 $(AM_V_GEN)$(GLIB_MKENUMS) --template $^ | \
3740 sed -e 's/VIRT_TYPE_VIEWER/VIRT_VIEWER_TYPE/' \
3841 -e 's,#include "$(srcdir)/,#include ",' > $@
3942
43 CLEANFILES = \
44 $(BUILT_SOURCES) \
45 $(NULL)
46
47 libvirt_viewer_util_la_SOURCES = \
48 virt-viewer-util.h \
49 virt-viewer-util.c \
50 $(NULL)
51
4052 libvirt_viewer_la_SOURCES = \
4153 $(BUILT_SOURCES) \
42 virt-glib-compat.h \
43 virt-glib-compat.c \
44 virt-gtk-compat.h \
45 virt-viewer-util.h \
46 virt-viewer-util.c \
4754 virt-viewer-auth.h \
4855 virt-viewer-auth.c \
4956 virt-viewer-app.h \
6067 virt-viewer-window.c \
6168 virt-viewer-vm-connection.h \
6269 virt-viewer-vm-connection.c \
63 view/autoDrawer.c \
64 view/autoDrawer.h \
65 view/drawer.c \
66 view/drawer.h \
67 view/ovBox.c \
68 view/ovBox.h \
70 virt-viewer-timed-revealer.c \
71 virt-viewer-timed-revealer.h \
6972 $(NULL)
7073
7174 if HAVE_GTK_VNC
8386 virt-viewer-session-spice.c \
8487 virt-viewer-display-spice.h \
8588 virt-viewer-display-spice.c \
89 virt-viewer-file-transfer-dialog.h \
90 virt-viewer-file-transfer-dialog.c \
8691 $(NULL)
8792 endif
8893
115120 $(WARN_CFLAGS) \
116121 $(NULL)
117122
123 libvirt_viewer_util_la_LIBADD = \
124 $(GLIB2_LIBS) \
125 $(GTK_LIBS) \
126 $(LIBXML2_LIBS) \
127 $(NULL)
128
129 libvirt_viewer_util_la_CFLAGS = \
130 -DLOCALE_DIR=\""$(datadir)/locale"\" \
131 $(GLIB2_CFLAGS) \
132 $(GTK_CFLAGS) \
133 $(LIBXML2_CFLAGS) \
134 $(NULL)
118135
119136 libvirt_viewer_la_LIBADD = \
120137 $(COMMON_LIBS) \
121138 $(NULL)
122139
123140 libvirt_viewer_la_CFLAGS = \
124 $(COMMON_CFLAGS)
125 $(NULL)
126
127 check_PROGRAMS = test-version-compare
128 TESTS = $(check_PROGRAMS)
129 test_version_compare_SOURCES = \
130 virt-viewer-util.c \
131 virt-viewer-util.h \
132 test-version-compare.c \
133 $(NULL)
134 test_version_compare_LDFLAGS = \
135 $(GLIB2_LIBS) \
136 $(GTK_LIBS) \
137 $(LIBXML2_LIBS) \
138 $(NULL)
139 test_version_compare_CFLAGS = \
140 -DLOCALE_DIR=\""$(datadir)/locale"\" \
141 $(GLIB2_CFLAGS) \
142 $(GTK_CFLAGS) \
143 $(LIBXML2_CFLAGS) \
144 $(WARN_CFLAGS) \
141 $(COMMON_CFLAGS) \
145142 $(NULL)
146143
147144 if HAVE_LIBVIRT
148145 bin_PROGRAMS += virt-viewer
149146 virt_viewer_SOURCES = \
150 virt-viewer-events.h \
151 virt-viewer-events.c \
152147 virt-viewer.h \
153148 virt-viewer.c \
154149 virt-viewer-main.c \
162157 $(LIBVIRT_CFLAGS) \
163158 $(NULL)
164159 virt_viewer_LDADD = \
160 libvirt-viewer-util.la \
165161 libvirt-viewer.la \
166162 $(NULL)
167163 endif
184180 $(SPICE_CONTROLLER_CFLAGS) \
185181 $(NULL)
186182 remote_viewer_LDADD = \
183 libvirt-viewer-util.la \
187184 libvirt-viewer.la \
188185 $(NULL)
189186
190187 if OS_WIN32
191188 remote_viewer_LDFLAGS += -Wl,--subsystem,windows
192189 endif
193
194 AM_CPPFLAGS = -DPACKAGE_DATADIR=\""$(pkgdatadir)"\"
195190
196191 VIRT_VIEWER_RES = virt-viewer.rc virt-viewer.manifest
197192 ICONDIR = $(top_builddir)/icons
102102 @HAVE_SPICE_GTK_TRUE@ virt-viewer-session-spice.c \
103103 @HAVE_SPICE_GTK_TRUE@ virt-viewer-display-spice.h \
104104 @HAVE_SPICE_GTK_TRUE@ virt-viewer-display-spice.c \
105 @HAVE_SPICE_GTK_TRUE@ virt-viewer-file-transfer-dialog.h \
106 @HAVE_SPICE_GTK_TRUE@ virt-viewer-file-transfer-dialog.c \
105107 @HAVE_SPICE_GTK_TRUE@ $(NULL)
106108
107109 @HAVE_OVIRT_TRUE@am__append_3 = \
109111 @HAVE_OVIRT_TRUE@ ovirt-foreign-menu.c \
110112 @HAVE_OVIRT_TRUE@ $(NULL)
111113
112 check_PROGRAMS = test-version-compare$(EXEEXT)
113114 @HAVE_LIBVIRT_TRUE@am__append_4 = virt-viewer
114115 @OS_WIN32_TRUE@am__append_5 = -Wl,--subsystem,windows
115116 @OS_WIN32_TRUE@am__append_6 = windows-cmdline-wrapper debug-helper
117118 @OS_WIN32_TRUE@am__append_8 = virt-viewer_rc.$(OBJEXT)
118119 subdir = src
119120 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
120 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
121 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
122 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
123 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
124 $(top_srcdir)/configure.ac
121 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
122 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
123 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
124 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
125125 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
126126 $(ACLOCAL_M4)
127127 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
131131 CONFIG_CLEAN_VPATH_FILES =
132132 LTLIBRARIES = $(noinst_LTLIBRARIES)
133133 am__DEPENDENCIES_1 =
134 libvirt_viewer_util_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
135 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
136 $(am__DEPENDENCIES_1)
137 am__objects_1 =
138 am_libvirt_viewer_util_la_OBJECTS = \
139 libvirt_viewer_util_la-virt-viewer-util.lo $(am__objects_1)
140 libvirt_viewer_util_la_OBJECTS = $(am_libvirt_viewer_util_la_OBJECTS)
141 AM_V_lt = $(am__v_lt_@AM_V@)
142 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
143 am__v_lt_0 = --silent
144 am__v_lt_1 =
145 libvirt_viewer_util_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
146 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
147 $(libvirt_viewer_util_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
148 $(LDFLAGS) -o $@
134149 am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
135150 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
136151 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
137152 $(am__DEPENDENCIES_1)
138153 libvirt_viewer_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
139154 $(am__DEPENDENCIES_1)
140 am__libvirt_viewer_la_SOURCES_DIST = virt-viewer-enums.h \
141 virt-viewer-enums.c virt-glib-compat.h virt-glib-compat.c \
142 virt-gtk-compat.h virt-viewer-util.h virt-viewer-util.c \
143 virt-viewer-auth.h virt-viewer-auth.c virt-viewer-app.h \
144 virt-viewer-app.c virt-viewer-file.h virt-viewer-file.c \
145 virt-viewer-session.h virt-viewer-session.c \
155 am__libvirt_viewer_la_SOURCES_DIST = virt-viewer-resources.h \
156 virt-viewer-resources.c virt-viewer-enums.h \
157 virt-viewer-enums.c virt-viewer-auth.h virt-viewer-auth.c \
158 virt-viewer-app.h virt-viewer-app.c virt-viewer-file.h \
159 virt-viewer-file.c virt-viewer-session.h virt-viewer-session.c \
146160 virt-viewer-display.h virt-viewer-display.c \
147161 virt-viewer-notebook.h virt-viewer-notebook.c \
148162 virt-viewer-window.h virt-viewer-window.c \
149163 virt-viewer-vm-connection.h virt-viewer-vm-connection.c \
150 view/autoDrawer.c view/autoDrawer.h view/drawer.c \
151 view/drawer.h view/ovBox.c view/ovBox.h \
164 virt-viewer-timed-revealer.c virt-viewer-timed-revealer.h \
152165 virt-viewer-session-vnc.h virt-viewer-session-vnc.c \
153166 virt-viewer-display-vnc.h virt-viewer-display-vnc.c \
154167 virt-viewer-session-spice.h virt-viewer-session-spice.c \
155168 virt-viewer-display-spice.h virt-viewer-display-spice.c \
156 ovirt-foreign-menu.h ovirt-foreign-menu.c
157 am__objects_1 =
158 am__objects_2 = libvirt_viewer_la-virt-viewer-enums.lo \
159 $(am__objects_1)
160 am__dirstamp = $(am__leading_dot)dirstamp
169 virt-viewer-file-transfer-dialog.h \
170 virt-viewer-file-transfer-dialog.c ovirt-foreign-menu.h \
171 ovirt-foreign-menu.c
172 am__objects_2 = libvirt_viewer_la-virt-viewer-resources.lo \
173 libvirt_viewer_la-virt-viewer-enums.lo $(am__objects_1)
161174 @HAVE_GTK_VNC_TRUE@am__objects_3 = libvirt_viewer_la-virt-viewer-session-vnc.lo \
162175 @HAVE_GTK_VNC_TRUE@ libvirt_viewer_la-virt-viewer-display-vnc.lo \
163176 @HAVE_GTK_VNC_TRUE@ $(am__objects_1)
164177 @HAVE_SPICE_GTK_TRUE@am__objects_4 = libvirt_viewer_la-virt-viewer-session-spice.lo \
165178 @HAVE_SPICE_GTK_TRUE@ libvirt_viewer_la-virt-viewer-display-spice.lo \
179 @HAVE_SPICE_GTK_TRUE@ libvirt_viewer_la-virt-viewer-file-transfer-dialog.lo \
166180 @HAVE_SPICE_GTK_TRUE@ $(am__objects_1)
167181 @HAVE_OVIRT_TRUE@am__objects_5 = \
168182 @HAVE_OVIRT_TRUE@ libvirt_viewer_la-ovirt-foreign-menu.lo \
169183 @HAVE_OVIRT_TRUE@ $(am__objects_1)
170184 am_libvirt_viewer_la_OBJECTS = $(am__objects_2) \
171 libvirt_viewer_la-virt-glib-compat.lo \
172 libvirt_viewer_la-virt-viewer-util.lo \
173185 libvirt_viewer_la-virt-viewer-auth.lo \
174186 libvirt_viewer_la-virt-viewer-app.lo \
175187 libvirt_viewer_la-virt-viewer-file.lo \
178190 libvirt_viewer_la-virt-viewer-notebook.lo \
179191 libvirt_viewer_la-virt-viewer-window.lo \
180192 libvirt_viewer_la-virt-viewer-vm-connection.lo \
181 view/libvirt_viewer_la-autoDrawer.lo \
182 view/libvirt_viewer_la-drawer.lo \
183 view/libvirt_viewer_la-ovBox.lo $(am__objects_1) \
184 $(am__objects_3) $(am__objects_4) $(am__objects_5)
193 libvirt_viewer_la-virt-viewer-timed-revealer.lo \
194 $(am__objects_1) $(am__objects_3) $(am__objects_4) \
195 $(am__objects_5)
185196 libvirt_viewer_la_OBJECTS = $(am_libvirt_viewer_la_OBJECTS)
186 AM_V_lt = $(am__v_lt_@AM_V@)
187 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
188 am__v_lt_0 = --silent
189 am__v_lt_1 =
190197 libvirt_viewer_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
191198 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
192199 $(libvirt_viewer_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
194201 @HAVE_LIBVIRT_TRUE@am__EXEEXT_1 = virt-viewer$(EXEEXT)
195202 @OS_WIN32_TRUE@am__EXEEXT_2 = windows-cmdline-wrapper$(EXEEXT) \
196203 @OS_WIN32_TRUE@ debug-helper$(EXEEXT)
197 am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(builderxmldir)"
204 am__installdirs = "$(DESTDIR)$(bindir)"
198205 PROGRAMS = $(bin_PROGRAMS)
199206 am__debug_helper_SOURCES_DIST = debug-helper.c
200207 @OS_WIN32_TRUE@am_debug_helper_OBJECTS = \
209216 remote_viewer-remote-viewer-connect.$(OBJEXT) \
210217 remote_viewer-remote-viewer-main.$(OBJEXT) $(am__objects_1)
211218 remote_viewer_OBJECTS = $(am_remote_viewer_OBJECTS)
212 remote_viewer_DEPENDENCIES = libvirt-viewer.la $(am__DEPENDENCIES_1)
219 remote_viewer_DEPENDENCIES = libvirt-viewer-util.la libvirt-viewer.la \
220 $(am__DEPENDENCIES_1)
213221 remote_viewer_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
214222 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(remote_viewer_CFLAGS) \
215223 $(CFLAGS) $(remote_viewer_LDFLAGS) $(LDFLAGS) -o $@
216 am_test_version_compare_OBJECTS = \
217 test_version_compare-virt-viewer-util.$(OBJEXT) \
218 test_version_compare-test-version-compare.$(OBJEXT) \
219 $(am__objects_1)
220 test_version_compare_OBJECTS = $(am_test_version_compare_OBJECTS)
221 test_version_compare_LDADD = $(LDADD)
222 test_version_compare_DEPENDENCIES = $(am__append_7)
223 test_version_compare_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
224 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
225 $(test_version_compare_CFLAGS) $(CFLAGS) \
226 $(test_version_compare_LDFLAGS) $(LDFLAGS) -o $@
227 am__virt_viewer_SOURCES_DIST = virt-viewer-events.h \
228 virt-viewer-events.c virt-viewer.h virt-viewer.c \
224 am__virt_viewer_SOURCES_DIST = virt-viewer.h virt-viewer.c \
229225 virt-viewer-main.c
230226 @HAVE_LIBVIRT_TRUE@am_virt_viewer_OBJECTS = \
231 @HAVE_LIBVIRT_TRUE@ virt_viewer-virt-viewer-events.$(OBJEXT) \
232227 @HAVE_LIBVIRT_TRUE@ virt_viewer-virt-viewer.$(OBJEXT) \
233228 @HAVE_LIBVIRT_TRUE@ virt_viewer-virt-viewer-main.$(OBJEXT) \
234229 @HAVE_LIBVIRT_TRUE@ $(am__objects_1)
235230 virt_viewer_OBJECTS = $(am_virt_viewer_OBJECTS)
236 @HAVE_LIBVIRT_TRUE@virt_viewer_DEPENDENCIES = libvirt-viewer.la \
237 @HAVE_LIBVIRT_TRUE@ $(am__DEPENDENCIES_1)
231 @HAVE_LIBVIRT_TRUE@virt_viewer_DEPENDENCIES = libvirt-viewer-util.la \
232 @HAVE_LIBVIRT_TRUE@ libvirt-viewer.la $(am__DEPENDENCIES_1)
238233 virt_viewer_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
239234 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(virt_viewer_CFLAGS) \
240235 $(CFLAGS) $(virt_viewer_LDFLAGS) $(LDFLAGS) -o $@
283278 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
284279 am__v_CCLD_0 = @echo " CCLD " $@;
285280 am__v_CCLD_1 =
286 SOURCES = $(libvirt_viewer_la_SOURCES) $(debug_helper_SOURCES) \
287 $(remote_viewer_SOURCES) $(test_version_compare_SOURCES) \
288 $(virt_viewer_SOURCES) $(windows_cmdline_wrapper_SOURCES)
289 DIST_SOURCES = $(am__libvirt_viewer_la_SOURCES_DIST) \
281 SOURCES = $(libvirt_viewer_util_la_SOURCES) \
282 $(libvirt_viewer_la_SOURCES) $(debug_helper_SOURCES) \
283 $(remote_viewer_SOURCES) $(virt_viewer_SOURCES) \
284 $(windows_cmdline_wrapper_SOURCES)
285 DIST_SOURCES = $(libvirt_viewer_util_la_SOURCES) \
286 $(am__libvirt_viewer_la_SOURCES_DIST) \
290287 $(am__debug_helper_SOURCES_DIST) $(remote_viewer_SOURCES) \
291 $(test_version_compare_SOURCES) \
292288 $(am__virt_viewer_SOURCES_DIST) \
293289 $(am__windows_cmdline_wrapper_SOURCES_DIST)
294290 am__can_run_installinfo = \
296292 n|no|NO) false;; \
297293 *) (install-info --version) >/dev/null 2>&1;; \
298294 esac
299 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
300 am__vpath_adj = case $$p in \
301 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
302 *) f=$$p;; \
303 esac;
304 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
305 am__install_max = 40
306 am__nobase_strip_setup = \
307 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
308 am__nobase_strip = \
309 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
310 am__nobase_list = $(am__nobase_strip_setup); \
311 for p in $$list; do echo "$$p $$p"; done | \
312 sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
313 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
314 if (++n[$$2] == $(am__install_max)) \
315 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
316 END { for (dir in files) print dir, files[dir] }'
317 am__base_list = \
318 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
319 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
320 am__uninstall_files_from_dir = { \
321 test -z "$$files" \
322 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
323 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
324 $(am__cd) "$$dir" && rm -f $$files; }; \
325 }
326 DATA = $(builderxml_DATA)
295 DATA = $(noinst_DATA)
327296 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
328297 # Read a list of newline-separated strings from the standard input,
329298 # and print each of them once, without duplicates. Input order is
343312 done | $(am__uniquify_input)`
344313 ETAGS = etags
345314 CTAGS = ctags
346 am__tty_colors_dummy = \
347 mgn= red= grn= lgn= blu= brg= std=; \
348 am__color_tests=no
349 am__tty_colors = { \
350 $(am__tty_colors_dummy); \
351 if test "X$(AM_COLOR_TESTS)" = Xno; then \
352 am__color_tests=no; \
353 elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
354 am__color_tests=yes; \
355 elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
356 am__color_tests=yes; \
357 fi; \
358 if test $$am__color_tests = yes; then \
359 red=''; \
360 grn=''; \
361 lgn=''; \
362 blu=''; \
363 mgn=''; \
364 brg=''; \
365 std=''; \
366 fi; \
367 }
368 am__recheck_rx = ^[ ]*:recheck:[ ]*
369 am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
370 am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
371 # A command that, given a newline-separated list of test names on the
372 # standard input, print the name of the tests that are to be re-run
373 # upon "make recheck".
374 am__list_recheck_tests = $(AWK) '{ \
375 recheck = 1; \
376 while ((rc = (getline line < ($$0 ".trs"))) != 0) \
377 { \
378 if (rc < 0) \
379 { \
380 if ((getline line2 < ($$0 ".log")) < 0) \
381 recheck = 0; \
382 break; \
383 } \
384 else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
385 { \
386 recheck = 0; \
387 break; \
388 } \
389 else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
390 { \
391 break; \
392 } \
393 }; \
394 if (recheck) \
395 print $$0; \
396 close ($$0 ".trs"); \
397 close ($$0 ".log"); \
398 }'
399 # A command that, given a newline-separated list of test names on the
400 # standard input, create the global log from their .trs and .log files.
401 am__create_global_log = $(AWK) ' \
402 function fatal(msg) \
403 { \
404 print "fatal: making $@: " msg | "cat >&2"; \
405 exit 1; \
406 } \
407 function rst_section(header) \
408 { \
409 print header; \
410 len = length(header); \
411 for (i = 1; i <= len; i = i + 1) \
412 printf "="; \
413 printf "\n\n"; \
414 } \
415 { \
416 copy_in_global_log = 1; \
417 global_test_result = "RUN"; \
418 while ((rc = (getline line < ($$0 ".trs"))) != 0) \
419 { \
420 if (rc < 0) \
421 fatal("failed to read from " $$0 ".trs"); \
422 if (line ~ /$(am__global_test_result_rx)/) \
423 { \
424 sub("$(am__global_test_result_rx)", "", line); \
425 sub("[ ]*$$", "", line); \
426 global_test_result = line; \
427 } \
428 else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
429 copy_in_global_log = 0; \
430 }; \
431 if (copy_in_global_log) \
432 { \
433 rst_section(global_test_result ": " $$0); \
434 while ((rc = (getline line < ($$0 ".log"))) != 0) \
435 { \
436 if (rc < 0) \
437 fatal("failed to read from " $$0 ".log"); \
438 print line; \
439 }; \
440 printf "\n"; \
441 }; \
442 close ($$0 ".trs"); \
443 close ($$0 ".log"); \
444 }'
445 # Restructured Text title.
446 am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
447 # Solaris 10 'make', and several other traditional 'make' implementations,
448 # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
449 # by disabling -e (using the XSI extension "set +e") if it's set.
450 am__sh_e_setup = case $$- in *e*) set +e;; esac
451 # Default flags passed to test drivers.
452 am__common_driver_flags = \
453 --color-tests "$$am__color_tests" \
454 --enable-hard-errors "$$am__enable_hard_errors" \
455 --expect-failure "$$am__expect_failure"
456 # To be inserted before the command running the test. Creates the
457 # directory for the log if needed. Stores in $dir the directory
458 # containing $f, in $tst the test, in $log the log. Executes the
459 # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
460 # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
461 # will run the test scripts (or their associated LOG_COMPILER, if
462 # thy have one).
463 am__check_pre = \
464 $(am__sh_e_setup); \
465 $(am__vpath_adj_setup) $(am__vpath_adj) \
466 $(am__tty_colors); \
467 srcdir=$(srcdir); export srcdir; \
468 case "$@" in \
469 */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
470 *) am__odir=.;; \
471 esac; \
472 test "x$$am__odir" = x"." || test -d "$$am__odir" \
473 || $(MKDIR_P) "$$am__odir" || exit $$?; \
474 if test -f "./$$f"; then dir=./; \
475 elif test -f "$$f"; then dir=; \
476 else dir="$(srcdir)/"; fi; \
477 tst=$$dir$$f; log='$@'; \
478 if test -n '$(DISABLE_HARD_ERRORS)'; then \
479 am__enable_hard_errors=no; \
480 else \
481 am__enable_hard_errors=yes; \
482 fi; \
483 case " $(XFAIL_TESTS) " in \
484 *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
485 am__expect_failure=yes;; \
486 *) \
487 am__expect_failure=no;; \
488 esac; \
489 $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
490 # A shell command to get the names of the tests scripts with any registered
491 # extension removed (i.e., equivalently, the names of the test logs, with
492 # the '.log' extension removed). The result is saved in the shell variable
493 # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
494 # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
495 # since that might cause problem with VPATH rewrites for suffix-less tests.
496 # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
497 am__set_TESTS_bases = \
498 bases='$(TEST_LOGS)'; \
499 bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
500 bases=`echo $$bases`
501 RECHECK_LOGS = $(TEST_LOGS)
502 AM_RECURSIVE_TARGETS = check recheck
503 TEST_SUITE_LOG = test-suite.log
504 TEST_EXTENSIONS = @EXEEXT@ .test
505 LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
506 LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
507 am__set_b = \
508 case '$@' in \
509 */*) \
510 case '$*' in \
511 */*) b='$*';; \
512 *) b=`echo '$@' | sed 's/\.log$$//'`; \
513 esac;; \
514 *) \
515 b='$*';; \
516 esac
517 am__test_logs1 = $(TESTS:=.log)
518 am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
519 TEST_LOGS = $(am__test_logs2:.test.log=.log)
520 TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
521 TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
522 $(TEST_LOG_FLAGS)
523315 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/virt-viewer.rc.in \
524 $(top_srcdir)/build-aux/depcomp \
525 $(top_srcdir)/build-aux/test-driver
316 $(top_srcdir)/build-aux/depcomp
526317 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
527318 ACLOCAL = @ACLOCAL@
528319 ALL_LINGUAS = @ALL_LINGUAS@
558349 GLIB2_CFLAGS = @GLIB2_CFLAGS@
559350 GLIB2_LIBS = @GLIB2_LIBS@
560351 GLIB2_REQUIRED = @GLIB2_REQUIRED@
352 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
561353 GLIB_MKENUMS = @GLIB_MKENUMS@
562354 GMOFILES = @GMOFILES@
563355 GMSGFMT = @GMSGFMT@
564356 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
565357 GREP = @GREP@
566 GTK2_REQUIRED = @GTK2_REQUIRED@
567 GTK3_REQUIRED = @GTK3_REQUIRED@
568 GTK_API_VERSION = @GTK_API_VERSION@
569358 GTK_CFLAGS = @GTK_CFLAGS@
570359 GTK_LIBS = @GTK_LIBS@
571360 GTK_REQUIRED = @GTK_REQUIRED@
572 GTK_VNC1_REQUIRED = @GTK_VNC1_REQUIRED@
573 GTK_VNC2_REQUIRED = @GTK_VNC2_REQUIRED@
574 GTK_VNC_API_VERSION = @GTK_VNC_API_VERSION@
575361 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
576362 GTK_VNC_LIBS = @GTK_VNC_LIBS@
363 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
577364 ICOTOOL = @ICOTOOL@
578365 INSTALL = @INSTALL@
579366 INSTALL_DATA = @INSTALL_DATA@
596383 LIBS = @LIBS@
597384 LIBTOOL = @LIBTOOL@
598385 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
386 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
599387 LIBVIRT_LIBS = @LIBVIRT_LIBS@
600388 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
601389 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
713501 NULL =
714502 LDADD = $(am__append_7)
715503 MAINTAINERCLEANFILES = $(am__append_8)
716 noinst_LTLIBRARIES = libvirt-viewer.la
717 builderxmldir = $(pkgdatadir)/ui
718 builderxml_DATA = \
719 virt-viewer.xml \
720 virt-viewer-about.xml \
721 virt-viewer-auth.xml \
722 virt-viewer-guest-details.xml \
723 virt-viewer-vm-connection.xml \
724 virt-viewer-preferences.xml \
725 remote-viewer-connect.xml \
726 $(NULL)
727
728 EXTRA_DIST = $(builderxml_DATA) virt-viewer-enums.c.etemplate \
729 virt-viewer-enums.h.etemplate gbinding.c gbinding.h $(NULL) \
730 $(VIRT_VIEWER_RES)
504 noinst_LTLIBRARIES = libvirt-viewer-util.la libvirt-viewer.la
505 noinst_DATA = \
506 resources/ui/virt-viewer.ui \
507 resources/ui/virt-viewer-about.ui \
508 resources/ui/virt-viewer-auth.ui \
509 resources/ui/virt-viewer-guest-details.ui \
510 resources/ui/virt-viewer-vm-connection.ui \
511 resources/ui/virt-viewer-preferences.ui \
512 resources/ui/remote-viewer-connect.ui \
513 $(NULL)
514
515 EXTRA_DIST = $(noinst_DATA) virt-viewer-enums.c.etemplate \
516 virt-viewer-enums.h.etemplate \
517 resources/virt-viewer.gresource.xml $(NULL) $(VIRT_VIEWER_RES)
731518 ENUMS_FILES = \
732519 virt-viewer-display.h \
733520 $(NULL)
734521
735522 BUILT_SOURCES = \
523 virt-viewer-resources.h \
524 virt-viewer-resources.c \
736525 virt-viewer-enums.h \
737526 virt-viewer-enums.c \
738527 $(NULL)
739528
740 libvirt_viewer_la_SOURCES = $(BUILT_SOURCES) virt-glib-compat.h \
741 virt-glib-compat.c virt-gtk-compat.h virt-viewer-util.h \
742 virt-viewer-util.c virt-viewer-auth.h virt-viewer-auth.c \
743 virt-viewer-app.h virt-viewer-app.c virt-viewer-file.h \
744 virt-viewer-file.c virt-viewer-session.h virt-viewer-session.c \
745 virt-viewer-display.h virt-viewer-display.c \
746 virt-viewer-notebook.h virt-viewer-notebook.c \
747 virt-viewer-window.h virt-viewer-window.c \
748 virt-viewer-vm-connection.h virt-viewer-vm-connection.c \
749 view/autoDrawer.c view/autoDrawer.h view/drawer.c \
750 view/drawer.h view/ovBox.c view/ovBox.h $(NULL) \
751 $(am__append_1) $(am__append_2) $(am__append_3)
529 CLEANFILES = \
530 $(BUILT_SOURCES) \
531 $(NULL)
532
533 libvirt_viewer_util_la_SOURCES = \
534 virt-viewer-util.h \
535 virt-viewer-util.c \
536 $(NULL)
537
538 libvirt_viewer_la_SOURCES = $(BUILT_SOURCES) virt-viewer-auth.h \
539 virt-viewer-auth.c virt-viewer-app.h virt-viewer-app.c \
540 virt-viewer-file.h virt-viewer-file.c virt-viewer-session.h \
541 virt-viewer-session.c virt-viewer-display.h \
542 virt-viewer-display.c virt-viewer-notebook.h \
543 virt-viewer-notebook.c virt-viewer-window.h \
544 virt-viewer-window.c virt-viewer-vm-connection.h \
545 virt-viewer-vm-connection.c virt-viewer-timed-revealer.c \
546 virt-viewer-timed-revealer.h $(NULL) $(am__append_1) \
547 $(am__append_2) $(am__append_3)
752548 COMMON_LIBS = \
753549 -lm \
754550 $(GLIB2_LIBS) \
771567 $(WARN_CFLAGS) \
772568 $(NULL)
773569
570 libvirt_viewer_util_la_LIBADD = \
571 $(GLIB2_LIBS) \
572 $(GTK_LIBS) \
573 $(LIBXML2_LIBS) \
574 $(NULL)
575
576 libvirt_viewer_util_la_CFLAGS = \
577 -DLOCALE_DIR=\""$(datadir)/locale"\" \
578 $(GLIB2_CFLAGS) \
579 $(GTK_CFLAGS) \
580 $(LIBXML2_CFLAGS) \
581 $(NULL)
582
774583 libvirt_viewer_la_LIBADD = \
775584 $(COMMON_LIBS) \
776585 $(NULL)
777586
778587 libvirt_viewer_la_CFLAGS = \
779 $(COMMON_CFLAGS)
780
781 TESTS = $(check_PROGRAMS)
782 test_version_compare_SOURCES = \
783 virt-viewer-util.c \
784 virt-viewer-util.h \
785 test-version-compare.c \
786 $(NULL)
787
788 test_version_compare_LDFLAGS = \
789 $(GLIB2_LIBS) \
790 $(GTK_LIBS) \
791 $(LIBXML2_LIBS) \
792 $(NULL)
793
794 test_version_compare_CFLAGS = \
795 -DLOCALE_DIR=\""$(datadir)/locale"\" \
796 $(GLIB2_CFLAGS) \
797 $(GTK_CFLAGS) \
798 $(LIBXML2_CFLAGS) \
799 $(WARN_CFLAGS) \
588 $(COMMON_CFLAGS) \
800589 $(NULL)
801590
802591 @HAVE_LIBVIRT_TRUE@virt_viewer_SOURCES = \
803 @HAVE_LIBVIRT_TRUE@ virt-viewer-events.h \
804 @HAVE_LIBVIRT_TRUE@ virt-viewer-events.c \
805592 @HAVE_LIBVIRT_TRUE@ virt-viewer.h \
806593 @HAVE_LIBVIRT_TRUE@ virt-viewer.c \
807594 @HAVE_LIBVIRT_TRUE@ virt-viewer-main.c \
818605 @HAVE_LIBVIRT_TRUE@ $(NULL)
819606
820607 @HAVE_LIBVIRT_TRUE@virt_viewer_LDADD = \
608 @HAVE_LIBVIRT_TRUE@ libvirt-viewer-util.la \
821609 @HAVE_LIBVIRT_TRUE@ libvirt-viewer.la \
822610 @HAVE_LIBVIRT_TRUE@ $(NULL)
823611
837625 $(NULL)
838626
839627 remote_viewer_LDADD = \
628 libvirt-viewer-util.la \
840629 libvirt-viewer.la \
841630 $(NULL)
842631
843 AM_CPPFLAGS = -DPACKAGE_DATADIR=\""$(pkgdatadir)"\"
844632 VIRT_VIEWER_RES = virt-viewer.rc virt-viewer.manifest
845633 ICONDIR = $(top_builddir)/icons
846634 MANIFESTDIR = $(srcdir)
853641 $(MAKE) $(AM_MAKEFLAGS) all-am
854642
855643 .SUFFIXES:
856 .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
644 .SUFFIXES: .c .lo .o .obj
857645 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
858646 @for dep in $?; do \
859647 case '$(am__configure_deps)' in \
896684 echo rm -f $${locs}; \
897685 rm -f $${locs}; \
898686 }
899 view/$(am__dirstamp):
900 @$(MKDIR_P) view
901 @: > view/$(am__dirstamp)
902 view/$(DEPDIR)/$(am__dirstamp):
903 @$(MKDIR_P) view/$(DEPDIR)
904 @: > view/$(DEPDIR)/$(am__dirstamp)
905 view/libvirt_viewer_la-autoDrawer.lo: view/$(am__dirstamp) \
906 view/$(DEPDIR)/$(am__dirstamp)
907 view/libvirt_viewer_la-drawer.lo: view/$(am__dirstamp) \
908 view/$(DEPDIR)/$(am__dirstamp)
909 view/libvirt_viewer_la-ovBox.lo: view/$(am__dirstamp) \
910 view/$(DEPDIR)/$(am__dirstamp)
687
688 libvirt-viewer-util.la: $(libvirt_viewer_util_la_OBJECTS) $(libvirt_viewer_util_la_DEPENDENCIES) $(EXTRA_libvirt_viewer_util_la_DEPENDENCIES)
689 $(AM_V_CCLD)$(libvirt_viewer_util_la_LINK) $(libvirt_viewer_util_la_OBJECTS) $(libvirt_viewer_util_la_LIBADD) $(LIBS)
911690
912691 libvirt-viewer.la: $(libvirt_viewer_la_OBJECTS) $(libvirt_viewer_la_DEPENDENCIES) $(EXTRA_libvirt_viewer_la_DEPENDENCIES)
913692 $(AM_V_CCLD)$(libvirt_viewer_la_LINK) $(libvirt_viewer_la_OBJECTS) $(libvirt_viewer_la_LIBADD) $(LIBS)
961740 echo " rm -f" $$list; \
962741 rm -f $$list
963742
964 clean-checkPROGRAMS:
965 @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
966 echo " rm -f" $$list; \
967 rm -f $$list || exit $$?; \
968 test -n "$(EXEEXT)" || exit 0; \
969 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
970 echo " rm -f" $$list; \
971 rm -f $$list
972
973743 debug-helper$(EXEEXT): $(debug_helper_OBJECTS) $(debug_helper_DEPENDENCIES) $(EXTRA_debug_helper_DEPENDENCIES)
974744 @rm -f debug-helper$(EXEEXT)
975745 $(AM_V_CCLD)$(debug_helper_LINK) $(debug_helper_OBJECTS) $(debug_helper_LDADD) $(LIBS)
978748 @rm -f remote-viewer$(EXEEXT)
979749 $(AM_V_CCLD)$(remote_viewer_LINK) $(remote_viewer_OBJECTS) $(remote_viewer_LDADD) $(LIBS)
980750
981 test-version-compare$(EXEEXT): $(test_version_compare_OBJECTS) $(test_version_compare_DEPENDENCIES) $(EXTRA_test_version_compare_DEPENDENCIES)
982 @rm -f test-version-compare$(EXEEXT)
983 $(AM_V_CCLD)$(test_version_compare_LINK) $(test_version_compare_OBJECTS) $(test_version_compare_LDADD) $(LIBS)
984
985751 virt-viewer$(EXEEXT): $(virt_viewer_OBJECTS) $(virt_viewer_DEPENDENCIES) $(EXTRA_virt_viewer_DEPENDENCIES)
986752 @rm -f virt-viewer$(EXEEXT)
987753 $(AM_V_CCLD)$(virt_viewer_LINK) $(virt_viewer_OBJECTS) $(virt_viewer_LDADD) $(LIBS)
992758
993759 mostlyclean-compile:
994760 -rm -f *.$(OBJEXT)
995 -rm -f view/*.$(OBJEXT)
996 -rm -f view/*.lo
997761
998762 distclean-compile:
999763 -rm -f *.tab.c
1000764
1001765 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug_helper-debug-helper.Po@am__quote@
1002766 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo@am__quote@
1003 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-glib-compat.Plo@am__quote@
1004767 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-app.Plo@am__quote@
1005768 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo@am__quote@
1006769 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-spice.Plo@am__quote@
1007770 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vnc.Plo@am__quote@
1008771 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display.Plo@am__quote@
1009772 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo@am__quote@
773 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo@am__quote@
1010774 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file.Plo@am__quote@
1011775 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-notebook.Plo@am__quote@
776 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo@am__quote@
1012777 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-spice.Plo@am__quote@
1013778 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Plo@am__quote@
1014779 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session.Plo@am__quote@
1015 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-util.Plo@am__quote@
780 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo@am__quote@
1016781 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-vm-connection.Plo@am__quote@
1017782 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-window.Plo@am__quote@
783 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo@am__quote@
1018784 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer-connect.Po@am__quote@
1019785 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer-main.Po@am__quote@
1020786 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer.Po@am__quote@
1021 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_version_compare-test-version-compare.Po@am__quote@
1022 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_version_compare-virt-viewer-util.Po@am__quote@
1023 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer-events.Po@am__quote@
1024787 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer-main.Po@am__quote@
1025788 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer.Po@am__quote@
1026789 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-cmdline-wrapper.Po@am__quote@
1027 @AMDEP_TRUE@@am__include@ @am__quote@view/$(DEPDIR)/libvirt_viewer_la-autoDrawer.Plo@am__quote@
1028 @AMDEP_TRUE@@am__include@ @am__quote@view/$(DEPDIR)/libvirt_viewer_la-drawer.Plo@am__quote@
1029 @AMDEP_TRUE@@am__include@ @am__quote@view/$(DEPDIR)/libvirt_viewer_la-ovBox.Plo@am__quote@
1030790
1031791 .c.o:
1032792 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
1052812 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1053813 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
1054814
815 libvirt_viewer_util_la-virt-viewer-util.lo: virt-viewer-util.c
816 @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_util_la_CFLAGS) $(CFLAGS) -MT libvirt_viewer_util_la-virt-viewer-util.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Tpo -c -o libvirt_viewer_util_la-virt-viewer-util.lo `test -f 'virt-viewer-util.c' || echo '$(srcdir)/'`virt-viewer-util.c
817 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Tpo $(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo
818 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-util.c' object='libvirt_viewer_util_la-virt-viewer-util.lo' libtool=yes @AMDEPBACKSLASH@
819 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
820 @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_util_la_CFLAGS) $(CFLAGS) -c -o libvirt_viewer_util_la-virt-viewer-util.lo `test -f 'virt-viewer-util.c' || echo '$(srcdir)/'`virt-viewer-util.c
821
822 libvirt_viewer_la-virt-viewer-resources.lo: virt-viewer-resources.c
823 @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-resources.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Tpo -c -o libvirt_viewer_la-virt-viewer-resources.lo `test -f 'virt-viewer-resources.c' || echo '$(srcdir)/'`virt-viewer-resources.c
824 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo
825 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-resources.c' object='libvirt_viewer_la-virt-viewer-resources.lo' libtool=yes @AMDEPBACKSLASH@
826 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
827 @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-resources.lo `test -f 'virt-viewer-resources.c' || echo '$(srcdir)/'`virt-viewer-resources.c
828
1055829 libvirt_viewer_la-virt-viewer-enums.lo: virt-viewer-enums.c
1056830 @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-enums.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Tpo -c -o libvirt_viewer_la-virt-viewer-enums.lo `test -f 'virt-viewer-enums.c' || echo '$(srcdir)/'`virt-viewer-enums.c
1057831 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo
1059833 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1060834 @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-enums.lo `test -f 'virt-viewer-enums.c' || echo '$(srcdir)/'`virt-viewer-enums.c
1061835
1062 libvirt_viewer_la-virt-glib-compat.lo: virt-glib-compat.c
1063 @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-glib-compat.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-glib-compat.Tpo -c -o libvirt_viewer_la-virt-glib-compat.lo `test -f 'virt-glib-compat.c' || echo '$(srcdir)/'`virt-glib-compat.c
1064 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-glib-compat.Tpo $(DEPDIR)/libvirt_viewer_la-virt-glib-compat.Plo
1065 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-glib-compat.c' object='libvirt_viewer_la-virt-glib-compat.lo' libtool=yes @AMDEPBACKSLASH@
1066 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1067 @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-glib-compat.lo `test -f 'virt-glib-compat.c' || echo '$(srcdir)/'`virt-glib-compat.c
1068
1069 libvirt_viewer_la-virt-viewer-util.lo: virt-viewer-util.c
1070 @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-util.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-util.Tpo -c -o libvirt_viewer_la-virt-viewer-util.lo `test -f 'virt-viewer-util.c' || echo '$(srcdir)/'`virt-viewer-util.c
1071 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-util.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-util.Plo
1072 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-util.c' object='libvirt_viewer_la-virt-viewer-util.lo' libtool=yes @AMDEPBACKSLASH@
1073 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1074 @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-util.lo `test -f 'virt-viewer-util.c' || echo '$(srcdir)/'`virt-viewer-util.c
1075
1076836 libvirt_viewer_la-virt-viewer-auth.lo: virt-viewer-auth.c
1077837 @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-auth.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Tpo -c -o libvirt_viewer_la-virt-viewer-auth.lo `test -f 'virt-viewer-auth.c' || echo '$(srcdir)/'`virt-viewer-auth.c
1078838 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo
1129889 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1130890 @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
1131891
1132 view/libvirt_viewer_la-autoDrawer.lo: view/autoDrawer.c
1133 @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 view/libvirt_viewer_la-autoDrawer.lo -MD -MP -MF view/$(DEPDIR)/libvirt_viewer_la-autoDrawer.Tpo -c -o view/libvirt_viewer_la-autoDrawer.lo `test -f 'view/autoDrawer.c' || echo '$(srcdir)/'`view/autoDrawer.c
1134 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) view/$(DEPDIR)/libvirt_viewer_la-autoDrawer.Tpo view/$(DEPDIR)/libvirt_viewer_la-autoDrawer.Plo
1135 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='view/autoDrawer.c' object='view/libvirt_viewer_la-autoDrawer.lo' libtool=yes @AMDEPBACKSLASH@
1136 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1137 @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 view/libvirt_viewer_la-autoDrawer.lo `test -f 'view/autoDrawer.c' || echo '$(srcdir)/'`view/autoDrawer.c
1138
1139 view/libvirt_viewer_la-drawer.lo: view/drawer.c
1140 @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 view/libvirt_viewer_la-drawer.lo -MD -MP -MF view/$(DEPDIR)/libvirt_viewer_la-drawer.Tpo -c -o view/libvirt_viewer_la-drawer.lo `test -f 'view/drawer.c' || echo '$(srcdir)/'`view/drawer.c
1141 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) view/$(DEPDIR)/libvirt_viewer_la-drawer.Tpo view/$(DEPDIR)/libvirt_viewer_la-drawer.Plo
1142 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='view/drawer.c' object='view/libvirt_viewer_la-drawer.lo' libtool=yes @AMDEPBACKSLASH@
1143 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1144 @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 view/libvirt_viewer_la-drawer.lo `test -f 'view/drawer.c' || echo '$(srcdir)/'`view/drawer.c
1145
1146 view/libvirt_viewer_la-ovBox.lo: view/ovBox.c
1147 @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 view/libvirt_viewer_la-ovBox.lo -MD -MP -MF view/$(DEPDIR)/libvirt_viewer_la-ovBox.Tpo -c -o view/libvirt_viewer_la-ovBox.lo `test -f 'view/ovBox.c' || echo '$(srcdir)/'`view/ovBox.c
1148 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) view/$(DEPDIR)/libvirt_viewer_la-ovBox.Tpo view/$(DEPDIR)/libvirt_viewer_la-ovBox.Plo
1149 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='view/ovBox.c' object='view/libvirt_viewer_la-ovBox.lo' libtool=yes @AMDEPBACKSLASH@
1150 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1151 @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 view/libvirt_viewer_la-ovBox.lo `test -f 'view/ovBox.c' || echo '$(srcdir)/'`view/ovBox.c
892 libvirt_viewer_la-virt-viewer-timed-revealer.lo: virt-viewer-timed-revealer.c
893 @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
894 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo
895 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-timed-revealer.c' object='libvirt_viewer_la-virt-viewer-timed-revealer.lo' libtool=yes @AMDEPBACKSLASH@
896 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
897 @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-timed-revealer.lo `test -f 'virt-viewer-timed-revealer.c' || echo '$(srcdir)/'`virt-viewer-timed-revealer.c
1152898
1153899 libvirt_viewer_la-virt-viewer-session-vnc.lo: virt-viewer-session-vnc.c
1154900 @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-session-vnc.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Tpo -c -o libvirt_viewer_la-virt-viewer-session-vnc.lo `test -f 'virt-viewer-session-vnc.c' || echo '$(srcdir)/'`virt-viewer-session-vnc.c
1178924 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1179925 @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-spice.lo `test -f 'virt-viewer-display-spice.c' || echo '$(srcdir)/'`virt-viewer-display-spice.c
1180926
927 libvirt_viewer_la-virt-viewer-file-transfer-dialog.lo: virt-viewer-file-transfer-dialog.c
928 @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-file-transfer-dialog.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Tpo -c -o libvirt_viewer_la-virt-viewer-file-transfer-dialog.lo `test -f 'virt-viewer-file-transfer-dialog.c' || echo '$(srcdir)/'`virt-viewer-file-transfer-dialog.c
929 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo
930 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-file-transfer-dialog.c' object='libvirt_viewer_la-virt-viewer-file-transfer-dialog.lo' libtool=yes @AMDEPBACKSLASH@
931 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
932 @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-file-transfer-dialog.lo `test -f 'virt-viewer-file-transfer-dialog.c' || echo '$(srcdir)/'`virt-viewer-file-transfer-dialog.c
933
1181934 libvirt_viewer_la-ovirt-foreign-menu.lo: ovirt-foreign-menu.c
1182935 @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-ovirt-foreign-menu.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Tpo -c -o libvirt_viewer_la-ovirt-foreign-menu.lo `test -f 'ovirt-foreign-menu.c' || echo '$(srcdir)/'`ovirt-foreign-menu.c
1183936 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Tpo $(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo
1241994 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1242995 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(remote_viewer_CFLAGS) $(CFLAGS) -c -o remote_viewer-remote-viewer-main.obj `if test -f 'remote-viewer-main.c'; then $(CYGPATH_W) 'remote-viewer-main.c'; else $(CYGPATH_W) '$(srcdir)/remote-viewer-main.c'; fi`
1243996
1244 test_version_compare-virt-viewer-util.o: virt-viewer-util.c
1245 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -MT test_version_compare-virt-viewer-util.o -MD -MP -MF $(DEPDIR)/test_version_compare-virt-viewer-util.Tpo -c -o test_version_compare-virt-viewer-util.o `test -f 'virt-viewer-util.c' || echo '$(srcdir)/'`virt-viewer-util.c
1246 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_version_compare-virt-viewer-util.Tpo $(DEPDIR)/test_version_compare-virt-viewer-util.Po
1247 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-util.c' object='test_version_compare-virt-viewer-util.o' libtool=no @AMDEPBACKSLASH@
1248 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1249 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -c -o test_version_compare-virt-viewer-util.o `test -f 'virt-viewer-util.c' || echo '$(srcdir)/'`virt-viewer-util.c
1250
1251 test_version_compare-virt-viewer-util.obj: virt-viewer-util.c
1252 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -MT test_version_compare-virt-viewer-util.obj -MD -MP -MF $(DEPDIR)/test_version_compare-virt-viewer-util.Tpo -c -o test_version_compare-virt-viewer-util.obj `if test -f 'virt-viewer-util.c'; then $(CYGPATH_W) 'virt-viewer-util.c'; else $(CYGPATH_W) '$(srcdir)/virt-viewer-util.c'; fi`
1253 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_version_compare-virt-viewer-util.Tpo $(DEPDIR)/test_version_compare-virt-viewer-util.Po
1254 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-util.c' object='test_version_compare-virt-viewer-util.obj' libtool=no @AMDEPBACKSLASH@
1255 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1256 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -c -o test_version_compare-virt-viewer-util.obj `if test -f 'virt-viewer-util.c'; then $(CYGPATH_W) 'virt-viewer-util.c'; else $(CYGPATH_W) '$(srcdir)/virt-viewer-util.c'; fi`
1257
1258 test_version_compare-test-version-compare.o: test-version-compare.c
1259 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -MT test_version_compare-test-version-compare.o -MD -MP -MF $(DEPDIR)/test_version_compare-test-version-compare.Tpo -c -o test_version_compare-test-version-compare.o `test -f 'test-version-compare.c' || echo '$(srcdir)/'`test-version-compare.c
1260 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_version_compare-test-version-compare.Tpo $(DEPDIR)/test_version_compare-test-version-compare.Po
1261 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-version-compare.c' object='test_version_compare-test-version-compare.o' libtool=no @AMDEPBACKSLASH@
1262 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1263 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -c -o test_version_compare-test-version-compare.o `test -f 'test-version-compare.c' || echo '$(srcdir)/'`test-version-compare.c
1264
1265 test_version_compare-test-version-compare.obj: test-version-compare.c
1266 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -MT test_version_compare-test-version-compare.obj -MD -MP -MF $(DEPDIR)/test_version_compare-test-version-compare.Tpo -c -o test_version_compare-test-version-compare.obj `if test -f 'test-version-compare.c'; then $(CYGPATH_W) 'test-version-compare.c'; else $(CYGPATH_W) '$(srcdir)/test-version-compare.c'; fi`
1267 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_version_compare-test-version-compare.Tpo $(DEPDIR)/test_version_compare-test-version-compare.Po
1268 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-version-compare.c' object='test_version_compare-test-version-compare.obj' libtool=no @AMDEPBACKSLASH@
1269 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1270 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_version_compare_CFLAGS) $(CFLAGS) -c -o test_version_compare-test-version-compare.obj `if test -f 'test-version-compare.c'; then $(CYGPATH_W) 'test-version-compare.c'; else $(CYGPATH_W) '$(srcdir)/test-version-compare.c'; fi`
1271
1272 virt_viewer-virt-viewer-events.o: virt-viewer-events.c
1273 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(virt_viewer_CFLAGS) $(CFLAGS) -MT virt_viewer-virt-viewer-events.o -MD -MP -MF $(DEPDIR)/virt_viewer-virt-viewer-events.Tpo -c -o virt_viewer-virt-viewer-events.o `test -f 'virt-viewer-events.c' || echo '$(srcdir)/'`virt-viewer-events.c
1274 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/virt_viewer-virt-viewer-events.Tpo $(DEPDIR)/virt_viewer-virt-viewer-events.Po
1275 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-events.c' object='virt_viewer-virt-viewer-events.o' libtool=no @AMDEPBACKSLASH@
1276 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1277 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(virt_viewer_CFLAGS) $(CFLAGS) -c -o virt_viewer-virt-viewer-events.o `test -f 'virt-viewer-events.c' || echo '$(srcdir)/'`virt-viewer-events.c
1278
1279 virt_viewer-virt-viewer-events.obj: virt-viewer-events.c
1280 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(virt_viewer_CFLAGS) $(CFLAGS) -MT virt_viewer-virt-viewer-events.obj -MD -MP -MF $(DEPDIR)/virt_viewer-virt-viewer-events.Tpo -c -o virt_viewer-virt-viewer-events.obj `if test -f 'virt-viewer-events.c'; then $(CYGPATH_W) 'virt-viewer-events.c'; else $(CYGPATH_W) '$(srcdir)/virt-viewer-events.c'; fi`
1281 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/virt_viewer-virt-viewer-events.Tpo $(DEPDIR)/virt_viewer-virt-viewer-events.Po
1282 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-events.c' object='virt_viewer-virt-viewer-events.obj' libtool=no @AMDEPBACKSLASH@
1283 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1284 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(virt_viewer_CFLAGS) $(CFLAGS) -c -o virt_viewer-virt-viewer-events.obj `if test -f 'virt-viewer-events.c'; then $(CYGPATH_W) 'virt-viewer-events.c'; else $(CYGPATH_W) '$(srcdir)/virt-viewer-events.c'; fi`
1285
1286997 virt_viewer-virt-viewer.o: virt-viewer.c
1287998 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(virt_viewer_CFLAGS) $(CFLAGS) -MT virt_viewer-virt-viewer.o -MD -MP -MF $(DEPDIR)/virt_viewer-virt-viewer.Tpo -c -o virt_viewer-virt-viewer.o `test -f 'virt-viewer.c' || echo '$(srcdir)/'`virt-viewer.c
1288999 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/virt_viewer-virt-viewer.Tpo $(DEPDIR)/virt_viewer-virt-viewer.Po
13161027
13171028 clean-libtool:
13181029 -rm -rf .libs _libs
1319 -rm -rf view/.libs view/_libs
1320 install-builderxmlDATA: $(builderxml_DATA)
1321 @$(NORMAL_INSTALL)
1322 @list='$(builderxml_DATA)'; test -n "$(builderxmldir)" || list=; \
1323 if test -n "$$list"; then \
1324 echo " $(MKDIR_P) '$(DESTDIR)$(builderxmldir)'"; \
1325 $(MKDIR_P) "$(DESTDIR)$(builderxmldir)" || exit 1; \
1326 fi; \
1327 for p in $$list; do \
1328 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1329 echo "$$d$$p"; \
1330 done | $(am__base_list) | \
1331 while read files; do \
1332 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(builderxmldir)'"; \
1333 $(INSTALL_DATA) $$files "$(DESTDIR)$(builderxmldir)" || exit $$?; \
1334 done
1335
1336 uninstall-builderxmlDATA:
1337 @$(NORMAL_UNINSTALL)
1338 @list='$(builderxml_DATA)'; test -n "$(builderxmldir)" || list=; \
1339 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1340 dir='$(DESTDIR)$(builderxmldir)'; $(am__uninstall_files_from_dir)
13411030
13421031 ID: $(am__tagged_files)
13431032 $(am__define_uniq_tagged_files); mkid -fID $$unique
13901079
13911080 distclean-tags:
13921081 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1393
1394 # Recover from deleted '.trs' file; this should ensure that
1395 # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
1396 # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
1397 # to avoid problems with "make -n".
1398 .log.trs:
1399 rm -f $< $@
1400 $(MAKE) $(AM_MAKEFLAGS) $<
1401
1402 # Leading 'am--fnord' is there to ensure the list of targets does not
1403 # expand to empty, as could happen e.g. with make check TESTS=''.
1404 am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
1405 am--force-recheck:
1406 @:
1407
1408 $(TEST_SUITE_LOG): $(TEST_LOGS)
1409 @$(am__set_TESTS_bases); \
1410 am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
1411 redo_bases=`for i in $$bases; do \
1412 am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
1413 done`; \
1414 if test -n "$$redo_bases"; then \
1415 redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
1416 redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
1417 if $(am__make_dryrun); then :; else \
1418 rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
1419 fi; \
1420 fi; \
1421 if test -n "$$am__remaking_logs"; then \
1422 echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
1423 "recursion detected" >&2; \
1424 elif test -n "$$redo_logs"; then \
1425 am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
1426 fi; \
1427 if $(am__make_dryrun); then :; else \
1428 st=0; \
1429 errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
1430 for i in $$redo_bases; do \
1431 test -f $$i.trs && test -r $$i.trs \
1432 || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
1433 test -f $$i.log && test -r $$i.log \
1434 || { echo "$$errmsg $$i.log" >&2; st=1; }; \
1435 done; \
1436 test $$st -eq 0 || exit 1; \
1437 fi
1438 @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
1439 ws='[ ]'; \
1440 results=`for b in $$bases; do echo $$b.trs; done`; \
1441 test -n "$$results" || results=/dev/null; \
1442 all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
1443 pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
1444 fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
1445 skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
1446 xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
1447 xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
1448 error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
1449 if test `expr $$fail + $$xpass + $$error` -eq 0; then \
1450 success=true; \
1451 else \
1452 success=false; \
1453 fi; \
1454 br='==================='; br=$$br$$br$$br$$br; \
1455 result_count () \
1456 { \
1457 if test x"$$1" = x"--maybe-color"; then \
1458 maybe_colorize=yes; \
1459 elif test x"$$1" = x"--no-color"; then \
1460 maybe_colorize=no; \
1461 else \
1462 echo "$@: invalid 'result_count' usage" >&2; exit 4; \
1463 fi; \
1464 shift; \
1465 desc=$$1 count=$$2; \
1466 if test $$maybe_colorize = yes && test $$count -gt 0; then \
1467 color_start=$$3 color_end=$$std; \
1468 else \
1469 color_start= color_end=; \
1470 fi; \
1471 echo "$${color_start}# $$desc $$count$${color_end}"; \
1472 }; \
1473 create_testsuite_report () \
1474 { \
1475 result_count $$1 "TOTAL:" $$all "$$brg"; \
1476 result_count $$1 "PASS: " $$pass "$$grn"; \
1477 result_count $$1 "SKIP: " $$skip "$$blu"; \
1478 result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
1479 result_count $$1 "FAIL: " $$fail "$$red"; \
1480 result_count $$1 "XPASS:" $$xpass "$$red"; \
1481 result_count $$1 "ERROR:" $$error "$$mgn"; \
1482 }; \
1483 { \
1484 echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
1485 $(am__rst_title); \
1486 create_testsuite_report --no-color; \
1487 echo; \
1488 echo ".. contents:: :depth: 2"; \
1489 echo; \
1490 for b in $$bases; do echo $$b; done \
1491 | $(am__create_global_log); \
1492 } >$(TEST_SUITE_LOG).tmp || exit 1; \
1493 mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
1494 if $$success; then \
1495 col="$$grn"; \
1496 else \
1497 col="$$red"; \
1498 test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
1499 fi; \
1500 echo "$${col}$$br$${std}"; \
1501 echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
1502 echo "$${col}$$br$${std}"; \
1503 create_testsuite_report --maybe-color; \
1504 echo "$$col$$br$$std"; \
1505 if $$success; then :; else \
1506 echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
1507 if test -n "$(PACKAGE_BUGREPORT)"; then \
1508 echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
1509 fi; \
1510 echo "$$col$$br$$std"; \
1511 fi; \
1512 $$success || exit 1
1513
1514 check-TESTS:
1515 @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
1516 @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
1517 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1518 @set +e; $(am__set_TESTS_bases); \
1519 log_list=`for i in $$bases; do echo $$i.log; done`; \
1520 trs_list=`for i in $$bases; do echo $$i.trs; done`; \
1521 log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
1522 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
1523 exit $$?;
1524 recheck: all $(check_PROGRAMS)
1525 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1526 @set +e; $(am__set_TESTS_bases); \
1527 bases=`for i in $$bases; do echo $$i; done \
1528 | $(am__list_recheck_tests)` || exit 1; \
1529 log_list=`for i in $$bases; do echo $$i.log; done`; \
1530 log_list=`echo $$log_list`; \
1531 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
1532 am__force_recheck=am--force-recheck \
1533 TEST_LOGS="$$log_list"; \
1534 exit $$?
1535 test-version-compare.log: test-version-compare$(EXEEXT)
1536 @p='test-version-compare$(EXEEXT)'; \
1537 b='test-version-compare'; \
1538 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1539 --log-file $$b.log --trs-file $$b.trs \
1540 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1541 "$$tst" $(AM_TESTS_FD_REDIRECT)
1542 .test.log:
1543 @p='$<'; \
1544 $(am__set_b); \
1545 $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1546 --log-file $$b.log --trs-file $$b.trs \
1547 $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1548 "$$tst" $(AM_TESTS_FD_REDIRECT)
1549 @am__EXEEXT_TRUE@.test$(EXEEXT).log:
1550 @am__EXEEXT_TRUE@ @p='$<'; \
1551 @am__EXEEXT_TRUE@ $(am__set_b); \
1552 @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1553 @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
1554 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1555 @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
15561082
15571083 distdir: $(DISTFILES)
15581084 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
15851111 fi; \
15861112 done
15871113 check-am: all-am
1588 $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
1589 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
15901114 check: $(BUILT_SOURCES)
15911115 $(MAKE) $(AM_MAKEFLAGS) check-am
15921116 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA)
15931117 installdirs:
1594 for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(builderxmldir)"; do \
1118 for dir in "$(DESTDIR)$(bindir)"; do \
15951119 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
15961120 done
15971121 install: $(BUILT_SOURCES)
16151139 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
16161140 fi
16171141 mostlyclean-generic:
1618 -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
1619 -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
1620 -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
16211142
16221143 clean-generic:
1144 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
16231145
16241146 distclean-generic:
16251147 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
16261148 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1627 -rm -f view/$(DEPDIR)/$(am__dirstamp)
1628 -rm -f view/$(am__dirstamp)
16291149
16301150 maintainer-clean-generic:
16311151 @echo "This command is intended for maintainers to use"
16341154 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
16351155 clean: clean-am
16361156
1637 clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
1638 clean-libtool clean-noinstLTLIBRARIES mostlyclean-am
1157 clean-am: clean-binPROGRAMS clean-generic clean-libtool \
1158 clean-noinstLTLIBRARIES mostlyclean-am
16391159
16401160 distclean: distclean-am
1641 -rm -rf ./$(DEPDIR) view/$(DEPDIR)
1161 -rm -rf ./$(DEPDIR)
16421162 -rm -f Makefile
16431163 distclean-am: clean-am distclean-compile distclean-generic \
16441164 distclean-tags
16551175
16561176 info-am:
16571177
1658 install-data-am: install-builderxmlDATA
1178 install-data-am:
16591179
16601180 install-dvi: install-dvi-am
16611181
16841204 installcheck-am:
16851205
16861206 maintainer-clean: maintainer-clean-am
1687 -rm -rf ./$(DEPDIR) view/$(DEPDIR)
1207 -rm -rf ./$(DEPDIR)
16881208 -rm -f Makefile
16891209 maintainer-clean-am: distclean-am maintainer-clean-generic
16901210
17011221
17021222 ps-am:
17031223
1704 uninstall-am: uninstall-binPROGRAMS uninstall-builderxmlDATA
1705
1706 .MAKE: all check check-am install install-am install-strip
1707
1708 .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
1709 clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
1710 clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
1711 ctags-am distclean distclean-compile distclean-generic \
1712 distclean-libtool distclean-tags distdir dvi dvi-am html \
1713 html-am info info-am install install-am install-binPROGRAMS \
1714 install-builderxmlDATA install-data install-data-am \
1715 install-dvi install-dvi-am install-exec install-exec-am \
1716 install-html install-html-am install-info install-info-am \
1717 install-man install-pdf install-pdf-am install-ps \
1718 install-ps-am install-strip installcheck installcheck-am \
1719 installdirs maintainer-clean maintainer-clean-generic \
1720 mostlyclean mostlyclean-compile mostlyclean-generic \
1721 mostlyclean-libtool pdf pdf-am ps ps-am recheck tags tags-am \
1722 uninstall uninstall-am uninstall-binPROGRAMS \
1723 uninstall-builderxmlDATA
1224 uninstall-am: uninstall-binPROGRAMS
1225
1226 .MAKE: all check install install-am install-strip
1227
1228 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
1229 clean-binPROGRAMS clean-generic clean-libtool \
1230 clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \
1231 distclean-compile distclean-generic distclean-libtool \
1232 distclean-tags distdir dvi dvi-am html html-am info info-am \
1233 install install-am install-binPROGRAMS install-data \
1234 install-data-am install-dvi install-dvi-am install-exec \
1235 install-exec-am install-html install-html-am install-info \
1236 install-info-am install-man install-pdf install-pdf-am \
1237 install-ps install-ps-am install-strip installcheck \
1238 installcheck-am installdirs maintainer-clean \
1239 maintainer-clean-generic mostlyclean mostlyclean-compile \
1240 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1241 tags tags-am uninstall uninstall-am uninstall-binPROGRAMS
17241242
17251243 .PRECIOUS: Makefile
17261244
17271245
1728 $(BUILT_SOURCES): %: %.etemplate $(ENUMS_FILES)
1246 virt-viewer-resources.c virt-viewer-resources.h: resources/virt-viewer.gresource.xml Makefile $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir=$(srcdir)/resources $(srcdir)/resources/virt-viewer.gresource.xml)
1247 $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/resources --generate --c-name virt_viewer $<
1248
1249 virt-viewer-enums.c virt-viewer-enums.h: %: %.etemplate $(ENUMS_FILES)
17291250 $(AM_V_GEN)$(GLIB_MKENUMS) --template $^ | \
17301251 sed -e 's/VIRT_TYPE_VIEWER/VIRT_VIEWER_TYPE/' \
17311252 -e 's,#include "$(srcdir)/,#include ",' > $@
1732 $(NULL)
17331253
17341254 @OS_WIN32_TRUE@virt-viewer_rc.$(OBJEXT): $(VIRT_VIEWER_RES) $(ICONDIR)/virt-viewer.ico
17351255 @OS_WIN32_TRUE@ $(AM_V_GEN)$(WINDRES) \
+0
-1221
src/gbinding.c less more
0 /* gbinding.c: Binding for object properties
1 *
2 * Copyright (C) 2010 Intel Corp.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
18 *
19 * Author: Emmanuele Bassi <ebassi@linux.intel.com>
20 */
21
22 /**
23 * SECTION:gbinding
24 * @Title: GBinding
25 * @Short_Description: Bind two object properties
26 *
27 * #GBinding is the representation of a binding between a property on a
28 * #GObject instance (or source) and another property on another #GObject
29 * instance (or target). Whenever the source property changes, the same
30 * value is applied to the target property; for instance, the following
31 * binding:
32 *
33 * |[
34 * g_object_bind_property (object1, "property-a",
35 * object2, "property-b",
36 * G_BINDING_DEFAULT);
37 * ]|
38 *
39 * will cause <emphasis>object2:property-b</emphasis> to be updated every
40 * time g_object_set() or the specific accessor changes the value of
41 * <emphasis>object1:property-a</emphasis>.
42 *
43 * It is possible to create a bidirectional binding between two properties
44 * of two #GObject instances, so that if either property changes, the
45 * other is updated as well, for instance:
46 *
47 * |[
48 * g_object_bind_property (object1, "property-a",
49 * object2, "property-b",
50 * G_BINDING_BIDIRECTIONAL);
51 * ]|
52 *
53 * will keep the two properties in sync.
54 *
55 * It is also possible to set a custom transformation function (in both
56 * directions, in case of a bidirectional binding) to apply a custom
57 * transformation from the source value to the target value before
58 * applying it; for instance, the following binding:
59 *
60 * |[
61 * g_object_bind_property_full (adjustment1, "value",
62 * adjustment2, "value",
63 * G_BINDING_BIDIRECTIONAL,
64 * celsius_to_fahrenheit,
65 * fahrenheit_to_celsius,
66 * NULL, NULL);
67 * ]|
68 *
69 * will keep the <emphasis>value</emphasis> property of the two adjustments
70 * in sync; the <function>celsius_to_fahrenheit</function> function will be
71 * called whenever the <emphasis>adjustment1:value</emphasis> property changes
72 * and will transform the current value of the property before applying it
73 * to the <emphasis>adjustment2:value</emphasis> property; vice versa, the
74 * <function>fahrenheit_to_celsius</function> function will be called whenever
75 * the <emphasis>adjustment2:value</emphasis> property changes, and will
76 * transform the current value of the property before applying it to the
77 * <emphasis>adjustment1:value</emphasis>.
78 *
79 * Note that #GBinding does not resolve cycles by itself; a cycle like
80 *
81 * |[
82 * object1:propertyA -> object2:propertyB
83 * object2:propertyB -> object3:propertyC
84 * object3:propertyC -> object1:propertyA
85 * ]|
86 *
87 * might lead to an infinite loop. The loop, in this particular case,
88 * can be avoided if the objects emit the #GObject::notify signal only
89 * if the value has effectively been changed. A binding is implemented
90 * using the #GObject::notify signal, so it is susceptible to all the
91 * various ways of blocking a signal emission, like g_signal_stop_emission()
92 * or g_signal_handler_block().
93 *
94 * A binding will be severed, and the resources it allocates freed, whenever
95 * either one of the #GObject instances it refers to are finalized, or when
96 * the #GBinding instance loses its last reference.
97 *
98 * #GBinding is available since GObject 2.26
99 */
100
101 #include <string.h>
102
103 #ifndef G_VALUE_INIT
104 #define G_VALUE_INIT { 0, { { 0 } } }
105 #endif
106
107 #define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer
108
109 static void
110 g_cclosure_user_marshal_BOOLEAN__BOXED_BOXED (GClosure *closure,
111 GValue *return_value G_GNUC_UNUSED,
112 guint n_param_values,
113 const GValue *param_values,
114 gpointer invocation_hint G_GNUC_UNUSED,
115 gpointer marshal_data)
116 {
117 typedef gboolean (*GMarshalFunc_BOOLEAN__BOXED_BOXED) (gpointer data1,
118 gpointer arg_1,
119 gpointer arg_2,
120 gpointer data2);
121 register GMarshalFunc_BOOLEAN__BOXED_BOXED callback;
122 register GCClosure *cc = (GCClosure*) closure;
123 register gpointer data1, data2;
124 gboolean v_return;
125
126 g_return_if_fail (return_value != NULL);
127 g_return_if_fail (n_param_values == 3);
128
129 if (G_CCLOSURE_SWAP_DATA (closure))
130 {
131 data1 = closure->data;
132 data2 = g_value_peek_pointer (param_values + 0);
133 }
134 else
135 {
136 data1 = g_value_peek_pointer (param_values + 0);
137 data2 = closure->data;
138 }
139 callback = (GMarshalFunc_BOOLEAN__BOXED_BOXED) (marshal_data ? marshal_data : cc->callback);
140
141 v_return = callback (data1,
142 g_marshal_value_peek_boxed (param_values + 1),
143 g_marshal_value_peek_boxed (param_values + 2),
144 data2);
145
146 g_value_set_boolean (return_value, v_return);
147 }
148
149 GType
150 g_binding_flags_get_type (void)
151 {
152 static volatile gsize g_define_type_id__volatile = 0;
153
154 if (g_once_init_enter (&g_define_type_id__volatile))
155 {
156 static const GFlagsValue values[] = {
157 { G_BINDING_DEFAULT, "G_BINDING_DEFAULT", "default" },
158 { G_BINDING_BIDIRECTIONAL, "G_BINDING_BIDIRECTIONAL", "bidirectional" },
159 { G_BINDING_SYNC_CREATE, "G_BINDING_SYNC_CREATE", "sync-create" },
160 { G_BINDING_INVERT_BOOLEAN, "G_BINDING_INVERT_BOOLEAN", "invert-boolean" },
161 { 0, NULL, NULL }
162 };
163 GType g_define_type_id =
164 g_flags_register_static (g_intern_static_string ("GBindingFlags"), values);
165 g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
166 }
167
168 return g_define_type_id__volatile;
169 }
170
171 #define G_BINDING_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_BINDING, GBindingClass))
172 #define G_IS_BINDING_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_BINDING))
173 #define G_BINDING_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_BINDING, GBindingClass))
174
175 typedef struct _GBindingClass GBindingClass;
176
177 struct _GBinding
178 {
179 GObject parent_instance;
180
181 /* no reference is held on the objects, to avoid cycles */
182 GObject *source;
183 GObject *target;
184
185 /* the property names are interned, so they should not be freed */
186 const gchar *source_property;
187 const gchar *target_property;
188
189 GParamSpec *source_pspec;
190 GParamSpec *target_pspec;
191
192 GBindingTransformFunc transform_s2t;
193 GBindingTransformFunc transform_t2s;
194
195 GBindingFlags flags;
196
197 guint source_notify;
198 guint target_notify;
199
200 gpointer transform_data;
201 GDestroyNotify notify;
202
203 /* a guard, to avoid loops */
204 guint is_frozen : 1;
205 };
206
207 struct _GBindingClass
208 {
209 GObjectClass parent_class;
210 };
211
212 enum
213 {
214 PROP_00,
215
216 PROP_SOURCE,
217 PROP_TARGET,
218 PROP_SOURCE_PROPERTY,
219 PROP_TARGET_PROPERTY,
220 PROP_FLAGS
221 };
222
223 static GQuark quark_gbinding = 0;
224
225 G_DEFINE_TYPE (GBinding, g_binding, G_TYPE_OBJECT);
226
227 static inline void
228 add_binding_qdata (GObject *gobject,
229 GBinding *binding)
230 {
231 GHashTable *bindings;
232
233 bindings = g_object_get_qdata (gobject, quark_gbinding);
234 if (bindings == NULL)
235 {
236 bindings = g_hash_table_new (NULL, NULL);
237
238 g_object_set_qdata_full (gobject, quark_gbinding,
239 bindings,
240 (GDestroyNotify) g_hash_table_destroy);
241 }
242
243 g_hash_table_insert (bindings, binding, GUINT_TO_POINTER (1));
244 }
245
246 static inline void
247 remove_binding_qdata (GObject *gobject,
248 GBinding *binding)
249 {
250 GHashTable *bindings;
251
252 bindings = g_object_get_qdata (gobject, quark_gbinding);
253 g_hash_table_remove (bindings, binding);
254 }
255
256 /* the basic assumption is that if either the source or the target
257 * goes away then the binding does not exist any more and it should
258 * be reaped as well
259 */
260 static void
261 weak_unbind (gpointer user_data,
262 GObject *where_the_object_was)
263 {
264 GBinding *binding = user_data;
265
266 /* if what went away was the source, unset it so that GBinding::finalize
267 * does not try to access it; otherwise, disconnect everything and remove
268 * the GBinding instance from the object's qdata
269 */
270 if (binding->source == where_the_object_was)
271 binding->source = NULL;
272 else
273 {
274 if (binding->source_notify != 0)
275 g_signal_handler_disconnect (binding->source, binding->source_notify);
276
277 g_object_weak_unref (binding->source, weak_unbind, user_data);
278 remove_binding_qdata (binding->source, binding);
279 binding->source = NULL;
280 }
281
282 /* as above, but with the target */
283 if (binding->target == where_the_object_was)
284 binding->target = NULL;
285 else
286 {
287 if (binding->target_notify != 0)
288 g_signal_handler_disconnect (binding->target, binding->target_notify);
289
290 g_object_weak_unref (binding->target, weak_unbind, user_data);
291 remove_binding_qdata (binding->target, binding);
292 binding->target = NULL;
293 }
294
295 /* this will take care of the binding itself */
296 g_object_unref (binding);
297 }
298
299 static inline gboolean
300 default_transform (const GValue *value_a,
301 GValue *value_b)
302 {
303 /* if it's not the same type, try to convert it using the GValue
304 * transformation API; otherwise just copy it
305 */
306 if (!g_type_is_a (G_VALUE_TYPE (value_a), G_VALUE_TYPE (value_b)))
307 {
308 /* are these two types compatible (can be directly copied)? */
309 if (g_value_type_compatible (G_VALUE_TYPE (value_a),
310 G_VALUE_TYPE (value_b)))
311 {
312 g_value_copy (value_a, value_b);
313 goto done;
314 }
315
316 if (g_value_type_transformable (G_VALUE_TYPE (value_a),
317 G_VALUE_TYPE (value_b)))
318 {
319 if (g_value_transform (value_a, value_b))
320 goto done;
321
322 g_warning ("%s: Unable to convert a value of type %s to a "
323 "value of type %s",
324 G_STRLOC,
325 g_type_name (G_VALUE_TYPE (value_a)),
326 g_type_name (G_VALUE_TYPE (value_b)));
327
328 return FALSE;
329 }
330 }
331 else
332 g_value_copy (value_a, value_b);
333
334 done:
335 return TRUE;
336 }
337
338 static inline gboolean
339 default_invert_boolean_transform (const GValue *value_a,
340 GValue *value_b)
341 {
342 gboolean value;
343
344 g_assert (G_VALUE_HOLDS_BOOLEAN (value_a));
345 g_assert (G_VALUE_HOLDS_BOOLEAN (value_b));
346
347 value = g_value_get_boolean (value_a);
348 value = !value;
349
350 g_value_set_boolean (value_b, value);
351
352 return TRUE;
353 }
354
355 static gboolean
356 default_transform_to (GBinding *binding,
357 const GValue *value_a,
358 GValue *value_b,
359 gpointer user_data G_GNUC_UNUSED)
360 {
361 if (binding->flags & G_BINDING_INVERT_BOOLEAN)
362 return default_invert_boolean_transform (value_a, value_b);
363
364 return default_transform (value_a, value_b);
365 }
366
367 static gboolean
368 default_transform_from (GBinding *binding,
369 const GValue *value_a,
370 GValue *value_b,
371 gpointer user_data G_GNUC_UNUSED)
372 {
373 if (binding->flags & G_BINDING_INVERT_BOOLEAN)
374 return default_invert_boolean_transform (value_a, value_b);
375
376 return default_transform (value_a, value_b);
377 }
378
379 static void
380 on_source_notify (GObject *gobject G_GNUC_UNUSED,
381 GParamSpec *pspec,
382 GBinding *binding)
383 {
384 const gchar *p_name;
385 GValue source_value = G_VALUE_INIT;
386 GValue target_value = G_VALUE_INIT;
387 gboolean res;
388
389 if (binding->is_frozen)
390 return;
391
392 p_name = g_intern_string (pspec->name);
393
394 if (p_name != binding->source_property)
395 return;
396
397 g_value_init (&source_value, G_PARAM_SPEC_VALUE_TYPE (binding->source_pspec));
398 g_value_init (&target_value, G_PARAM_SPEC_VALUE_TYPE (binding->target_pspec));
399
400 g_object_get_property (binding->source, binding->source_pspec->name, &source_value);
401
402 res = binding->transform_s2t (binding,
403 &source_value,
404 &target_value,
405 binding->transform_data);
406 if (res)
407 {
408 binding->is_frozen = TRUE;
409
410 g_param_value_validate (binding->target_pspec, &target_value);
411 g_object_set_property (binding->target, binding->target_pspec->name, &target_value);
412
413 binding->is_frozen = FALSE;
414 }
415
416 g_value_unset (&source_value);
417 g_value_unset (&target_value);
418 }
419
420 static void
421 on_target_notify (GObject *gobject G_GNUC_UNUSED,
422 GParamSpec *pspec,
423 GBinding *binding)
424 {
425 const gchar *p_name;
426 GValue source_value = G_VALUE_INIT;
427 GValue target_value = G_VALUE_INIT;
428 gboolean res;
429
430 if (binding->is_frozen)
431 return;
432
433 p_name = g_intern_string (pspec->name);
434
435 if (p_name != binding->target_property)
436 return;
437
438 g_value_init (&source_value, G_PARAM_SPEC_VALUE_TYPE (binding->target_pspec));
439 g_value_init (&target_value, G_PARAM_SPEC_VALUE_TYPE (binding->source_pspec));
440
441 g_object_get_property (binding->target, binding->target_pspec->name, &source_value);
442
443 res = binding->transform_t2s (binding,
444 &source_value,
445 &target_value,
446 binding->transform_data);
447 if (res)
448 {
449 binding->is_frozen = TRUE;
450
451 g_param_value_validate (binding->source_pspec, &target_value);
452 g_object_set_property (binding->source, binding->source_pspec->name, &target_value);
453
454 binding->is_frozen = FALSE;
455 }
456
457 g_value_unset (&source_value);
458 g_value_unset (&target_value);
459 }
460
461 static void
462 g_binding_finalize (GObject *gobject)
463 {
464 GBinding *binding = G_BINDING (gobject);
465
466 /* dispose of the transformation data */
467 if (binding->notify != NULL)
468 {
469 binding->notify (binding->transform_data);
470
471 binding->transform_data = NULL;
472 binding->notify = NULL;
473 }
474
475 /* we need this in case the source and target instance are still
476 * valid, and it was the GBinding that was unreferenced
477 */
478 if (binding->source != NULL)
479 {
480 if (binding->source_notify != 0)
481 g_signal_handler_disconnect (binding->source, binding->source_notify);
482
483 g_object_weak_unref (binding->source, weak_unbind, binding);
484 remove_binding_qdata (binding->source, binding);
485 }
486
487 if (binding->target != NULL)
488 {
489 if (binding->target_notify != 0)
490 g_signal_handler_disconnect (binding->target, binding->target_notify);
491
492 g_object_weak_unref (binding->target, weak_unbind, binding);
493 remove_binding_qdata (binding->target, binding);
494 }
495
496 G_OBJECT_CLASS (g_binding_parent_class)->finalize (gobject);
497 }
498
499 static void
500 g_binding_set_property (GObject *gobject,
501 guint prop_id,
502 const GValue *value,
503 GParamSpec *pspec)
504 {
505 GBinding *binding = G_BINDING (gobject);
506
507 switch (prop_id)
508 {
509 case PROP_SOURCE:
510 binding->source = g_value_get_object (value);
511 break;
512
513 case PROP_SOURCE_PROPERTY:
514 binding->source_property = g_intern_string (g_value_get_string (value));
515 break;
516
517 case PROP_TARGET:
518 binding->target = g_value_get_object (value);
519 break;
520
521 case PROP_TARGET_PROPERTY:
522 binding->target_property = g_intern_string (g_value_get_string (value));
523 break;
524
525 case PROP_FLAGS:
526 binding->flags = g_value_get_flags (value);
527 break;
528
529 default:
530 G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
531 break;
532 }
533 }
534
535 static void
536 g_binding_get_property (GObject *gobject,
537 guint prop_id,
538 GValue *value,
539 GParamSpec *pspec)
540 {
541 GBinding *binding = G_BINDING (gobject);
542
543 switch (prop_id)
544 {
545 case PROP_SOURCE:
546 g_value_set_object (value, binding->source);
547 break;
548
549 case PROP_SOURCE_PROPERTY:
550 g_value_set_string (value, binding->source_property);
551 break;
552
553 case PROP_TARGET:
554 g_value_set_object (value, binding->target);
555 break;
556
557 case PROP_TARGET_PROPERTY:
558 g_value_set_string (value, binding->target_property);
559 break;
560
561 case PROP_FLAGS:
562 g_value_set_flags (value, binding->flags);
563 break;
564
565 default:
566 G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
567 break;
568 }
569 }
570
571 static void
572 g_binding_constructed (GObject *gobject)
573 {
574 GBinding *binding = G_BINDING (gobject);
575
576 /* assert that we were constructed correctly */
577 g_assert (binding->source != NULL);
578 g_assert (binding->target != NULL);
579 g_assert (binding->source_property != NULL);
580 g_assert (binding->target_property != NULL);
581
582 /* we assume a check was performed prior to construction - since
583 * g_object_bind_property_full() does it; we cannot fail construction
584 * anyway, so it would be hard for use to properly warn here
585 */
586 binding->source_pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (binding->source), binding->source_property);
587 binding->target_pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (binding->target), binding->target_property);
588 g_assert (binding->source_pspec != NULL);
589 g_assert (binding->target_pspec != NULL);
590
591 /* set the default transformation functions here */
592 binding->transform_s2t = default_transform_to;
593 binding->transform_t2s = default_transform_from;
594
595 binding->transform_data = NULL;
596 binding->notify = NULL;
597
598 binding->source_notify = g_signal_connect (binding->source, "notify",
599 G_CALLBACK (on_source_notify),
600 binding);
601
602 g_object_weak_ref (binding->source, weak_unbind, binding);
603 add_binding_qdata (binding->source, binding);
604
605 if (binding->flags & G_BINDING_BIDIRECTIONAL)
606 binding->target_notify = g_signal_connect (binding->target, "notify",
607 G_CALLBACK (on_target_notify),
608 binding);
609
610 g_object_weak_ref (binding->target, weak_unbind, binding);
611 add_binding_qdata (binding->target, binding);
612
613 }
614
615 static void
616 g_binding_class_init (GBindingClass *klass)
617 {
618 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
619
620 quark_gbinding = g_quark_from_static_string ("g-binding");
621
622 gobject_class->constructed = g_binding_constructed;
623 gobject_class->set_property = g_binding_set_property;
624 gobject_class->get_property = g_binding_get_property;
625 gobject_class->finalize = g_binding_finalize;
626
627 /**
628 * GBinding:source:
629 *
630 * The #GObject that should be used as the source of the binding
631 *
632 * Since: 2.26
633 */
634 g_object_class_install_property (gobject_class, PROP_SOURCE,
635 g_param_spec_object ("source",
636 _("Source"),
637 _("The source of the binding"),
638 G_TYPE_OBJECT,
639 G_PARAM_CONSTRUCT_ONLY |
640 G_PARAM_READWRITE |
641 G_PARAM_STATIC_STRINGS));
642 /**
643 * GBinding:target:
644 *
645 * The #GObject that should be used as the target of the binding
646 *
647 * Since: 2.26
648 */
649 g_object_class_install_property (gobject_class, PROP_TARGET,
650 g_param_spec_object ("target",
651 _("Target"),
652 _("The target of the binding"),
653 G_TYPE_OBJECT,
654 G_PARAM_CONSTRUCT_ONLY |
655 G_PARAM_READWRITE |
656 G_PARAM_STATIC_STRINGS));
657 /**
658 * GBinding:source-property:
659 *
660 * The name of the property of #GBinding:source that should be used
661 * as the source of the binding
662 *
663 * Since: 2.26
664 */
665 g_object_class_install_property (gobject_class, PROP_SOURCE_PROPERTY,
666 g_param_spec_string ("source-property",
667 _("Source Property"),
668 _("The property on the source to bind"),
669 NULL,
670 G_PARAM_CONSTRUCT_ONLY |
671 G_PARAM_READWRITE |
672 G_PARAM_STATIC_STRINGS));
673 /**
674 * GBinding:target-property:
675 *
676 * The name of the property of #GBinding:target that should be used
677 * as the target of the binding
678 *
679 * Since: 2.26
680 */
681 g_object_class_install_property (gobject_class, PROP_TARGET_PROPERTY,
682 g_param_spec_string ("target-property",
683 _("Target Property"),
684 _("The property on the target to bind"),
685 NULL,
686 G_PARAM_CONSTRUCT_ONLY |
687 G_PARAM_READWRITE |
688 G_PARAM_STATIC_STRINGS));
689 /**
690 * GBinding:flags:
691 *
692 * Flags to be used to control the #GBinding
693 *
694 * Since: 2.26
695 */
696 g_object_class_install_property (gobject_class, PROP_FLAGS,
697 g_param_spec_flags ("flags",
698 _("Flags"),
699 _("The binding flags"),
700 G_TYPE_BINDING_FLAGS,
701 G_BINDING_DEFAULT,
702 G_PARAM_CONSTRUCT_ONLY |
703 G_PARAM_READWRITE |
704 G_PARAM_STATIC_STRINGS));
705 }
706
707 static void
708 g_binding_init (GBinding *binding G_GNUC_UNUSED)
709 {
710 }
711
712 /**
713 * g_binding_get_flags:
714 * @binding: a #GBinding
715 *
716 * Retrieves the flags passed when constructing the #GBinding
717 *
718 * Return value: the #GBindingFlags used by the #GBinding
719 *
720 * Since: 2.26
721 */
722 GBindingFlags
723 g_binding_get_flags (GBinding *binding)
724 {
725 g_return_val_if_fail (G_IS_BINDING (binding), G_BINDING_DEFAULT);
726
727 return binding->flags;
728 }
729
730 /**
731 * g_binding_get_source:
732 * @binding: a #GBinding
733 *
734 * Retrieves the #GObject instance used as the source of the binding
735 *
736 * Return value: (transfer none): the source #GObject
737 *
738 * Since: 2.26
739 */
740 GObject *
741 g_binding_get_source (GBinding *binding)
742 {
743 g_return_val_if_fail (G_IS_BINDING (binding), NULL);
744
745 return binding->source;
746 }
747
748 /**
749 * g_binding_get_target:
750 * @binding: a #GBinding
751 *
752 * Retrieves the #GObject instance used as the target of the binding
753 *
754 * Return value: (transfer none): the target #GObject
755 *
756 * Since: 2.26
757 */
758 GObject *
759 g_binding_get_target (GBinding *binding)
760 {
761 g_return_val_if_fail (G_IS_BINDING (binding), NULL);
762
763 return binding->target;
764 }
765
766 /**
767 * g_binding_get_source_property:
768 * @binding: a #GBinding
769 *
770 * Retrieves the name of the property of #GBinding:source used as the source
771 * of the binding
772 *
773 * Return value: the name of the source property
774 *
775 * Since: 2.26
776 */
777 const gchar *
778 g_binding_get_source_property (GBinding *binding)
779 {
780 g_return_val_if_fail (G_IS_BINDING (binding), NULL);
781
782 return binding->source_property;
783 }
784
785 /**
786 * g_binding_get_target_property:
787 * @binding: a #GBinding
788 *
789 * Retrieves the name of the property of #GBinding:target used as the target
790 * of the binding
791 *
792 * Return value: the name of the target property
793 *
794 * Since: 2.26
795 */
796 const gchar *
797 g_binding_get_target_property (GBinding *binding)
798 {
799 g_return_val_if_fail (G_IS_BINDING (binding), NULL);
800
801 return binding->target_property;
802 }
803
804 /**
805 * g_object_bind_property_full:
806 * @source: (type GObject.Object): the source #GObject
807 * @source_property: the property on @source to bind
808 * @target: (type GObject.Object): the target #GObject
809 * @target_property: the property on @target to bind
810 * @flags: flags to pass to #GBinding
811 * @transform_to: (scope notified) (allow-none): the transformation function
812 * from the @source to the @target, or %NULL to use the default
813 * @transform_from: (scope notified) (allow-none): the transformation function
814 * from the @target to the @source, or %NULL to use the default
815 * @user_data: custom data to be passed to the transformation functions,
816 * or %NULL
817 * @notify: function to be called when disposing the binding, to free the
818 * resources used by the transformation functions
819 *
820 * Complete version of g_object_bind_property().
821 *
822 * Creates a binding between @source_property on @source and @target_property
823 * on @target, allowing you to set the transformation functions to be used by
824 * the binding.
825 *
826 * If @flags contains %G_BINDING_BIDIRECTIONAL then the binding will be mutual:
827 * if @target_property on @target changes then the @source_property on @source
828 * will be updated as well. The @transform_from function is only used in case
829 * of bidirectional bindings, otherwise it will be ignored
830 *
831 * The binding will automatically be removed when either the @source or the
832 * @target instances are finalized. To remove the binding without affecting the
833 * @source and the @target you can just call g_object_unref() on the returned
834 * #GBinding instance.
835 *
836 * A #GObject can have multiple bindings.
837 *
838 * <note>The same @user_data parameter will be used for both @transform_to
839 * and @transform_from transformation functions; the @notify function will
840 * be called once, when the binding is removed. If you need different data
841 * for each transformation function, please use
842 * g_object_bind_property_with_closures() instead.</note>
843 *
844 * Return value: (transfer none): the #GBinding instance representing the
845 * binding between the two #GObject instances. The binding is released
846 * whenever the #GBinding reference count reaches zero.
847 *
848 * Since: 2.26
849 */
850 GBinding *
851 g_object_bind_property_full (gpointer source,
852 const gchar *source_property,
853 gpointer target,
854 const gchar *target_property,
855 GBindingFlags flags,
856 GBindingTransformFunc transform_to,
857 GBindingTransformFunc transform_from,
858 gpointer user_data,
859 GDestroyNotify notify)
860 {
861 GParamSpec *pspec;
862 GBinding *binding;
863
864 g_return_val_if_fail (G_IS_OBJECT (source), NULL);
865 g_return_val_if_fail (source_property != NULL, NULL);
866 g_return_val_if_fail (G_IS_OBJECT (target), NULL);
867 g_return_val_if_fail (target_property != NULL, NULL);
868
869 if (source == target && g_strcmp0 (source_property, target_property) == 0)
870 {
871 g_warning ("Unable to bind the same property on the same instance");
872 return NULL;
873 }
874
875 /* remove the G_BINDING_INVERT_BOOLEAN flag in case we have
876 * custom transformation functions
877 */
878 if ((flags & G_BINDING_INVERT_BOOLEAN) &&
879 (transform_to != NULL || transform_from != NULL))
880 {
881 flags &= ~G_BINDING_INVERT_BOOLEAN;
882 }
883
884 pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (source), source_property);
885 if (pspec == NULL)
886 {
887 g_warning ("%s: The source object of type %s has no property called '%s'",
888 G_STRLOC,
889 G_OBJECT_TYPE_NAME (source),
890 source_property);
891 return NULL;
892 }
893
894 if (!(pspec->flags & G_PARAM_READABLE))
895 {
896 g_warning ("%s: The source object of type %s has no readable property called '%s'",
897 G_STRLOC,
898 G_OBJECT_TYPE_NAME (source),
899 source_property);
900 return NULL;
901 }
902
903 if ((flags & G_BINDING_BIDIRECTIONAL) &&
904 ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) || !(pspec->flags & G_PARAM_WRITABLE)))
905 {
906 g_warning ("%s: The source object of type %s has no writable property called '%s'",
907 G_STRLOC,
908 G_OBJECT_TYPE_NAME (source),
909 source_property);
910 return NULL;
911 }
912
913 if ((flags & G_BINDING_INVERT_BOOLEAN) &&
914 !(G_PARAM_SPEC_VALUE_TYPE (pspec) == G_TYPE_BOOLEAN))
915 {
916 g_warning ("%s: The G_BINDING_INVERT_BOOLEAN flag can only be used "
917 "when binding boolean properties; the source property '%s' "
918 "is of type '%s'",
919 G_STRLOC,
920 source_property,
921 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
922 return NULL;
923 }
924
925 pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (target), target_property);
926 if (pspec == NULL)
927 {
928 g_warning ("%s: The target object of type %s has no property called '%s'",
929 G_STRLOC,
930 G_OBJECT_TYPE_NAME (target),
931 target_property);
932 return NULL;
933 }
934
935 if ((pspec->flags & G_PARAM_CONSTRUCT_ONLY) || !(pspec->flags & G_PARAM_WRITABLE))
936 {
937 g_warning ("%s: The target object of type %s has no writable property called '%s'",
938 G_STRLOC,
939 G_OBJECT_TYPE_NAME (target),
940 target_property);
941 return NULL;
942 }
943
944 if ((flags & G_BINDING_BIDIRECTIONAL) &&
945 !(pspec->flags & G_PARAM_READABLE))
946 {
947 g_warning ("%s: The target object of type %s has no readable property called '%s'",
948 G_STRLOC,
949 G_OBJECT_TYPE_NAME (target),
950 target_property);
951 return NULL;
952 }
953
954 if ((flags & G_BINDING_INVERT_BOOLEAN) &&
955 !(G_PARAM_SPEC_VALUE_TYPE (pspec) == G_TYPE_BOOLEAN))
956 {
957 g_warning ("%s: The G_BINDING_INVERT_BOOLEAN flag can only be used "
958 "when binding boolean properties; the target property '%s' "
959 "is of type '%s'",
960 G_STRLOC,
961 target_property,
962 g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
963 return NULL;
964 }
965
966 binding = g_object_new (G_TYPE_BINDING,
967 "source", source,
968 "source-property", source_property,
969 "target", target,
970 "target-property", target_property,
971 "flags", flags,
972 NULL);
973
974 if (transform_to != NULL)
975 binding->transform_s2t = transform_to;
976
977 if (transform_from != NULL)
978 binding->transform_t2s = transform_from;
979
980 binding->transform_data = user_data;
981 binding->notify = notify;
982
983 /* synchronize the target with the source by faking an emission of
984 * the ::notify signal for the source property; this will also take
985 * care of the bidirectional binding case because the eventual change
986 * will emit a notification on the target
987 */
988 if (flags & G_BINDING_SYNC_CREATE)
989 on_source_notify (binding->source, binding->source_pspec, binding);
990
991 return binding;
992 }
993
994 /**
995 * g_object_bind_property:
996 * @source: (type GObject.Object): the source #GObject
997 * @source_property: the property on @source to bind
998 * @target: (type GObject.Object): the target #GObject
999 * @target_property: the property on @target to bind
1000 * @flags: flags to pass to #GBinding
1001 *
1002 * Creates a binding between @source_property on @source and @target_property
1003 * on @target. Whenever the @source_property is changed the @target_property is
1004 * updated using the same value. For instance:
1005 *
1006 * |[
1007 * g_object_bind_property (action, "active", widget, "sensitive", 0);
1008 * ]|
1009 *
1010 * Will result in the "sensitive" property of the widget #GObject instance to be
1011 * updated with the same value of the "active" property of the action #GObject
1012 * instance.
1013 *
1014 * If @flags contains %G_BINDING_BIDIRECTIONAL then the binding will be mutual:
1015 * if @target_property on @target changes then the @source_property on @source
1016 * will be updated as well.
1017 *
1018 * The binding will automatically be removed when either the @source or the
1019 * @target instances are finalized. To remove the binding without affecting the
1020 * @source and the @target you can just call g_object_unref() on the returned
1021 * #GBinding instance.
1022 *
1023 * A #GObject can have multiple bindings.
1024 *
1025 * Return value: (transfer none): the #GBinding instance representing the
1026 * binding between the two #GObject instances. The binding is released
1027 * whenever the #GBinding reference count reaches zero.
1028 *
1029 * Since: 2.26
1030 */
1031 GBinding *
1032 g_object_bind_property (gpointer source,
1033 const gchar *source_property,
1034 gpointer target,
1035 const gchar *target_property,
1036 GBindingFlags flags)
1037 {
1038 /* type checking is done in g_object_bind_property_full() */
1039
1040 return g_object_bind_property_full (source, source_property,
1041 target, target_property,
1042 flags,
1043 NULL,
1044 NULL,
1045 NULL, NULL);
1046 }
1047
1048 typedef struct _TransformData
1049 {
1050 GClosure *transform_to_closure;
1051 GClosure *transform_from_closure;
1052 } TransformData;
1053
1054 static gboolean
1055 bind_with_closures_transform_to (GBinding *binding,
1056 const GValue *source,
1057 GValue *target,
1058 gpointer data)
1059 {
1060 TransformData *t_data = data;
1061 GValue params[3] = { G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT };
1062 GValue retval = G_VALUE_INIT;
1063 gboolean res;
1064
1065 g_value_init (&params[0], G_TYPE_BINDING);
1066 g_value_set_object (&params[0], binding);
1067
1068 g_value_init (&params[1], G_TYPE_VALUE);
1069 g_value_set_boxed (&params[1], source);
1070
1071 g_value_init (&params[2], G_TYPE_VALUE);
1072 g_value_set_boxed (&params[2], target);
1073
1074 g_value_init (&retval, G_TYPE_BOOLEAN);
1075 g_value_set_boolean (&retval, FALSE);
1076
1077 g_closure_invoke (t_data->transform_to_closure, &retval, 3, params, NULL);
1078
1079 res = g_value_get_boolean (&retval);
1080 if (res)
1081 {
1082 const GValue *out_value = g_value_get_boxed (&params[2]);
1083
1084 g_assert (out_value != NULL);
1085
1086 g_value_copy (out_value, target);
1087 }
1088
1089 g_value_unset (&params[0]);
1090 g_value_unset (&params[1]);
1091 g_value_unset (&params[2]);
1092 g_value_unset (&retval);
1093
1094 return res;
1095 }
1096
1097 static gboolean
1098 bind_with_closures_transform_from (GBinding *binding,
1099 const GValue *source,
1100 GValue *target,
1101 gpointer data)
1102 {
1103 TransformData *t_data = data;
1104 GValue params[3] = { G_VALUE_INIT, G_VALUE_INIT, G_VALUE_INIT };
1105 GValue retval = G_VALUE_INIT;
1106 gboolean res;
1107
1108 g_value_init (&params[0], G_TYPE_BINDING);
1109 g_value_set_object (&params[0], binding);
1110
1111 g_value_init (&params[1], G_TYPE_VALUE);
1112 g_value_set_boxed (&params[1], source);
1113
1114 g_value_init (&params[2], G_TYPE_VALUE);
1115 g_value_set_boxed (&params[2], target);
1116
1117 g_value_init (&retval, G_TYPE_BOOLEAN);
1118 g_value_set_boolean (&retval, FALSE);
1119
1120 g_closure_invoke (t_data->transform_from_closure, &retval, 3, params, NULL);
1121
1122 res = g_value_get_boolean (&retval);
1123 if (res)
1124 {
1125 const GValue *out_value = g_value_get_boxed (&params[2]);
1126
1127 g_assert (out_value != NULL);
1128
1129 g_value_copy (out_value, target);
1130 }
1131
1132 g_value_unset (&params[0]);
1133 g_value_unset (&params[1]);
1134 g_value_unset (&params[2]);
1135 g_value_unset (&retval);
1136
1137 return res;
1138 }
1139
1140 static void
1141 bind_with_closures_free_func (gpointer data)
1142 {
1143 TransformData *t_data = data;
1144
1145 if (t_data->transform_to_closure != NULL)
1146 g_closure_unref (t_data->transform_to_closure);
1147
1148 if (t_data->transform_from_closure != NULL)
1149 g_closure_unref (t_data->transform_from_closure);
1150
1151 g_slice_free (TransformData, t_data);
1152 }
1153
1154 /**
1155 * g_object_bind_property_with_closures:
1156 * @source: (type GObject.Object): the source #GObject
1157 * @source_property: the property on @source to bind
1158 * @target: (type GObject.Object): the target #GObject
1159 * @target_property: the property on @target to bind
1160 * @flags: flags to pass to #GBinding
1161 * @transform_to: a #GClosure wrapping the transformation function
1162 * from the @source to the @target, or %NULL to use the default
1163 * @transform_from: a #GClosure wrapping the transformation function
1164 * from the @target to the @source, or %NULL to use the default
1165 *
1166 * Creates a binding between @source_property on @source and @target_property
1167 * on @target, allowing you to set the transformation functions to be used by
1168 * the binding.
1169 *
1170 * This function is the language bindings friendly version of
1171 * g_object_bind_property_full(), using #GClosure<!-- -->s instead of
1172 * function pointers.
1173 *
1174 * Rename to: g_object_bind_property_full
1175 *
1176 * Return value: (transfer none): the #GBinding instance representing the
1177 * binding between the two #GObject instances. The binding is released
1178 * whenever the #GBinding reference count reaches zero.
1179 *
1180 * Since: 2.26
1181 */
1182 GBinding *
1183 g_object_bind_property_with_closures (gpointer source,
1184 const gchar *source_property,
1185 gpointer target,
1186 const gchar *target_property,
1187 GBindingFlags flags,
1188 GClosure *transform_to,
1189 GClosure *transform_from)
1190 {
1191 TransformData *data;
1192
1193 data = g_slice_new0 (TransformData);
1194
1195 if (transform_to != NULL)
1196 {
1197 if (G_CLOSURE_NEEDS_MARSHAL (transform_to))
1198 g_closure_set_marshal (transform_to, g_cclosure_user_marshal_BOOLEAN__BOXED_BOXED);
1199
1200 data->transform_to_closure = g_closure_ref (transform_to);
1201 g_closure_sink (data->transform_to_closure);
1202 }
1203
1204 if (transform_from != NULL)
1205 {
1206 if (G_CLOSURE_NEEDS_MARSHAL (transform_from))
1207 g_closure_set_marshal (transform_from, g_cclosure_user_marshal_BOOLEAN__BOXED_BOXED);
1208
1209 data->transform_from_closure = g_closure_ref (transform_from);
1210 g_closure_sink (data->transform_from_closure);
1211 }
1212
1213 return g_object_bind_property_full (source, source_property,
1214 target, target_property,
1215 flags,
1216 transform_to != NULL ? bind_with_closures_transform_to : NULL,
1217 transform_from != NULL ? bind_with_closures_transform_from : NULL,
1218 data,
1219 bind_with_closures_free_func);
1220 }
+0
-129
src/gbinding.h less more
0 /* gbinding.h: Binding for object properties
1 *
2 * Copyright (C) 2010 Intel Corp.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
18 *
19 * Author: Emmanuele Bassi <ebassi@linux.intel.com>
20 */
21
22 #ifndef __G_BINDING_H__
23 #define __G_BINDING_H__
24
25 G_BEGIN_DECLS
26
27 #define G_TYPE_BINDING_FLAGS (g_binding_flags_get_type ())
28
29 #define G_TYPE_BINDING (g_binding_get_type ())
30 #define G_BINDING(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_BINDING, GBinding))
31 #define G_IS_BINDING(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_BINDING))
32
33 /**
34 * GBinding:
35 *
36 * <structname>GBinding</structname> is an opaque structure whose members
37 * cannot be accessed directly.
38 *
39 * Since: 2.26
40 */
41 typedef struct _GBinding GBinding;
42
43 /**
44 * GBindingTransformFunc:
45 * @binding: a #GBinding
46 * @source_value: the value of the source property
47 * @target_value: the value of the target property
48 * @user_data: data passed to the transform function
49 *
50 * A function to be called to transform the source property of @source
51 * from @source_value into the target property of @target
52 * using @target_value.
53 *
54 * Return value: %TRUE if the transformation was successful, and %FALSE
55 * otherwise
56 *
57 * Since: 2.26
58 */
59 typedef gboolean (* GBindingTransformFunc) (GBinding *binding,
60 const GValue *source_value,
61 GValue *target_value,
62 gpointer user_data);
63
64 /**
65 * GBindingFlags:
66 * @G_BINDING_DEFAULT: The default binding; if the source property
67 * changes, the target property is updated with its value.
68 * @G_BINDING_BIDIRECTIONAL: Bidirectional binding; if either the
69 * property of the source or the property of the target changes,
70 * the other is updated.
71 * @G_BINDING_SYNC_CREATE: Synchronize the values of the source and
72 * target properties when creating the binding; the direction of
73 * the synchronization is always from the source to the target.
74 * @G_BINDING_INVERT_BOOLEAN: If the two properties being bound are
75 * booleans, setting one to %TRUE will result in the other being
76 * set to %FALSE and vice versa. This flag will only work for
77 * boolean properties, and cannot be used when passing custom
78 * transformation functions to g_object_bind_property_full().
79 *
80 * Flags to be passed to g_object_bind_property() or
81 * g_object_bind_property_full().
82 *
83 * This enumeration can be extended at later date.
84 *
85 * Since: 2.26
86 */
87 typedef enum { /*< prefix=G_BINDING >*/
88 G_BINDING_DEFAULT = 0,
89
90 G_BINDING_BIDIRECTIONAL = 1 << 0,
91 G_BINDING_SYNC_CREATE = 1 << 1,
92 G_BINDING_INVERT_BOOLEAN = 1 << 2
93 } GBindingFlags;
94
95 GType g_binding_flags_get_type (void) G_GNUC_CONST;
96 GType g_binding_get_type (void) G_GNUC_CONST;
97
98 GBindingFlags g_binding_get_flags (GBinding *binding);
99 GObject * g_binding_get_source (GBinding *binding);
100 GObject * g_binding_get_target (GBinding *binding);
101 const gchar * g_binding_get_source_property (GBinding *binding);
102 const gchar * g_binding_get_target_property (GBinding *binding);
103
104 GBinding *g_object_bind_property (gpointer source,
105 const gchar *source_property,
106 gpointer target,
107 const gchar *target_property,
108 GBindingFlags flags);
109 GBinding *g_object_bind_property_full (gpointer source,
110 const gchar *source_property,
111 gpointer target,
112 const gchar *target_property,
113 GBindingFlags flags,
114 GBindingTransformFunc transform_to,
115 GBindingTransformFunc transform_from,
116 gpointer user_data,
117 GDestroyNotify notify);
118 GBinding *g_object_bind_property_with_closures (gpointer source,
119 const gchar *source_property,
120 gpointer target,
121 const gchar *target_property,
122 GBindingFlags flags,
123 GClosure *transform_to,
124 GClosure *transform_from);
125
126 G_END_DECLS
127
128 #endif /* __G_BINDING_H__ */
2727 #include <string.h>
2828
2929 #include "ovirt-foreign-menu.h"
30 #include "virt-glib-compat.h"
3130 #include "virt-viewer-util.h"
3231
3332 typedef enum {
465464 GList *it;
466465 char *current_iso;
467466
467 if (foreign_menu->priv->iso_names == NULL) {
468 g_debug("ISO list is empty, no menu to show");
469 return NULL;
470 }
468471 g_debug("Creating GtkMenu for foreign menu");
469 if (foreign_menu->priv->iso_names == NULL) {
470 return NULL;
471 }
472472 current_iso = ovirt_foreign_menu_get_current_iso_name(foreign_menu);
473473 gtk_menu = gtk_menu_new();
474474 for (it = foreign_menu->priv->iso_names; it != NULL; it = it->next) {
650650 while (g_hash_table_iter_next(&iter, NULL, (gpointer *)&domain)) {
651651 OvirtCollection *file_collection;
652652 int type;
653
654 g_object_get(domain, "type", &type, NULL);
653 int state;
654
655 g_object_get(domain, "type", &type, "state", &state, NULL);
655656 if (type != OVIRT_STORAGE_DOMAIN_TYPE_ISO) {
657 continue;
658 }
659
660 if (state != OVIRT_STORAGE_DOMAIN_STATE_ACTIVE) {
656661 continue;
657662 }
658663
754759 return;
755760 }
756761 g_return_if_fail(OVIRT_IS_API(menu->priv->api));
762 g_object_ref(menu->priv->api);
757763
758764 ovirt_foreign_menu_next_async_step(menu, STATE_API);
759765 }
790796 ovirt_foreign_menu_set_files(OVIRT_FOREIGN_MENU(user_data), files);
791797 g_list_free(files);
792798
793 g_timeout_add_seconds(15, ovirt_foreign_menu_refresh_iso_list, user_data);
799 g_timeout_add_seconds(300, ovirt_foreign_menu_refresh_iso_list, user_data);
794800 }
795801
796802
828834 gboolean admin;
829835 char *ca_str = NULL;
830836 char *jsessionid = NULL;
837 char *sso_token = NULL;
831838 char *url = NULL;
832839 char *vm_guid = NULL;
833840 GByteArray *ca = NULL;
835842 url = virt_viewer_file_get_ovirt_host(file);
836843 vm_guid = virt_viewer_file_get_ovirt_vm_guid(file);
837844 jsessionid = virt_viewer_file_get_ovirt_jsessionid(file);
845 sso_token = virt_viewer_file_get_ovirt_sso_token(file);
838846 ca_str = virt_viewer_file_get_ovirt_ca(file);
839847 admin = virt_viewer_file_get_ovirt_admin(file);
840848
841 if ((url == NULL) || (vm_guid == NULL))
849 if ((url == NULL) || (vm_guid == NULL)) {
850 g_debug("ignoring [ovirt] section content as URL, VM GUID"
851 " are missing from the .vv file");
842852 goto end;
853 }
854
855 if ((jsessionid == NULL) && (sso_token == NULL)) {
856 g_debug("ignoring [ovirt] section content as jsessionid and sso-token"
857 " are both missing from the .vv file");
858 goto end;
859 }
843860
844861 proxy = ovirt_proxy_new(url);
845862 if (proxy == NULL)
852869
853870 g_object_set(G_OBJECT(proxy),
854871 "admin", admin,
855 "session-id", jsessionid,
856872 "ca-cert", ca,
857873 NULL);
874 if (jsessionid != NULL) {
875 g_object_set(G_OBJECT(proxy),
876 "session-id", jsessionid,
877 NULL);
878 }
879 if (sso_token != NULL) {
880 g_object_set(G_OBJECT(proxy),
881 "sso-token", sso_token,
882 NULL);
883 }
884
858885 menu = g_object_new(OVIRT_TYPE_FOREIGN_MENU,
859886 "proxy", proxy,
860887 "vm-guid", vm_guid,
864891 g_free(url);
865892 g_free(vm_guid);
866893 g_free(jsessionid);
894 g_free(sso_token);
867895 g_free(ca_str);
868896 if (ca != NULL) {
869897 g_byte_array_unref(ca);
187187 g_return_val_if_fail(uri && *uri == NULL, FALSE);
188188
189189 /* Create the widgets */
190 builder = virt_viewer_util_load_ui("remote-viewer-connect.xml");
190 builder = virt_viewer_util_load_ui("remote-viewer-connect.ui");
191191 g_return_val_if_fail(builder != NULL, GTK_RESPONSE_NONE);
192192
193193 window = GTK_WIDGET(gtk_builder_get_object(builder, "remote-viewer-connection-window"));
+0
-152
src/remote-viewer-connect.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!-- Generated with glade 3.18.3 -->
2 <interface>
3 <object class="GtkWindow" id="remote-viewer-connection-window">
4 <property name="can_focus">False</property>
5 <property name="title" translatable="yes">Connection details</property>
6 <child>
7 <object class="GtkVBox" id="main-box">
8 <property name="visible">True</property>
9 <property name="can_focus">False</property>
10 <property name="border_width">10</property>
11 <property name="spacing">20</property>
12 <child>
13 <object class="GtkVBox" id="connection-address-box">
14 <property name="visible">True</property>
15 <property name="can_focus">False</property>
16 <property name="spacing">6</property>
17 <child>
18 <object class="GtkLabel" id="connection-address-label">
19 <property name="visible">True</property>
20 <property name="can_focus">False</property>
21 <property name="label" translatable="yes">Connection Address</property>
22 <property name="xalign">0</property>
23 <attributes>
24 <attribute name="weight" value="bold"/>
25 </attributes>
26 </object>
27 <packing>
28 <property name="expand">False</property>
29 <property name="fill">True</property>
30 <property name="position">0</property>
31 </packing>
32 </child>
33 <child>
34 <object class="GtkEntry" id="connection-address-entry">
35 <property name="visible">True</property>
36 <property name="can_focus">True</property>
37 </object>
38 <packing>
39 <property name="expand">False</property>
40 <property name="fill">True</property>
41 <property name="position">1</property>
42 </packing>
43 </child>
44 <child>
45 <object class="GtkLabel" id="example-label">
46 <property name="visible">True</property>
47 <property name="can_focus">False</property>
48 <property name="xalign">0</property>
49 <property name="sensitive">False</property>
50 <property name="label" translatable="yes">For example, spice://foo.example.org:5900</property>
51 </object>
52 <packing>
53 <property name="expand">False</property>
54 <property name="fill">True</property>
55 <property name="position">2</property>
56 </packing>
57 </child>
58 </object>
59 <packing>
60 <property name="expand">False</property>
61 <property name="fill">True</property>
62 <property name="position">0</property>
63 </packing>
64 </child>
65 <child>
66 <object class="GtkVBox" id="recent-chooser-box">
67 <property name="visible">True</property>
68 <property name="can_focus">False</property>
69 <property name="spacing">6</property>
70 <child>
71 <object class="GtkLabel" id="recent-chooser-label">
72 <property name="visible">True</property>
73 <property name="can_focus">False</property>
74 <property name="label" translatable="yes">Recent connections</property>
75 <property name="xalign">0</property>
76 <attributes>
77 <attribute name="weight" value="bold"/>
78 </attributes>
79 </object>
80 <packing>
81 <property name="expand">False</property>
82 <property name="fill">True</property>
83 <property name="position">0</property>
84 </packing>
85 </child>
86 <child>
87 <object class="GtkRecentChooserWidget" id="recent-chooser">
88 <property name="can_focus">False</property>
89 <property name="limit">20</property>
90 <property name="local_only">False</property>
91 <property name="show_icons">False</property>
92 <property name="sort_type">mru</property>
93 </object>
94 <packing>
95 <property name="expand">True</property>
96 <property name="fill">True</property>
97 <property name="position">1</property>
98 </packing>
99 </child>
100 </object>
101 <packing>
102 <property name="expand">True</property>
103 <property name="fill">True</property>
104 <property name="position">2</property>
105 </packing>
106 </child>
107 <child>
108 <object class="GtkHButtonBox" id="button-box">
109 <property name="visible">True</property>
110 <property name="can_focus">False</property>
111 <property name="resize_mode">immediate</property>
112 <property name="spacing">6</property>
113 <property name="layout_style">end</property>
114 <child>
115 <object class="GtkButton" id="cancel-button">
116 <property name="label" translatable="yes">Cancel</property>
117 <property name="visible">True</property>
118 <property name="can_focus">True</property>
119 <property name="receives_default">True</property>
120 </object>
121 <packing>
122 <property name="expand">True</property>
123 <property name="fill">True</property>
124 <property name="position">0</property>
125 </packing>
126 </child>
127 <child>
128 <object class="GtkButton" id="connect-button">
129 <property name="label" translatable="yes">Connect</property>
130 <property name="visible">True</property>
131 <property name="can_focus">True</property>
132 <property name="receives_default">True</property>
133 </object>
134 <packing>
135 <property name="expand">True</property>
136 <property name="fill">True</property>
137 <property name="position">1</property>
138 </packing>
139 </child>
140 </object>
141 <packing>
142 <property name="expand">False</property>
143 <property name="fill">False</property>
144 <property name="pack_type">end</property>
145 <property name="position">3</property>
146 </packing>
147 </child>
148 </object>
149 </child>
150 </object>
151 </interface>
2121
2222 #include <config.h>
2323 #include <locale.h>
24 #include <gio/gio.h>
2425 #include <gtk/gtk.h>
2526 #include <glib/gi18n.h>
2627 #include <stdlib.h>
27 #ifdef G_OS_WIN32
28 #include <windows.h>
29 #include <io.h>
30 #endif
31
32 #ifdef HAVE_GTK_VNC
33 #include <vncdisplay.h>
34 #endif
35 #ifdef HAVE_SPICE_GTK
36 #include <spice-option.h>
37 #endif
38 #ifdef HAVE_OVIRT
39 #include <govirt/ovirt-options.h>
40 #endif
4128
4229 #include "remote-viewer.h"
43 #include "virt-viewer-app.h"
44 #include "virt-viewer-session.h"
45
46 static void
47 remote_viewer_version(void)
48 {
49 g_print(_("remote-viewer version %s"), VERSION BUILDID);
50 #ifdef REMOTE_VIEWER_OS_ID
51 g_print(" (OS ID: %s)", REMOTE_VIEWER_OS_ID);
52 #endif
53 g_print("\n");
54 exit(EXIT_SUCCESS);
55 }
56
57 static void
58 recent_add(gchar *uri, const gchar *mime_type)
59 {
60 GtkRecentManager *recent;
61 GtkRecentData meta = {
62 .app_name = (char*)"remote-viewer",
63 .app_exec = (char*)"remote-viewer %u",
64 .mime_type = (char*)mime_type,
65 };
66
67 if (uri == NULL)
68 return;
69
70 recent = gtk_recent_manager_get_default();
71 meta.display_name = uri;
72 if (!gtk_recent_manager_add_full(recent, uri, &meta))
73 g_warning("Recent item couldn't be added");
74 }
75
76 static void connected(VirtViewerSession *session,
77 VirtViewerApp *self G_GNUC_UNUSED)
78 {
79 gchar *uri = virt_viewer_session_get_uri(session);
80 const gchar *mime = virt_viewer_session_mime_type(session);
81
82 recent_add(uri, mime);
83 g_free(uri);
84 }
30 #include "virt-viewer-util.h"
8531
8632 int
8733 main(int argc, char **argv)
8834 {
89 GOptionContext *context;
90 GError *error = NULL;
9135 int ret = 1;
92 gchar **args = NULL;
93 gchar *uri = NULL;
94 char *title = NULL;
95 RemoteViewer *viewer = NULL;
96 #ifdef HAVE_SPICE_GTK
97 gboolean controller = FALSE;
98 #endif
99 VirtViewerApp *app;
100 const GOptionEntry options [] = {
101 { "version", 'V', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
102 remote_viewer_version, N_("Display version information"), NULL },
103 { "title", 't', 0, G_OPTION_ARG_STRING, &title,
104 N_("Set window title"), NULL },
105 #ifdef HAVE_SPICE_GTK
106 { "spice-controller", '\0', 0, G_OPTION_ARG_NONE, &controller,
107 N_("Open connection using Spice controller communication"), NULL },
108 #endif
109 { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_STRING_ARRAY, &args,
110 NULL, "URI|VV-FILE" },
111 { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
112 };
113 GOptionGroup *app_options = NULL;
36 GApplication *app = NULL;
11437
11538 virt_viewer_util_init(_("Remote Viewer"));
39 app = G_APPLICATION(remote_viewer_new());
11640
117 /* Setup command line options */
118 context = g_option_context_new (NULL);
119 g_option_context_set_summary(context, _("Remote viewer client"));
120 app_options = virt_viewer_app_get_option_group();
121 g_option_group_add_entries (app_options, options);
122 g_option_context_set_main_group (context, app_options);
123 g_option_context_add_group (context, gtk_get_option_group (TRUE));
124 #ifdef HAVE_GTK_VNC
125 g_option_context_add_group (context, vnc_display_get_option_group ());
126 #endif
127 #ifdef HAVE_SPICE_GTK
128 g_option_context_add_group (context, spice_get_option_group ());
129 #endif
130 #ifdef HAVE_OVIRT
131 g_option_context_add_group (context, ovirt_get_option_group ());
132 #endif
133 g_option_context_parse (context, &argc, &argv, &error);
134 if (error) {
135 char *base_name;
136 base_name = g_path_get_basename(argv[0]);
137 g_printerr(_("%s\nRun '%s --help' to see a full list of available command line options\n"),
138 error->message, base_name);
139 g_free(base_name);
140 goto cleanup;
141 }
142
143 g_option_context_free(context);
144
145 #ifdef HAVE_SPICE_GTK
146 if (controller) {
147 if (args) {
148 g_printerr(_("Error: extra arguments given while using Spice controller\n"));
149 goto cleanup;
150 }
151 } else
152 #endif
153 if (args) {
154 if (g_strv_length(args) > 1) {
155 g_printerr(_("Error: can't handle multiple URIs\n"));
156 goto cleanup;
157 } else if (g_strv_length(args) == 1) {
158 uri = g_strdup(args[0]);
159 }
160 }
161
162 #ifdef HAVE_SPICE_GTK
163 if (controller) {
164 viewer = remote_viewer_new_with_controller();
165 g_object_set(viewer, "guest-name", "defined by Spice controller", NULL);
166 } else {
167 #endif
168 viewer = remote_viewer_new(uri);
169 if (title)
170 g_object_set(viewer, "title", title, NULL);
171 #ifdef HAVE_SPICE_GTK
172 }
173 #endif
174 if (viewer == NULL)
175 goto cleanup;
176
177 app = VIRT_VIEWER_APP(viewer);
178
179 if (!virt_viewer_app_start(app, &error)) {
180 if (g_error_matches(error, VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_CANCELLED))
181 ret = 0;
182 else if (error) {
183 virt_viewer_app_simple_message_dialog(app, error->message);
184 }
185 goto cleanup;
186 }
187
188 g_signal_connect(virt_viewer_app_get_session(app), "session-connected",
189 G_CALLBACK(connected), app);
190
191 gtk_main();
192
193 ret = 0;
194
195 cleanup:
196 g_free(uri);
197 if (viewer)
198 g_object_unref(viewer);
199 g_strfreev(args);
200 g_clear_error(&error);
201
41 ret = g_application_run(app, argc, argv);
42 g_object_unref(app);
20243 return ret;
20344 }
20445
2222 */
2323
2424 #include <config.h>
25 #include <gio/gio.h>
2526 #include <gtk/gtk.h>
2627 #include <glib/gprintf.h>
2728 #include <glib/gi18n.h>
3536
3637 #ifdef HAVE_SPICE_GTK
3738 #include <spice-controller.h>
38 #endif
39
40 #ifdef HAVE_SPICE_GTK
4139 #include "virt-viewer-session-spice.h"
4240 #endif
41
4342 #include "virt-viewer-app.h"
4443 #include "virt-viewer-auth.h"
4544 #include "virt-viewer-file.h"
4645 #include "virt-viewer-session.h"
46 #include "virt-viewer-util.h"
4747 #include "remote-viewer.h"
4848 #include "remote-viewer-connect.h"
4949
6565 G_DEFINE_TYPE (RemoteViewer, remote_viewer, VIRT_VIEWER_TYPE_APP)
6666 #define GET_PRIVATE(o) \
6767 (G_TYPE_INSTANCE_GET_PRIVATE ((o), REMOTE_VIEWER_TYPE, RemoteViewerPrivate))
68
69 enum {
70 PROP_0,
71 #ifdef HAVE_SPICE_GTK
72 PROP_CONTROLLER,
73 PROP_CTRL_FOREIGN_MENU,
74 #endif
75 PROP_OPEN_RECENT_DIALOG
76 };
7768
7869 #ifdef HAVE_OVIRT
7970 static OvirtVm * choose_vm(GtkWindow *main_window,
8576 static gboolean remote_viewer_start(VirtViewerApp *self, GError **error);
8677 #ifdef HAVE_SPICE_GTK
8778 static gboolean remote_viewer_activate(VirtViewerApp *self, GError **error);
88 static void remote_viewer_window_added(VirtViewerApp *self, VirtViewerWindow *win);
79 static void remote_viewer_window_added(GtkApplication *app, GtkWindow *w);
8980 static void spice_foreign_menu_updated(RemoteViewer *self);
81 static void foreign_menu_title_changed(SpiceCtrlForeignMenu *menu, GParamSpec *pspec, RemoteViewer *self);
9082 #endif
9183
9284 static void
120112 }
121113
122114 static void
123 remote_viewer_get_property (GObject *object, guint property_id,
124 GValue *value, GParamSpec *pspec)
125 {
126 RemoteViewer *self = REMOTE_VIEWER(object);
127 RemoteViewerPrivate *priv = self->priv;
128
129 switch (property_id) {
130 #ifdef HAVE_SPICE_GTK
131 case PROP_CONTROLLER:
132 g_value_set_object(value, priv->controller);
133 break;
134 case PROP_CTRL_FOREIGN_MENU:
135 g_value_set_object(value, priv->ctrl_foreign_menu);
136 break;
137 #endif
138 case PROP_OPEN_RECENT_DIALOG:
139 g_value_set_boolean(value, priv->open_recent_dialog);
140 break;
141 default:
142 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
143 }
144 }
145
146 static void
147 remote_viewer_set_property (GObject *object, guint property_id,
148 const GValue *value, GParamSpec *pspec)
149 {
150 RemoteViewer *self = REMOTE_VIEWER(object);
151 RemoteViewerPrivate *priv = self->priv;
152
153 switch (property_id) {
154 #ifdef HAVE_SPICE_GTK
155 case PROP_CONTROLLER:
156 g_return_if_fail(priv->controller == NULL);
157 priv->controller = g_value_dup_object(value);
158 break;
159 case PROP_CTRL_FOREIGN_MENU:
160 g_return_if_fail(priv->ctrl_foreign_menu == NULL);
161 priv->ctrl_foreign_menu = g_value_dup_object(value);
162 break;
163 #endif
164 case PROP_OPEN_RECENT_DIALOG:
165 priv->open_recent_dialog = g_value_get_boolean(value);
166 break;
167 default:
168 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
169 }
170 }
171
172 static void
173115 remote_viewer_deactivated(VirtViewerApp *app, gboolean connect_error)
174116 {
175117 RemoteViewer *self = REMOTE_VIEWER(app);
184126 VIRT_VIEWER_APP_CLASS(remote_viewer_parent_class)->deactivated(app, connect_error);
185127 }
186128
129 static gchar **opt_args = NULL;
130 static char *opt_title = NULL;
131 static gboolean opt_controller = FALSE;
132
133 static void
134 remote_viewer_add_option_entries(VirtViewerApp *self, GOptionContext *context, GOptionGroup *group)
135 {
136 static const GOptionEntry options[] = {
137 { "title", 't', 0, G_OPTION_ARG_STRING, &opt_title,
138 N_("Set window title"), NULL },
139 #ifdef HAVE_SPICE_GTK
140 { "spice-controller", '\0', 0, G_OPTION_ARG_NONE, &opt_controller,
141 N_("Open connection using Spice controller communication"), NULL },
142 #endif
143 { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_STRING_ARRAY, &opt_args,
144 NULL, "URI|VV-FILE" },
145 { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
146 };
147
148 VIRT_VIEWER_APP_CLASS(remote_viewer_parent_class)->add_option_entries(self, context, group);
149 g_option_context_set_summary(context, _("Remote viewer client"));
150 g_option_group_add_entries(group, options);
151
152 #ifdef HAVE_OVIRT
153 g_option_context_add_group (context, ovirt_get_option_group ());
154 #endif
155 }
156
157 static gboolean
158 remote_viewer_local_command_line (GApplication *gapp,
159 gchar ***args,
160 int *status)
161 {
162 gboolean ret = FALSE;
163 VirtViewerApp *app = VIRT_VIEWER_APP(gapp);
164 RemoteViewer *self = REMOTE_VIEWER(app);
165
166 ret = G_APPLICATION_CLASS(remote_viewer_parent_class)->local_command_line(gapp, args, status);
167 if (ret)
168 goto end;
169
170 if (!opt_args) {
171 self->priv->open_recent_dialog = TRUE;
172 } else {
173 if (g_strv_length(opt_args) > 1) {
174 g_printerr(_("\nError: can't handle multiple URIs\n\n"));
175 ret = TRUE;
176 *status = 1;
177 goto end;
178 }
179
180 g_object_set(app, "guri", opt_args[0], NULL);
181 }
182
183 #ifdef HAVE_SPICE_GTK
184 if (opt_controller) {
185 if (opt_args) {
186 g_printerr(_("\nError: extra arguments given while using Spice controller\n\n"));
187 ret = TRUE;
188 *status = 1;
189 goto end;
190 }
191
192 self->priv->controller = spice_ctrl_controller_new();
193 self->priv->ctrl_foreign_menu = spice_ctrl_foreign_menu_new();
194
195 g_object_set(self, "guest-name", "defined by Spice controller", NULL);
196
197 g_signal_connect(self->priv->ctrl_foreign_menu, "notify::title",
198 G_CALLBACK(foreign_menu_title_changed),
199 self);
200 }
201 #endif
202
203 if (opt_title && !opt_controller)
204 g_object_set(app, "title", opt_title, NULL);
205
206 end:
207 if (ret && *status)
208 g_printerr(_("Run '%s --help' to see a full list of available command line options\n"), g_get_prgname());
209
210 g_strfreev(opt_args);
211 return ret;
212 }
213
187214 static void
188215 remote_viewer_class_init (RemoteViewerClass *klass)
189216 {
190217 GObjectClass *object_class = G_OBJECT_CLASS (klass);
218 GtkApplicationClass *gtk_app_class = GTK_APPLICATION_CLASS(klass);
191219 VirtViewerAppClass *app_class = VIRT_VIEWER_APP_CLASS (klass);
220 GApplicationClass *g_app_class = G_APPLICATION_CLASS(klass);
192221
193222 g_type_class_add_private (klass, sizeof (RemoteViewerPrivate));
194223
195 object_class->get_property = remote_viewer_get_property;
196 object_class->set_property = remote_viewer_set_property;
224 object_class->dispose = remote_viewer_dispose;
225
226 g_app_class->local_command_line = remote_viewer_local_command_line;
197227
198228 app_class->start = remote_viewer_start;
199229 app_class->deactivated = remote_viewer_deactivated;
200 object_class->dispose = remote_viewer_dispose;
230 app_class->add_option_entries = remote_viewer_add_option_entries;
201231 #ifdef HAVE_SPICE_GTK
202232 app_class->activate = remote_viewer_activate;
203 app_class->window_added = remote_viewer_window_added;
204
205 g_object_class_install_property(object_class,
206 PROP_CONTROLLER,
207 g_param_spec_object("controller",
208 "Controller",
209 "Spice controller",
210 SPICE_CTRL_TYPE_CONTROLLER,
211 G_PARAM_READWRITE |
212 G_PARAM_CONSTRUCT_ONLY |
213 G_PARAM_STATIC_STRINGS));
214 g_object_class_install_property(object_class,
215 PROP_CTRL_FOREIGN_MENU,
216 g_param_spec_object("foreign-menu",
217 "Foreign Menu",
218 "Spice foreign menu",
219 SPICE_CTRL_TYPE_FOREIGN_MENU,
220 G_PARAM_READWRITE |
221 G_PARAM_CONSTRUCT_ONLY |
222 G_PARAM_STATIC_STRINGS));
223 #endif
224 g_object_class_install_property(object_class,
225 PROP_OPEN_RECENT_DIALOG,
226 g_param_spec_boolean("open-recent-dialog",
227 "Open recent dialog",
228 "Open recent dialog",
229 FALSE,
230 G_PARAM_READWRITE |
231 G_PARAM_CONSTRUCT_ONLY |
232 G_PARAM_STATIC_STRINGS));
233 gtk_app_class->window_added = remote_viewer_window_added;
234 #else
235 (void) gtk_app_class;
236 #endif
233237 }
234238
235239 static void
239243 }
240244
241245 RemoteViewer *
242 remote_viewer_new(const gchar *uri)
246 remote_viewer_new(void)
243247 {
244248 return g_object_new(REMOTE_VIEWER_TYPE,
245 "guri", uri,
246 "open-recent-dialog", uri == NULL,
249 "application-id", "org.virt-manager.remote-viewer",
250 "flags", G_APPLICATION_NON_UNIQUE,
247251 NULL);
248252 }
249253
264268
265269 /* update menu title */
266270 spice_foreign_menu_updated(self);
267 }
268
269 RemoteViewer *
270 remote_viewer_new_with_controller(void)
271 {
272 RemoteViewer *self;
273 SpiceCtrlController *ctrl = spice_ctrl_controller_new();
274 SpiceCtrlForeignMenu *menu = spice_ctrl_foreign_menu_new();
275
276 self = g_object_new(REMOTE_VIEWER_TYPE,
277 "controller", ctrl,
278 "foreign-menu", menu,
279 NULL);
280 g_signal_connect(menu, "notify::title",
281 G_CALLBACK(foreign_menu_title_changed),
282 self);
283 g_object_unref(ctrl);
284 g_object_unref(menu);
285
286 return self;
287271 }
288272
289273 static void
616600 static gboolean
617601 remote_viewer_activate(VirtViewerApp *app, GError **error)
618602 {
603 RemoteViewer *self;
604 gboolean ret = FALSE;
605
619606 g_return_val_if_fail(REMOTE_VIEWER_IS(app), FALSE);
620 RemoteViewer *self = REMOTE_VIEWER(app);
621 gboolean ret = FALSE;
607
608 self = REMOTE_VIEWER(app);
622609
623610 if (self->priv->controller) {
624611 SpiceSession *session = remote_viewer_get_spice_session(self);
632619 }
633620
634621 static void
635 remote_viewer_window_added(VirtViewerApp *app,
636 VirtViewerWindow *win)
637 {
622 remote_viewer_window_added(GtkApplication *app,
623 GtkWindow *w)
624 {
625 VirtViewerWindow *win = VIRT_VIEWER_WINDOW(
626 g_object_get_data(G_OBJECT(w), "virt-viewer-window"));
638627 spice_menu_update(REMOTE_VIEWER(app), win);
639628 spice_foreign_menu_update(REMOTE_VIEWER(app), win);
629
630 GTK_APPLICATION_CLASS(remote_viewer_parent_class)->window_added(app, w);
640631 }
641632 #endif
642633
740731 }
741732
742733 static void
743 ovirt_foreign_menu_update(RemoteViewer *app, VirtViewerWindow *win)
744 {
734 ovirt_foreign_menu_update(GtkApplication *gtkapp, GtkWindow *gtkwin, G_GNUC_UNUSED gpointer data)
735 {
736 RemoteViewer *app = REMOTE_VIEWER(gtkapp);
737 VirtViewerWindow *win = g_object_get_data(G_OBJECT(gtkwin), "virt-viewer-window");
745738 GtkWidget *menu = g_object_get_data(G_OBJECT(win), "foreign-menu");
746739 GtkWidget *submenu;
747 GtkMenuShell *shell = GTK_MENU_SHELL(gtk_builder_get_object(virt_viewer_window_get_builder(win), "top-menu"));
748740
749741 if (app->priv->ovirt_foreign_menu == NULL) {
750742 /* nothing to do */
751743 return;
752744 }
745
746 submenu = ovirt_foreign_menu_get_gtk_menu(app->priv->ovirt_foreign_menu);
747 if (submenu == NULL) {
748 /* No items to show, no point in showing the menu */
749 if (menu != NULL)
750 gtk_widget_set_visible(menu, FALSE);
751 g_object_set_data(G_OBJECT(win), "foreign-menu", NULL);
752 return;
753 }
754
753755 if (menu == NULL) {
754 menu = gtk_menu_item_new_with_label(_("_Change CD"));
755 gtk_menu_item_set_use_underline(GTK_MENU_ITEM(menu), TRUE);
756 gtk_menu_shell_append(shell, menu);
757 g_object_set_data_full(G_OBJECT(win), "foreign-menu",
758 g_object_ref(menu),
759 (GDestroyNotify)gtk_widget_destroy);
760 }
761
762 submenu = ovirt_foreign_menu_get_gtk_menu(app->priv->ovirt_foreign_menu);
763 if (submenu != NULL) {
764 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu), submenu);
765 } else {
766 /* No items to show, no point in showing the menu */
767 g_object_set_data(G_OBJECT(win), "foreign-menu", NULL);
768 }
769
756 menu = GTK_WIDGET(gtk_builder_get_object(virt_viewer_window_get_builder(win), "menu-change-cd"));
757 g_object_set_data(G_OBJECT(win), "foreign-menu", menu);
758 gtk_widget_set_visible(menu, TRUE);
759 }
760
761 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu), submenu);
770762 gtk_widget_show_all(menu);
771763 }
772764
774766 ovirt_foreign_menu_update_each(gpointer value,
775767 gpointer user_data)
776768 {
777 ovirt_foreign_menu_update(REMOTE_VIEWER(user_data),
778 VIRT_VIEWER_WINDOW(value));
769 ovirt_foreign_menu_update(GTK_APPLICATION(user_data),
770 virt_viewer_window_get_window(VIRT_VIEWER_WINDOW(value)),
771 NULL);
779772 }
780773
781774 static void
879872 vms = ovirt_api_get_vms(api);
880873 ovirt_collection_fetch(vms, proxy, &error);
881874 if (error != NULL) {
882 g_debug("failed to lookup %s: %s", vm_name, error->message);
875 g_debug("failed to fetch oVirt 'vms' collection: %s", error->message);
883876 goto error;
884877 }
885878 if (vm_name == NULL ||
1005998 g_object_unref(display);
1006999 if (vm != NULL)
10071000 g_object_unref(vm);
1008 if (api != NULL)
1009 g_object_unref(api);
10101001 if (proxy != NULL)
10111002 g_object_unref(proxy);
10121003
10561047 return vm;
10571048 }
10581049 #endif
1050
1051 static void
1052 remote_viewer_recent_add(gchar *uri, const gchar *mime_type)
1053 {
1054 GtkRecentManager *recent;
1055 GtkRecentData meta = {
1056 .app_name = (char*)"remote-viewer",
1057 .app_exec = (char*)"remote-viewer %u",
1058 .mime_type = (char*)mime_type,
1059 };
1060
1061 if (uri == NULL)
1062 return;
1063
1064 recent = gtk_recent_manager_get_default();
1065 meta.display_name = uri;
1066 if (!gtk_recent_manager_add_full(recent, uri, &meta))
1067 g_warning("Recent item couldn't be added");
1068 }
1069
1070 static void
1071 remote_viewer_session_connected(VirtViewerSession *session,
1072 VirtViewerApp *self G_GNUC_UNUSED)
1073 {
1074 gchar *uri = virt_viewer_session_get_uri(session);
1075 const gchar *mime = virt_viewer_session_mime_type(session);
1076
1077 remote_viewer_recent_add(uri, mime);
1078 g_free(uri);
1079 }
10591080
10601081 static gboolean
10611082 remote_viewer_start(VirtViewerApp *app, GError **err)
11401161 goto cleanup;
11411162 }
11421163
1164 g_signal_connect(virt_viewer_app_get_session(app), "session-connected",
1165 G_CALLBACK(remote_viewer_session_connected), app);
1166
11431167 virt_viewer_session_set_file(virt_viewer_app_get_session(app), vvfile);
11441168 #ifdef HAVE_OVIRT
11451169 if (vvfile != NULL) {
4747
4848 GType remote_viewer_get_type (void);
4949
50 RemoteViewer* remote_viewer_new(const gchar *uri);
51 RemoteViewer* remote_viewer_new_with_controller(void);
50 RemoteViewer *remote_viewer_new (void);
5251
5352 G_END_DECLS
5453
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!-- Generated with glade 3.18.3 -->
2 <interface>
3 <object class="GtkWindow" id="remote-viewer-connection-window">
4 <property name="can_focus">False</property>
5 <property name="title" translatable="yes">Connection details</property>
6 <child>
7 <object class="GtkVBox" id="main-box">
8 <property name="visible">True</property>
9 <property name="can_focus">False</property>
10 <property name="border_width">10</property>
11 <property name="spacing">20</property>
12 <child>
13 <object class="GtkVBox" id="connection-address-box">
14 <property name="visible">True</property>
15 <property name="can_focus">False</property>
16 <property name="spacing">6</property>
17 <child>
18 <object class="GtkLabel" id="connection-address-label">
19 <property name="visible">True</property>
20 <property name="can_focus">False</property>
21 <property name="xalign">0</property>
22 <property name="label" translatable="yes">Connection _Address</property>
23 <property name="use_underline">True</property>
24 <property name="mnemonic_widget">connection-address-entry</property>
25 <attributes>
26 <attribute name="weight" value="bold"/>
27 </attributes>
28 </object>
29 <packing>
30 <property name="expand">False</property>
31 <property name="fill">True</property>
32 <property name="position">0</property>
33 </packing>
34 </child>
35 <child>
36 <object class="GtkEntry" id="connection-address-entry">
37 <property name="visible">True</property>
38 <property name="can_focus">True</property>
39 </object>
40 <packing>
41 <property name="expand">False</property>
42 <property name="fill">True</property>
43 <property name="position">1</property>
44 </packing>
45 </child>
46 <child>
47 <object class="GtkLabel" id="example-label">
48 <property name="visible">True</property>
49 <property name="can_focus">False</property>
50 <property name="xalign">0</property>
51 <property name="sensitive">False</property>
52 <property name="label" translatable="yes">For example, spice://foo.example.org:5900</property>
53 </object>
54 <packing>
55 <property name="expand">False</property>
56 <property name="fill">True</property>
57 <property name="position">2</property>
58 </packing>
59 </child>
60 </object>
61 <packing>
62 <property name="expand">False</property>
63 <property name="fill">True</property>
64 <property name="position">0</property>
65 </packing>
66 </child>
67 <child>
68 <object class="GtkVBox" id="recent-chooser-box">
69 <property name="visible">True</property>
70 <property name="can_focus">False</property>
71 <property name="spacing">6</property>
72 <child>
73 <object class="GtkLabel" id="recent-chooser-label">
74 <property name="visible">True</property>
75 <property name="can_focus">False</property>
76 <property name="label" translatable="yes">Recent connections</property>
77 <property name="xalign">0</property>
78 <attributes>
79 <attribute name="weight" value="bold"/>
80 </attributes>
81 </object>
82 <packing>
83 <property name="expand">False</property>
84 <property name="fill">True</property>
85 <property name="position">0</property>
86 </packing>
87 </child>
88 <child>
89 <object class="GtkRecentChooserWidget" id="recent-chooser">
90 <property name="can_focus">False</property>
91 <property name="limit">20</property>
92 <property name="local_only">False</property>
93 <property name="show_icons">False</property>
94 <property name="sort_type">mru</property>
95 </object>
96 <packing>
97 <property name="expand">True</property>
98 <property name="fill">True</property>
99 <property name="position">1</property>
100 </packing>
101 </child>
102 </object>
103 <packing>
104 <property name="expand">True</property>
105 <property name="fill">True</property>
106 <property name="position">2</property>
107 </packing>
108 </child>
109 <child>
110 <object class="GtkHButtonBox" id="button-box">
111 <property name="visible">True</property>
112 <property name="can_focus">False</property>
113 <property name="resize_mode">immediate</property>
114 <property name="spacing">6</property>
115 <property name="layout_style">end</property>
116 <child>
117 <object class="GtkButton" id="cancel-button">
118 <property name="label" translatable="yes">_Cancel</property>
119 <property name="visible">True</property>
120 <property name="can_focus">True</property>
121 <property name="receives_default">True</property>
122 <property name="use_underline">True</property>
123 </object>
124 <packing>
125 <property name="expand">True</property>
126 <property name="fill">True</property>
127 <property name="position">0</property>
128 </packing>
129 </child>
130 <child>
131 <object class="GtkButton" id="connect-button">
132 <property name="label" translatable="yes">C_onnect</property>
133 <property name="visible">True</property>
134 <property name="can_focus">True</property>
135 <property name="receives_default">True</property>
136 <property name="use_underline">True</property>
137 </object>
138 <packing>
139 <property name="expand">True</property>
140 <property name="fill">True</property>
141 <property name="position">1</property>
142 </packing>
143 </child>
144 </object>
145 <packing>
146 <property name="expand">False</property>
147 <property name="fill">False</property>
148 <property name="pack_type">end</property>
149 <property name="position">3</property>
150 </packing>
151 </child>
152 </object>
153 </child>
154 </object>
155 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.12 -->
3 <object class="GtkAboutDialog" id="about">
4 <property name="can_focus">False</property>
5 <property name="border_width">5</property>
6 <property name="title" translatable="yes">About Virt-Viewer</property>
7 <property name="resizable">False</property>
8 <property name="modal">True</property>
9 <property name="window_position">center-on-parent</property>
10 <property name="destroy_with_parent">True</property>
11 <property name="type_hint">dialog</property>
12 <property name="skip_taskbar_hint">True</property>
13 <property name="skip_pager_hint">True</property>
14 <property name="program_name">Virtual Machine Viewer</property>
15 <property name="copyright" translatable="yes">Copyright (C) 2007-2012 Daniel P. Berrange
16 Copyright (C) 2007-2014 Red Hat, Inc.</property>
17 <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>
20 <property name="license" translatable="yes">This program is free software; you can redistribute it and/or modify
21 it under the terms of the GNU General Public License as published by
22 the Free Software Foundation; either version 2 of the License, or
23 (at your option) any later version.
24
25 This program is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU General Public License for more details.
29
30 You should have received a copy of the GNU General Public License
31 along with this program; if not, write to the Free Software
32 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 </property>
34 <property name="authors">Daniel P. Berrange
35 Marc-André Lureau
36 </property>
37 <property name="translator_credits" translatable="yes">The Fedora Translation Team</property>
38 <signal name="delete-event" handler="virt_viewer_app_about_delete" swapped="no"/>
39 <signal name="response" handler="virt_viewer_app_about_close" swapped="no"/>
40 <child internal-child="vbox">
41 <object class="GtkBox" id="dialog-vbox1">
42 <property name="visible">True</property>
43 <property name="can_focus">False</property>
44 <property name="orientation">vertical</property>
45 <property name="spacing">2</property>
46 <child internal-child="action_area">
47 <object class="GtkButtonBox" id="dialog-action_area1">
48 <property name="visible">True</property>
49 <property name="can_focus">False</property>
50 <property name="layout_style">end</property>
51 </object>
52 <packing>
53 <property name="expand">False</property>
54 <property name="fill">True</property>
55 <property name="pack_type">end</property>
56 <property name="position">0</property>
57 </packing>
58 </child>
59 <child>
60 <placeholder/>
61 </child>
62 </object>
63 </child>
64 </object>
65 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.12 -->
3 <object class="GtkDialog" id="auth">
4 <property name="can_focus">False</property>
5 <property name="border_width">5</property>
6 <property name="title" translatable="yes">Authentication required</property>
7 <property name="modal">True</property>
8 <property name="window_position">center-on-parent</property>
9 <property name="destroy_with_parent">True</property>
10 <property name="type_hint">dialog</property>
11 <property name="skip_taskbar_hint">True</property>
12 <property name="skip_pager_hint">True</property>
13 <child internal-child="vbox">
14 <object class="GtkBox" id="dialog-vbox1">
15 <property name="visible">True</property>
16 <property name="can_focus">False</property>
17 <property name="orientation">vertical</property>
18 <property name="spacing">2</property>
19 <child internal-child="action_area">
20 <object class="GtkButtonBox" id="dialog-action_area1">
21 <property name="visible">True</property>
22 <property name="can_focus">False</property>
23 <property name="layout_style">end</property>
24 <child>
25 <object class="GtkButton" id="button-cancel">
26 <property name="label" translatable="yes">_Cancel</property>
27 <property name="visible">True</property>
28 <property name="can_focus">True</property>
29 <property name="receives_default">True</property>
30 <property name="use_action_appearance">False</property>
31 <property name="use_underline">True</property>
32 </object>
33 <packing>
34 <property name="expand">False</property>
35 <property name="fill">False</property>
36 <property name="position">0</property>
37 </packing>
38 </child>
39 <child>
40 <object class="GtkButton" id="button-ok">
41 <property name="label" translatable="yes">_OK</property>
42 <property name="visible">True</property>
43 <property name="can_focus">True</property>
44 <property name="can_default">True</property>
45 <property name="has_default">True</property>
46 <property name="receives_default">True</property>
47 <property name="use_action_appearance">False</property>
48 <property name="use_underline">True</property>
49 </object>
50 <packing>
51 <property name="expand">False</property>
52 <property name="fill">False</property>
53 <property name="position">3</property>
54 </packing>
55 </child>
56 </object>
57 <packing>
58 <property name="expand">False</property>
59 <property name="fill">True</property>
60 <property name="pack_type">end</property>
61 <property name="position">0</property>
62 </packing>
63 </child>
64 <child>
65 <object class="GtkLabel" id="message">
66 <property name="visible">True</property>
67 <property name="can_focus">False</property>
68 <property name="xalign">0</property>
69 <property name="yalign">0</property>
70 <property name="label" translatable="yes">label</property>
71 <property name="use_markup">True</property>
72 </object>
73 <packing>
74 <property name="expand">False</property>
75 <property name="fill">True</property>
76 <property name="position">1</property>
77 </packing>
78 </child>
79 <child>
80 <object class="GtkTable" id="table1">
81 <property name="visible">True</property>
82 <property name="can_focus">False</property>
83 <property name="n_rows">2</property>
84 <property name="n_columns">2</property>
85 <property name="column_spacing">6</property>
86 <property name="row_spacing">6</property>
87 <child>
88 <object class="GtkLabel" id="prompt-password">
89 <property name="visible">True</property>
90 <property name="can_focus">False</property>
91 <property name="xalign">1</property>
92 <property name="label" translatable="yes">Password:</property>
93 </object>
94 <packing>
95 <property name="top_attach">1</property>
96 <property name="bottom_attach">2</property>
97 </packing>
98 </child>
99 <child>
100 <object class="GtkLabel" id="prompt-username">
101 <property name="visible">True</property>
102 <property name="can_focus">False</property>
103 <property name="xalign">1</property>
104 <property name="label" translatable="yes">Username:</property>
105 </object>
106 </child>
107 <child>
108 <object class="GtkEntry" id="cred-username">
109 <property name="visible">True</property>
110 <property name="can_focus">True</property>
111 </object>
112 <packing>
113 <property name="left_attach">1</property>
114 <property name="right_attach">2</property>
115 </packing>
116 </child>
117 <child>
118 <object class="GtkEntry" id="cred-password">
119 <property name="visible">True</property>
120 <property name="can_focus">True</property>
121 <property name="visibility">False</property>
122 <property name="activates_default">True</property>
123 </object>
124 <packing>
125 <property name="left_attach">1</property>
126 <property name="right_attach">2</property>
127 <property name="top_attach">1</property>
128 <property name="bottom_attach">2</property>
129 </packing>
130 </child>
131 <child>
132 <object class="GtkCheckButton" id="show-password">
133 <property name="visible">True</property>
134 <property name="can_focus">True</property>
135 <property name="active">False</property>
136 <property name="label" translatable="yes">Show password</property>
137 </object>
138 <packing>
139 <property name="left_attach">1</property>
140 <property name="right_attach">2</property>
141 <property name="top_attach">2</property>
142 <property name="bottom_attach">3</property>
143 </packing>
144 </child>
145 </object>
146 <packing>
147 <property name="expand">False</property>
148 <property name="fill">True</property>
149 <property name="position">2</property>
150 </packing>
151 </child>
152 </object>
153 </child>
154 <action-widgets>
155 <action-widget response="-6">button-cancel</action-widget>
156 <action-widget response="-5">button-ok</action-widget>
157 </action-widgets>
158 </object>
159 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!-- Generated with glade 3.16.0 on Thu Jan 16 16:13:38 2014 -->
2 <interface>
3 <!-- interface-requires gtk+ 3.0 -->
4 <object class="GtkDialog" id="guestdetailsdialog">
5 <property name="can_focus">False</property>
6 <property name="title" translatable="yes">Guest Details</property>
7 <property name="resizable">True</property>
8 <property name="default_width">400</property>
9 <property name="type_hint">dialog</property>
10 <signal name="response" handler="virt_viewer_window_guest_details_response" swapped="no"/>
11 <child internal-child="vbox">
12 <object class="GtkBox" id="dialog-vbox2">
13 <property name="can_focus">False</property>
14 <property name="orientation">vertical</property>
15 <property name="spacing">2</property>
16 <child internal-child="action_area">
17 <object class="GtkButtonBox" id="dialog-action_area2">
18 <property name="can_focus">False</property>
19 <property name="layout_style">end</property>
20 <child>
21 <object class="GtkButton" id="button1">
22 <property name="label" translatable="yes">_Close</property>
23 <property name="visible">True</property>
24 <property name="can_focus">True</property>
25 <property name="receives_default">True</property>
26 <property name="use_underline">True</property>
27 </object>
28 <packing>
29 <property name="expand">False</property>
30 <property name="fill">True</property>
31 <property name="position">0</property>
32 </packing>
33 </child>
34 </object>
35 <packing>
36 <property name="expand">False</property>
37 <property name="fill">True</property>
38 <property name="pack_type">end</property>
39 <property name="position">0</property>
40 </packing>
41 </child>
42 <child>
43 <object class="GtkTable" id="grid1">
44 <property name="visible">True</property>
45 <property name="can_focus">False</property>
46 <property name="border_width">6</property>
47 <property name="row_spacing">6</property>
48 <property name="column_spacing">6</property>
49 <property name="n_rows">2</property>
50 <child>
51 <object class="GtkLabel" id="label1">
52 <property name="visible">True</property>
53 <property name="can_focus">False</property>
54 <property name="xalign">1</property>
55 <property name="label" translatable="yes">Name:</property>
56 </object>
57 <packing>
58 <property name="x_options">GTK_SHRINK | GTK_FILL</property>
59 <property name="y_options">GTK_FILL</property>
60 </packing>
61 </child>
62 <child>
63 <object class="GtkLabel" id="label2">
64 <property name="visible">True</property>
65 <property name="can_focus">False</property>
66 <property name="xalign">1</property>
67 <property name="label" translatable="yes">GUID:</property>
68 </object>
69 <packing>
70 <property name="top_attach">1</property>
71 <property name="bottom_attach">2</property>
72 <property name="x_options">GTK_SHRINK | GTK_FILL</property>
73 <property name="y_options">GTK_FILL</property>
74 </packing>
75 </child>
76 <child>
77 <object class="GtkLabel" id="namevaluelabel">
78 <property name="visible">True</property>
79 <property name="can_focus">False</property>
80 <property name="xalign">0</property>
81 <property name="label" translatable="yes">label</property>
82 <property name="selectable">True</property>
83 </object>
84 <packing>
85 <property name="left_attach">1</property>
86 <property name="right_attach">2</property>
87 <property name="y_options">GTK_FILL</property>
88 </packing>
89 </child>
90 <child>
91 <object class="GtkLabel" id="guidvaluelabel">
92 <property name="visible">True</property>
93 <property name="can_focus">False</property>
94 <property name="xalign">0</property>
95 <property name="label" translatable="yes">label</property>
96 <property name="selectable">True</property>
97 </object>
98 <packing>
99 <property name="left_attach">1</property>
100 <property name="right_attach">2</property>
101 <property name="top_attach">1</property>
102 <property name="bottom_attach">2</property>
103 <property name="y_options">GTK_FILL</property>
104 </packing>
105 </child>
106 </object>
107 <packing>
108 <property name="expand">False</property>
109 <property name="fill">True</property>
110 <property name="position">1</property>
111 </packing>
112 </child>
113 </object>
114 </child>
115 <action-widgets>
116 <action-widget response="-7">button1</action-widget>
117 </action-widgets>
118 </object>
119 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.6 -->
3 <!-- interface-naming-policy toplevel-contextual -->
4 <object class="GtkDialog" id="preferences">
5 <property name="can_focus">False</property>
6 <property name="border_width">5</property>
7 <property name="title" translatable="yes">Preferences</property>
8 <property name="type_hint">normal</property>
9 <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/>
10 <child internal-child="vbox">
11 <object class="GtkVBox" id="dialog-vbox1">
12 <property name="visible">True</property>
13 <property name="can_focus">False</property>
14 <child internal-child="action_area">
15 <object class="GtkHButtonBox" id="dialog-action_area1">
16 <property name="visible">True</property>
17 <property name="can_focus">False</property>
18 <property name="layout_style">end</property>
19 <child>
20 <placeholder/>
21 </child>
22 <child>
23 <placeholder/>
24 </child>
25 </object>
26 <packing>
27 <property name="expand">True</property>
28 <property name="fill">True</property>
29 <property name="position">0</property>
30 </packing>
31 </child>
32 <child>
33 <object class="GtkNotebook" id="notebook1">
34 <property name="visible">True</property>
35 <property name="can_focus">True</property>
36 <child>
37 <object class="GtkVBox" id="vbox1">
38 <property name="visible">True</property>
39 <property name="can_focus">False</property>
40 <property name="border_width">18</property>
41 <property name="spacing">6</property>
42 <child>
43 <object class="GtkLabel" id="label2">
44 <property name="visible">True</property>
45 <property name="can_focus">False</property>
46 <property name="xalign">0</property>
47 <property name="label" translatable="yes">Folder sharing</property>
48 <attributes>
49 <attribute name="weight" value="bold"/>
50 </attributes>
51 </object>
52 <packing>
53 <property name="expand">False</property>
54 <property name="fill">False</property>
55 <property name="position">0</property>
56 </packing>
57 </child>
58 <child>
59 <object class="GtkTable" id="table1">
60 <property name="visible">True</property>
61 <property name="can_focus">False</property>
62 <property name="border_width">6</property>
63 <property name="n_rows">2</property>
64 <property name="n_columns">2</property>
65 <property name="column_spacing">12</property>
66 <property name="row_spacing">6</property>
67 <child>
68 <object class="GtkCheckButton" id="cbsharefolder">
69 <property name="label" translatable="yes">Share folder</property>
70 <property name="visible">True</property>
71 <property name="can_focus">True</property>
72 <property name="receives_default">False</property>
73 <property name="draw_indicator">True</property>
74 </object>
75 <packing>
76 <property name="x_options"/>
77 </packing>
78 </child>
79 <child>
80 <object class="GtkCheckButton" id="cbsharefolderro">
81 <property name="label" translatable="yes">Read-only</property>
82 <property name="visible">True</property>
83 <property name="can_focus">True</property>
84 <property name="receives_default">False</property>
85 <property name="draw_indicator">True</property>
86 </object>
87 <packing>
88 <property name="right_attach">2</property>
89 <property name="top_attach">1</property>
90 <property name="bottom_attach">2</property>
91 </packing>
92 </child>
93 <child>
94 <object class="GtkFileChooserButton" id="fcsharefolder">
95 <property name="visible">True</property>
96 <property name="can_focus">False</property>
97 <property name="action">select-folder</property>
98 </object>
99 <packing>
100 <property name="left_attach">1</property>
101 <property name="right_attach">2</property>
102 </packing>
103 </child>
104 </object>
105 <packing>
106 <property name="expand">False</property>
107 <property name="fill">False</property>
108 <property name="position">1</property>
109 </packing>
110 </child>
111 </object>
112 </child>
113 <child type="tab">
114 <object class="GtkLabel" id="label1">
115 <property name="visible">True</property>
116 <property name="can_focus">False</property>
117 <property name="label" translatable="yes">Spice</property>
118 </object>
119 <packing>
120 <property name="tab_fill">False</property>
121 </packing>
122 </child>
123 </object>
124 <packing>
125 <property name="expand">True</property>
126 <property name="fill">True</property>
127 <property name="position">1</property>
128 </packing>
129 </child>
130 </object>
131 </child>
132 </object>
133 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!-- Generated with glade 3.16.1 -->
2 <interface>
3 <object class="GtkDialog" id="vm-connection-dialog">
4 <property name="can_focus">False</property>
5 <property name="border_width">5</property>
6 <property name="title" translatable="yes">Choose a virtual machine</property>
7 <property name="modal">True</property>
8 <property name="window_position">center-on-parent</property>
9 <property name="default_height">200</property>
10 <property name="destroy_with_parent">True</property>
11 <property name="type_hint">dialog</property>
12 <child internal-child="vbox">
13 <object class="GtkBox" id="dialog-vbox1">
14 <property name="can_focus">False</property>
15 <property name="orientation">vertical</property>
16 <property name="spacing">6</property>
17 <child internal-child="action_area">
18 <object class="GtkButtonBox" id="dialog-action_area1">
19 <property name="can_focus">False</property>
20 <property name="layout_style">end</property>
21 <child>
22 <object class="GtkButton" id="button-cancel">
23 <property name="label" translatable="yes">_Cancel</property>
24 <property name="visible">True</property>
25 <property name="can_focus">True</property>
26 <property name="receives_default">True</property>
27 <property name="use_underline">True</property>
28 </object>
29 <packing>
30 <property name="expand">False</property>
31 <property name="fill">True</property>
32 <property name="position">0</property>
33 </packing>
34 </child>
35 <child>
36 <object class="GtkButton" id="button-connect">
37 <property name="label" translatable="yes">C_onnect</property>
38 <property name="visible">True</property>
39 <property name="can_focus">True</property>
40 <property name="can_default">True</property>
41 <property name="has_default">True</property>
42 <property name="receives_default">True</property>
43 <property name="use_underline">True</property>
44 </object>
45 <packing>
46 <property name="expand">False</property>
47 <property name="fill">True</property>
48 <property name="position">1</property>
49 </packing>
50 </child>
51 </object>
52 <packing>
53 <property name="expand">False</property>
54 <property name="fill">True</property>
55 <property name="pack_type">end</property>
56 <property name="position">0</property>
57 </packing>
58 </child>
59 <child>
60 <object class="GtkTreeView" id="treeview">
61 <property name="visible">True</property>
62 <property name="can_focus">True</property>
63 <property name="headers_visible">False</property>
64 <property name="search_column">0</property>
65 <property name="enable_grid_lines">horizontal</property>
66 <child internal-child="selection">
67 <object class="GtkTreeSelection" id="treeview-selection"/>
68 </child>
69 <child>
70 <object class="GtkTreeViewColumn" id="treeviewcolumn1">
71 <property name="title" translatable="yes">Name</property>
72 <child>
73 <object class="GtkCellRendererText" id="cellrenderertext1"/>
74 <attributes>
75 <attribute name="text">0</attribute>
76 </attributes>
77 </child>
78 </object>
79 </child>
80 </object>
81 <packing>
82 <property name="expand">True</property>
83 <property name="fill">True</property>
84 <property name="pack_type">end</property>
85 <property name="position">1</property>
86 </packing>
87 </child>
88 <child>
89 <object class="GtkLabel" id="label">
90 <property name="visible">True</property>
91 <property name="can_focus">False</property>
92 <property name="xalign">0</property>
93 <property name="yalign">0</property>
94 <property name="xpad">4</property>
95 <property name="label" translatable="yes">Available virtual machines</property>
96 <property name="ellipsize">end</property>
97 <property name="width_chars">26</property>
98 <attributes>
99 <attribute name="weight" value="bold"/>
100 </attributes>
101 </object>
102 <packing>
103 <property name="expand">False</property>
104 <property name="fill">True</property>
105 <property name="pack_type">end</property>
106 <property name="position">2</property>
107 </packing>
108 </child>
109 </object>
110 </child>
111 <action-widgets>
112 <action-widget response="-6">button-cancel</action-widget>
113 <action-widget response="-3">button-connect</action-widget>
114 </action-widgets>
115 </object>
116 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.6 -->
3 <object class="GtkAccelGroup" id="accelgroup"/>
4 <object class="GtkApplicationWindow" id="viewer">
5 <property name="can_focus">False</property>
6 <property name="default_width">1024</property>
7 <property name="default_height">768</property>
8 <signal name="delete-event" handler="virt_viewer_window_delete" swapped="no"/>
9 <child>
10 <object class="GtkOverlay" id="viewer-overlay">
11 <property name="visible">True</property>
12 <property name="can_focus">False</property>
13 <child>
14 <object class="GtkVBox" id="viewer-box">
15 <property name="visible">True</property>
16 <property name="can_focus">False</property>
17 <child>
18 <object class="GtkMenuBar" id="top-menu">
19 <property name="visible">True</property>
20 <property name="can_focus">False</property>
21 <child>
22 <object class="GtkMenuItem" id="menu-file">
23 <property name="visible">True</property>
24 <property name="can_focus">False</property>
25 <property name="use_action_appearance">False</property>
26 <property name="label" translatable="yes">_File</property>
27 <property name="use_underline">True</property>
28 <child type="submenu">
29 <object class="GtkMenu" id="menu1">
30 <property name="visible">True</property>
31 <property name="can_focus">False</property>
32 <property name="accel_group">accelgroup</property>
33 <child>
34 <object class="GtkMenuItem" id="menu-file-screenshot">
35 <property name="visible">True</property>
36 <property name="can_focus">False</property>
37 <property name="use_action_appearance">False</property>
38 <property name="label" translatable="yes">_Screenshot</property>
39 <property name="use_underline">True</property>
40 <signal name="activate" handler="virt_viewer_window_menu_file_screenshot" swapped="no"/>
41 </object>
42 </child>
43 <child>
44 <object class="GtkMenuItem" id="menu-file-usb-device-selection">
45 <property name="visible">True</property>
46 <property name="sensitive">False</property>
47 <property name="can_focus">False</property>
48 <property name="use_action_appearance">False</property>
49 <property name="label" translatable="yes">_USB device selection</property>
50 <property name="use_underline">True</property>
51 <signal name="activate" handler="virt_viewer_window_menu_file_usb_device_selection" swapped="no"/>
52 </object>
53 </child>
54 <child>
55 <object class="GtkMenuItem" id="menu-file-smartcard-insert">
56 <property name="can_focus">False</property>
57 <property name="use_action_appearance">False</property>
58 <property name="accel_path">&lt;virt-viewer&gt;/file/smartcard-insert</property>
59 <property name="label" translatable="yes">Smartcard insertion</property>
60 <property name="use_underline">True</property>
61 <signal name="activate" handler="virt_viewer_window_menu_file_smartcard_insert" swapped="no"/>
62 </object>
63 </child>
64 <child>
65 <object class="GtkMenuItem" id="menu-file-smartcard-remove">
66 <property name="can_focus">False</property>
67 <property name="use_action_appearance">False</property>
68 <property name="accel_path">&lt;virt-viewer&gt;/file/smartcard-remove</property>
69 <property name="label" translatable="yes">Smartcard removal</property>
70 <property name="use_underline">True</property>
71 <signal name="activate" handler="virt_viewer_window_menu_file_smartcard_remove" swapped="no"/>
72 </object>
73 </child>
74 <child>
75 <object class="GtkMenuItem" id="menu-preferences">
76 <property name="visible">True</property>
77 <property name="can_focus">False</property>
78 <property name="label" translatable="yes">_Preferences</property>
79 <property name="use_underline">True</property>
80 <signal name="activate" handler="virt_viewer_window_menu_preferences_cb" swapped="no"/>
81 </object>
82 </child>
83 <child>
84 <object class="GtkSeparatorMenuItem" id="separatormenuitem1">
85 <property name="visible">True</property>
86 <property name="can_focus">False</property>
87 </object>
88 </child>
89 <child>
90 <object class="GtkMenuItem" id="imagemenuitem5">
91 <property name="label" translatable="yes">_Quit</property>
92 <property name="visible">True</property>
93 <property name="can_focus">False</property>
94 <property name="use_action_appearance">False</property>
95 <property name="use_underline">True</property>
96 <accelerator key="q" signal="activate" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
97 <signal name="activate" handler="virt_viewer_window_menu_file_quit" swapped="no"/>
98 </object>
99 </child>
100 </object>
101 </child>
102 </object>
103 </child>
104 <child>
105 <object class="GtkMenuItem" id="menu-view">
106 <property name="visible">True</property>
107 <property name="can_focus">False</property>
108 <property name="use_action_appearance">False</property>
109 <property name="label" translatable="yes">_View</property>
110 <property name="use_underline">True</property>
111 <child type="submenu">
112 <object class="GtkMenu" id="menu2">
113 <property name="visible">True</property>
114 <property name="can_focus">False</property>
115 <property name="accel_group">accelgroup</property>
116 <child>
117 <object class="GtkCheckMenuItem" id="menu-view-fullscreen">
118 <property name="visible">True</property>
119 <property name="can_focus">False</property>
120 <property name="use_action_appearance">False</property>
121 <property name="accel_path">&lt;virt-viewer&gt;/view/toggle-fullscreen</property>
122 <property name="label" translatable="yes">_Full screen</property>
123 <property name="use_underline">True</property>
124 <signal name="toggled" handler="virt_viewer_window_menu_view_fullscreen" swapped="no"/>
125 </object>
126 </child>
127 <child>
128 <object class="GtkMenuItem" id="menu-view-zoom">
129 <property name="visible">True</property>
130 <property name="can_focus">False</property>
131 <property name="use_action_appearance">False</property>
132 <property name="label" translatable="yes">_Zoom</property>
133 <property name="use_underline">True</property>
134 <child type="submenu">
135 <object class="GtkMenu" id="menu4">
136 <property name="visible">True</property>
137 <property name="can_focus">False</property>
138 <property name="accel_group">accelgroup</property>
139 <child>
140 <object class="GtkMenuItem" id="menu-view-zoom-in">
141 <property name="accel_path">&lt;virt-viewer&gt;/view/zoom-in</property>
142 <property name="label" translatable="yes">Zoom _In</property>
143 <property name="visible">True</property>
144 <property name="can_focus">False</property>
145 <property name="use_action_appearance">False</property>
146 <property name="use_underline">True</property>
147 <signal name="activate" handler="virt_viewer_window_menu_view_zoom_in" swapped="no"/>
148 </object>
149 </child>
150 <child>
151 <object class="GtkMenuItem" id="menu-view-zoom-out">
152 <property name="accel_path">&lt;virt-viewer&gt;/view/zoom-out</property>
153 <property name="label" translatable="yes">Zoom _Out</property>
154 <property name="visible">True</property>
155 <property name="can_focus">False</property>
156 <property name="use_action_appearance">False</property>
157 <property name="use_underline">True</property>
158 <signal name="activate" handler="virt_viewer_window_menu_view_zoom_out" swapped="no"/>
159 </object>
160 </child>
161 <child>
162 <object class="GtkSeparatorMenuItem" id="separatormenuitem4">
163 <property name="visible">True</property>
164 <property name="can_focus">False</property>
165 </object>
166 </child>
167 <child>
168 <object class="GtkMenuItem" id="menu-view-zoom-reset">
169 <property name="accel_path">&lt;virt-viewer&gt;/view/zoom-reset</property>
170 <property name="label" translatable="yes">_Normal Size</property>
171 <property name="visible">True</property>
172 <property name="can_focus">False</property>
173 <property name="use_action_appearance">False</property>
174 <property name="use_underline">True</property>
175 <signal name="activate" handler="virt_viewer_window_menu_view_zoom_reset" swapped="no"/>
176 </object>
177 </child>
178 </object>
179 </child>
180 </object>
181 </child>
182 <child>
183 <object class="GtkMenuItem" id="menu-displays">
184 <property name="visible">True</property>
185 <property name="can_focus">False</property>
186 <property name="use_action_appearance">False</property>
187 <property name="label" translatable="yes">_Displays</property>
188 <property name="use_underline">True</property>
189 </object>
190 </child>
191 <child>
192 <object class="GtkMenuItem" id="menu-view-release-cursor">
193 <property name="can_focus">False</property>
194 <property name="use_action_appearance">False</property>
195 <property name="accel_path">&lt;virt-viewer&gt;/view/release-cursor</property>
196 <property name="label" translatable="yes">Release cursor</property>
197 <property name="use_underline">True</property>
198 <signal name="activate" handler="virt_viewer_window_menu_view_release_cursor" swapped="no"/>
199 </object>
200 </child>
201 </object>
202 </child>
203 </object>
204 </child>
205 <child>
206 <object class="GtkMenuItem" id="menu-send">
207 <property name="visible">True</property>
208 <property name="can_focus">False</property>
209 <property name="use_action_appearance">False</property>
210 <property name="label" translatable="yes">_Send key</property>
211 <property name="use_underline">True</property>
212 </object>
213 </child>
214 <child>
215 <object class="GtkMenuItem" id="menu-help">
216 <property name="visible">True</property>
217 <property name="can_focus">False</property>
218 <property name="use_action_appearance">False</property>
219 <property name="label" translatable="yes">_Help</property>
220 <property name="use_underline">True</property>
221 <child type="submenu">
222 <object class="GtkMenu" id="menu3">
223 <property name="visible">True</property>
224 <property name="can_focus">False</property>
225 <child>
226 <object class="GtkMenuItem" id="menu-help-guest-details">
227 <property name="visible">True</property>
228 <property name="can_focus">False</property>
229 <property name="use_action_appearance">False</property>
230 <property name="label" translatable="yes">_Guest Details</property>
231 <property name="use_underline">True</property>
232 <signal name="activate" handler="virt_viewer_window_menu_help_guest_details" swapped="no"/>
233 </object>
234 </child>
235 <child>
236 <object class="GtkMenuItem" id="imagemenuitem10">
237 <property name="label" translatable="yes">_About</property>
238 <property name="visible">True</property>
239 <property name="can_focus">False</property>
240 <property name="use_action_appearance">False</property>
241 <property name="use_underline">True</property>
242 <signal name="activate" handler="virt_viewer_window_menu_help_about" swapped="no"/>
243 </object>
244 </child>
245 </object>
246 </child>
247 </object>
248 </child>
249 <child>
250 <object class="GtkMenuItem" id="menu-change-cd">
251 <property name="use_action_appearance">False</property>
252 <property name="can_focus">False</property>
253 <property name="label" translatable="yes">_Change CD</property>
254 <property name="use_underline">True</property>
255 </object>
256 </child>
257 </object>
258 <packing>
259 <property name="expand">False</property>
260 <property name="fill">True</property>
261 <property name="position">0</property>
262 </packing>
263 </child>
264 </object>
265 <packing>
266 <property name="index">-1</property>
267 </packing>
268 </child>
269 </object>
270 </child>
271 </object>
272 </interface>
0 <?xml version="1.0" encoding="UTF-8"?>
1 <gresources>
2 <gresource prefix="/org/virt-manager/virt-viewer">
3 <file>ui/remote-viewer-connect.ui</file>
4 <file>ui/virt-viewer-about.ui</file>
5 <file>ui/virt-viewer-auth.ui</file>
6 <file>ui/virt-viewer-guest-details.ui</file>
7 <file>ui/virt-viewer-preferences.ui</file>
8 <file>ui/virt-viewer-vm-connection.ui</file>
9 <file>ui/virt-viewer.ui</file>
10 <file alias="icons/16x16/virt-viewer.png">../../icons/16x16/virt-viewer.png</file>
11 <file alias="icons/22x22/virt-viewer.png">../../icons/22x22/virt-viewer.png</file>
12 <file alias="icons/24x24/virt-viewer.png">../../icons/24x24/virt-viewer.png</file>
13 <file alias="icons/24x24/virt-viewer-usb.png">../../icons/24x24/virt-viewer-usb.png</file>
14 <file alias="icons/32x32/virt-viewer.png">../../icons/32x32/virt-viewer.png</file>
15 <file alias="icons/48x48/virt-viewer.png">../../icons/48x48/virt-viewer.png</file>
16 <file alias="icons/256x256/virt-viewer.png">../../icons/256x256/virt-viewer.png</file>
17 </gresource>
18 </gresources>
+0
-61
src/test-version-compare.c less more
0 /* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
1 /*
2 * Virt Viewer: A virtual machine console viewer
3 *
4 * Copyright (C) 2015 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <config.h>
22 #include <glib.h>
23 #include <virt-viewer-util.h>
24
25 gboolean doDebug = FALSE;
26
27 int main(void)
28 {
29 g_assert(virt_viewer_compare_buildid("1-1", "1-1") == 0);
30 g_assert(virt_viewer_compare_buildid("1-1", "1-1.1") < 0);
31 g_assert(virt_viewer_compare_buildid("1-1", "1-2") < 0);
32 g_assert(virt_viewer_compare_buildid("1-3", "1-2") > 0);
33 g_assert(virt_viewer_compare_buildid("2-3", "1-2") > 0);
34 g_assert(virt_viewer_compare_buildid("2-3", "3-2") < 0);
35 g_assert(virt_viewer_compare_buildid("2-3", "3-4") < 0);
36 g_assert(virt_viewer_compare_buildid("4-3", "3-4") > 0);
37
38 g_assert(virt_viewer_compare_buildid("4.0-", "3-4") > 0);
39 g_assert(virt_viewer_compare_buildid("4.0-", "3.4-4") > 0);
40 g_assert(virt_viewer_compare_buildid(".0-", "3.4-4") < 0);
41 g_assert(virt_viewer_compare_buildid("4-", "3-4") > 0);
42 g_assert(virt_viewer_compare_buildid("4-3", "3-") > 0);
43 g_assert(virt_viewer_compare_buildid("-3", "3-4") < 0);
44 g_assert(virt_viewer_compare_buildid("4-3", "-4") > 0);
45 g_assert(virt_viewer_compare_buildid("-3", "-4") < 0);
46 g_assert(virt_viewer_compare_buildid("4", "3-4") > 0);
47 g_assert(virt_viewer_compare_buildid("4-3", "3") > 0);
48 g_assert(virt_viewer_compare_buildid("3", "3-4") < 0);
49 g_assert(virt_viewer_compare_buildid("4-3", "4") > 0);
50 g_assert(virt_viewer_compare_buildid("-3", "-4") < 0);
51
52 /* These trigger runtime warnings */
53 g_assert(virt_viewer_compare_buildid("-3", "-") > 0);
54 g_assert(virt_viewer_compare_buildid("", "-") == 0);
55 g_assert(virt_viewer_compare_buildid("", "") == 0);
56 g_assert(virt_viewer_compare_buildid("", NULL) == 0);
57 g_assert(virt_viewer_compare_buildid(NULL, NULL) == 0);
58
59 return 0;
60 }
+0
-1001
src/view/autoDrawer.c less more
0 /* *************************************************************************
1 * Copyright (c) 2005 VMware Inc.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * *************************************************************************/
22
23 /*
24 * autoDrawer.c -
25 *
26 * Subclass of ViewDrawer that encapsulates the behaviour typically required
27 * when using the drawer to implement a menu/toolbar that auto-opens when
28 * moused-over and auto-closes when the mouse leaves.
29 */
30
31 #include <config.h>
32
33 #include "autoDrawer.h"
34
35
36 struct _ViewAutoDrawerPrivate
37 {
38 gboolean active;
39 gboolean pinned;
40 gboolean inputUngrabbed;
41
42 gboolean opened;
43 gboolean forceClosing;
44
45 gboolean fill;
46 gint offset;
47
48 guint closeConnection;
49 guint delayConnection;
50 guint delayValue;
51 guint overlapPixels;
52 guint noOverlapPixels;
53
54 GtkWidget *over;
55 GtkWidget *evBox;
56 };
57
58 #define VIEW_AUTODRAWER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), VIEW_TYPE_AUTODRAWER, ViewAutoDrawerPrivate))
59
60 /* The unaltered parent class. */
61 static ViewDrawerClass *parentClass;
62
63
64 /*
65 *-----------------------------------------------------------------------------
66 *
67 * ViewAutoDrawerEnforce --
68 *
69 * Enforce an AutoDrawer's goal now.
70 *
71 * Results:
72 * None
73 *
74 * Side effects:
75 * None
76 *
77 *-----------------------------------------------------------------------------
78 */
79
80 static void
81 ViewAutoDrawerEnforce(ViewAutoDrawer *that, // IN
82 gboolean animate) // IN
83 {
84 double fraction;
85 GtkAllocation allocation;
86 ViewAutoDrawerPrivate *priv = that->priv;
87
88 if (!priv->active) {
89 ViewOvBox_SetMin(VIEW_OV_BOX(that), -1);
90 ViewOvBox_SetFraction(VIEW_OV_BOX(that), 0);
91 return;
92 }
93
94 g_assert(priv->over != NULL);
95 g_assert(GTK_IS_WIDGET(priv->over));
96
97 ViewOvBox_SetMin(VIEW_OV_BOX(that), priv->noOverlapPixels);
98
99 // The forceClosing flag overrides the opened flag.
100 if (priv->opened && !priv->forceClosing) {
101 fraction = 1;
102 } else {
103 gtk_widget_get_allocation (priv->over, &allocation);
104 fraction = ((double)priv->overlapPixels / allocation.height);
105 }
106
107 if (!animate) {
108 ViewOvBox_SetFraction(VIEW_OV_BOX(that), fraction);
109 }
110 ViewDrawer_SetGoal(VIEW_DRAWER(that), fraction);
111 }
112
113
114 /*
115 *-----------------------------------------------------------------------------
116 *
117 * ViewAutoDrawerOnEnforceDelay --
118 *
119 * Callback fired when a delayed update happens to update the drawer state.
120 *
121 * Results:
122 * FALSE to indicate timer should not repeat.
123 *
124 * Side effects:
125 * None
126 *
127 *-----------------------------------------------------------------------------
128 */
129
130 static gboolean
131 ViewAutoDrawerOnEnforceDelay(ViewAutoDrawer *that) // IN
132 {
133 that->priv->delayConnection = 0;
134 ViewAutoDrawerEnforce(that, TRUE);
135
136 return FALSE;
137 }
138
139
140 /*
141 *-----------------------------------------------------------------------------
142 *
143 * ViewAutoDrawerOnCloseDelay --
144 *
145 * Callback fired when the drawer is closed manually. This prevents the
146 * drawer from reopening right away.
147 *
148 * Results:
149 * FALSE to indicate timer should not repeat.
150 *
151 * Side effects:
152 * None
153 *
154 *-----------------------------------------------------------------------------
155 */
156
157 static gboolean
158 ViewAutoDrawerOnCloseDelay(ViewAutoDrawer *that) // IN
159 {
160 that->priv->closeConnection = 0;
161 that->priv->forceClosing = FALSE;
162
163 return FALSE;
164 }
165
166
167 /*
168 *-----------------------------------------------------------------------------
169 *
170 * ViewAutoDrawerUpdate --
171 *
172 * Decide whether an AutoDrawer should be opened or closed, and enforce
173 * that decision now or later.
174 *
175 * Results:
176 * None
177 *
178 * Side effects:
179 * None
180 *
181 *-----------------------------------------------------------------------------
182 */
183
184 static void
185 ViewAutoDrawerUpdate(ViewAutoDrawer *that, // IN
186 gboolean immediate) // IN
187 {
188 ViewAutoDrawerPrivate *priv = that->priv;
189 GtkWidget *toplevel = gtk_widget_get_toplevel(GTK_WIDGET(that));
190 GtkWindow *window;
191 GtkAllocation allocation;
192
193 if (!toplevel || !gtk_widget_is_toplevel(toplevel)) {
194 // The autoDrawer cannot function properly without a toplevel.
195 return;
196 }
197 window = GTK_WINDOW(toplevel);
198
199 /*
200 * We decide to open the drawer by OR'ing several conditions. Evaluating a
201 * condition can have the side-effect of setting 'immediate' to TRUE, so we
202 * cannot stop evaluating the conditions after we have found one to be TRUE.
203 */
204
205 priv->opened = FALSE;
206
207 /* Is the AutoDrawer pinned? */
208
209 if (priv->pinned) {
210 immediate = TRUE;
211
212 priv->opened = TRUE;
213 }
214
215 /* Is the mouse cursor inside the event box? */
216
217 if (gtk_widget_get_window(priv->evBox)) {
218 int x;
219 int y;
220 #if GTK_CHECK_VERSION(3, 0, 0)
221 GdkDevice *dev;
222 GdkDeviceManager *devmgr;
223
224 devmgr = gdk_display_get_device_manager(gtk_widget_get_display(priv->evBox));
225 dev = gdk_device_manager_get_client_pointer(devmgr);
226
227 gdk_window_get_device_position(gtk_widget_get_window(priv->evBox),
228 dev, &x, &y, NULL);
229 #else
230 gtk_widget_get_pointer(priv->evBox, &x, &y);
231 #endif
232
233 gtk_widget_get_allocation(priv->evBox, &allocation);
234 g_assert(gtk_container_get_border_width( GTK_CONTAINER(priv->evBox))
235 == 0);
236 if ( (guint)x < (guint)allocation.width
237 && (guint)y < (guint)allocation.height) {
238 priv->opened = TRUE;
239 }
240 }
241
242 /* If there is a focused widget, is it inside the event box? */
243
244 {
245 GtkWidget *focus;
246
247 focus = gtk_window_get_focus(window);
248 if (focus && gtk_widget_is_ancestor(focus, priv->evBox)) {
249 /*
250 * Override the default 'immediate' to make sure the 'over' widget
251 * immediately appears along with the widget the focused widget.
252 */
253 immediate = TRUE;
254
255 priv->opened = TRUE;
256 }
257 }
258
259 /* If input is grabbed, is it on behalf of a widget inside the event box? */
260
261 if (!priv->inputUngrabbed) {
262 GtkWidget *grabbed = NULL;
263
264 #if GTK_CHECK_VERSION(3, 0, 0)
265 if (gtk_window_has_group (window)) {
266 GtkWindowGroup *group = gtk_window_get_group (window);
267 grabbed = gtk_window_group_get_current_grab (group);
268 }
269 #else
270 if (window->group && window->group->grabs) {
271 grabbed = GTK_WIDGET(window->group->grabs->data);
272 }
273 #endif
274 if (!grabbed) {
275 grabbed = gtk_grab_get_current();
276 }
277
278 if (grabbed && GTK_IS_MENU(grabbed)) {
279 /*
280 * With cascading menus, the deepest menu owns the grab. Traverse the
281 * menu hierarchy up until we reach the attach widget for the whole
282 * hierarchy.
283 */
284
285 for (;;) {
286 GtkWidget *menuAttach;
287 GtkWidget *menuItemParent;
288
289 menuAttach = gtk_menu_get_attach_widget(GTK_MENU(grabbed));
290 if (!menuAttach) {
291 /*
292 * It is unfortunately not mandatory for a menu to have a proper
293 * attach widget set.
294 */
295 break;
296 }
297
298 grabbed = menuAttach;
299 if (!GTK_IS_MENU_ITEM(grabbed)) {
300 break;
301 }
302
303 menuItemParent = gtk_widget_get_parent(grabbed);
304 g_return_if_fail(menuItemParent);
305 if (!GTK_IS_MENU(menuItemParent)) {
306 break;
307 }
308
309 grabbed = menuItemParent;
310 }
311 }
312
313 if (grabbed && gtk_widget_is_ancestor(grabbed, priv->evBox)) {
314 /*
315 * Override the default 'immediate' to make sure the 'over' widget
316 * immediately appears along with the widget the grab happens on
317 * behalf of.
318 */
319 immediate = TRUE;
320
321 priv->opened = TRUE;
322 }
323 }
324
325 if (priv->delayConnection) {
326 g_source_remove(priv->delayConnection);
327 priv->delayConnection = 0;
328 }
329
330 if (priv->forceClosing) {
331 ViewAutoDrawerEnforce(that, TRUE);
332 } else if (immediate) {
333 ViewAutoDrawerEnforce(that, FALSE);
334 } else {
335 priv->delayConnection = g_timeout_add(priv->delayValue,
336 (GSourceFunc)ViewAutoDrawerOnEnforceDelay, that);
337 }
338 }
339
340
341 /*
342 *-----------------------------------------------------------------------------
343 *
344 * ViewAutoDrawerOnOverEnterLeave --
345 *
346 * Respond to enter/leave events by doing a delayed update of the drawer
347 * state.
348 *
349 * Results:
350 * FALSE to indicate event was not handled.
351 *
352 * Side effects:
353 * Will queue delayed update.
354 *
355 *-----------------------------------------------------------------------------
356 */
357
358 static gboolean
359 ViewAutoDrawerOnOverEnterLeave(GtkWidget *evBox G_GNUC_UNUSED, // IN: Unused
360 GdkEventCrossing *event G_GNUC_UNUSED, // IN
361 ViewAutoDrawer *that) // IN
362 {
363 /*
364 * This change happens in response to user input. By default, give the user
365 * some time to correct his input before reacting to the change.
366 */
367 ViewAutoDrawerUpdate(that, FALSE);
368
369 return FALSE;
370 }
371
372
373 /*
374 *-----------------------------------------------------------------------------
375 *
376 * ViewAutoDrawerOnGrabNotify --
377 *
378 * Respond to grab notifications by updating the drawer state.
379 *
380 * Results:
381 * None
382 *
383 * Side effects:
384 * Might queue delayed update.
385 *
386 *-----------------------------------------------------------------------------
387 */
388
389 static void
390 ViewAutoDrawerOnGrabNotify(GtkWidget *evBox G_GNUC_UNUSED, // IN: Unused
391 gboolean ungrabbed, // IN
392 ViewAutoDrawer *that) // IN
393 {
394 ViewAutoDrawerPrivate *priv = that->priv;
395
396 priv->inputUngrabbed = ungrabbed;
397
398 /*
399 * This change happens in response to user input. By default, give the user
400 * some time to correct his input before reacting to the change.
401 */
402 ViewAutoDrawerUpdate(that, FALSE);
403 }
404
405
406 /*
407 *-----------------------------------------------------------------------------
408 *
409 * ViewAutoDrawerOnSetFocus --
410 *
411 * Respond to changes in the focus widget of the autoDrawer's toplevel
412 * by recalculating the state.
413 *
414 * Results:
415 * None
416 *
417 * Side effects:
418 * Drawer state is updated.
419 *
420 *-----------------------------------------------------------------------------
421 */
422
423 static void
424 ViewAutoDrawerOnSetFocus(GtkWindow *window G_GNUC_UNUSED, // IN
425 GtkWidget *widget G_GNUC_UNUSED, // IN
426 ViewAutoDrawer *that) // IN
427 {
428 /*
429 * This change happens in response to user input. By default, give the user
430 * some time to correct his input before reacting to the change.
431 */
432 ViewAutoDrawerUpdate(that, FALSE);
433 }
434
435
436 /*
437 *-----------------------------------------------------------------------------
438 *
439 * ViewAutoDrawerOnHierarchyChanged --
440 *
441 * Respond to changes in the toplevel for the AutoDrawer. A toplevel is
442 * required for the AutoDrawer to calculate its state.
443 *
444 * Results:
445 * None
446 *
447 * Side effects:
448 * Drawer state is updated.
449 *
450 *-----------------------------------------------------------------------------
451 */
452
453 static void
454 ViewAutoDrawerOnHierarchyChanged(ViewAutoDrawer *that, // IN
455 GtkWidget *oldToplevel) // IN
456 {
457 GtkWidget *newToplevel = gtk_widget_get_toplevel(GTK_WIDGET(that));
458
459 if (oldToplevel && gtk_widget_is_toplevel(oldToplevel)) {
460 g_signal_handlers_disconnect_by_func(oldToplevel,
461 G_CALLBACK(ViewAutoDrawerOnSetFocus),
462 that);
463 }
464
465 if (newToplevel && gtk_widget_is_toplevel(newToplevel)) {
466 g_signal_connect_after(newToplevel, "set-focus",
467 G_CALLBACK(ViewAutoDrawerOnSetFocus), that);
468 }
469
470 /* This change happens programmatically. Always react to it immediately. */
471 ViewAutoDrawerUpdate(that, TRUE);
472 }
473
474
475 /*
476 *-----------------------------------------------------------------------------
477 *
478 * ViewAutoDrawerSetOver --
479 *
480 * Virtual method override so that the user's over widget is placed
481 * inside the AutoDrawer's event box.
482 *
483 * Results:
484 * None
485 *
486 * Side effects:
487 * None
488 *
489 *-----------------------------------------------------------------------------
490 */
491
492 static void
493 ViewAutoDrawerSetOver(ViewOvBox *ovBox, // IN
494 GtkWidget *widget) // IN
495 {
496 ViewAutoDrawer *that = VIEW_AUTODRAWER(ovBox);
497 ViewAutoDrawerPrivate *priv = that->priv;
498 GtkWidget *oldChild = gtk_bin_get_child(GTK_BIN(priv->evBox));
499
500 if (oldChild) {
501 g_object_ref(oldChild);
502 gtk_container_remove(GTK_CONTAINER(priv->evBox), oldChild);
503 }
504
505 if (widget) {
506 gtk_container_add(GTK_CONTAINER(priv->evBox), widget);
507 }
508
509 if (oldChild) {
510 g_object_unref(oldChild);
511 }
512
513 priv->over = widget;
514 }
515
516
517 /*
518 *-----------------------------------------------------------------------------
519 *
520 * ViewAutoDrawerRefreshPacking --
521 *
522 * Sets the actual packing values for fill, expand, and packing
523 * given internal settings.
524 *
525 * Results:
526 * None
527 *
528 * Side effects:
529 * Drawer state is updated.
530 *
531 *-----------------------------------------------------------------------------
532 */
533
534 static void
535 ViewAutoDrawerRefreshPacking(ViewAutoDrawer *that) // IN
536 {
537 gboolean expand;
538 gboolean fill;
539 guint padding;
540
541 expand = (that->priv->fill || (that->priv->offset < 0));
542 fill = that->priv->fill;
543 padding = (expand || fill) ? 0 : that->priv->offset;
544
545 gtk_box_set_child_packing(GTK_BOX(that), that->priv->evBox,
546 expand, fill, padding, GTK_PACK_START);
547 }
548
549
550 /*
551 *-----------------------------------------------------------------------------
552 *
553 * ViewAutoDrawerInit --
554 *
555 * Initialize a ViewAutoDrawer.
556 *
557 * Results:
558 * None
559 *
560 * Side effects:
561 * None
562 *
563 *-----------------------------------------------------------------------------
564 */
565
566 static void
567 ViewAutoDrawerInit(GTypeInstance *instance, // IN
568 gpointer klass G_GNUC_UNUSED) // Unused
569 {
570 ViewAutoDrawer *that;
571 ViewAutoDrawerPrivate *priv;
572
573 that = VIEW_AUTODRAWER(instance);
574 that->priv = VIEW_AUTODRAWER_GET_PRIVATE(that);
575 priv = that->priv;
576
577 priv->active = TRUE;
578 priv->pinned = FALSE;
579 priv->forceClosing = FALSE;
580 priv->inputUngrabbed = TRUE;
581 priv->delayConnection = 0;
582 priv->delayValue = 250;
583 priv->overlapPixels = 0;
584 priv->noOverlapPixels = 1;
585
586 priv->fill = TRUE;
587 priv->offset = -1;
588
589 priv->evBox = gtk_event_box_new();
590 gtk_widget_show(priv->evBox);
591 VIEW_OV_BOX_CLASS(parentClass)->set_over(VIEW_OV_BOX(that), priv->evBox);
592
593 g_signal_connect(priv->evBox, "enter-notify-event",
594 G_CALLBACK(ViewAutoDrawerOnOverEnterLeave), that);
595 g_signal_connect(priv->evBox, "leave-notify-event",
596 G_CALLBACK(ViewAutoDrawerOnOverEnterLeave), that);
597 g_signal_connect(priv->evBox, "grab-notify",
598 G_CALLBACK(ViewAutoDrawerOnGrabNotify), that);
599
600 g_signal_connect(that, "hierarchy-changed",
601 G_CALLBACK(ViewAutoDrawerOnHierarchyChanged), NULL);
602
603 /* This change happens programmatically. Always react to it immediately. */
604 ViewAutoDrawerUpdate(that, TRUE);
605
606 ViewAutoDrawerRefreshPacking(that);
607 }
608
609
610 /*
611 *-----------------------------------------------------------------------------
612 *
613 * ViewAutoDrawerFinalize --
614 *
615 * "finalize" method of a ViewAutoDrawer.
616 *
617 * Results:
618 * None
619 *
620 * Side effects:
621 * None
622 *
623 *-----------------------------------------------------------------------------
624 */
625
626 static void
627 ViewAutoDrawerFinalize(GObject *object) // IN
628 {
629 ViewAutoDrawer *that;
630
631 that = VIEW_AUTODRAWER(object);
632 if (that->priv->delayConnection) {
633 g_source_remove(that->priv->delayConnection);
634 }
635
636 G_OBJECT_CLASS(parentClass)->finalize(object);
637 }
638
639
640 /*
641 *-----------------------------------------------------------------------------
642 *
643 * ViewAutoDrawerClassInit --
644 *
645 * Initialize the ViewAutoDrawerClass.
646 *
647 * Results:
648 * None
649 *
650 * Side effects:
651 * None
652 *
653 *-----------------------------------------------------------------------------
654 */
655
656 static void
657 ViewAutoDrawerClassInit(gpointer klass) // IN
658 {
659 GObjectClass *objectClass = G_OBJECT_CLASS(klass);
660 ViewOvBoxClass *ovBoxClass = VIEW_OV_BOX_CLASS(klass);
661
662 parentClass = g_type_class_peek_parent(klass);
663
664 objectClass->finalize = ViewAutoDrawerFinalize;
665
666 ovBoxClass->set_over = ViewAutoDrawerSetOver;
667
668 g_type_class_add_private(klass, sizeof(ViewAutoDrawerPrivate));
669 }
670
671
672 /*
673 *-----------------------------------------------------------------------------
674 *
675 * ViewAutoDrawer_GetType --
676 *
677 * Get the (memoized) GType of the ViewAutoDrawer GTK+ object.
678 *
679 * Results:
680 * The GType
681 *
682 * Side effects:
683 * None
684 *
685 *-----------------------------------------------------------------------------
686 */
687
688 GType
689 ViewAutoDrawer_GetType(void)
690 {
691 static GType type = 0;
692
693 if (type == 0) {
694 static const GTypeInfo info = {
695 sizeof (ViewAutoDrawerClass),
696 NULL, /* BaseInit */
697 NULL, /* BaseFinalize */
698 (GClassInitFunc)ViewAutoDrawerClassInit,
699 NULL,
700 NULL, /* Class Data */
701 sizeof (ViewAutoDrawer),
702 0, /* n_preallocs */
703 (GInstanceInitFunc)ViewAutoDrawerInit,
704 NULL,
705 };
706
707 type = g_type_register_static(VIEW_TYPE_DRAWER, "ViewAutoDrawer", &info, 0);
708 }
709
710 return type;
711 }
712
713
714 /*
715 *-----------------------------------------------------------------------------
716 *
717 * ViewAutoDrawer_New --
718 *
719 * Create a new ViewAutoDrawer GTK+ widget.
720 *
721 * Results:
722 * The widget
723 *
724 * Side effects:
725 * None
726 *
727 *-----------------------------------------------------------------------------
728 */
729
730 GtkWidget *
731 ViewAutoDrawer_New(void)
732 {
733 return GTK_WIDGET(g_object_new(VIEW_TYPE_AUTODRAWER, NULL));
734 }
735
736
737 /*
738 *-----------------------------------------------------------------------------
739 *
740 * ViewAutoDrawer_SetSlideDelay --
741 *
742 * Set the response time of an AutoDrawer in ms., i.e. the time that
743 * elapses between:
744 * - when the AutoDrawer notices a change that can impact the outcome of
745 * the decision to open or close the drawer,
746 * and
747 * - when the AutoDrawer makes such decision.
748 *
749 * Users move the mouse inaccurately. If they temporarily move the mouse in
750 * or out of the AutoDrawer for less than the reponse time, their move will
751 * be ignored.
752 *
753 * Results:
754 * None
755 *
756 * Side effects:
757 * None
758 *
759 *-----------------------------------------------------------------------------
760 */
761
762 void
763 ViewAutoDrawer_SetSlideDelay(ViewAutoDrawer *that, // IN
764 guint delay) // IN
765 {
766 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
767
768 that->priv->delayValue = delay;
769 }
770
771
772 /*
773 *-----------------------------------------------------------------------------
774 *
775 * ViewAutoDrawer_SetOverlapPixels --
776 *
777 * Set the number of pixels that the over widget overlaps the under widget
778 * when not open.
779 *
780 * Results:
781 * None
782 *
783 * Side effects:
784 * Drawer state is updated.
785 *
786 *-----------------------------------------------------------------------------
787 */
788
789 void
790 ViewAutoDrawer_SetOverlapPixels(ViewAutoDrawer *that, // IN
791 guint overlapPixels) // IN
792 {
793 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
794
795 that->priv->overlapPixels = overlapPixels;
796
797 /* This change happens programmatically. Always react to it immediately. */
798 ViewAutoDrawerUpdate(that, TRUE);
799 }
800
801
802 /*
803 *-----------------------------------------------------------------------------
804 *
805 * ViewAutoDrawer_SetNoOverlapPixels --
806 *
807 * Set the number of pixels that the drawer reserves when not open. The
808 * over widget does not overlap the under widget over these pixels.
809 *
810 * Results:
811 * None
812 *
813 * Side effects:
814 * Drawer state is updated.
815 *
816 *-----------------------------------------------------------------------------
817 */
818
819 void
820 ViewAutoDrawer_SetNoOverlapPixels(ViewAutoDrawer *that, // IN
821 guint noOverlapPixels) // IN
822 {
823 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
824
825 that->priv->noOverlapPixels = noOverlapPixels;
826
827 /* This change happens programmatically. Always react to it immediately. */
828 ViewAutoDrawerUpdate(that, TRUE);
829 }
830
831
832 /*
833 *-----------------------------------------------------------------------------
834 *
835 * ViewAutoDrawer_SetActive --
836 *
837 * Set whether the AutoDrawer is active or not. That is to say, whether
838 * it is acting as a drawer or not. When inactive, the over and under
839 * widget do not overlap and the net result is very much like a vbox.
840 *
841 * Results:
842 * None
843 *
844 * Side effects:
845 * Drawer state is updated.
846 *
847 *-----------------------------------------------------------------------------
848 */
849
850 void
851 ViewAutoDrawer_SetActive(ViewAutoDrawer *that, // IN
852 gboolean active) // IN
853 {
854 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
855
856 that->priv->active = active;
857
858 /* This change happens programmatically. Always react to it immediately. */
859 ViewAutoDrawerUpdate(that, TRUE);
860 }
861
862
863 /*
864 *-----------------------------------------------------------------------------
865 *
866 * ViewAutoDrawer_SetPinned --
867 *
868 * Set whether the AutoDrawer is pinned or not. When pinned, the
869 * AutoDrawer will stay open regardless of the state of any other inputs.
870 *
871 * Results:
872 * None
873 *
874 * Side effects:
875 * Drawer state is updated.
876 *
877 *-----------------------------------------------------------------------------
878 */
879
880 void
881 ViewAutoDrawer_SetPinned(ViewAutoDrawer *that, // IN
882 gboolean pinned) // IN
883 {
884 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
885
886 that->priv->pinned = pinned;
887
888 /*
889 * This change happens in response to user input. By default, give the user
890 * some time to correct his input before reacting to the change.
891 */
892 ViewAutoDrawerUpdate(that, FALSE);
893 }
894
895
896 /*
897 *-----------------------------------------------------------------------------
898 *
899 * ViewAutoDrawer_SetFill --
900 *
901 * Set whether the Over widget of the AutoDrawer should fill the full
902 * width of the AutoDrawer or just occupy the minimum space it needs.
903 * A value of TRUE overrides offset settings.
904 *
905 * Results:
906 * None
907 *
908 * Side effects:
909 * Drawer state is updated.
910 *
911 *-----------------------------------------------------------------------------
912 */
913
914 void
915 ViewAutoDrawer_SetFill(ViewAutoDrawer *that, // IN
916 gboolean fill) // IN
917 {
918 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
919
920 that->priv->fill = fill;
921 ViewAutoDrawerRefreshPacking(that);
922 }
923
924
925 /*
926 *-----------------------------------------------------------------------------
927 *
928 * ViewAutoDrawer_SetOffset --
929 *
930 * Set the drawer's X offset, or distance in pixels from the left side.
931 * If offset is -1, the drawer will be centered. If fill has been set
932 * TRUE by SetFill, these settings will have no effect.
933 *
934 * Results:
935 * None
936 *
937 * Side effects:
938 * Drawer state is updated.
939 *
940 *-----------------------------------------------------------------------------
941 */
942
943 void
944 ViewAutoDrawer_SetOffset(ViewAutoDrawer *that, // IN
945 gint offset) // IN
946 {
947 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
948
949 that->priv->offset = offset;
950 ViewAutoDrawerRefreshPacking(that);
951 }
952
953
954 /*
955 *-----------------------------------------------------------------------------
956 *
957 * ViewAutoDrawer_Close --
958 *
959 * Closes the drawer. This will not unset the pinned state.
960 *
961 * Results:
962 * None
963 *
964 * Side effects:
965 * Drawer state is updated. If there is a focused widget inside the
966 * drawer, unfocus it.
967 *
968 *-----------------------------------------------------------------------------
969 */
970
971 void
972 ViewAutoDrawer_Close(ViewAutoDrawer *that) // IN
973 {
974 GtkWindow *window;
975 GtkWidget *focus;
976 GtkWidget *toplevel;
977
978 g_return_if_fail(VIEW_IS_AUTODRAWER(that));
979 toplevel = gtk_widget_get_toplevel(GTK_WIDGET(that));
980
981 if (!toplevel || !gtk_widget_is_toplevel(toplevel)) {
982 // The autoDrawer cannot function properly without a toplevel.
983 return;
984 }
985 window = GTK_WINDOW(toplevel);
986
987 focus = gtk_window_get_focus(window);
988 if (focus && gtk_widget_is_ancestor(focus, that->priv->evBox)) {
989 gtk_window_set_focus(window, NULL);
990 }
991
992 that->priv->forceClosing = TRUE;
993 that->priv->closeConnection =
994 g_timeout_add(ViewDrawer_GetCloseTime(&that->parent) +
995 that->priv->delayValue,
996 (GSourceFunc)ViewAutoDrawerOnCloseDelay, that);
997
998 /* This change happens programmatically. Always react to it immediately. */
999 ViewAutoDrawerUpdate(that, TRUE);
1000 }
+0
-91
src/view/autoDrawer.h less more
0 /* *************************************************************************
1 * Copyright (c) 2005 VMware Inc.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * *************************************************************************/
22
23 /*
24 * autoDrawer.h --
25 *
26 * Declarations for the ViewAutoDrawer GTK+ widget.
27 */
28
29
30 #ifndef LIBVIEW_AUTODRAWER_H
31 #define LIBVIEW_AUTODRAWER_H
32
33
34 #include "drawer.h"
35
36
37 #define VIEW_TYPE_AUTODRAWER (ViewAutoDrawer_GetType())
38 #define VIEW_AUTODRAWER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), VIEW_TYPE_AUTODRAWER, ViewAutoDrawer))
39 #define VIEW_AUTODRAWER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), VIEW_TYPE_AUTODRAWER, ViewAutoDrawerClass))
40 #define VIEW_IS_AUTODRAWER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), VIEW_TYPE_AUTODRAWER))
41 #define VIEW_IS_AUTODRAWER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), VIEW_TYPE_AUTODRAWER))
42 #define VIEW_AUTODRAWER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), VIEW_TYPE_AUTODRAWER, ViewAutoDrawerClass))
43
44 typedef struct _ViewAutoDrawerPrivate ViewAutoDrawerPrivate;
45
46 typedef struct _ViewAutoDrawer {
47 /* Must come first. */
48 ViewDrawer parent;
49
50 /* Private. */
51 ViewAutoDrawerPrivate *priv;
52 } ViewAutoDrawer;
53
54 typedef struct _ViewAutoDrawerClass {
55 /* Must come first. */
56 ViewDrawerClass parent;
57
58 /* Padding for future expansion */
59 void (*_view_reserved0)(void);
60 void (*_view_reserved1)(void);
61 void (*_view_reserved2)(void);
62 void (*_view_reserved3)(void);
63 } ViewAutoDrawerClass;
64
65
66 G_BEGIN_DECLS
67
68
69 GType ViewAutoDrawer_GetType(void);
70
71 GtkWidget *ViewAutoDrawer_New(void);
72
73 void ViewAutoDrawer_SetSlideDelay(ViewAutoDrawer *that, guint delay);
74 void ViewAutoDrawer_SetOverlapPixels(ViewAutoDrawer *that, guint overlapPixels);
75 void ViewAutoDrawer_SetNoOverlapPixels(ViewAutoDrawer *that, guint noOverlapPixels);
76
77 void ViewAutoDrawer_SetActive(ViewAutoDrawer *that, gboolean active);
78
79 void ViewAutoDrawer_SetPinned(ViewAutoDrawer *that, gboolean pinned);
80
81 void ViewAutoDrawer_SetFill(ViewAutoDrawer *that, gboolean fill);
82
83 void ViewAutoDrawer_SetOffset(ViewAutoDrawer *that, gint offset);
84
85 void ViewAutoDrawer_Close(ViewAutoDrawer *that);
86
87 G_END_DECLS
88
89
90 #endif /* LIBVIEW_AUTODRAWER_H */
+0
-366
src/view/drawer.c less more
0 /* *************************************************************************
1 * Copyright (c) 2005 VMware, Inc.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * *************************************************************************/
22
23 /*
24 * drawer.c -
25 *
26 * Implementation of a GTK+ drawer, i.e. a widget that opens and closes by
27 * sliding smoothly, at constant speed, over another one.
28 */
29
30 #include <config.h>
31
32 #include "drawer.h"
33
34
35 struct _ViewDrawerPrivate
36 {
37 unsigned int period;
38 double step;
39 double goal;
40 struct {
41 gboolean pending;
42 guint id;
43 } timer;
44 };
45
46 #define VIEW_DRAWER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), VIEW_TYPE_DRAWER, ViewDrawerPrivate))
47
48 /* The unaltered parent class. */
49 static ViewOvBoxClass *parentClass;
50
51
52 /*
53 *-----------------------------------------------------------------------------
54 *
55 * ViewDrawerInit --
56 *
57 * Initialize a ViewDrawer.
58 *
59 * Results:
60 * None
61 *
62 * Side effects:
63 * None
64 *
65 *-----------------------------------------------------------------------------
66 */
67
68 static void
69 ViewDrawerInit(GTypeInstance *instance, // IN
70 gpointer klass G_GNUC_UNUSED) // Unused
71 {
72 ViewDrawer *that;
73
74 that = VIEW_DRAWER(instance);
75 that->priv = VIEW_DRAWER_GET_PRIVATE(that);
76
77 that->priv->period = 10;
78 that->priv->step = 0.2;
79 that->priv->timer.pending = FALSE;
80 }
81
82
83 /*
84 *-----------------------------------------------------------------------------
85 *
86 * ViewDrawerFinalize --
87 *
88 * "finalize" method of a ViewOvBox.
89 *
90 * Results:
91 * None
92 *
93 * Side effects:
94 * None
95 *
96 *-----------------------------------------------------------------------------
97 */
98
99 static void
100 ViewDrawerFinalize(GObject *object) // IN
101 {
102 ViewDrawer *that;
103 ViewDrawerPrivate *priv;
104
105 that = VIEW_DRAWER(object);
106 priv = that->priv;
107
108 if (priv->timer.pending) {
109 g_source_remove(priv->timer.id);
110 priv->timer.pending = FALSE;
111 }
112
113 G_OBJECT_CLASS(parentClass)->finalize(object);
114 }
115
116
117 /*
118 *-----------------------------------------------------------------------------
119 *
120 * ViewDrawerClassInit --
121 *
122 * Initialize the ViewDrawerClass.
123 *
124 * Results:
125 * None
126 *
127 * Side effects:
128 * None
129 *
130 *-----------------------------------------------------------------------------
131 */
132
133 static void
134 ViewDrawerClassInit(gpointer klass) // IN
135 {
136 GObjectClass *objectClass = G_OBJECT_CLASS(klass);
137
138 parentClass = g_type_class_peek_parent(klass);
139
140 objectClass->finalize = ViewDrawerFinalize;
141
142 g_type_class_add_private(klass, sizeof(ViewDrawerPrivate));
143 }
144
145
146 /*
147 *-----------------------------------------------------------------------------
148 *
149 * ViewDrawer_GetType --
150 *
151 * Get the (memoized) GType of the ViewDrawer GTK+ object.
152 *
153 * Results:
154 * The GType
155 *
156 * Side effects:
157 * None
158 *
159 *-----------------------------------------------------------------------------
160 */
161
162 GType
163 ViewDrawer_GetType(void)
164 {
165 static GType type = 0;
166
167 if (type == 0) {
168 static const GTypeInfo info = {
169 sizeof (ViewDrawerClass),
170 NULL, /* BaseInit */
171 NULL, /* BaseFinalize */
172 (GClassInitFunc)ViewDrawerClassInit,
173 NULL,
174 NULL, /* Class Data */
175 sizeof (ViewDrawer),
176 0, /* n_preallocs */
177 (GInstanceInitFunc)ViewDrawerInit,
178 NULL
179 };
180
181 type = g_type_register_static(VIEW_TYPE_OV_BOX, "ViewDrawer", &info, 0);
182 }
183
184 return type;
185 }
186
187
188 /*
189 *-----------------------------------------------------------------------------
190 *
191 * ViewDrawer_New --
192 *
193 * Create a new ViewDrawer GTK+ widget.
194 *
195 * Results:
196 * The widget
197 *
198 * Side effects:
199 * None
200 *
201 *-----------------------------------------------------------------------------
202 */
203
204 GtkWidget *
205 ViewDrawer_New(void)
206 {
207 ViewDrawer *that;
208
209 that = VIEW_DRAWER(g_object_new(VIEW_TYPE_DRAWER, NULL));
210
211 return GTK_WIDGET(that);
212 }
213
214
215 /*
216 *-----------------------------------------------------------------------------
217 *
218 * ViewDrawerOnTimer --
219 *
220 * Timer callback of a ViewDrawer. If we have reached the goal, deschedule
221 * the timer. Otherwise make progress towards the goal, and keep the timer
222 * scheduled.
223 *
224 * Results:
225 * TRUE if the timer must be rescheduled.
226 * FALSE if the timer must not be rescheduled.
227 *
228 * Side effects:
229 * None
230 *
231 *-----------------------------------------------------------------------------
232 */
233
234 static gint
235 ViewDrawerOnTimer(gpointer data) // IN
236 {
237 ViewDrawer *that;
238 ViewDrawerPrivate *priv;
239 double fraction;
240
241 that = VIEW_DRAWER(data);
242 priv = that->priv;
243
244 fraction = ViewOvBox_GetFraction(VIEW_OV_BOX(that));
245 /*
246 * Comparing double values with '==' is most of the time a bad idea, due to
247 * the inexact representation of values in binary (see
248 * http://www2.hursley.ibm.com/decimal/decifaq1.html and http://boost.org/libs/test/doc/components/test_tools/floating_point_comparison.html).
249 * But in this particular case it is legitimate. --hpreg
250 */
251 if (priv->goal == fraction) {
252 return priv->timer.pending = FALSE;
253 }
254
255 ViewOvBox_SetFraction(VIEW_OV_BOX(that),
256 priv->goal > fraction
257 ? MIN(fraction + priv->step, priv->goal)
258 : MAX(fraction - priv->step, priv->goal));
259 return TRUE;
260 }
261
262
263 /*
264 *-----------------------------------------------------------------------------
265 *
266 * ViewDrawer_SetSpeed --
267 *
268 * Set the 'period' (in ms.) and 'step' properties of a ViewDrawer, which
269 * determine the speed and smoothness of the drawer's motion.
270 *
271 * Results:
272 * None
273 *
274 * Side effects:
275 * None
276 *
277 *-----------------------------------------------------------------------------
278 */
279
280 void
281 ViewDrawer_SetSpeed(ViewDrawer *that, // IN
282 unsigned int period, // IN
283 double step) // IN
284 {
285 ViewDrawerPrivate *priv;
286
287 g_return_if_fail(that != NULL);
288
289 priv = that->priv;
290
291 priv->period = period;
292 if (priv->timer.pending) {
293 g_source_remove(priv->timer.id);
294 priv->timer.id = g_timeout_add(priv->period, ViewDrawerOnTimer, that);
295 }
296 priv->step = step;
297 }
298
299
300 /*
301 *-----------------------------------------------------------------------------
302 *
303 * ViewDrawer_SetGoal --
304 *
305 * Set the 'goal' property of a ViewDrawer, i.e. how much the drawer should
306 * be opened when it is done sliding.
307 *
308 * Results:
309 * None
310 *
311 * Side effects:
312 * None
313 *
314 *-----------------------------------------------------------------------------
315 */
316
317 void
318 ViewDrawer_SetGoal(ViewDrawer *that, // IN
319 double goal) // IN
320 {
321 ViewDrawerPrivate *priv;
322
323 g_return_if_fail(that != NULL);
324 g_return_if_fail(goal >= 0 && goal <= 1);
325
326 priv = that->priv;
327
328 priv->goal = goal;
329 if (priv->timer.pending == FALSE) {
330 priv->timer.id = g_timeout_add(priv->period, ViewDrawerOnTimer, that);
331 priv->timer.pending = TRUE;
332 }
333 }
334
335
336 /*
337 *-----------------------------------------------------------------------------
338 *
339 * ViewDrawer_GetCloseTime --
340 *
341 * Get the approximate amount of time it will take for this drawer to
342 * open and close, in ms.
343 *
344 * Results:
345 * The time it takes to open or close the drawer.
346 *
347 * Side effects:
348 * None
349 *
350 *-----------------------------------------------------------------------------
351 */
352
353 int
354 ViewDrawer_GetCloseTime(ViewDrawer *that)
355 {
356 ViewDrawerPrivate *priv;
357
358 if (that == NULL) {
359 return 0;
360 }
361
362 priv = that->priv;
363
364 return priv->period * ((int)(1/priv->step) + 1);
365 }
+0
-83
src/view/drawer.h less more
0 /* *************************************************************************
1 * Copyright (c) 2005 VMware, Inc.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * *************************************************************************/
22
23 /*
24 * drawer.h --
25 *
26 * Declarations for the ViewDrawer GTK+ widget.
27 */
28
29
30 #ifndef LIBVIEW_DRAWER_H
31 #define LIBVIEW_DRAWER_H
32
33
34 #include "ovBox.h"
35
36
37 #define VIEW_TYPE_DRAWER (ViewDrawer_GetType())
38 #define VIEW_DRAWER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), VIEW_TYPE_DRAWER, ViewDrawer))
39 #define VIEW_DRAWER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), VIEW_TYPE_DRAWER, ViewDrawerClass))
40 #define VIEW_IS_DRAWER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), VIEW_TYPE_DRAWER))
41 #define VIEW_IS_DRAWER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), VIEW_TYPE_DRAWER))
42 #define VIEW_DRAWER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), VIEW_TYPE_DRAWER, ViewDrawerClass))
43
44 typedef struct _ViewDrawerPrivate ViewDrawerPrivate;
45
46 typedef struct _ViewDrawer {
47 /* Must come first. */
48 ViewOvBox parent;
49
50 /* Private. */
51 ViewDrawerPrivate *priv;
52 } ViewDrawer;
53
54
55 typedef struct _ViewDrawerClass {
56 /* Must come first. */
57 ViewOvBoxClass parent;
58
59 /* Padding for future expansion */
60 void (*_view_reserved0)(void);
61 void (*_view_reserved1)(void);
62 void (*_view_reserved2)(void);
63 void (*_view_reserved3)(void);
64 } ViewDrawerClass;
65
66
67 G_BEGIN_DECLS
68
69
70 GType ViewDrawer_GetType(void);
71
72 GtkWidget *ViewDrawer_New(void);
73
74 void ViewDrawer_SetSpeed(ViewDrawer *that, unsigned int period, double step);
75 void ViewDrawer_SetGoal(ViewDrawer *that, double fraction);
76 int ViewDrawer_GetCloseTime(ViewDrawer *that);
77
78
79 G_END_DECLS
80
81
82 #endif /* LIBVIEW_DRAWER_H */
+0
-991
src/view/ovBox.c less more
0 /* *************************************************************************
1 * Copyright (c) 2005 VMware, Inc.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * *************************************************************************/
22
23 /*
24 * ovBox.c --
25 *
26 * Implementation of a GTK+ overlapping box. Allows you to display and
27 * quickly move a child that overlaps another child.
28 *
29 * Implementation notes
30 * --------------------
31 *
32 * Changing 'fraction' is fast (we just move the 'overWin' X window, which
33 * ultimately copies a rectangle on the X server side), and does not
34 * flicker (the 'under' and 'over' GTK children are not re-drawn, except
35 * for parts of them that become exposed).
36 *
37 * o Initially, we thought it could be done with only 2 X windows
38 *
39 * Layout Hierarchy
40 * ------ ---------
41 *
42 * /- overWin --\ underWin
43 * | | overWin
44 * /-+- underWin -+-\
45 * | | | |
46 * | \------------/ |
47 * | |
48 * \----------------/
49 *
50 * But the 'under' GTK child could create other X windows inside
51 * 'underWin', which makes it impossible to guarantee that 'overWin'
52 * will stay stacked on top.
53 *
54 * o So we are forced to use 3 X windows
55 *
56 * Layout Hierarchy
57 * ------ ---------
58 *
59 * /- overWin --\ window
60 * | | overWin
61 * /---+- window ---+---\ underWin
62 * | | | |
63 * | /-+- underWin -+-\ |
64 * | | | | | |
65 * | | \------------/ | |
66 * | | | |
67 * | \----------------/ |
68 * | |
69 * \--------------------/
70 *
71 * --hpreg
72 */
73
74 #include <config.h>
75
76 #include "ovBox.h"
77
78 #if ! GTK_CHECK_VERSION(3, 0, 0)
79 #define gtk_widget_set_realized(widget, val) \
80 GTK_WIDGET_SET_FLAGS(widget, GTK_REALIZED)
81 #define gtk_widget_get_realized(widget) \
82 GTK_WIDGET_REALIZED(widget)
83 #endif
84
85 struct _ViewOvBoxPrivate
86 {
87 GdkWindow *underWin;
88 GtkWidget *under;
89 GdkWindow *overWin;
90 GtkWidget *over;
91 GtkRequisition overR;
92 unsigned int min;
93 double fraction;
94 gint verticalOffset;
95 };
96
97 #define VIEW_OV_BOX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), VIEW_TYPE_OV_BOX, ViewOvBoxPrivate))
98
99 /* The unaltered parent class. */
100 static GtkBoxClass *parentClass;
101
102
103 /*
104 *-----------------------------------------------------------------------------
105 *
106 * ViewOvBoxInit --
107 *
108 * Initialize a ViewOvBox.
109 *
110 * Results:
111 * None
112 *
113 * Side effects:
114 * None
115 *
116 *-----------------------------------------------------------------------------
117 */
118
119 static void
120 ViewOvBoxInit(GTypeInstance *instance, // IN
121 gpointer klass G_GNUC_UNUSED) // Unused
122 {
123 ViewOvBox *that;
124 ViewOvBoxPrivate *priv;
125
126 that = VIEW_OV_BOX(instance);
127 that->priv = VIEW_OV_BOX_GET_PRIVATE(that);
128 priv = that->priv;
129
130 gtk_widget_set_has_window (GTK_WIDGET (that), TRUE);
131
132 priv->underWin = NULL;
133 priv->under = NULL;
134 priv->overWin = NULL;
135 priv->over = NULL;
136 priv->overR.height = -1;
137 priv->overR.width = -1;
138 priv->min = 0;
139 priv->fraction = 0;
140 priv->verticalOffset = 0;
141 }
142
143
144 /*
145 *-----------------------------------------------------------------------------
146 *
147 * ViewOvBoxMap --
148 *
149 * "map" method of a ViewOvBox.
150 *
151 * Results:
152 * None
153 *
154 * Side effects:
155 * None
156 *
157 *-----------------------------------------------------------------------------
158 */
159
160 static void
161 ViewOvBoxMap(GtkWidget *widget) // IN
162 {
163 gdk_window_show(gtk_widget_get_window (widget));
164 GTK_WIDGET_CLASS(parentClass)->map(widget);
165 }
166
167
168 /*
169 *-----------------------------------------------------------------------------
170 *
171 * ViewOvBoxUnmap --
172 *
173 * "unmap" method of a ViewOvBox.
174 *
175 * Results:
176 * None
177 *
178 * Side effects:
179 * None
180 *
181 *-----------------------------------------------------------------------------
182 */
183
184 static void
185 ViewOvBoxUnmap(GtkWidget *widget) // IN
186 {
187 gdk_window_hide(gtk_widget_get_window (widget));
188 GTK_WIDGET_CLASS(parentClass)->unmap(widget);
189 }
190
191
192 /*
193 *-----------------------------------------------------------------------------
194 *
195 * ViewOvBoxGetActualMin --
196 *
197 * Retrieve the actual 'min' value, i.e. a value that is guaranteed not to
198 * exceed the height of the 'over' child.
199 *
200 * Results:
201 * The actual 'min' value.
202 *
203 * Side effects:
204 * None
205 *
206 *-----------------------------------------------------------------------------
207 */
208
209 static inline unsigned int
210 ViewOvBoxGetActualMin(ViewOvBox *that) // IN
211 {
212 return MIN(that->priv->min, that->priv->overR.height);
213 }
214
215
216 /*
217 *-----------------------------------------------------------------------------
218 *
219 * ViewOvBoxGetUnderGeometry --
220 *
221 * Retrieve the geometry to apply to 'that->underWin'.
222 *
223 * Results:
224 * The geometry
225 *
226 * Side effects:
227 * None
228 *
229 *-----------------------------------------------------------------------------
230 */
231
232 static void
233 ViewOvBoxGetUnderGeometry(ViewOvBox *that, // IN
234 int *x, // OUT
235 int *y, // OUT
236 int *width, // OUT
237 int *height) // OUT
238 {
239 unsigned int min;
240 GtkAllocation allocation;
241
242 min = ViewOvBoxGetActualMin(that);
243 gtk_widget_get_allocation (GTK_WIDGET(that), &allocation);
244
245 *x = 0;
246 *y = min;
247 *width = allocation.width;
248 *height = allocation.height - min;
249 }
250
251
252 /*
253 *-----------------------------------------------------------------------------
254 *
255 * ViewOvBoxGetOverGeometry --
256 *
257 * Retrieve the geometry to apply to 'that->overWin'.
258 *
259 * Results:
260 * The geometry
261 *
262 * Side effects:
263 * None
264 *
265 *-----------------------------------------------------------------------------
266 */
267
268 static void
269 ViewOvBoxGetOverGeometry(ViewOvBox *that, // IN
270 int *x, // OUT
271 int *y, // OUT
272 int *width, // OUT
273 int *height) // OUT
274 {
275 ViewOvBoxPrivate *priv;
276 gboolean expand;
277 gboolean fill;
278 guint padding;
279 unsigned int boxWidth;
280 GtkAllocation allocation;
281
282 priv = that->priv;
283
284 if (priv->over) {
285 /*
286 * When a child's expand or fill property changes, GtkBox queues
287 * a resize for the child.
288 */
289 gtk_container_child_get(GTK_CONTAINER(that), priv->over,
290 "expand", &expand,
291 "fill", &fill,
292 "padding", &padding,
293 NULL);
294 } else {
295 /* Default values used by GtkBox. */
296 expand = TRUE;
297 fill = TRUE;
298 padding = 0;
299 }
300
301 gtk_widget_get_allocation(GTK_WIDGET(that), &allocation);
302 boxWidth = allocation.width;
303 if (!expand) {
304 *width = MIN(priv->overR.width, boxWidth - padding);
305 *x = padding;
306 } else if (!fill) {
307 *width = MIN(priv->overR.width, boxWidth);
308 *x = (boxWidth - *width) / 2;
309 } else {
310 *width = boxWidth;
311 *x = 0;
312 }
313
314 *y = (priv->overR.height - ViewOvBoxGetActualMin(that))
315 * (priv->fraction - 1) + priv->verticalOffset;
316 *height = priv->overR.height;
317 }
318
319
320 /*
321 *-----------------------------------------------------------------------------
322 *
323 * ViewOvBoxSetBackground --
324 *
325 * Set the background color of the 'underWin' and 'overWin' X windows.
326 *
327 * Results:
328 * None
329 *
330 * Side effects:
331 * None
332 *
333 *-----------------------------------------------------------------------------
334 */
335
336 static void
337 ViewOvBoxSetBackground(ViewOvBox *that) // IN
338 {
339 GtkWidget *widget = GTK_WIDGET(that);
340
341 #if GTK_CHECK_VERSION(3, 0, 0)
342 GtkStyleContext *stylecontext;
343
344 stylecontext = gtk_widget_get_style_context(widget);
345 gtk_style_context_set_background(stylecontext, gtk_widget_get_window(widget));
346 gtk_style_context_set_background(stylecontext, that->priv->underWin);
347 gtk_style_context_set_background(stylecontext, that->priv->overWin);
348 #else
349 GtkStyle *style;
350
351 style = gtk_widget_get_style (widget);
352 gtk_style_set_background(style, gtk_widget_get_window(widget), GTK_STATE_NORMAL);
353 gtk_style_set_background(style, that->priv->underWin, GTK_STATE_NORMAL);
354 gtk_style_set_background(style, that->priv->overWin, GTK_STATE_NORMAL);
355 #endif
356 }
357
358
359 /*
360 *-----------------------------------------------------------------------------
361 *
362 * ViewOvBoxRealize --
363 *
364 * "realize" method of a ViewOvBox.
365 *
366 * Results:
367 * None
368 *
369 * Side effects:
370 * None
371 *
372 *-----------------------------------------------------------------------------
373 */
374
375 static void
376 ViewOvBoxRealize(GtkWidget *widget) // IN
377 {
378 ViewOvBox *that;
379 ViewOvBoxPrivate *priv;
380 GdkWindowAttr attributes;
381 gint mask;
382 GtkAllocation allocation;
383 GdkWindow *window;
384
385 gtk_widget_set_realized (widget, TRUE);
386
387 that = VIEW_OV_BOX(widget);
388 priv = that->priv;
389
390 attributes.window_type = GDK_WINDOW_CHILD;
391 attributes.wclass = GDK_INPUT_OUTPUT;
392 attributes.visual = gtk_widget_get_visual(widget);
393 attributes.event_mask = gtk_widget_get_events(widget) | GDK_EXPOSURE_MASK;
394 mask = GDK_WA_VISUAL | GDK_WA_X | GDK_WA_Y;
395
396 gtk_widget_get_allocation(widget, &allocation);
397 attributes.x = allocation.x;
398 attributes.y = allocation.y;
399 attributes.width = allocation.width;
400 attributes.height = allocation.height;
401 window = gdk_window_new(gtk_widget_get_parent_window(widget),
402 &attributes, mask);
403 gtk_widget_set_window(widget, window);
404 gdk_window_set_user_data(window, that);
405 #if !GTK_CHECK_VERSION(3, 0, 0)
406 gtk_widget_set_style(widget, gtk_style_attach(gtk_widget_get_style(widget), window));
407 #endif
408
409 /*
410 * The order in which we create the children X window matters: the child
411 * created last is stacked on top. --hpreg
412 */
413
414 ViewOvBoxGetUnderGeometry(that, &attributes.x, &attributes.y,
415 &attributes.width, &attributes.height);
416 priv->underWin = gdk_window_new(window, &attributes, mask);
417 gdk_window_set_user_data(priv->underWin, that);
418 if (priv->under) {
419 gtk_widget_set_parent_window(priv->under, priv->underWin);
420 }
421 gdk_window_show(priv->underWin);
422
423 ViewOvBoxGetOverGeometry(that, &attributes.x, &attributes.y,
424 &attributes.width, &attributes.height);
425 priv->overWin = gdk_window_new(window, &attributes, mask);
426 gdk_window_set_user_data(priv->overWin, that);
427 if (priv->over) {
428 gtk_widget_set_parent_window(priv->over, priv->overWin);
429 }
430 gdk_window_show(priv->overWin);
431
432 ViewOvBoxSetBackground(that);
433 }
434
435
436 /*
437 *-----------------------------------------------------------------------------
438 *
439 * ViewOvBoxUnrealize --
440 *
441 * "unrealize" method of a ViewOvBox.
442 *
443 * Results:
444 * None
445 *
446 * Side effects:
447 * None
448 *
449 *-----------------------------------------------------------------------------
450 */
451
452 static void
453 ViewOvBoxUnrealize(GtkWidget *widget) // IN
454 {
455 ViewOvBox *that;
456 ViewOvBoxPrivate *priv;
457
458 that = VIEW_OV_BOX(widget);
459 priv = that->priv;
460
461 /*
462 * Unrealize the parent before destroying the windows so that we end up
463 * unrealizing all the child widgets before destroying the child windows,
464 * giving them a chance to reparent their windows before we clobber them.
465 */
466 GTK_WIDGET_CLASS(parentClass)->unrealize(widget);
467
468
469 gdk_window_set_user_data(priv->underWin, NULL);
470 gdk_window_destroy(priv->underWin);
471 priv->underWin = NULL;
472
473 gdk_window_set_user_data(priv->overWin, NULL);
474 gdk_window_destroy(priv->overWin);
475 priv->overWin = NULL;
476
477 }
478
479
480 /*
481 *-----------------------------------------------------------------------------
482 *
483 * ViewOvBoxRealSizeRequest --
484 *
485 * "size_request" method, generalized to work with both gtk-2 and 3.
486 *
487 * Results:
488 * None
489 *
490 * Side effects:
491 * None
492 *
493 *-----------------------------------------------------------------------------
494 */
495 static void
496 ViewOvBoxRealSizeRequest(GtkWidget *widget, // IN
497 GtkRequisition *min_in, GtkRequisition *nat_in, // IN
498 GtkRequisition *min_out, GtkRequisition *nat_out) // OUT
499 {
500 ViewOvBox *that;
501 ViewOvBoxPrivate *priv;
502 gboolean expand;
503 gboolean fill;
504 guint padding;
505 unsigned int min;
506
507 that = VIEW_OV_BOX(widget);
508 priv = that->priv;
509
510 #if GTK_CHECK_VERSION(3, 0, 0)
511 gtk_widget_get_preferred_size(priv->over, NULL, &priv->overR);
512 #else
513 gtk_widget_size_request(priv->over, &priv->overR);
514 #endif
515
516 gtk_container_child_get(GTK_CONTAINER(that), priv->over,
517 "expand", &expand,
518 "fill", &fill,
519 "padding", &padding,
520 NULL);
521
522 min = ViewOvBoxGetActualMin(that);
523
524 if (min_out) {
525 min_out->width = MAX(min_in->width, priv->overR.width +
526 ((expand || fill) ? 0 : padding));
527 min_out->height = MAX(min_in->height + min, priv->overR.height);
528 }
529 if (nat_out) {
530 nat_out->width = MAX(nat_in->width, priv->overR.width +
531 ((expand || fill) ? 0 : padding));
532 nat_out->height = MAX(nat_in->height + min, priv->overR.height);
533 }
534 }
535
536 #if GTK_CHECK_VERSION(3, 0, 0)
537 static void
538 ViewOvBox_get_preferred_width (GtkWidget *widget,
539 gint *minimal_width,
540 gint *natural_width)
541 {
542 ViewOvBoxPrivate *priv = VIEW_OV_BOX(widget)->priv;
543 GtkRequisition min_in, nat_in, min_out, nat_out;
544
545 gtk_widget_get_preferred_size(priv->under, &min_in, &nat_in);
546
547 ViewOvBoxRealSizeRequest(widget, &min_in, &nat_in, &min_out, &nat_out);
548
549 *minimal_width = min_out.width;
550 *natural_width = nat_out.width;
551 }
552
553 static void
554 ViewOvBox_get_preferred_height (GtkWidget *widget,
555 gint *minimal_height,
556 gint *natural_height)
557 {
558 ViewOvBoxPrivate *priv = VIEW_OV_BOX(widget)->priv;
559 GtkRequisition min_in, nat_in, min_out, nat_out;
560
561 gtk_widget_get_preferred_size(priv->under, &min_in, &nat_in);
562
563 ViewOvBoxRealSizeRequest(widget, &min_in, &nat_in, &min_out, &nat_out);
564
565 *minimal_height = min_out.height;
566 *natural_height = nat_out.height;
567 }
568
569 #else
570
571 static void
572 ViewOvBoxSizeRequest(GtkWidget *widget, // IN
573 GtkRequisition *requisition) // OUT
574 {
575 ViewOvBoxPrivate *priv = VIEW_OV_BOX(widget)->priv;
576 GtkRequisition min;
577
578 gtk_widget_size_request(priv->under, &min);
579
580 ViewOvBoxRealSizeRequest(widget, &min, NULL, requisition, NULL);
581 }
582 #endif
583
584
585 /*
586 *-----------------------------------------------------------------------------
587 *
588 * ViewOvBoxSizeAllocate --
589 *
590 * "size_allocate" method of a ViewOvBox.
591 *
592 * Results:
593 * None
594 *
595 * Side effects:
596 * None
597 *
598 *-----------------------------------------------------------------------------
599 */
600
601 static void
602 ViewOvBoxSizeAllocate(GtkWidget *widget, // IN
603 GtkAllocation *allocation) // IN
604 {
605 ViewOvBox *that;
606 ViewOvBoxPrivate *priv;
607 GtkAllocation under;
608 GtkAllocation over;
609
610 gtk_widget_set_allocation (widget, allocation);
611
612 that = VIEW_OV_BOX(widget);
613 priv = that->priv;
614
615 ViewOvBoxGetUnderGeometry(that, &under.x, &under.y, &under.width,
616 &under.height);
617 ViewOvBoxGetOverGeometry(that, &over.x, &over.y, &over.width, &over.height);
618
619 if (gtk_widget_get_realized(widget)) {
620 gdk_window_move_resize(gtk_widget_get_window(widget),
621 allocation->x, allocation->y,
622 allocation->width, allocation->height);
623 gdk_window_move_resize(priv->underWin, under.x, under.y, under.width,
624 under.height);
625 gdk_window_move_resize(priv->overWin, over.x, over.y, over.width,
626 over.height);
627 }
628
629 under.x = 0;
630 under.y = 0;
631 gtk_widget_size_allocate(priv->under, &under);
632 over.x = 0;
633 over.y = 0;
634 gtk_widget_size_allocate(priv->over, &over);
635 }
636
637
638 /*
639 *-----------------------------------------------------------------------------
640 *
641 * ViewOvBoxStyleSet --
642 *
643 * "style_set" method of a ViewOvBox.
644 *
645 * Results:
646 * None
647 *
648 * Side effects:
649 * None
650 *
651 *-----------------------------------------------------------------------------
652 */
653
654 static void
655 ViewOvBoxStyleSet(GtkWidget *widget, // IN
656 GtkStyle *previousStyle) // IN: Unused
657 {
658 ViewOvBox *that;
659
660 that = VIEW_OV_BOX(widget);
661
662 if (gtk_widget_get_realized(widget)) {
663 ViewOvBoxSetBackground(that);
664 }
665
666 GTK_WIDGET_CLASS(parentClass)->style_set(widget, previousStyle);
667 }
668
669
670 /*
671 *-----------------------------------------------------------------------------
672 *
673 * ViewOvBoxSetChild --
674 *
675 * Set a child of a ViewOvBox.
676 *
677 * Results:
678 * None
679 *
680 * Side effects:
681 * None
682 *
683 *-----------------------------------------------------------------------------
684 */
685
686 static void
687 ViewOvBoxSetChild(ViewOvBox *that, // IN
688 GtkWidget **child, // IN
689 GdkWindow *childWin, // IN
690 GtkWidget *widget) // IN
691 {
692 GtkWidget *oldChild = *child;
693
694 if (oldChild) {
695 g_object_ref(oldChild);
696 gtk_container_remove(GTK_CONTAINER(that), oldChild);
697 }
698
699 *child = widget;
700 if (*child) {
701 gtk_widget_set_parent_window(widget, childWin);
702 gtk_container_add(GTK_CONTAINER(that), *child);
703 }
704
705 if (oldChild) {
706 g_object_unref(oldChild);
707 }
708 }
709
710
711 /*
712 *-----------------------------------------------------------------------------
713 *
714 * ViewOvBoxSetOver --
715 *
716 * Base implementation of ViewOvBox_SetOver.
717 *
718 * Results:
719 * None
720 *
721 * Side effects:
722 * None
723 *
724 *-----------------------------------------------------------------------------
725 */
726
727 static void
728 ViewOvBoxSetOver(ViewOvBox *that, // IN
729 GtkWidget *widget) // IN
730 {
731 ViewOvBoxSetChild(that, &that->priv->over, that->priv->overWin, widget);
732 }
733
734
735 /*
736 *-----------------------------------------------------------------------------
737 *
738 * ViewOvBoxClassInit --
739 *
740 * Initialize the ViewOvBoxClass.
741 *
742 * Results:
743 * None
744 *
745 * Side effects:
746 * None
747 *
748 *-----------------------------------------------------------------------------
749 */
750
751 static void
752 ViewOvBoxClassInit(ViewOvBoxClass *klass) // IN
753 {
754 GtkWidgetClass *widgetClass;
755
756 widgetClass = GTK_WIDGET_CLASS(klass);
757
758 widgetClass->map = ViewOvBoxMap;
759 widgetClass->unmap = ViewOvBoxUnmap;
760 widgetClass->realize = ViewOvBoxRealize;
761 widgetClass->unrealize = ViewOvBoxUnrealize;
762 #if GTK_CHECK_VERSION(3, 0, 0)
763 widgetClass->get_preferred_width = ViewOvBox_get_preferred_width;
764 widgetClass->get_preferred_height = ViewOvBox_get_preferred_height;
765 #else
766 widgetClass->size_request = ViewOvBoxSizeRequest;
767 #endif
768 widgetClass->size_allocate = ViewOvBoxSizeAllocate;
769 widgetClass->style_set = ViewOvBoxStyleSet;
770
771 klass->set_over = ViewOvBoxSetOver;
772
773 parentClass = g_type_class_peek_parent(klass);
774
775 g_type_class_add_private(klass, sizeof(ViewOvBoxPrivate));
776 }
777
778
779 /*
780 *-----------------------------------------------------------------------------
781 *
782 * ViewOvBox_GetType --
783 *
784 * Get the (memoized) GType of the ViewOvBox GTK+ object.
785 *
786 * Results:
787 * The GType
788 *
789 * Side effects:
790 * None
791 *
792 *-----------------------------------------------------------------------------
793 */
794
795 GType
796 ViewOvBox_GetType(void)
797 {
798 static GType type = 0;
799
800 if (type == 0) {
801 static const GTypeInfo info = {
802 sizeof (ViewOvBoxClass),
803 NULL, /* BaseInit */
804 NULL, /* BaseFinalize */
805 (GClassInitFunc)ViewOvBoxClassInit,
806 NULL,
807 NULL, /* Class Data */
808 sizeof (ViewOvBox),
809 0, /* n_preallocs */
810 (GInstanceInitFunc)ViewOvBoxInit,
811 NULL,
812 };
813
814 type = g_type_register_static(GTK_TYPE_BOX, "ViewOvBox", &info, 0);
815 }
816
817 return type;
818 }
819
820
821 /*
822 *-----------------------------------------------------------------------------
823 *
824 * ViewOvBox_New --
825 *
826 * Create a new ViewOvBox GTK+ widget.
827 *
828 * Results:
829 * The widget
830 *
831 * Side effects:
832 * None
833 *
834 *-----------------------------------------------------------------------------
835 */
836
837 GtkWidget *
838 ViewOvBox_New(void)
839 {
840 ViewOvBox *that;
841
842 that = VIEW_OV_BOX(g_object_new(VIEW_TYPE_OV_BOX, NULL));
843
844 return GTK_WIDGET(that);
845 }
846
847
848 /*
849 *-----------------------------------------------------------------------------
850 *
851 * ViewOvBox_SetUnder --
852 *
853 * Set the under widget of a ViewOvBox.
854 *
855 * Results:
856 * None
857 *
858 * Side effects:
859 * None
860 *
861 *-----------------------------------------------------------------------------
862 */
863
864 void
865 ViewOvBox_SetUnder(ViewOvBox *that, // IN
866 GtkWidget *widget) // IN
867 {
868 g_return_if_fail(that != NULL);
869
870 ViewOvBoxSetChild(that, &that->priv->under, that->priv->underWin, widget);
871 }
872
873
874 /*
875 *-----------------------------------------------------------------------------
876 *
877 * ViewOvBox_SetOver --
878 *
879 * Set the over widget of a ViewOvBox.
880 *
881 * Results:
882 * None
883 *
884 * Side effects:
885 * None
886 *
887 *-----------------------------------------------------------------------------
888 */
889
890 void
891 ViewOvBox_SetOver(ViewOvBox *that, // IN
892 GtkWidget *widget) // IN
893 {
894 g_return_if_fail(that != NULL);
895
896 VIEW_OV_BOX_GET_CLASS(that)->set_over(that, widget);
897 }
898
899
900 /*
901 *-----------------------------------------------------------------------------
902 *
903 * ViewOvBox_SetMin --
904 *
905 * Set the 'min' property of a ViewOvBox, i.e. the number of pixel of the
906 * 'over' child that should always be displayed without overlapping on the
907 * 'under' child.
908 *
909 * Using a value of -1 displays the 'over' child entirely.
910 *
911 * Results:
912 * None
913 *
914 * Side effects:
915 * None
916 *
917 *-----------------------------------------------------------------------------
918 */
919
920 void
921 ViewOvBox_SetMin(ViewOvBox *that, // IN
922 unsigned int min) // IN
923 {
924 g_return_if_fail(that != NULL);
925
926 that->priv->min = min;
927 gtk_widget_queue_resize(GTK_WIDGET(that));
928 }
929
930
931 /*
932 *-----------------------------------------------------------------------------
933 *
934 * ViewOvBox_SetFraction --
935 *
936 * Set the 'fraction' property of a ViewOvBox, i.e. how much of the 'over'
937 * child should overlap on the 'under' child.
938 *
939 * Results:
940 * None
941 *
942 * Side effects:
943 * None
944 *
945 *-----------------------------------------------------------------------------
946 */
947
948 void
949 ViewOvBox_SetFraction(ViewOvBox *that, // IN
950 double fraction) // IN
951 {
952 g_return_if_fail(that != NULL);
953 g_return_if_fail(fraction >=0 && fraction <= 1);
954
955 that->priv->fraction = fraction;
956 if (gtk_widget_get_realized(GTK_WIDGET (that))) {
957 int x;
958 int y;
959 int width;
960 int height;
961
962 ViewOvBoxGetOverGeometry(that, &x, &y, &width, &height);
963 gdk_window_move(that->priv->overWin, x, y);
964 }
965 }
966
967
968 /*
969 *-----------------------------------------------------------------------------
970 *
971 * ViewOvBox_GetFraction --
972 *
973 * Retrieve the 'fraction' property of a ViewOvBox.
974 *
975 * Results:
976 * The value
977 *
978 * Side effects:
979 * None
980 *
981 *-----------------------------------------------------------------------------
982 */
983
984 double
985 ViewOvBox_GetFraction(ViewOvBox *that)
986 {
987 g_return_val_if_fail(that != NULL, 0);
988
989 return that->priv->fraction;
990 }
+0
-103
src/view/ovBox.h less more
0 /* *************************************************************************
1 * Copyright (c) 2005 VMware, Inc.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be
12 * included in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * *************************************************************************/
22
23 /*
24 * ovBox.h --
25 *
26 * Declarations for the ViewOvBox GTK+ widget.
27 */
28
29
30 #ifndef LIBVIEW_OVBOX_H
31 #define LIBVIEW_OVBOX_H
32
33
34 #include <gtk/gtk.h>
35
36
37 #define VIEW_TYPE_OV_BOX (ViewOvBox_GetType())
38 #define VIEW_OV_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), VIEW_TYPE_OV_BOX, ViewOvBox))
39 #define VIEW_OV_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), VIEW_TYPE_OV_BOX, ViewOvBoxClass))
40 #define VIEW_IS_OV_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), VIEW_TYPE_OV_BOX))
41 #define VIEW_IS_OV_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), VIEW_TYPE_OV_BOX))
42 #define VIEW_OV_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), VIEW_TYPE_OV_BOX, ViewOvBoxClass))
43
44 typedef struct _ViewOvBoxPrivate ViewOvBoxPrivate;
45
46 typedef struct _ViewOvBox {
47 /* Must come first. */
48 GtkBox parent;
49
50 /* Private. */
51 ViewOvBoxPrivate *priv;
52 } ViewOvBox;
53
54
55 typedef struct _ViewOvBoxClass {
56 /* Must come first. */
57 GtkBoxClass parent;
58
59 /* Virtual methods. */
60 void (* set_over)(ViewOvBox *ovBox, GtkWidget *widget);
61
62 /* Padding for future expansion */
63 void (*_view_reserved0)(void);
64 void (*_view_reserved1)(void);
65 void (*_view_reserved2)(void);
66 void (*_view_reserved3)(void);
67 } ViewOvBoxClass;
68
69
70 G_BEGIN_DECLS
71
72
73 GType
74 ViewOvBox_GetType(void);
75
76 GtkWidget *
77 ViewOvBox_New(void);
78
79 void
80 ViewOvBox_SetUnder(ViewOvBox *that,
81 GtkWidget *widget);
82
83 void
84 ViewOvBox_SetOver(ViewOvBox *that,
85 GtkWidget *widget);
86
87 void
88 ViewOvBox_SetMin(ViewOvBox *that,
89 unsigned int min);
90
91 void
92 ViewOvBox_SetFraction(ViewOvBox *that,
93 double fraction);
94
95 double
96 ViewOvBox_GetFraction(ViewOvBox *that);
97
98
99 G_END_DECLS
100
101
102 #endif /* LIBVIEW_OVBOX_H */
+0
-34
src/virt-glib-compat.c less more
0 /* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
1 /*
2 This library is free software; you can redistribute it and/or
3 modify it under the terms of the GNU Lesser General Public
4 License as published by the Free Software Foundation; either
5 version 2.1 of the License, or (at your option) any later version.
6
7 This library is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 Lesser General Public License for more details.
11
12 You should have received a copy of the GNU Lesser General Public
13 License along with this library; if not, see <http://www.gnu.org/licenses/>.
14 */
15 #include <config.h>
16
17 #include "virt-glib-compat.h"
18
19 #if !GLIB_CHECK_VERSION(2,32,0)
20 GByteArray *g_byte_array_new_take (guint8 *data, gsize len)
21 {
22 GByteArray *array;
23
24 array = g_byte_array_new ();
25 g_assert (array->data == NULL);
26 g_assert (array->len == 0);
27
28 array->data = data;
29 array->len = len;
30
31 return array;
32 }
33 #endif
+0
-83
src/virt-glib-compat.h less more
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (C) 2007-2009 Red Hat, Inc.
4 * Copyright (C) 2009-2012 Daniel P. Berrange
5 * Copyright (C) 2010 Marc-André Lureau
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Daniel P. Berrange <berrange@redhat.com>
22 */
23
24 #include <config.h>
25
26 #ifndef _VIRT_GLIB_COMPAT_H
27 # define _VIRT_GLIB_COMPAT_H 1
28
29 #include <glib-object.h>
30
31 G_BEGIN_DECLS
32
33 #ifndef g_clear_pointer
34 #define g_clear_pointer(pp, destroy) \
35 G_STMT_START { \
36 G_STATIC_ASSERT (sizeof *(pp) == sizeof (gpointer)); \
37 /* Only one access, please */ \
38 gpointer *_pp = (gpointer *) (pp); \
39 gpointer _p; \
40 /* This assignment is needed to avoid a gcc warning */ \
41 GDestroyNotify _destroy = (GDestroyNotify) (destroy); \
42 \
43 (void) (0 ? (gpointer) *(pp) : 0); \
44 do \
45 _p = g_atomic_pointer_get (_pp); \
46 while G_UNLIKELY (!g_atomic_pointer_compare_and_exchange (_pp, _p, NULL)); \
47 \
48 if (_p) \
49 _destroy (_p); \
50 } G_STMT_END
51 #endif
52
53 #if !GLIB_CHECK_VERSION(2,28,0)
54 #define g_clear_object(object_ptr) \
55 G_STMT_START { \
56 /* Only one access, please */ \
57 gpointer *_p = (gpointer) (object_ptr); \
58 gpointer _o; \
59 \
60 do \
61 _o = g_atomic_pointer_get (_p); \
62 while G_UNLIKELY (!g_atomic_pointer_compare_and_exchange (_p, _o, NULL));\
63 \
64 if (_o) \
65 g_object_unref (_o); \
66 } G_STMT_END
67 #endif
68
69 #if !GLIB_CHECK_VERSION(2,32,0)
70 GByteArray *g_byte_array_new_take (guint8 *data, gsize len);
71
72 #define G_SOURCE_CONTINUE TRUE
73 #define G_SOURCE_REMOVE FALSE
74 #endif
75
76 #if GLIB_CHECK_VERSION(2,31,0)
77 #define g_mutex_new() g_new0(GMutex, 1)
78 #endif
79
80 G_END_DECLS
81
82 #endif // _VIRT_GLIB_COMPAT_H
+0
-78
src/virt-gtk-compat.h less more
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (C) 2007-2012 Red Hat, Inc.
4 * Copyright (C) 2009-2012 Daniel P. Berrange
5 * Copyright (C) 2010 Marc-André Lureau
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Daniel P. Berrange <berrange@redhat.com>
22 */
23 #ifndef _VIRT_GTK_COMPAT
24 # define _VIRT_GTK_COMPAT
25
26 #include <gtk/gtk.h>
27 #include <gdk/gdk.h>
28
29 G_BEGIN_DECLS
30
31 #if !GTK_CHECK_VERSION(2, 20, 0)
32 #define gtk_widget_get_mapped(w) GTK_WIDGET_MAPPED(w)
33 #endif
34
35 #if GTK_CHECK_VERSION(3, 0, 0)
36 #define GDK_Shift_L GDK_KEY_Shift_L
37 #define GDK_VoidSymbol GDK_KEY_VoidSymbol
38 #define GDK_Control_L GDK_KEY_Control_L
39 #define GDK_Alt_L GDK_KEY_Alt_L
40 #define GDK_Delete GDK_KEY_Delete
41 #define GDK_End GDK_KEY_End
42 #define GDK_BackSpace GDK_KEY_BackSpace
43 #define GDK_Print GDK_KEY_Print
44 #define GDK_F1 GDK_KEY_F1
45 #define GDK_F2 GDK_KEY_F2
46 #define GDK_F3 GDK_KEY_F3
47 #define GDK_F4 GDK_KEY_F4
48 #define GDK_F5 GDK_KEY_F5
49 #define GDK_F6 GDK_KEY_F6
50 #define GDK_F7 GDK_KEY_F7
51 #define GDK_F8 GDK_KEY_F8
52 #define GDK_F9 GDK_KEY_F9
53 #define GDK_F10 GDK_KEY_F10
54 #define GDK_F11 GDK_KEY_F11
55 #define GDK_F12 GDK_KEY_F12
56 #define GDK_0 GDK_KEY_0
57 #define GDK_plus GDK_KEY_plus
58 #define GDK_minus GDK_KEY_minus
59 #endif
60
61 #if !GTK_CHECK_VERSION(3, 0, 0)
62 #define gtk_widget_get_realized(widget) \
63 GTK_WIDGET_REALIZED(widget)
64 #endif
65
66
67 G_END_DECLS
68
69 #endif /* _VIRT_GTK_COMPAT */
70
71 /*
72 * Local variables:
73 * c-indent-level: 4
74 * c-basic-offset: 4
75 * indent-tabs-mode: nil
76 * End:
77 */
+0
-67
src/virt-viewer-about.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.12 -->
3 <object class="GtkAboutDialog" id="about">
4 <property name="can_focus">False</property>
5 <property name="border_width">5</property>
6 <property name="title" translatable="yes">About Glade</property>
7 <property name="resizable">False</property>
8 <property name="modal">True</property>
9 <property name="window_position">center-on-parent</property>
10 <property name="destroy_with_parent">True</property>
11 <property name="type_hint">dialog</property>
12 <property name="skip_taskbar_hint">True</property>
13 <property name="skip_pager_hint">True</property>
14 <property name="program_name">Virtual Machine Viewer</property>
15 <property name="copyright" translatable="yes">Copyright (C) 2007-2012 Daniel P. Berrange
16 Copyright (C) 2007-2014 Red Hat, Inc.</property>
17 <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>
20 <property name="license" translatable="yes">This program is free software; you can redistribute it and/or modify
21 it under the terms of the GNU General Public License as published by
22 the Free Software Foundation; either version 2 of the License, or
23 (at your option) any later version.
24
25 This program is distributed in the hope that it will be useful,
26 but WITHOUT ANY WARRANTY; without even the implied warranty of
27 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 GNU General Public License for more details.
29
30 You should have received a copy of the GNU General Public License
31 along with this program; if not, write to the Free Software
32 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 </property>
34 <property name="authors">Daniel P. Berrange
35 Marc-André Lureau
36 </property>
37 <property name="translator_credits" translatable="yes">The Fedora Translation Team</property>
38 <property name="logo_icon_name">virt-viewer</property>
39 <signal name="delete-event" handler="virt_viewer_app_about_delete" swapped="no"/>
40 <signal name="response" handler="virt_viewer_app_about_close" swapped="no"/>
41 <child internal-child="vbox">
42 <object class="GtkBox" id="dialog-vbox1">
43 <property name="visible">True</property>
44 <property name="can_focus">False</property>
45 <property name="orientation">vertical</property>
46 <property name="spacing">2</property>
47 <child internal-child="action_area">
48 <object class="GtkButtonBox" id="dialog-action_area1">
49 <property name="visible">True</property>
50 <property name="can_focus">False</property>
51 <property name="layout_style">end</property>
52 </object>
53 <packing>
54 <property name="expand">False</property>
55 <property name="fill">True</property>
56 <property name="pack_type">end</property>
57 <property name="position">0</property>
58 </packing>
59 </child>
60 <child>
61 <placeholder/>
62 </child>
63 </object>
64 </child>
65 </object>
66 </interface>
3131 #include <string.h>
3232 #include <unistd.h>
3333 #include <locale.h>
34 #include <gio/gio.h>
3435 #include <glib/gprintf.h>
3536 #include <glib/gi18n.h>
36
37 #include <libxml/xpath.h>
38 #include <libxml/uri.h>
3937
4038 #ifdef HAVE_SYS_SOCKET_H
4139 #include <sys/socket.h>
4947 #include <windows.h>
5048 #endif
5149
52 #include "virt-gtk-compat.h"
5350 #include "virt-viewer-app.h"
51 #include "virt-viewer-resources.h"
5452 #include "virt-viewer-auth.h"
5553 #include "virt-viewer-window.h"
5654 #include "virt-viewer-session.h"
55 #include "virt-viewer-util.h"
5756 #ifdef HAVE_GTK_VNC
5857 #include "virt-viewer-session-vnc.h"
5958 #endif
102101 static void virt_viewer_app_set_fullscreen(VirtViewerApp *self, gboolean fullscreen);
103102 static void virt_viewer_app_update_menu_displays(VirtViewerApp *self);
104103 static void virt_viewer_update_smartcard_accels(VirtViewerApp *self);
104 static void virt_viewer_app_add_option_entries(VirtViewerApp *self, GOptionContext *context, GOptionGroup *group);
105105
106106
107107 struct _VirtViewerAppPrivate {
113113 gchar *clipboard;
114114 GtkWidget *preferences;
115115 GtkFileChooser *preferences_shared_folder;
116 GResource *resource;
116117 gboolean direct;
117118 gboolean verbose;
118119 gboolean enable_accel;
154155 };
155156
156157
157 G_DEFINE_ABSTRACT_TYPE(VirtViewerApp, virt_viewer_app, G_TYPE_OBJECT)
158 G_DEFINE_ABSTRACT_TYPE(VirtViewerApp, virt_viewer_app, GTK_TYPE_APPLICATION)
158159 #define GET_PRIVATE(o) \
159160 (G_TYPE_INSTANCE_GET_PRIVATE ((o), VIRT_VIEWER_TYPE_APP, VirtViewerAppPrivate))
160161
173174 PROP_UUID,
174175 };
175176
176 enum {
177 SIGNAL_WINDOW_ADDED,
178 SIGNAL_WINDOW_REMOVED,
179 SIGNAL_LAST,
180 };
181
182 static guint signals[SIGNAL_LAST];
183
184177 void
185178 virt_viewer_app_set_debug(gboolean debug)
186179 {
187 #if GLIB_CHECK_VERSION(2, 31, 0)
188180 if (debug) {
189181 const gchar *doms = g_getenv("G_MESSAGES_DEBUG");
190182 if (!doms) {
196188 g_free(newdoms);
197189 }
198190 }
199 #endif
200191 doDebug = debug;
201192 }
202193
258249 g_warning("failed to create config directory");
259250 g_free(dir);
260251
261 if (priv->uuid && priv->guest_name) {
252 if (priv->uuid && priv->guest_name && g_key_file_has_group(priv->config, priv->uuid)) {
262253 // if there's no comment for this uuid settings group, add a comment
263254 // with the vm name so user can make sense of it later.
264255 gchar *comment = g_key_file_get_comment(priv->config, priv->uuid, NULL, &error);
297288 }
298289 }
299290
300 gtk_main_quit();
291 g_application_quit(G_APPLICATION(self));
301292 }
302293
303294 static gint
370361 virt_viewer_window_enter_fullscreen(win, monitor);
371362 }
372363
373
374 static GHashTable*
375 virt_viewer_app_parse_monitor_mappings(gchar **mappings, gsize nmappings)
376 {
377 gint nmonitors = get_n_client_monitors();
378 GHashTable *displaymap = g_hash_table_new(g_direct_hash, g_direct_equal);
379 GHashTable *monitormap = g_hash_table_new(g_direct_hash, g_direct_equal);
380 int i = 0;
381 int max_display_id = 0;
382 gchar **tokens = NULL;
383
384 for (i = 0; i < nmappings; i++) {
385 gchar *endptr = NULL;
386 gint display = 0, monitor = 0;
387
388 tokens = g_strsplit(mappings[i], ":", 2);
389 if (g_strv_length(tokens) != 2) {
390 g_warning("Invalid monitor-mapping configuration: '%s'. "
391 "Expected format is '<DISPLAY-ID>:<MONITOR-ID>'",
392 mappings[i]);
393 g_strfreev(tokens);
394 goto configerror;
395 }
396
397 display = strtol(tokens[0], &endptr, 10);
398 if ((endptr && *endptr != '\0') || display < 1) {
399 g_warning("Invalid monitor-mapping configuration: display id is invalid: %s %p='%s'", tokens[0], endptr, endptr);
400 g_strfreev(tokens);
401 goto configerror;
402 }
403 monitor = strtol(tokens[1], &endptr, 10);
404 if ((endptr && *endptr != '\0') || monitor < 1) {
405 g_warning("Invalid monitor-mapping configuration: monitor id '%s' is invalid", tokens[1]);
406 g_strfreev(tokens);
407 goto configerror;
408 }
409 g_strfreev(tokens);
410
411 if (monitor > nmonitors)
412 g_warning("Initial monitor #%i for display #%i does not exist, skipping...", monitor, display);
413 else {
414 /* config file format is 1-based, not 0-based */
415 display--;
416 monitor--;
417
418 if (g_hash_table_lookup_extended(displaymap, GINT_TO_POINTER(display), NULL, NULL) ||
419 g_hash_table_lookup_extended(monitormap, GINT_TO_POINTER(monitor), NULL, NULL)) {
420 g_warning("Invalid monitor-mapping configuration: a display or monitor id was specified twice");
421 goto configerror;
422 }
423 g_debug("Fullscreen config: mapping guest display %i to monitor %i", display, monitor);
424 g_hash_table_insert(displaymap, GINT_TO_POINTER(display), GINT_TO_POINTER(monitor));
425 g_hash_table_insert(monitormap, GINT_TO_POINTER(monitor), GINT_TO_POINTER(display));
426 max_display_id = MAX(display, max_display_id);
427 }
428 }
429
430 for (i = 0; i < max_display_id; i++) {
431 if (!g_hash_table_lookup_extended(displaymap, GINT_TO_POINTER(i), NULL, NULL)) {
432 g_warning("Invalid monitor-mapping configuration: display #%d was not specified", i+1);
433 goto configerror;
434 }
435 }
436
437 g_hash_table_unref(monitormap);
438 return displaymap;
439
440 configerror:
441 g_hash_table_unref(monitormap);
442 g_hash_table_unref(displaymap);
443 return NULL;
444 }
445
446364 static GHashTable*
447365 virt_viewer_app_get_monitor_mapping_for_section(VirtViewerApp *self, const gchar *section)
448366 {
459377 g_warning("Error reading monitor assignments for %s: %s", section, error->message);
460378 g_clear_error(&error);
461379 } else {
462 mapping = virt_viewer_app_parse_monitor_mappings(mappings, nmappings);
380 mapping = virt_viewer_parse_monitor_mappings(mappings, nmappings, get_n_client_monitors());
463381 }
464382 g_strfreev(mappings);
465383
467385 }
468386
469387 static
470 void virt_viewer_app_set_uuid_string(VirtViewerApp *self, const gchar *uuid_string)
388 void virt_viewer_app_apply_monitor_mapping(VirtViewerApp *self)
471389 {
472390 GHashTable *mapping = NULL;
473391
474 g_debug("%s: UUID changed to %s", G_STRFUNC, uuid_string);
475
476 g_free(self->priv->uuid);
477 self->priv->uuid = g_strdup(uuid_string);
478 mapping = virt_viewer_app_get_monitor_mapping_for_section(self, uuid_string);
392 // apply mapping only in fullscreen
393 if (!virt_viewer_app_get_fullscreen(self))
394 return;
395
396 mapping = virt_viewer_app_get_monitor_mapping_for_section(self, self->priv->uuid);
479397 if (!mapping) {
480398 g_debug("No guest-specific fullscreen config, using fallback");
481399 mapping = virt_viewer_app_get_monitor_mapping_for_section(self, "fallback");
488406
489407 // if we're changing our initial display map, move any existing windows to
490408 // the appropriate monitors according to the per-vm configuration
491 if (mapping && self->priv->fullscreen) {
409 if (mapping) {
492410 GList *l;
493411 gint i = 0;
494412
497415 i++;
498416 }
499417 }
418 }
419
420 static
421 void virt_viewer_app_set_uuid_string(VirtViewerApp *self, const gchar *uuid_string)
422 {
423 if (g_strcmp0(self->priv->uuid, uuid_string) == 0)
424 return;
425
426 g_debug("%s: UUID changed to %s", G_STRFUNC, uuid_string);
427
428 g_free(self->priv->uuid);
429 self->priv->uuid = g_strdup(uuid_string);
430
431 virt_viewer_app_apply_monitor_mapping(self);
500432 }
501433
502434 void
595527 gpointer user_data G_GNUC_UNUSED)
596528 {
597529 VirtViewerApp* self = VIRT_VIEWER_APP(user_data);
598 if (self->priv->main_window != value)
530 VirtViewerAppPrivate *priv = self->priv;
531 gboolean connect_error = !priv->connected && !priv->cancelled;
532
533 if (connect_error || self->priv->main_window != value)
599534 virt_viewer_window_hide(VIRT_VIEWER_WINDOW(value));
600535 }
601536
902837 return FALSE;
903838 }
904839
840 static gboolean
841 virt_viewer_app_has_usbredir(VirtViewerApp *self)
842 {
843 return virt_viewer_app_has_session(self) &&
844 virt_viewer_session_get_has_usbredir(virt_viewer_app_get_session(self));
845 }
846
905847 static VirtViewerWindow*
906848 virt_viewer_app_window_new(VirtViewerApp *self, gint nth)
907849 {
920862 self->priv->windows = g_list_append(self->priv->windows, window);
921863 virt_viewer_app_set_window_subtitle(self, window, nth);
922864 virt_viewer_app_update_menu_displays(self);
923 if (self->priv->session) {
924 virt_viewer_window_set_usb_options_sensitive(window,
925 virt_viewer_session_get_has_usbredir(self->priv->session));
926 }
927
928 g_signal_emit(self, signals[SIGNAL_WINDOW_ADDED], 0, window);
865 virt_viewer_window_set_usb_options_sensitive(window, virt_viewer_app_has_usbredir(self));
866
867 w = virt_viewer_window_get_window(window);
868 g_object_set_data(G_OBJECT(w), "virt-viewer-window", window);
869 gtk_application_add_window(GTK_APPLICATION(self), w);
929870
930871 if (self->priv->fullscreen)
931872 app_window_try_fullscreen(self, window, nth);
932873
933 w = virt_viewer_window_get_window(window);
934874 g_signal_connect(w, "hide", G_CALLBACK(viewer_window_visible_cb), self);
935875 g_signal_connect(w, "show", G_CALLBACK(viewer_window_visible_cb), self);
936876 g_signal_connect(w, "focus-in-event", G_CALLBACK(viewer_window_focus_in_cb), self);
1044984
1045985 g_debug("Remove window %d %p", nth, win);
1046986 self->priv->windows = g_list_remove(self->priv->windows, win);
1047
1048 g_signal_emit(self, signals[SIGNAL_WINDOW_REMOVED], 0, win);
1049987
1050988 g_object_unref(win);
1051989 }
14001338 }
14011339
14021340 if (self->priv->quit_on_disconnect)
1403 gtk_main_quit();
1341 g_application_quit(G_APPLICATION(self));
14041342 }
14051343
14061344 static void
14781416 virt_viewer_app_hide_all_windows(self);
14791417
14801418 if (priv->quitting)
1481 gtk_main_quit();
1419 g_application_quit(G_APPLICATION(self));
14821420
14831421 if (connect_error) {
14841422 GtkWidget *dialog = virt_viewer_app_make_message_dialog(self,
17001638 g_hash_table_unref(tmp);
17011639 }
17021640
1641 priv->resource = NULL;
17031642 g_clear_object(&priv->session);
17041643 g_free(priv->title);
17051644 priv->title = NULL;
17451684
17461685 static int opt_zoom = NORMAL_ZOOM_LEVEL;
17471686 static gchar *opt_hotkeys = NULL;
1687 static gboolean opt_version = FALSE;
17481688 static gboolean opt_verbose = FALSE;
17491689 static gboolean opt_debug = FALSE;
17501690 static gboolean opt_fullscreen = FALSE;
17641704 self->priv = GET_PRIVATE(self);
17651705
17661706 gtk_window_set_default_icon_name("virt-viewer");
1767 virt_viewer_app_set_debug(opt_debug);
1768 virt_viewer_app_set_fullscreen(self, opt_fullscreen);
17691707
17701708 self->priv->displays = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, g_object_unref);
17711709 self->priv->config = g_key_file_new();
17811719
17821720 g_clear_error(&error);
17831721
1784 if (opt_zoom < MIN_ZOOM_LEVEL || opt_zoom > MAX_ZOOM_LEVEL) {
1785 g_printerr(_("Zoom level must be within %d-%d\n"), MIN_ZOOM_LEVEL, MAX_ZOOM_LEVEL);
1786 opt_zoom = NORMAL_ZOOM_LEVEL;
1787 }
1788
17891722 self->priv->initial_display_map = virt_viewer_app_get_monitor_mapping_for_section(self, "fallback");
1790 self->priv->verbose = opt_verbose;
1791 self->priv->quit_on_disconnect = opt_kiosk ? opt_kiosk_quit : TRUE;
17921723 g_signal_connect(self, "notify::guest-name", G_CALLBACK(title_maybe_changed), NULL);
17931724 g_signal_connect(self, "notify::title", G_CALLBACK(title_maybe_changed), NULL);
17941725 g_signal_connect(self, "notify::guri", G_CALLBACK(title_maybe_changed), NULL);
18301761 sw_smartcard = FALSE;
18311762 }
18321763 if (sw_smartcard) {
1833 g_warning("enabling smartcard shortcuts");
1764 g_debug("enabling smartcard shortcuts");
18341765 gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-insert",
18351766 priv->insert_smartcard_accel_key,
18361767 priv->insert_smartcard_accel_mods,
18401771 priv->remove_smartcard_accel_mods,
18411772 TRUE);
18421773 } else {
1843 g_warning("disabling smartcard shortcuts");
1774 g_debug("disabling smartcard shortcuts");
18441775 gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-insert", 0, 0, TRUE);
18451776 gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-remove", 0, 0, TRUE);
18461777 }
18471778 }
18481779
18491780 static void
1850 virt_viewer_app_constructed(GObject *object)
1851 {
1852 VirtViewerApp *self = VIRT_VIEWER_APP(object);
1781 virt_viewer_app_on_application_startup(GApplication *app)
1782 {
1783 VirtViewerApp *self = VIRT_VIEWER_APP(app);
1784 GError *error = NULL;
1785
1786 G_APPLICATION_CLASS(virt_viewer_app_parent_class)->startup(app);
1787
1788 self->priv->resource = virt_viewer_get_resource();
1789
1790 virt_viewer_app_set_debug(opt_debug);
1791 virt_viewer_app_set_fullscreen(self, opt_fullscreen);
1792
1793 self->priv->verbose = opt_verbose;
1794 self->priv->quit_on_disconnect = opt_kiosk ? opt_kiosk_quit : TRUE;
18531795
18541796 self->priv->main_window = virt_viewer_app_window_new(self,
18551797 virt_viewer_app_get_first_monitor(self));
18571799
18581800 virt_viewer_app_set_kiosk(self, opt_kiosk);
18591801 virt_viewer_app_set_hotkeys(self, opt_hotkeys);
1802
1803 if (opt_zoom < MIN_ZOOM_LEVEL || opt_zoom > MAX_ZOOM_LEVEL) {
1804 g_printerr(_("Zoom level must be within %d-%d\n"), MIN_ZOOM_LEVEL, MAX_ZOOM_LEVEL);
1805 opt_zoom = NORMAL_ZOOM_LEVEL;
1806 }
1807
18601808 virt_viewer_window_set_zoom_level(self->priv->main_window, opt_zoom);
18611809
1862 virt_viewer_set_insert_smartcard_accel(self, GDK_F8, GDK_SHIFT_MASK);
1863 virt_viewer_set_remove_smartcard_accel(self, GDK_F9, GDK_SHIFT_MASK);
1864 gtk_accel_map_add_entry("<virt-viewer>/view/toggle-fullscreen", GDK_F11, 0);
1865 gtk_accel_map_add_entry("<virt-viewer>/view/release-cursor", GDK_F12, GDK_SHIFT_MASK);
1866 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-reset", GDK_0, GDK_CONTROL_MASK);
1867 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-out", GDK_minus, GDK_CONTROL_MASK);
1868 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-in", GDK_plus, GDK_CONTROL_MASK);
1869 gtk_accel_map_add_entry("<virt-viewer>/send/secure-attention", GDK_End, GDK_CONTROL_MASK | GDK_MOD1_MASK);
1810 virt_viewer_set_insert_smartcard_accel(self, GDK_KEY_F8, GDK_SHIFT_MASK);
1811 virt_viewer_set_remove_smartcard_accel(self, GDK_KEY_F9, GDK_SHIFT_MASK);
1812 gtk_accel_map_add_entry("<virt-viewer>/view/toggle-fullscreen", GDK_KEY_F11, 0);
1813 gtk_accel_map_add_entry("<virt-viewer>/view/release-cursor", GDK_KEY_F12, GDK_SHIFT_MASK);
1814 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-reset", GDK_KEY_0, GDK_CONTROL_MASK);
1815 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-out", GDK_KEY_minus, GDK_CONTROL_MASK);
1816 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-in", GDK_KEY_plus, GDK_CONTROL_MASK);
1817 gtk_accel_map_add_entry("<virt-viewer>/send/secure-attention", GDK_KEY_End, GDK_CONTROL_MASK | GDK_MOD1_MASK);
1818
1819 if (!virt_viewer_app_start(self, &error)) {
1820 if (error && !g_error_matches(error, VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_CANCELLED))
1821 virt_viewer_app_simple_message_dialog(self, error->message);
1822
1823 g_clear_error(&error);
1824 g_application_quit(app);
1825 return;
1826 }
1827 }
1828
1829 static gboolean
1830 virt_viewer_app_local_command_line (GApplication *gapp,
1831 gchar ***args,
1832 int *status)
1833 {
1834 VirtViewerApp *self = VIRT_VIEWER_APP(gapp);
1835 gboolean ret = FALSE;
1836 gint argc = g_strv_length(*args);
1837 GError *error = NULL;
1838 GOptionContext *context = g_option_context_new(NULL);
1839 GOptionGroup *group = g_option_group_new("virt-viewer", NULL, NULL, gapp, NULL);
1840
1841 *status = 0;
1842 g_option_context_set_main_group(context, group);
1843 VIRT_VIEWER_APP_GET_CLASS(self)->add_option_entries(self, context, group);
1844
1845 g_option_context_add_group(context, gtk_get_option_group(FALSE));
1846
1847 #ifdef HAVE_GTK_VNC
1848 g_option_context_add_group(context, vnc_display_get_option_group());
1849 #endif
1850
1851 #ifdef HAVE_SPICE_GTK
1852 g_option_context_add_group(context, spice_get_option_group());
1853 #endif
1854
1855 if (!g_option_context_parse(context, &argc, args, &error)) {
1856 if (error != NULL) {
1857 g_printerr(_("%s\n"), error->message);
1858 g_error_free(error);
1859 }
1860
1861 *status = 1;
1862 ret = TRUE;
1863 goto end;
1864 }
1865
1866 if (opt_version) {
1867 g_print(_("%s version %s"), g_get_prgname(), VERSION BUILDID);
1868 #ifdef REMOTE_VIEWER_OS_ID
1869 g_print(" (OS ID: %s)", REMOTE_VIEWER_OS_ID);
1870 #endif
1871 g_print("\n");
1872 ret = TRUE;
1873 }
1874
1875 end:
1876 g_option_context_free(context);
1877 return ret;
18701878 }
18711879
18721880 static void
18731881 virt_viewer_app_class_init (VirtViewerAppClass *klass)
18741882 {
18751883 GObjectClass *object_class = G_OBJECT_CLASS (klass);
1884 GApplicationClass *g_app_class = G_APPLICATION_CLASS(klass);
18761885
18771886 g_type_class_add_private (klass, sizeof (VirtViewerAppPrivate));
18781887
1879 object_class->constructed = virt_viewer_app_constructed;
18801888 object_class->get_property = virt_viewer_app_get_property;
18811889 object_class->set_property = virt_viewer_app_set_property;
18821890 object_class->dispose = virt_viewer_app_dispose;
1891
1892 g_app_class->local_command_line = virt_viewer_app_local_command_line;
1893 g_app_class->startup = virt_viewer_app_on_application_startup;
1894 g_app_class->command_line = NULL; /* inhibit GApplication default handler */
18831895
18841896 klass->start = virt_viewer_app_default_start;
18851897 klass->initial_connect = virt_viewer_app_default_initial_connect;
18861898 klass->activate = virt_viewer_app_default_activate;
18871899 klass->deactivated = virt_viewer_app_default_deactivated;
18881900 klass->open_connection = virt_viewer_app_default_open_connection;
1901 klass->add_option_entries = virt_viewer_app_add_option_entries;
18891902
18901903 g_object_class_install_property(object_class,
18911904 PROP_VERBOSE,
19912004 G_PARAM_READABLE |
19922005 G_PARAM_WRITABLE |
19932006 G_PARAM_STATIC_STRINGS));
1994
1995 signals[SIGNAL_WINDOW_ADDED] =
1996 g_signal_new("window-added",
1997 G_OBJECT_CLASS_TYPE(object_class),
1998 G_SIGNAL_RUN_LAST,
1999 G_STRUCT_OFFSET(VirtViewerAppClass, window_added),
2000 NULL, NULL,
2001 g_cclosure_marshal_VOID__OBJECT,
2002 G_TYPE_NONE,
2003 1,
2004 G_TYPE_OBJECT);
2005
2006 signals[SIGNAL_WINDOW_REMOVED] =
2007 g_signal_new("window-removed",
2008 G_OBJECT_CLASS_TYPE(object_class),
2009 G_SIGNAL_RUN_LAST,
2010 G_STRUCT_OFFSET(VirtViewerAppClass, window_removed),
2011 NULL, NULL,
2012 g_cclosure_marshal_VOID__OBJECT,
2013 G_TYPE_NONE,
2014 1,
2015 G_TYPE_OBJECT);
20162007 }
20172008
20182009 void
20712062
20722063 for (hotkey = hotkeys; *hotkey != NULL; hotkey++) {
20732064 gchar *key = strstr(*hotkey, "=");
2074 if (key == NULL) {
2075 g_warn_if_reached();
2065 const gchar *value = (key == NULL) ? NULL : (*key = '\0', key + 1);
2066 if (value == NULL || *value == '\0') {
2067 g_warning("missing value for key '%s'", *hotkey);
20762068 continue;
20772069 }
2078 *key = '\0';
2079
2080 gchar *accel = spice_hotkey_to_gtk_accelerator(key + 1);
2070
2071 gchar *accel = spice_hotkey_to_gtk_accelerator(value);
20812072 guint accel_key;
20822073 GdkModifierType accel_mods;
20832074 gtk_accelerator_parse(accel, &accel_key, &accel_mods);
20842075 g_free(accel);
2076
2077 if (accel_key == 0 && accel_mods == 0) {
2078 g_warning("Invalid value '%s' for key '%s'", value, *hotkey);
2079 continue;
2080 }
20852081
20862082 if (g_str_equal(*hotkey, "toggle-fullscreen")) {
20872083 gtk_accel_map_change_entry("<virt-viewer>/view/toggle-fullscreen", accel_key, accel_mods, TRUE);
22922288 gboolean visible;
22932289 gchar *label;
22942290
2295 label = g_strdup_printf(_("Display %d"), nth + 1);
2296 item = gtk_check_menu_item_new_with_label(label);
2291 label = g_strdup_printf(_("Display _%d"), nth + 1);
2292 item = gtk_check_menu_item_new_with_mnemonic(label);
22972293 g_free(label);
22982294
22992295 visible = vwin && gtk_widget_get_visible(GTK_WIDGET(virt_viewer_window_get_window(vwin)));
24682464 virt_viewer_app_get_preferences(VirtViewerApp *self)
24692465 {
24702466 VirtViewerSession *session = virt_viewer_app_get_session(self);
2471 GtkBuilder *builder = virt_viewer_util_load_ui("virt-viewer-preferences.xml");
2467 GtkBuilder *builder = virt_viewer_util_load_ui("virt-viewer-preferences.ui");
24722468 gboolean can_share_folder = virt_viewer_session_can_share_folder(session);
24732469 GtkWidget *preferences = self->priv->preferences;
24742470 gchar *path;
25522548 return FALSE;
25532549 }
25542550
2555 GOptionGroup*
2556 virt_viewer_app_get_option_group(void)
2551 static void
2552 virt_viewer_app_add_option_entries(G_GNUC_UNUSED VirtViewerApp *self,
2553 G_GNUC_UNUSED GOptionContext *context,
2554 GOptionGroup *group)
25572555 {
25582556 static const GOptionEntry options [] = {
2557 { "version", 'V', 0, G_OPTION_ARG_NONE, &opt_version,
2558 N_("Display version information"), NULL },
25592559 { "zoom", 'z', 0, G_OPTION_ARG_INT, &opt_zoom,
25602560 N_("Zoom level of window, in percentage"), "ZOOM" },
25612561 { "full-screen", 'f', 0, G_OPTION_ARG_NONE, &opt_fullscreen,
25722572 N_("Display debugging information"), NULL },
25732573 { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
25742574 };
2575 GOptionGroup *group;
2576 group = g_option_group_new("virt-viewer", NULL, NULL, NULL, NULL);
2575
25772576 g_option_group_add_entries(group, options);
2578
2579 return group;
25802577 }
25812578
25822579 gboolean virt_viewer_app_get_session_cancelled(VirtViewerApp *self)
2323 #define VIRT_VIEWER_APP_H
2424
2525 #include <glib-object.h>
26 #include "virt-viewer-util.h"
26 #include <gtk/gtk.h>
2727 #include "virt-viewer-window.h"
2828
2929 G_BEGIN_DECLS
3838 typedef struct _VirtViewerAppPrivate VirtViewerAppPrivate;
3939
4040 typedef struct {
41 GObject parent;
41 GtkApplication parent;
4242 VirtViewerAppPrivate *priv;
4343 } VirtViewerApp;
4444
4545 typedef struct {
46 GObjectClass parent_class;
47
48 /* signals */
49 void (*window_added) (VirtViewerApp *self, VirtViewerWindow *window);
50 void (*window_removed) (VirtViewerApp *self, VirtViewerWindow *window);
46 GtkApplicationClass parent_class;
5147
5248 /*< private >*/
5349 gboolean (*start) (VirtViewerApp *self, GError **error);
5551 gboolean (*activate) (VirtViewerApp *self, GError **error);
5652 void (*deactivated) (VirtViewerApp *self, gboolean connect_error);
5753 gboolean (*open_connection)(VirtViewerApp *self, int *fd);
54 void (*add_option_entries)(VirtViewerApp *self, GOptionContext *context, GOptionGroup *group);
5855 } VirtViewerAppClass;
5956
6057 GType virt_viewer_app_get_type (void);
9491 gboolean virt_viewer_app_get_enable_accel(VirtViewerApp *self);
9592 VirtViewerSession* virt_viewer_app_get_session(VirtViewerApp *self);
9693 gboolean virt_viewer_app_get_fullscreen(VirtViewerApp *app);
97 GOptionGroup* virt_viewer_app_get_option_group(void);
9894 void virt_viewer_app_clear_hotkeys(VirtViewerApp *app);
9995 GList* virt_viewer_app_get_initial_displays(VirtViewerApp* self);
10096 gint virt_viewer_app_get_initial_monitor_for_display(VirtViewerApp* self, gint display);
3030 #endif
3131
3232 #include "virt-viewer-auth.h"
33 #include "virt-viewer-util.h"
3334
3435 static void
3536 show_password(GtkCheckButton *check_button G_GNUC_UNUSED,
5051 char **password)
5152 {
5253 GtkWidget *dialog = NULL;
53 GtkBuilder *creds = virt_viewer_util_load_ui("virt-viewer-auth.xml");
54 GtkBuilder *creds = virt_viewer_util_load_ui("virt-viewer-auth.ui");
5455 GtkWidget *credUsername;
5556 GtkWidget *credPassword;
5657 GtkWidget *promptUsername;
2424
2525 #include "config.h"
2626
27 #ifdef HAVE_LIBVIRT
28 #include <libvirt/libvirt.h>
29 #endif
30
3127 #include "virt-viewer-session.h"
32 #include "virt-viewer-util.h"
3328
3429 gboolean virt_viewer_auth_collect_credentials(GtkWindow *window,
3530 const char *type,
+0
-160
src/virt-viewer-auth.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.12 -->
3 <object class="GtkDialog" id="auth">
4 <property name="can_focus">False</property>
5 <property name="border_width">5</property>
6 <property name="title" translatable="yes">Authentication required</property>
7 <property name="modal">True</property>
8 <property name="window_position">center-on-parent</property>
9 <property name="destroy_with_parent">True</property>
10 <property name="type_hint">dialog</property>
11 <property name="skip_taskbar_hint">True</property>
12 <property name="skip_pager_hint">True</property>
13 <child internal-child="vbox">
14 <object class="GtkBox" id="dialog-vbox1">
15 <property name="visible">True</property>
16 <property name="can_focus">False</property>
17 <property name="orientation">vertical</property>
18 <property name="spacing">2</property>
19 <child internal-child="action_area">
20 <object class="GtkButtonBox" id="dialog-action_area1">
21 <property name="visible">True</property>
22 <property name="can_focus">False</property>
23 <property name="layout_style">end</property>
24 <child>
25 <object class="GtkButton" id="button-cancel">
26 <property name="label">gtk-cancel</property>
27 <property name="visible">True</property>
28 <property name="can_focus">True</property>
29 <property name="receives_default">True</property>
30 <property name="use_action_appearance">False</property>
31 <property name="use_stock">True</property>
32 </object>
33 <packing>
34 <property name="expand">False</property>
35 <property name="fill">False</property>
36 <property name="position">0</property>
37 </packing>
38 </child>
39 <child>
40 <object class="GtkButton" id="button-ok">
41 <property name="label">gtk-ok</property>
42 <property name="visible">True</property>
43 <property name="can_focus">True</property>
44 <property name="can_default">True</property>
45 <property name="has_default">True</property>
46 <property name="receives_default">True</property>
47 <property name="use_action_appearance">False</property>
48 <property name="use_stock">True</property>
49 </object>
50 <packing>
51 <property name="expand">False</property>
52 <property name="fill">False</property>
53 <property name="position">3</property>
54 </packing>
55 </child>
56 </object>
57 <packing>
58 <property name="expand">False</property>
59 <property name="fill">True</property>
60 <property name="pack_type">end</property>
61 <property name="position">0</property>
62 </packing>
63 </child>
64 <child>
65 <object class="GtkLabel" id="message">
66 <property name="visible">True</property>
67 <property name="can_focus">False</property>
68 <property name="xalign">0</property>
69 <property name="yalign">0</property>
70 <property name="label" translatable="yes">label</property>
71 <property name="use_markup">True</property>
72 </object>
73 <packing>
74 <property name="expand">False</property>
75 <property name="fill">True</property>
76 <property name="position">1</property>
77 </packing>
78 </child>
79 <child>
80 <object class="GtkTable" id="table1">
81 <property name="visible">True</property>
82 <property name="can_focus">False</property>
83 <property name="n_rows">2</property>
84 <property name="n_columns">2</property>
85 <property name="column_spacing">6</property>
86 <property name="row_spacing">6</property>
87 <child>
88 <object class="GtkLabel" id="prompt-password">
89 <property name="visible">True</property>
90 <property name="can_focus">False</property>
91 <property name="xalign">1</property>
92 <property name="label" translatable="yes">Password:</property>
93 </object>
94 <packing>
95 <property name="top_attach">1</property>
96 <property name="bottom_attach">2</property>
97 </packing>
98 </child>
99 <child>
100 <object class="GtkLabel" id="prompt-username">
101 <property name="visible">True</property>
102 <property name="can_focus">False</property>
103 <property name="xalign">1</property>
104 <property name="label" translatable="yes">Username:</property>
105 </object>
106 </child>
107 <child>
108 <object class="GtkEntry" id="cred-username">
109 <property name="visible">True</property>
110 <property name="can_focus">True</property>
111 </object>
112 <packing>
113 <property name="left_attach">1</property>
114 <property name="right_attach">2</property>
115 </packing>
116 </child>
117 <child>
118 <object class="GtkEntry" id="cred-password">
119 <property name="visible">True</property>
120 <property name="can_focus">True</property>
121 <property name="visibility">False</property>
122 <property name="activates_default">True</property>
123 </object>
124 <packing>
125 <property name="left_attach">1</property>
126 <property name="right_attach">2</property>
127 <property name="top_attach">1</property>
128 <property name="bottom_attach">2</property>
129 </packing>
130 </child>
131 <child>
132 <object class="GtkCheckButton" id="show-password">
133 <property name="visible">True</property>
134 <property name="can_focus">True</property>
135 <property name="active">False</property>
136 <property name="label" translatable="yes">Show password</property>
137 </object>
138 <packing>
139 <property name="left_attach">1</property>
140 <property name="right_attach">2</property>
141 <property name="top_attach">2</property>
142 <property name="bottom_attach">3</property>
143 </packing>
144 </child>
145 </object>
146 <packing>
147 <property name="expand">False</property>
148 <property name="fill">True</property>
149 <property name="position">2</property>
150 </packing>
151 </child>
152 </object>
153 </child>
154 <action-widgets>
155 <action-widget response="-6">button-cancel</action-widget>
156 <action-widget response="-5">button-ok</action-widget>
157 </action-widgets>
158 </object>
159 </interface>
2424 #include <config.h>
2525
2626 #include <math.h>
27 #include <spice-audio.h>
27 #include <spice-client-gtk.h>
2828
2929 #include <glib/gi18n.h>
3030
213213 * resizes the window to the size it already wants to be (based on desktop
214214 * size and zoom level), just return early
215215 */
216 virt_viewer_display_get_preferred_size(VIRT_VIEWER_DISPLAY(self), &preferred);
216 gtk_widget_get_preferred_size(GTK_WIDGET(self), NULL, &preferred);
217217 if (preferred.width == allocation->width
218218 && preferred.height == allocation->height) {
219219 return;
242242 GParamSpec *pspec G_GNUC_UNUSED,
243243 VirtViewerDisplaySpice *self)
244244 {
245 GtkAccelKey key = { 0 };
245 GtkAccelKey key = {0, 0, 0};
246246 if (virt_viewer_app_get_enable_accel(app))
247247 gtk_accel_map_lookup_entry("<virt-viewer>/view/release-cursor", &key);
248248
285285 g_return_val_if_fail(SPICE_IS_DISPLAY_CHANNEL(channel), NULL);
286286
287287 g_object_get(channel, "channel-id", &channelid, NULL);
288 // We don't allow monitorid != 0 && channelid != 0
289 g_return_val_if_fail(channelid == 0 || monitorid == 0, NULL);
288 if (channelid != 0 && monitorid != 0) {
289 g_warning("Unsupported graphics configuration:\n"
290 "spice-gtk only supports multiple graphics channels if they are single-head");
291 return NULL;
292 }
290293
291294 self = g_object_new(VIRT_VIEWER_TYPE_DISPLAY_SPICE,
292295 "session", session,
2424 #define _VIRT_VIEWER_DISPLAY_SPICE_H
2525
2626 #include <glib-object.h>
27 #include <spice-widget.h>
28 #include <spice-audio.h>
27 #include <spice-client.h>
2928
3029 #include "virt-viewer-display.h"
3130 #include "virt-viewer-session-spice.h"
2525
2626 #include "virt-viewer-auth.h"
2727 #include "virt-viewer-display-vnc.h"
28 #include "virt-viewer-util.h"
2829
2930 #include <glib/gi18n.h>
3031
183184 }
184185
185186
187 static void
188 enable_accel_changed(VirtViewerApp *app,
189 GParamSpec *pspec G_GNUC_UNUSED,
190 VncDisplay *vnc)
191 {
192 GtkAccelKey key = {0, 0, 0};
193 if (virt_viewer_app_get_enable_accel(app))
194 gtk_accel_map_lookup_entry("<virt-viewer>/view/release-cursor", &key);
195
196 if (key.accel_key || key.accel_mods) {
197 VncGrabSequence *seq = vnc_grab_sequence_new(0, NULL);
198 /* disable default grab sequence */
199 vnc_display_set_grab_keys(vnc, seq);
200 vnc_grab_sequence_free(seq);
201 } else {
202 vnc_display_set_grab_keys(vnc, NULL);
203 }
204 }
205
206
186207 GtkWidget *
187208 virt_viewer_display_vnc_new(VirtViewerSessionVnc *session,
188209 VncDisplay *vnc)
189210 {
190211 VirtViewerDisplayVnc *display;
212 VirtViewerApp *app;
191213
192214 display = g_object_new(VIRT_VIEWER_TYPE_DISPLAY_VNC, "session", session, NULL);
193215
225247 g_signal_connect(display->priv->vnc, "vnc-initialized",
226248 G_CALLBACK(virt_viewer_display_vnc_initialized), display);
227249
250 app = virt_viewer_session_get_app(VIRT_VIEWER_SESSION(session));
251 virt_viewer_signal_connect_object(app, "notify::enable-accel",
252 G_CALLBACK(enable_accel_changed), display->priv->vnc, 0);
253 enable_accel_changed(app, NULL, display->priv->vnc);
254
228255 return GTK_WIDGET(display);
229256 }
230257
2626 #include <locale.h>
2727 #include <math.h>
2828
29 #include "virt-gtk-compat.h"
3029 #include "virt-viewer-session.h"
3130 #include "virt-viewer-display.h"
3231 #include "virt-viewer-util.h"
3534
3635 struct _VirtViewerDisplayPrivate
3736 {
38 #if !GTK_CHECK_VERSION(3, 0, 0)
39 gboolean dirty;
40 gboolean size_request_once;
41 #endif
4237 guint desktopWidth;
4338 guint desktopHeight;
4439 guint zoom_level;
45 gboolean zoom;
4640 gint nth_display; /* Monitor number inside the guest */
4741 gint monitor; /* Monitor number on the client */
4842 guint show_hint;
5044 gboolean fullscreen;
5145 };
5246
53 #if !GTK_CHECK_VERSION(3, 0, 0)
54 static void virt_viewer_display_size_request(GtkWidget *widget,
55 GtkRequisition *requisition);
56 #else
5747 static void virt_viewer_display_get_preferred_width(GtkWidget *widget,
5848 int *minwidth,
5949 int *defwidth);
6050 static void virt_viewer_display_get_preferred_height(GtkWidget *widget,
6151 int *minheight,
6252 int *defheight);
63 #endif
6453 static void virt_viewer_display_size_allocate(GtkWidget *widget,
6554 GtkAllocation *allocation);
6655 static void virt_viewer_display_set_property(GObject *object,
9988 object_class->set_property = virt_viewer_display_set_property;
10089 object_class->get_property = virt_viewer_display_get_property;
10190
102 #if GTK_CHECK_VERSION(3, 0, 0)
10391 widget_class->get_preferred_width = virt_viewer_display_get_preferred_width;
10492 widget_class->get_preferred_height = virt_viewer_display_get_preferred_height;
105 #else
106 widget_class->size_request = virt_viewer_display_size_request;
107 #endif
10893 widget_class->size_allocate = virt_viewer_display_size_allocate;
10994 widget_class->grab_focus = virt_viewer_display_grab_focus;
11095
11398 g_param_spec_int("desktop-width",
11499 "Width",
115100 "Desktop width",
116 100,
101 MIN_DISPLAY_WIDTH,
117102 G_MAXINT32,
118 100,
103 MIN_DISPLAY_WIDTH,
119104 G_PARAM_READWRITE));
120105
121106 g_object_class_install_property(object_class,
123108 g_param_spec_int("desktop-height",
124109 "Height",
125110 "Desktop height",
126 100,
111 MIN_DISPLAY_HEIGHT,
127112 G_MAXINT32,
128 100,
113 MIN_DISPLAY_HEIGHT,
129114 G_PARAM_READWRITE));
130
131 g_object_class_install_property(object_class,
132 PROP_ZOOM,
133 g_param_spec_boolean("zoom",
134 "Zoom",
135 "Zoom",
136 TRUE,
137 G_PARAM_READWRITE));
138115
139116 g_object_class_install_property(object_class,
140117 PROP_ZOOM_LEVEL,
273250
274251 display->priv = VIRT_VIEWER_DISPLAY_GET_PRIVATE(display);
275252
276 display->priv->desktopWidth = 100;
277 display->priv->desktopHeight = 100;
253 display->priv->desktopWidth = MIN_DISPLAY_WIDTH;
254 display->priv->desktopHeight = MIN_DISPLAY_HEIGHT;
278255 display->priv->zoom_level = NORMAL_ZOOM_LEVEL;
279 display->priv->zoom = TRUE;
280 #if !GTK_CHECK_VERSION(3, 0, 0)
281 display->priv->dirty = TRUE;
282 display->priv->size_request_once = FALSE;
283 #endif
284256 }
285257
286258 GtkWidget*
300272
301273 switch (prop_id) {
302274 case PROP_DESKTOP_WIDTH:
303 virt_viewer_display_set_desktop_size(display,
304 g_value_get_int(value),
305 priv->desktopHeight);
275 priv->desktopWidth = g_value_get_int(value);
306276 break;
307277 case PROP_DESKTOP_HEIGHT:
308 virt_viewer_display_set_desktop_size(display,
309 priv->desktopWidth,
310 g_value_get_int(value));
278 priv->desktopHeight = g_value_get_int(value);
311279 break;
312280 case PROP_NTH_DISPLAY:
313281 priv->nth_display = g_value_get_int(value);
376344 gtk_widget_grab_focus(gtk_bin_get_child(bin));
377345 }
378346
379 /* Compatibility function to allow gtk2 to emulate gtk3 behavior. We can't use
380 * the size request since it simply returns the minimum size whenever dirty is
381 * false */
382 void virt_viewer_display_get_preferred_size(VirtViewerDisplay *self,
383 GtkRequisition *requisition)
384 {
385 #if GTK_CHECK_VERSION(3, 0, 0)
386 gtk_widget_get_preferred_size(GTK_WIDGET(self), NULL, requisition);
387 #else
388 VirtViewerDisplayPrivate *priv = self->priv;
389 int border_width = gtk_container_get_border_width(GTK_CONTAINER(self));
390
391 requisition->width = border_width * 2;
392 requisition->height = border_width * 2;
393
394 if (priv->zoom) {
395 requisition->width += round(priv->desktopWidth * priv->zoom_level / (double) NORMAL_ZOOM_LEVEL);
396 requisition->height += round(priv->desktopHeight * priv->zoom_level / (double) NORMAL_ZOOM_LEVEL);
347 static void virt_viewer_display_get_preferred_dimension_from_desktop(VirtViewerDisplay *display,
348 const int minimal_size,
349 const int desktop_dim,
350 int *minimal_dim,
351 int *preferred_dim)
352 {
353 int border_width = gtk_container_get_border_width(GTK_CONTAINER(display));
354
355 if (virt_viewer_display_get_zoom(display)) {
356 guint zoom_level = virt_viewer_display_get_zoom_level(display);
357 *preferred_dim = round(desktop_dim * zoom_level / (double) NORMAL_ZOOM_LEVEL);
358 *minimal_dim = round(minimal_size * zoom_level / (double) NORMAL_ZOOM_LEVEL);
397359 } else {
398 requisition->width += priv->desktopWidth;
399 requisition->height += priv->desktopHeight;
360 *preferred_dim = desktop_dim;
361 *minimal_dim = minimal_size;
400362 }
401 #endif
402 }
403
404
405 #if !GTK_CHECK_VERSION(3, 0, 0)
406 static gboolean
407 virt_viewer_display_idle(gpointer opaque)
408 {
409 VirtViewerDisplay *display = opaque;
410 VirtViewerDisplayPrivate *priv = display->priv;
411 if (!priv->dirty)
412 gtk_widget_queue_resize_no_redraw(GTK_WIDGET(display));
413 return FALSE;
414 }
415
416
417 static void
418 virt_viewer_display_size_request(GtkWidget *widget,
419 GtkRequisition *requisition)
420 {
421 VirtViewerDisplay *display = VIRT_VIEWER_DISPLAY(widget);
422 VirtViewerDisplayPrivate *priv = display->priv;
423
424 if (priv->dirty || !priv->size_request_once) {
425 virt_viewer_display_get_preferred_size(display, requisition);
426 } else {
427 requisition->width = MIN_DISPLAY_WIDTH;
428 requisition->height = MIN_DISPLAY_HEIGHT;
429 }
430
431 priv->size_request_once = TRUE;
432 g_debug("Display size request %dx%d (desktop %dx%d)",
433 requisition->width, requisition->height,
434 priv->desktopWidth, priv->desktopHeight);
435 }
436
437 static void
438 virt_viewer_display_make_resizable(VirtViewerDisplay *self)
439 {
440 VirtViewerDisplayPrivate *priv = self->priv;
441
442 /* This unsets the size request, so that the user can
443 * manually resize the window smaller again
444 */
445 if (priv->dirty) {
446 g_idle_add(virt_viewer_display_idle, GTK_WIDGET(self));
447 if (gtk_widget_get_mapped(GTK_WIDGET(self)))
448 priv->dirty = FALSE;
449 }
450 }
451
452 #else
363 *preferred_dim += 2 * border_width;
364 *minimal_dim += 2 * border_width;
365 }
366
453367
454368 static void virt_viewer_display_get_preferred_width(GtkWidget *widget,
455369 int *minwidth,
457371 {
458372 VirtViewerDisplay *display = VIRT_VIEWER_DISPLAY(widget);
459373 VirtViewerDisplayPrivate *priv = display->priv;
460 int border_width = gtk_container_get_border_width(GTK_CONTAINER(widget));
461
462 *minwidth = MIN_DISPLAY_WIDTH + 2 * border_width;
463
464 if (priv->zoom) {
465 *defwidth = round(priv->desktopWidth * priv->zoom_level / (double) NORMAL_ZOOM_LEVEL) +
466 2 * border_width;
467 } else {
468 *defwidth = priv->desktopWidth + 2 * border_width;
469 }
374
375 virt_viewer_display_get_preferred_dimension_from_desktop(display,
376 MIN_DISPLAY_WIDTH,
377 priv->desktopWidth,
378 minwidth,
379 defwidth);
470380 }
471381
472382
476386 {
477387 VirtViewerDisplay *display = VIRT_VIEWER_DISPLAY(widget);
478388 VirtViewerDisplayPrivate *priv = display->priv;
479 int border_height = gtk_container_get_border_width(GTK_CONTAINER(widget));
480
481 *minheight = MIN_DISPLAY_HEIGHT + 2 * border_height;
482
483 if (priv->zoom) {
484 *defheight = round(priv->desktopHeight * priv->zoom_level / (double) NORMAL_ZOOM_LEVEL) +
485 2 * border_height;
486 } else {
487 *defheight = priv->desktopHeight + 2 * border_height;
488 }
489 }
490 #endif
389
390 virt_viewer_display_get_preferred_dimension_from_desktop(display,
391 MIN_DISPLAY_HEIGHT,
392 priv->desktopHeight,
393 minheight,
394 defheight);
395 }
491396
492397
493398 static void
507412 g_debug("Allocated %dx%d", allocation->width, allocation->height);
508413 gtk_widget_set_allocation(widget, allocation);
509414
510 if (priv->desktopWidth == 0 ||
511 priv->desktopHeight == 0)
512 #if !GTK_CHECK_VERSION(3, 0, 0)
513 goto end;
514 #else
415 if (priv->desktopWidth == 0 || priv->desktopHeight == 0 ||
416 child == NULL || !gtk_widget_get_visible(child))
515417 return;
516 #endif
517
518 desktopAspect = (double)priv->desktopWidth / (double)priv->desktopHeight;
519
520 if (child && gtk_widget_get_visible(child)) {
521 border_width = gtk_container_get_border_width(GTK_CONTAINER(display));
522
523 width = MAX(1, allocation->width - 2 * border_width);
524 height = MAX(1, allocation->height - 2 * border_width);
525 actualAspect = (double)width / (double)height;
526
527 if (actualAspect > desktopAspect) {
528 child_allocation.width = round(height * desktopAspect);
529 child_allocation.height = height;
530 } else {
531 child_allocation.width = width;
532 child_allocation.height = round(width / desktopAspect);
533 }
534
535 child_allocation.x = 0.5 * (width - child_allocation.width) + allocation->x + border_width;
536 child_allocation.y = 0.5 * (height - child_allocation.height) + allocation->y + border_width;
537
538 g_debug("Child allocate %dx%d", child_allocation.width, child_allocation.height);
539 gtk_widget_size_allocate(child, &child_allocation);
418
419 border_width = gtk_container_get_border_width(GTK_CONTAINER(display));
420
421 width = MAX(MIN_DISPLAY_WIDTH, allocation->width - 2 * border_width);
422 height = MAX(MIN_DISPLAY_HEIGHT, allocation->height - 2 * border_width);
423
424 desktopAspect = (double) priv->desktopWidth / (double) priv->desktopHeight;
425 actualAspect = (double) width / (double) height;
426
427 if (actualAspect > desktopAspect) {
428 child_allocation.width = round(height * desktopAspect);
429 child_allocation.height = height;
430 } else {
431 child_allocation.width = width;
432 child_allocation.height = round(width / desktopAspect);
540433 }
541434
542 #if !GTK_CHECK_VERSION(3, 0, 0)
543 end:
544 virt_viewer_display_make_resizable(VIRT_VIEWER_DISPLAY(widget));
545 #endif
435 child_allocation.x = 0.5 * (width - child_allocation.width) + allocation->x + border_width;
436 child_allocation.y = 0.5 * (height - child_allocation.height) + allocation->y + border_width;
437
438 g_debug("Child allocate %dx%d", child_allocation.width, child_allocation.height);
439 gtk_widget_size_allocate(child, &child_allocation);
546440 }
547441
548442
580474 GtkWidget *child = gtk_bin_get_child(GTK_BIN(display));
581475
582476 if (child && gtk_widget_get_visible(child)) {
583 #if !GTK_CHECK_VERSION(3, 0, 0)
584 display->priv->dirty = TRUE;
585 #endif
586477 gtk_widget_queue_resize(GTK_WIDGET(display));
587478 }
588479 }
597488 if (zoom > MAX_ZOOM_LEVEL)
598489 zoom = MAX_ZOOM_LEVEL;
599490
600 // For the gtk2 build, we need to queue a resize even if the zoom level
601 // hasn't changed. This is due to the fact that VirtViewerWindow will queue
602 // a resize event for itself immediately after calling this function (in
603 // order to shrink the window to fit the new display size if necessary). If
604 // we don't queue a resize here, the window will become tiny because we will
605 // only request 50x50 during the window resize
606 virt_viewer_display_queue_resize(display);
607
608491 if (priv->zoom_level == zoom)
609492 return;
610493
611494 priv->zoom_level = zoom;
612495
496 virt_viewer_display_queue_resize(display);
613497 g_object_notify(G_OBJECT(display), "zoom-level");
614498 }
615499
620504 return priv->zoom_level;
621505 }
622506
623
624 void virt_viewer_display_set_zoom(VirtViewerDisplay *display,
625 gboolean zoom)
626 {
627 VirtViewerDisplayPrivate *priv = display->priv;
628
629 priv->zoom = zoom;
630 virt_viewer_display_queue_resize(display);
631 }
632
633
634507 gboolean virt_viewer_display_get_zoom(VirtViewerDisplay *display)
635508 {
636 VirtViewerDisplayPrivate *priv = display->priv;
637 return priv->zoom;
509 return virt_viewer_display_get_zoom_level(display) != NORMAL_ZOOM_LEVEL;
638510 }
639511
640512
815687
816688 g_return_if_fail(preferred != NULL);
817689
818 if (!virt_viewer_display_get_enabled(VIRT_VIEWER_DISPLAY(self))) {
690 if (!virt_viewer_display_get_enabled(self)) {
819691 preferred->width = 0;
820692 preferred->height = 0;
821693 preferred->x = 0;
828700 topx = MAX(topx, 0);
829701 topy = MAX(topy, 0);
830702
831 if (virt_viewer_display_get_fullscreen(VIRT_VIEWER_DISPLAY(self))) {
703 if (virt_viewer_display_get_fullscreen(self)) {
832704 GdkRectangle physical_monitor;
833705 GdkScreen *screen = gtk_widget_get_screen(GTK_WIDGET(self));
834 int n = virt_viewer_display_get_monitor(VIRT_VIEWER_DISPLAY(self));
706 int n = virt_viewer_display_get_monitor(self);
835707 if (n == -1)
836708 n = gdk_screen_get_monitor_at_window(screen,
837709 gtk_widget_get_window(GTK_WIDGET(self)));
846718 preferred->y = topy;
847719 }
848720
849 if (virt_viewer_display_get_zoom(VIRT_VIEWER_DISPLAY(self))) {
850 guint zoom = virt_viewer_display_get_zoom_level(VIRT_VIEWER_DISPLAY(self));
721 if (virt_viewer_display_get_zoom(self)) {
722 guint zoom = virt_viewer_display_get_zoom_level(self);
851723
852724 preferred->width = round(preferred->width * NORMAL_ZOOM_LEVEL / (double) zoom);
853725 preferred->height = round(preferred->height * NORMAL_ZOOM_LEVEL / (double) zoom);
2828
2929 G_BEGIN_DECLS
3030
31 #define MIN_DISPLAY_WIDTH 50
32 #define MIN_DISPLAY_HEIGHT 50
31 #define MIN_DISPLAY_WIDTH 320
32 #define MIN_DISPLAY_HEIGHT 200
3333
3434 #define VIRT_VIEWER_TYPE_DISPLAY virt_viewer_display_get_type()
3535
132132 gboolean virt_viewer_display_get_selectable(VirtViewerDisplay *display);
133133 void virt_viewer_display_queue_resize(VirtViewerDisplay *display);
134134 void virt_viewer_display_get_preferred_monitor_geometry(VirtViewerDisplay *self, GdkRectangle* preferred);
135 void virt_viewer_display_get_preferred_size(VirtViewerDisplay *self, GtkRequisition* requisistion);
136135 gint virt_viewer_display_get_nth(VirtViewerDisplay *self);
137136
138137 G_END_DECLS
+0
-460
src/virt-viewer-events.c less more
0 /*
1 * events.c: event loop integration
2 *
3 * Copyright (C) 2008-2012 Daniel P. Berrange
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library 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 GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * Author: Daniel P. Berrange <berrange@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include <inttypes.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <stdlib.h>
28 #include <glib.h>
29 #ifdef G_OS_WIN32
30 #include <io.h>
31 #endif
32 #include <libvirt/libvirt.h>
33
34 #include "virt-viewer-events.h"
35 #include "virt-glib-compat.h"
36
37 static GMutex *eventlock = NULL;
38
39 struct virt_viewer_events_handle
40 {
41 int watch;
42 int fd;
43 int events;
44 int removed;
45 GIOChannel *channel;
46 guint source;
47 virEventHandleCallback cb;
48 void *opaque;
49 virFreeCallback ff;
50 };
51
52 static int nextwatch = 1;
53 static GPtrArray *handles;
54
55 static gboolean
56 virt_viewer_events_dispatch_handle(GIOChannel *source G_GNUC_UNUSED,
57 GIOCondition condition,
58 gpointer opaque)
59 {
60 struct virt_viewer_events_handle *data = opaque;
61 int events = 0;
62
63 if (condition & G_IO_IN)
64 events |= VIR_EVENT_HANDLE_READABLE;
65 if (condition & G_IO_OUT)
66 events |= VIR_EVENT_HANDLE_WRITABLE;
67 if (condition & G_IO_HUP)
68 events |= VIR_EVENT_HANDLE_HANGUP;
69 if (condition & G_IO_ERR)
70 events |= VIR_EVENT_HANDLE_ERROR;
71
72 g_debug("Dispatch handler %d %d %p", data->fd, events, data->opaque);
73
74 (data->cb)(data->watch, data->fd, events, data->opaque);
75
76 return TRUE;
77 }
78
79
80 static
81 int virt_viewer_events_add_handle(int fd,
82 int events,
83 virEventHandleCallback cb,
84 void *opaque,
85 virFreeCallback ff)
86 {
87 struct virt_viewer_events_handle *data;
88 GIOCondition cond = 0;
89 int ret;
90
91 g_mutex_lock(eventlock);
92
93 data = g_new0(struct virt_viewer_events_handle, 1);
94
95 if (events & VIR_EVENT_HANDLE_READABLE)
96 cond |= G_IO_IN;
97 if (events & VIR_EVENT_HANDLE_WRITABLE)
98 cond |= G_IO_OUT;
99
100 data->watch = nextwatch++;
101 data->fd = fd;
102 data->events = events;
103 data->cb = cb;
104 data->opaque = opaque;
105 #ifdef G_OS_WIN32
106 g_debug("Converted fd %d to handle %"PRIiPTR, fd, _get_osfhandle(fd));
107 data->channel = g_io_channel_win32_new_socket(_get_osfhandle(fd));
108 #else
109 data->channel = g_io_channel_unix_new(fd);
110 #endif
111 data->ff = ff;
112
113 g_debug("Add handle %d %d %p", data->fd, events, data->opaque);
114
115 if (events != 0) {
116 data->source = g_io_add_watch(data->channel,
117 cond,
118 virt_viewer_events_dispatch_handle,
119 data);
120 }
121
122 g_ptr_array_add(handles, data);
123
124 ret = data->watch;
125
126 g_mutex_unlock(eventlock);
127
128 return ret;
129 }
130
131 static struct virt_viewer_events_handle *
132 virt_viewer_events_find_handle(int watch)
133 {
134 guint i;
135
136 for (i = 0 ; i < handles->len ; i++) {
137 struct virt_viewer_events_handle *h = g_ptr_array_index(handles, i);
138
139 if (h == NULL) {
140 g_warn_if_reached ();
141 continue;
142 }
143
144 if ((h->watch == watch) && !h->removed) {
145 return h;
146 }
147 }
148
149 return NULL;
150 }
151
152 static void
153 virt_viewer_events_update_handle(int watch,
154 int events)
155 {
156 struct virt_viewer_events_handle *data;
157
158 g_mutex_lock(eventlock);
159
160 data = virt_viewer_events_find_handle(watch);
161
162 if (!data) {
163 g_debug("Update for missing handle watch %d", watch);
164 goto cleanup;
165 }
166
167 if (events) {
168 GIOCondition cond = 0;
169 if (events == data->events)
170 goto cleanup;
171
172 if (data->source)
173 g_source_remove(data->source);
174
175 cond |= G_IO_HUP;
176 if (events & VIR_EVENT_HANDLE_READABLE)
177 cond |= G_IO_IN;
178 if (events & VIR_EVENT_HANDLE_WRITABLE)
179 cond |= G_IO_OUT;
180 data->source = g_io_add_watch(data->channel,
181 cond,
182 virt_viewer_events_dispatch_handle,
183 data);
184 data->events = events;
185 } else {
186 if (!data->source)
187 goto cleanup;
188
189 g_source_remove(data->source);
190 data->source = 0;
191 data->events = 0;
192 }
193
194 cleanup:
195 g_mutex_unlock(eventlock);
196 }
197
198
199 static gboolean
200 virt_viewer_events_cleanup_handle(gpointer user_data)
201 {
202 struct virt_viewer_events_handle *data = user_data;
203
204 g_debug("Cleanup of handle %p", data);
205 g_return_val_if_fail(data != NULL, FALSE);
206
207 if (data->ff)
208 (data->ff)(data->opaque);
209
210 g_mutex_lock(eventlock);
211 g_ptr_array_remove_fast(handles, data);
212 g_mutex_unlock(eventlock);
213
214 return FALSE;
215 }
216
217
218 static int
219 virt_viewer_events_remove_handle(int watch)
220 {
221 struct virt_viewer_events_handle *data;
222 int ret = -1;
223
224 g_mutex_lock(eventlock);
225
226 data = virt_viewer_events_find_handle(watch);
227
228 if (!data) {
229 g_debug("Remove of missing watch %d", watch);
230 goto cleanup;
231 }
232
233 g_debug("Remove handle %d %d", watch, data->fd);
234
235 if (data->source != 0) {
236 g_source_remove(data->source);
237 data->source = 0;
238 data->events = 0;
239 }
240
241 g_warn_if_fail(data->channel != NULL);
242 g_io_channel_unref(data->channel);
243 data->channel = NULL;
244
245 /* since the actual watch deletion is done asynchronously, a update_handle call may
246 * reschedule the watch before it's fully deleted, that's why we need to mark it as
247 * 'removed' to prevent reuse
248 */
249 data->removed = TRUE;
250 g_idle_add(virt_viewer_events_cleanup_handle, data);
251 ret = 0;
252
253 cleanup:
254 g_mutex_unlock(eventlock);
255 return ret;
256 }
257
258 struct virt_viewer_events_timeout
259 {
260 int timer;
261 int interval;
262 int removed;
263 guint source;
264 virEventTimeoutCallback cb;
265 void *opaque;
266 virFreeCallback ff;
267 };
268
269
270 static int nexttimer = 1;
271 static GPtrArray *timeouts;
272
273 static gboolean
274 virt_viewer_events_dispatch_timeout(void *opaque)
275 {
276 struct virt_viewer_events_timeout *data = opaque;
277 g_debug("Dispatch timeout %p %p %d %p", data, data->cb, data->timer, data->opaque);
278 (data->cb)(data->timer, data->opaque);
279
280 return TRUE;
281 }
282
283 static int
284 virt_viewer_events_add_timeout(int interval,
285 virEventTimeoutCallback cb,
286 void *opaque,
287 virFreeCallback ff)
288 {
289 struct virt_viewer_events_timeout *data;
290 int ret;
291
292 g_mutex_lock(eventlock);
293
294 data = g_new0(struct virt_viewer_events_timeout, 1);
295
296 data->timer = nexttimer++;
297 data->interval = interval;
298 data->cb = cb;
299 data->opaque = opaque;
300 data->ff = ff;
301 if (interval >= 0)
302 data->source = g_timeout_add(interval,
303 virt_viewer_events_dispatch_timeout,
304 data);
305
306 g_ptr_array_add(timeouts, data);
307
308 g_debug("Add timeout %p %d %p %p %d", data, interval, cb, opaque, data->timer);
309
310 ret = data->timer;
311
312 g_mutex_unlock(eventlock);
313
314 return ret;
315 }
316
317
318 static struct virt_viewer_events_timeout *
319 virt_viewer_events_find_timeout(int timer)
320 {
321 guint i;
322
323 g_return_val_if_fail(timeouts != NULL, NULL);
324
325 for (i = 0 ; i < timeouts->len ; i++) {
326 struct virt_viewer_events_timeout *t = g_ptr_array_index(timeouts, i);
327
328 if (t == NULL) {
329 g_warn_if_reached ();
330 continue;
331 }
332
333 if ((t->timer == timer) && !t->removed) {
334 return t;
335 }
336 }
337
338 return NULL;
339 }
340
341
342 static void
343 virt_viewer_events_update_timeout(int timer,
344 int interval)
345 {
346 struct virt_viewer_events_timeout *data;
347
348 g_mutex_lock(eventlock);
349
350 data = virt_viewer_events_find_timeout(timer);
351 if (!data) {
352 g_debug("Update of missing timer %d", timer);
353 goto cleanup;
354 }
355
356 g_debug("Update timeout %p %d %d", data, timer, interval);
357
358 if (interval >= 0) {
359 if (data->source)
360 g_source_remove(data->source);
361
362 data->interval = interval;
363 data->source = g_timeout_add(data->interval,
364 virt_viewer_events_dispatch_timeout,
365 data);
366 } else {
367 if (!data->source)
368 goto cleanup;
369
370 g_source_remove(data->source);
371 data->source = 0;
372 }
373
374 cleanup:
375 g_mutex_unlock(eventlock);
376 }
377
378
379 static gboolean
380 virt_viewer_events_cleanup_timeout(gpointer user_data)
381 {
382 struct virt_viewer_events_timeout *data = user_data;
383
384 g_debug("Cleanup of timeout %p", data);
385 g_return_val_if_fail(data != NULL, FALSE);
386
387 if (data->ff)
388 (data->ff)(data->opaque);
389
390 g_mutex_lock(eventlock);
391 g_ptr_array_remove_fast(timeouts, data);
392 g_mutex_unlock(eventlock);
393
394 return FALSE;
395 }
396
397
398 static int
399 virt_viewer_events_remove_timeout(int timer)
400 {
401 struct virt_viewer_events_timeout *data;
402 int ret = -1;
403
404 g_mutex_lock(eventlock);
405
406 data = virt_viewer_events_find_timeout(timer);
407 if (!data) {
408 g_debug("Remove of missing timer %d", timer);
409 goto cleanup;
410 }
411
412 g_debug("Remove timeout %p %d", data, timer);
413
414 if (data->source != 0) {
415 g_source_remove(data->source);
416 data->source = 0;
417 }
418
419 /* since the actual timeout deletion is done asynchronously, a update_timeout call may
420 * reschedule the timeout before it's fully deleted, that's why we need to mark it as
421 * 'removed' to prevent reuse
422 */
423 data->removed = TRUE;
424 g_idle_add(virt_viewer_events_cleanup_timeout, data);
425 ret = 0;
426
427 cleanup:
428 g_mutex_unlock(eventlock);
429 return ret;
430 }
431
432 static gpointer event_register_once(gpointer data G_GNUC_UNUSED)
433 {
434 eventlock = g_mutex_new();
435 timeouts = g_ptr_array_new_with_free_func(g_free);
436 handles = g_ptr_array_new_with_free_func(g_free);
437 virEventRegisterImpl(virt_viewer_events_add_handle,
438 virt_viewer_events_update_handle,
439 virt_viewer_events_remove_handle,
440 virt_viewer_events_add_timeout,
441 virt_viewer_events_update_timeout,
442 virt_viewer_events_remove_timeout);
443
444 return NULL;
445 }
446
447 void virt_viewer_events_register(void) {
448 static GOnce once = G_ONCE_INIT;
449
450 g_once(&once, event_register_once, NULL);
451 }
452
453 /*
454 * Local variables:
455 * c-indent-level: 4
456 * c-basic-offset: 4
457 * indent-tabs-mode: nil
458 * End:
459 */
+0
-37
src/virt-viewer-events.h less more
0 /*
1 * events.h: event loop integration
2 *
3 * Copyright (C) 2008-2012 Daniel P. Berrange
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library 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 GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * Author: Daniel P. Berrange <berrange@redhat.com>
20 */
21
22 #ifndef VIRT_VIEWER_EVENT_H
23 #define VIRT_VIEWER_EVENT_H
24
25 #include "virt-viewer-util.h"
26
27 void virt_viewer_events_register(void);
28
29 #endif
30 /*
31 * Local variables:
32 * c-indent-level: 4
33 * c-basic-offset: 4
34 * indent-tabs-mode: nil
35 * End:
36 */
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (C) 2016 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
20 #include <config.h>
21
22 #include "virt-viewer-file-transfer-dialog.h"
23 #include <glib/gi18n.h>
24
25 G_DEFINE_TYPE(VirtViewerFileTransferDialog, virt_viewer_file_transfer_dialog, GTK_TYPE_DIALOG)
26
27 #define FILE_TRANSFER_DIALOG_PRIVATE(o) \
28 (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG, VirtViewerFileTransferDialogPrivate))
29
30 struct _VirtViewerFileTransferDialogPrivate
31 {
32 /* GHashTable<SpiceFileTransferTask, widgets> */
33 GHashTable *file_transfers;
34 guint timer_show_src;
35 guint timer_hide_src;
36 };
37
38
39 static void
40 virt_viewer_file_transfer_dialog_dispose(GObject *object)
41 {
42 VirtViewerFileTransferDialog *self = VIRT_VIEWER_FILE_TRANSFER_DIALOG(object);
43
44 g_clear_pointer(&self->priv->file_transfers, g_hash_table_unref);
45
46 G_OBJECT_CLASS(virt_viewer_file_transfer_dialog_parent_class)->dispose(object);
47 }
48
49 static void
50 virt_viewer_file_transfer_dialog_class_init(VirtViewerFileTransferDialogClass *klass)
51 {
52 GObjectClass *object_class = G_OBJECT_CLASS(klass);
53
54 g_type_class_add_private(klass, sizeof(VirtViewerFileTransferDialogPrivate));
55
56 object_class->dispose = virt_viewer_file_transfer_dialog_dispose;
57 }
58
59 static void
60 dialog_response(GtkDialog *dialog,
61 gint response_id,
62 gpointer user_data G_GNUC_UNUSED)
63 {
64 VirtViewerFileTransferDialog *self = VIRT_VIEWER_FILE_TRANSFER_DIALOG(dialog);
65 GHashTableIter iter;
66 gpointer key, value;
67
68 switch (response_id) {
69 case GTK_RESPONSE_CANCEL:
70 /* cancel all current tasks */
71 g_hash_table_iter_init(&iter, self->priv->file_transfers);
72
73 while (g_hash_table_iter_next(&iter, &key, &value)) {
74 spice_file_transfer_task_cancel(SPICE_FILE_TRANSFER_TASK(key));
75 }
76 break;
77 case GTK_RESPONSE_DELETE_EVENT:
78 /* silently ignore */
79 break;
80 default:
81 g_warn_if_reached();
82 }
83 }
84
85 static void task_cancel_clicked(GtkButton *button G_GNUC_UNUSED,
86 gpointer user_data)
87 {
88 SpiceFileTransferTask *task = user_data;
89 spice_file_transfer_task_cancel(task);
90 }
91
92 typedef struct {
93 GtkWidget *vbox;
94 GtkWidget *hbox;
95 GtkWidget *progress;
96 GtkWidget *label;
97 GtkWidget *cancel;
98 } TaskWidgets;
99
100 static TaskWidgets *task_widgets_new(SpiceFileTransferTask *task)
101 {
102 TaskWidgets *w = g_new0(TaskWidgets, 1);
103
104 w->vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6);
105 w->hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 12);
106 w->progress = gtk_progress_bar_new();
107 w->label = gtk_label_new(spice_file_transfer_task_get_filename(task));
108 w->cancel = gtk_button_new_from_icon_name("gtk-cancel", GTK_ICON_SIZE_SMALL_TOOLBAR);
109 gtk_widget_set_hexpand(w->progress, TRUE);
110 gtk_widget_set_valign(w->progress, GTK_ALIGN_CENTER);
111 gtk_widget_set_hexpand(w->label, TRUE);
112 gtk_widget_set_valign(w->label, GTK_ALIGN_END);
113 gtk_widget_set_halign(w->label, GTK_ALIGN_START);
114 gtk_widget_set_hexpand(w->cancel, FALSE);
115 gtk_widget_set_valign(w->cancel, GTK_ALIGN_CENTER);
116
117 g_signal_connect(w->cancel, "clicked",
118 G_CALLBACK(task_cancel_clicked), task);
119
120 gtk_box_pack_start(GTK_BOX(w->hbox), w->progress, TRUE, TRUE, 0);
121 gtk_box_pack_start(GTK_BOX(w->hbox), w->cancel, FALSE, TRUE, 0);
122 gtk_box_pack_start(GTK_BOX(w->vbox), w->label, TRUE, TRUE, 0);
123 gtk_box_pack_start(GTK_BOX(w->vbox), w->hbox, TRUE, TRUE, 0);
124
125 gtk_widget_show_all(w->vbox);
126 return w;
127 }
128
129 static gboolean delete_event(GtkWidget *widget,
130 GdkEvent *event G_GNUC_UNUSED,
131 gpointer user_data G_GNUC_UNUSED)
132 {
133 /* don't allow window to be deleted, just process the response signal,
134 * which may result in the window being hidden */
135 gtk_dialog_response(GTK_DIALOG(widget), GTK_RESPONSE_CANCEL);
136 return TRUE;
137 }
138
139 static void
140 virt_viewer_file_transfer_dialog_init(VirtViewerFileTransferDialog *self)
141 {
142 GtkBox *content = GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(self)));
143
144 self->priv = FILE_TRANSFER_DIALOG_PRIVATE(self);
145
146 gtk_widget_set_size_request(GTK_WIDGET(content), 400, -1);
147 gtk_container_set_border_width(GTK_CONTAINER(content), 12);
148 self->priv->file_transfers = g_hash_table_new_full(g_direct_hash, g_direct_equal,
149 g_object_unref,
150 (GDestroyNotify)g_free);
151 gtk_dialog_add_button(GTK_DIALOG(self), _("Cancel"), GTK_RESPONSE_CANCEL);
152 gtk_dialog_set_default_response(GTK_DIALOG(self),
153 GTK_RESPONSE_CANCEL);
154 g_signal_connect(self, "response", G_CALLBACK(dialog_response), NULL);
155 g_signal_connect(self, "delete-event", G_CALLBACK(delete_event), NULL);
156 }
157
158 VirtViewerFileTransferDialog *
159 virt_viewer_file_transfer_dialog_new(GtkWindow *parent)
160 {
161 return g_object_new(VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG,
162 "title", _("File Transfers"),
163 "transient-for", parent,
164 "resizable", FALSE,
165 NULL);
166 }
167
168 static void task_progress_notify(GObject *object,
169 GParamSpec *pspec G_GNUC_UNUSED,
170 gpointer user_data)
171 {
172 VirtViewerFileTransferDialog *self = VIRT_VIEWER_FILE_TRANSFER_DIALOG(user_data);
173 SpiceFileTransferTask *task = SPICE_FILE_TRANSFER_TASK(object);
174 TaskWidgets *w = g_hash_table_lookup(self->priv->file_transfers, task);
175 g_return_if_fail(w);
176
177 double pct = spice_file_transfer_task_get_progress(task);
178 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(w->progress), pct);
179 }
180
181 static gboolean hide_transfer_dialog(gpointer data)
182 {
183 VirtViewerFileTransferDialog *self = data;
184 gtk_widget_hide(GTK_WIDGET(self));
185 gtk_dialog_set_response_sensitive(GTK_DIALOG(self),
186 GTK_RESPONSE_CANCEL, FALSE);
187 self->priv->timer_hide_src = 0;
188
189 return G_SOURCE_REMOVE;
190 }
191
192 typedef struct {
193 VirtViewerFileTransferDialog *self;
194 TaskWidgets *widgets;
195 SpiceFileTransferTask *task;
196 } TaskFinishedData;
197
198 static gboolean task_finished_remove(gpointer user_data)
199 {
200 TaskFinishedData *d = user_data;
201
202 gtk_widget_destroy(d->widgets->vbox);
203
204 g_free(d->widgets);
205 g_object_unref(d->task);
206 g_free(d);
207
208 return G_SOURCE_REMOVE;
209 }
210
211 static void task_finished(SpiceFileTransferTask *task,
212 GError *error,
213 gpointer user_data)
214 {
215 TaskFinishedData *d;
216 VirtViewerFileTransferDialog *self = VIRT_VIEWER_FILE_TRANSFER_DIALOG(user_data);
217 TaskWidgets *w = g_hash_table_lookup(self->priv->file_transfers, task);
218
219 if (error && !g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
220 g_warning("File transfer task %p failed: %s", task, error->message);
221
222 g_return_if_fail(w);
223 gtk_widget_set_sensitive(w->cancel, FALSE);
224
225
226 d = g_new0(TaskFinishedData, 1);
227 d->self = self;
228 d->widgets = w;
229 d->task = task;
230
231 g_timeout_add(500, task_finished_remove, d);
232
233 g_hash_table_steal(self->priv->file_transfers, task);
234
235 /* if this is the last transfer, close the dialog */
236 if (!g_hash_table_size(d->self->priv->file_transfers)) {
237 /* cancel any pending 'show' operations if all tasks complete before
238 * the dialog can be shown */
239 if (self->priv->timer_show_src) {
240 g_source_remove(self->priv->timer_show_src);
241 self->priv->timer_show_src = 0;
242 }
243 self->priv->timer_hide_src = g_timeout_add(500, hide_transfer_dialog,
244 d->self);
245 }
246 }
247
248 static gboolean show_transfer_dialog_delayed(gpointer user_data)
249 {
250 VirtViewerFileTransferDialog *self = user_data;
251
252 self->priv->timer_show_src = 0;
253 gtk_widget_show(GTK_WIDGET(self));
254
255 return G_SOURCE_REMOVE;
256 }
257
258 static void show_transfer_dialog(VirtViewerFileTransferDialog *self)
259 {
260 /* if there's a pending 'hide', cancel it */
261 if (self->priv->timer_hide_src) {
262 g_source_remove(self->priv->timer_hide_src);
263 self->priv->timer_hide_src = 0;
264 }
265
266 /* don't show the dialog immediately. For very quick transfers, it doesn't
267 * make sense to show a dialog and immediately hide it. But if there's
268 * already a pending 'show' operation, don't trigger another one */
269 if (self->priv->timer_show_src == 0)
270 self->priv->timer_show_src = g_timeout_add(250,
271 show_transfer_dialog_delayed,
272 self);
273
274 gtk_dialog_set_response_sensitive(GTK_DIALOG(self),
275 GTK_RESPONSE_CANCEL, TRUE);
276 }
277
278 void virt_viewer_file_transfer_dialog_add_task(VirtViewerFileTransferDialog *self,
279 SpiceFileTransferTask *task)
280 {
281 GtkBox *content = GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(self)));
282 TaskWidgets *w = task_widgets_new(task);
283
284 gtk_box_pack_start(content,
285 w->vbox,
286 TRUE, TRUE, 12);
287 g_hash_table_insert(self->priv->file_transfers, g_object_ref(task), w);
288 g_signal_connect(task, "notify::progress", G_CALLBACK(task_progress_notify), self);
289 g_signal_connect(task, "finished", G_CALLBACK(task_finished), self);
290
291 show_transfer_dialog(self);
292 }
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (C) 2016 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
20 #ifndef __VIRT_VIEWER_FILE_TRANSFER_DIALOG_H__
21 #define __VIRT_VIEWER_FILE_TRANSFER_DIALOG_H__
22
23 #include <gtk/gtk.h>
24 #include <spice-client.h>
25
26 G_BEGIN_DECLS
27
28 #define VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG virt_viewer_file_transfer_dialog_get_type()
29
30 #define VIRT_VIEWER_FILE_TRANSFER_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG, VirtViewerFileTransferDialog))
31 #define VIRT_VIEWER_FILE_TRANSFER_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG, VirtViewerFileTransferDialogClass))
32 #define VIRT_VIEWER_IS_FILE_TRANSFER_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG))
33 #define VIRT_VIEWER_IS_FILE_TRANSFER_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG))
34 #define VIRT_VIEWER_FILE_TRANSFER_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG, VirtViewerFileTransferDialogClass))
35
36 typedef struct _VirtViewerFileTransferDialog VirtViewerFileTransferDialog;
37 typedef struct _VirtViewerFileTransferDialogClass VirtViewerFileTransferDialogClass;
38 typedef struct _VirtViewerFileTransferDialogPrivate VirtViewerFileTransferDialogPrivate;
39
40 struct _VirtViewerFileTransferDialog
41 {
42 GtkDialog parent;
43
44 VirtViewerFileTransferDialogPrivate *priv;
45 };
46
47 struct _VirtViewerFileTransferDialogClass
48 {
49 GtkDialogClass parent_class;
50 };
51
52 GType virt_viewer_file_transfer_dialog_get_type(void) G_GNUC_CONST;
53
54 VirtViewerFileTransferDialog *virt_viewer_file_transfer_dialog_new(GtkWindow *parent);
55 void virt_viewer_file_transfer_dialog_add_task(VirtViewerFileTransferDialog *self,
56 SpiceFileTransferTask *task);
57
58 G_END_DECLS
59
60 #endif /* __VIRT_VIEWER_FILE_TRANSFER_DIALOG_H__ */
7676 * - host: string containing the URL of the oVirt engine
7777 * - vm-guid: string containing the guid of the oVirt VM we are connecting to
7878 * - jsessionid: string containing an authentication cookie to be used to
79 * connect to the oVirt engine without being asked for credentials
79 * connect to the oVirt engine without being asked for credentials with oVirt
80 * 3.6
81 * - sso-token: string containing an authentication cookie to be used to
82 * connect to the oVirt engine without being asked for credentials with oVirt
83 * 4.0 and newer
8084 * - ca: string PEM data (use \n to separate the lines)
8185 * - admin: boolean (0 or 1) indicating whether the VM is visible in the user or
8286 * admin portal
129133 PROP_OVIRT_HOST,
130134 PROP_OVIRT_VM_GUID,
131135 PROP_OVIRT_JSESSIONID,
136 PROP_OVIRT_SSO_TOKEN,
132137 PROP_OVIRT_CA,
133138 };
134139
742747 {
743748 virt_viewer_file_set_string(self, OVIRT_GROUP, "jsessionid", value);
744749 g_object_notify(G_OBJECT(self), "ovirt-jsessionid");
750 }
751
752 gchar*
753 virt_viewer_file_get_ovirt_sso_token(VirtViewerFile* self)
754 {
755 return virt_viewer_file_get_string(self, OVIRT_GROUP, "sso-token");
756 }
757
758 void
759 virt_viewer_file_set_ovirt_sso_token(VirtViewerFile* self, const gchar* value)
760 {
761 virt_viewer_file_set_string(self, OVIRT_GROUP, "sso-token", value);
762 g_object_notify(G_OBJECT(self), "ovirt-sso-token");
745763 }
746764
747765 gchar*
9941012 case PROP_OVIRT_JSESSIONID:
9951013 virt_viewer_file_set_ovirt_jsessionid(self, g_value_get_string(value));
9961014 break;
1015 case PROP_OVIRT_SSO_TOKEN:
1016 virt_viewer_file_set_ovirt_sso_token(self, g_value_get_string(value));
1017 break;
9971018 case PROP_OVIRT_CA:
9981019 virt_viewer_file_set_ovirt_ca(self, g_value_get_string(value));
9991020 break;
11031124 case PROP_OVIRT_JSESSIONID:
11041125 g_value_take_string(value, virt_viewer_file_get_ovirt_jsessionid(self));
11051126 break;
1127 case PROP_OVIRT_SSO_TOKEN:
1128 g_value_take_string(value, virt_viewer_file_get_ovirt_sso_token(self));
1129 break;
11061130 case PROP_OVIRT_CA:
11071131 g_value_take_string(value, virt_viewer_file_get_ovirt_ca(self));
11081132 break;
12651289 g_param_spec_string("ovirt-jsessionid", "ovirt-jsessionid", "ovirt-jsessionid", NULL,
12661290 G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE));
12671291
1292 g_object_class_install_property(G_OBJECT_CLASS(klass), PROP_OVIRT_SSO_TOKEN,
1293 g_param_spec_string("ovirt-sso-token", "ovirt-sso-token", "ovirt-sso-token", NULL,
1294 G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE));
1295
12681296 g_object_class_install_property(G_OBJECT_CLASS(klass), PROP_OVIRT_CA,
12691297 g_param_spec_string("ovirt-ca", "ovirt-ca", "ovirt-ca", NULL,
12701298 G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE));
2020 #ifndef __VIRT_VIEWER_FILE_H__
2121 #define __VIRT_VIEWER_FILE_H__
2222
23 #include "virt-glib-compat.h"
2423 #include "virt-viewer-app.h"
2524
2625 G_BEGIN_DECLS
119118 void virt_viewer_file_set_ovirt_vm_guid(VirtViewerFile* self, const gchar* value);
120119 gchar* virt_viewer_file_get_ovirt_jsessionid(VirtViewerFile* self);
121120 void virt_viewer_file_set_ovirt_jsessionid(VirtViewerFile* self, const gchar* value);
121 gchar* virt_viewer_file_get_ovirt_sso_token(VirtViewerFile* self);
122 void virt_viewer_file_set_ovirt_sso_token(VirtViewerFile* self, const gchar* value);
122123 gchar* virt_viewer_file_get_ovirt_ca(VirtViewerFile* self);
123124 void virt_viewer_file_set_ovirt_ca(VirtViewerFile* self, const gchar* value);
124125
+0
-120
src/virt-viewer-guest-details.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!-- Generated with glade 3.16.0 on Thu Jan 16 16:13:38 2014 -->
2 <interface>
3 <!-- interface-requires gtk+ 3.0 -->
4 <object class="GtkDialog" id="guestdetailsdialog">
5 <property name="can_focus">False</property>
6 <property name="title" translatable="yes">Guest Details</property>
7 <property name="resizable">True</property>
8 <property name="default_width">400</property>
9 <property name="type_hint">dialog</property>
10 <signal name="response" handler="virt_viewer_window_guest_details_response" swapped="no"/>
11 <child internal-child="vbox">
12 <object class="GtkBox" id="dialog-vbox2">
13 <property name="can_focus">False</property>
14 <property name="orientation">vertical</property>
15 <property name="spacing">2</property>
16 <child internal-child="action_area">
17 <object class="GtkButtonBox" id="dialog-action_area2">
18 <property name="can_focus">False</property>
19 <property name="layout_style">end</property>
20 <child>
21 <object class="GtkButton" id="button1">
22 <property name="label">gtk-close</property>
23 <property name="visible">True</property>
24 <property name="can_focus">True</property>
25 <property name="receives_default">True</property>
26 <property name="use_stock">True</property>
27 </object>
28 <packing>
29 <property name="expand">False</property>
30 <property name="fill">True</property>
31 <property name="position">0</property>
32 </packing>
33 </child>
34 </object>
35 <packing>
36 <property name="expand">False</property>
37 <property name="fill">True</property>
38 <property name="pack_type">end</property>
39 <property name="position">0</property>
40 </packing>
41 </child>
42 <child>
43 <object class="GtkTable" id="grid1">
44 <property name="visible">True</property>
45 <property name="can_focus">False</property>
46 <property name="border_width">6</property>
47 <property name="row_spacing">6</property>
48 <property name="column_spacing">6</property>
49 <property name="n_rows">2</property>
50 <child>
51 <object class="GtkLabel" id="label1">
52 <property name="visible">True</property>
53 <property name="can_focus">False</property>
54 <property name="xalign">1</property>
55 <property name="label" translatable="yes">Name:</property>
56 </object>
57 <packing>
58 <property name="x_options">GTK_SHRINK | GTK_FILL</property>
59 <property name="y_options">GTK_FILL</property>
60 </packing>
61 </child>
62 <child>
63 <object class="GtkLabel" id="label2">
64 <property name="visible">True</property>
65 <property name="can_focus">False</property>
66 <property name="xalign">1</property>
67 <property name="label" translatable="yes">GUID:</property>
68 </object>
69 <packing>
70 <property name="top_attach">1</property>
71 <property name="bottom_attach">2</property>
72 <property name="x_options">GTK_SHRINK | GTK_FILL</property>
73 <property name="y_options">GTK_FILL</property>
74 </packing>
75 </child>
76 <child>
77 <object class="GtkLabel" id="namevaluelabel">
78 <property name="visible">True</property>
79 <property name="can_focus">False</property>
80 <property name="xalign">0</property>
81 <property name="label" translatable="yes">label</property>
82 <property name="selectable">True</property>
83 </object>
84 <packing>
85 <property name="left_attach">1</property>
86 <property name="right_attach">2</property>
87 <property name="y_options">GTK_FILL</property>
88 </packing>
89 </child>
90 <child>
91 <object class="GtkLabel" id="guidvaluelabel">
92 <property name="visible">True</property>
93 <property name="can_focus">False</property>
94 <property name="xalign">0</property>
95 <property name="label" translatable="yes">label</property>
96 <property name="selectable">True</property>
97 </object>
98 <packing>
99 <property name="left_attach">1</property>
100 <property name="right_attach">2</property>
101 <property name="top_attach">1</property>
102 <property name="bottom_attach">2</property>
103 <property name="y_options">GTK_FILL</property>
104 </packing>
105 </child>
106 </object>
107 <packing>
108 <property name="expand">False</property>
109 <property name="fill">True</property>
110 <property name="position">1</property>
111 </packing>
112 </child>
113 </object>
114 </child>
115 <action-widgets>
116 <action-widget response="-7">button1</action-widget>
117 </action-widgets>
118 </object>
119 </interface>
2121
2222 #include <config.h>
2323 #include <locale.h>
24 #include <gio/gio.h>
2425 #include <gtk/gtk.h>
2526 #include <glib/gi18n.h>
2627 #include <stdlib.h>
27 #ifdef HAVE_GTK_VNC
28 #include <vncdisplay.h>
29 #endif
30 #ifdef HAVE_SPICE_GTK
31 #include <spice-option.h>
32 #endif
28
3329 #include "virt-viewer.h"
34
35 static void virt_viewer_version(void)
36 {
37 g_print(_("%s version %s\n"), PACKAGE, VERSION BUILDID);
38
39 exit(EXIT_SUCCESS);
40 }
41
30 #include "virt-viewer-util.h"
4231
4332 int main(int argc, char **argv)
4433 {
45 GOptionContext *context;
46 GError *error = NULL;
4734 int ret = 1;
48 char *uri = NULL;
49 gchar **args = NULL;
50 gboolean direct = FALSE;
51 gboolean attach = FALSE;
52 gboolean waitvm = FALSE;
53 gboolean reconnect = FALSE;
54 VirtViewer *viewer = NULL;
55 char *base_name;
56 char *help_msg = NULL;
57 const GOptionEntry options [] = {
58 { "version", 'V', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
59 virt_viewer_version, N_("Display version information"), NULL },
60 { "direct", 'd', 0, G_OPTION_ARG_NONE, &direct,
61 N_("Direct connection with no automatic tunnels"), NULL },
62 { "attach", 'a', 0, G_OPTION_ARG_NONE, &attach,
63 N_("Attach to the local display using libvirt"), NULL },
64 { "connect", 'c', 0, G_OPTION_ARG_STRING, &uri,
65 N_("Connect to hypervisor"), "URI"},
66 { "wait", 'w', 0, G_OPTION_ARG_NONE, &waitvm,
67 N_("Wait for domain to start"), NULL },
68 { "reconnect", 'r', 0, G_OPTION_ARG_NONE, &reconnect,
69 N_("Reconnect to domain upon restart"), NULL },
70 { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_STRING_ARRAY, &args,
71 NULL, "-- DOMAIN-NAME|ID|UUID" },
72 { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
73 };
74 GOptionGroup* app_options = NULL;
35 GApplication *app= NULL;
7536
7637 virt_viewer_util_init(_("Virt Viewer"));
38 app = G_APPLICATION(virt_viewer_new());
7739
78 base_name = g_path_get_basename(argv[0]);
79 help_msg = g_strdup_printf(_("Run '%s --help' to see a full list of available command line options"),
80 base_name);
81 g_free(base_name);
82
83 /* Setup command line options */
84 context = g_option_context_new (NULL);
85 g_option_context_set_summary (context, _("Virtual machine graphical console"));
86 app_options = virt_viewer_app_get_option_group();
87 g_option_group_add_entries (app_options, options);
88 g_option_context_set_main_group (context, app_options);
89 g_option_context_add_group (context, gtk_get_option_group (TRUE));
90 #ifdef HAVE_GTK_VNC
91 g_option_context_add_group (context, vnc_display_get_option_group ());
92 #endif
93 #ifdef HAVE_SPICE_GTK
94 g_option_context_add_group (context, spice_get_option_group ());
95 #endif
96 g_option_context_parse (context, &argc, &argv, &error);
97 if (error) {
98 g_printerr("%s\n%s\n",
99 error->message, help_msg);
100 goto cleanup;
101 }
102
103 g_option_context_free(context);
104
105 if (args && (g_strv_length(args) != 1)) {
106 g_printerr(_("\nUsage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n\n%s\n\n"), argv[0], help_msg);
107 goto cleanup;
108 }
109
110 if (args == NULL && waitvm) {
111 g_printerr(_("\nNo DOMAIN-NAME|ID|UUID was specified for '--wait'\n\n"));
112 goto cleanup;
113 }
114
115 viewer = virt_viewer_new(uri, (args) ? args[0] : NULL, direct, attach, waitvm, reconnect);
116 if (viewer == NULL)
117 goto cleanup;
118
119 if (!virt_viewer_app_start(VIRT_VIEWER_APP(viewer), &error)) {
120 if (g_error_matches(error, VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_CANCELLED))
121 ret = 0;
122 else if (error) {
123 virt_viewer_app_simple_message_dialog(VIRT_VIEWER_APP(viewer), error->message);
124 }
125 goto cleanup;
126 }
127
128 gtk_main();
129
130 ret = 0;
131
132 cleanup:
133 if (viewer)
134 g_object_unref(viewer);
135 g_free(uri);
136 g_strfreev(args);
137 g_free(help_msg);
138 g_clear_error(&error);
40 ret = g_application_run(app, argc, argv);
41 g_object_unref(app);
13942
14043 return ret;
14144 }
7070 virt_viewer_notebook_init (VirtViewerNotebook *self)
7171 {
7272 VirtViewerNotebookPrivate *priv;
73 GdkColor color;
7473
7574 self->priv = GET_PRIVATE(self);
7675 priv = self->priv;
8079 gtk_notebook_set_show_border(GTK_NOTEBOOK(self), FALSE);
8180 gtk_widget_show_all(priv->status);
8281 gtk_notebook_append_page(GTK_NOTEBOOK(self), priv->status, NULL);
83 gdk_color_parse("white", &color);
84 gtk_widget_modify_fg(priv->status, GTK_STATE_NORMAL, &color);
8582 }
8683
8784 void
+0
-134
src/virt-viewer-preferences.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.6 -->
3 <!-- interface-naming-policy toplevel-contextual -->
4 <object class="GtkDialog" id="preferences">
5 <property name="can_focus">False</property>
6 <property name="border_width">5</property>
7 <property name="title" translatable="yes">Preferences</property>
8 <property name="type_hint">normal</property>
9 <signal name="delete-event" handler="gtk_widget_hide_on_delete" swapped="no"/>
10 <child internal-child="vbox">
11 <object class="GtkVBox" id="dialog-vbox1">
12 <property name="visible">True</property>
13 <property name="can_focus">False</property>
14 <child internal-child="action_area">
15 <object class="GtkHButtonBox" id="dialog-action_area1">
16 <property name="visible">True</property>
17 <property name="can_focus">False</property>
18 <property name="layout_style">end</property>
19 <child>
20 <placeholder/>
21 </child>
22 <child>
23 <placeholder/>
24 </child>
25 </object>
26 <packing>
27 <property name="expand">True</property>
28 <property name="fill">True</property>
29 <property name="position">0</property>
30 </packing>
31 </child>
32 <child>
33 <object class="GtkNotebook" id="notebook1">
34 <property name="visible">True</property>
35 <property name="can_focus">True</property>
36 <child>
37 <object class="GtkVBox" id="vbox1">
38 <property name="visible">True</property>
39 <property name="can_focus">False</property>
40 <property name="border_width">18</property>
41 <property name="spacing">6</property>
42 <child>
43 <object class="GtkLabel" id="label2">
44 <property name="visible">True</property>
45 <property name="can_focus">False</property>
46 <property name="xalign">0</property>
47 <property name="label" translatable="yes">Folder sharing</property>
48 <attributes>
49 <attribute name="weight" value="bold"/>
50 </attributes>
51 </object>
52 <packing>
53 <property name="expand">False</property>
54 <property name="fill">False</property>
55 <property name="position">0</property>
56 </packing>
57 </child>
58 <child>
59 <object class="GtkTable" id="table1">
60 <property name="visible">True</property>
61 <property name="can_focus">False</property>
62 <property name="border_width">6</property>
63 <property name="n_rows">2</property>
64 <property name="n_columns">2</property>
65 <property name="column_spacing">12</property>
66 <property name="row_spacing">6</property>
67 <child>
68 <object class="GtkCheckButton" id="cbsharefolder">
69 <property name="label" translatable="yes">Share folder</property>
70 <property name="visible">True</property>
71 <property name="can_focus">True</property>
72 <property name="receives_default">False</property>
73 <property name="draw_indicator">True</property>
74 </object>
75 <packing>
76 <property name="x_options"/>
77 </packing>
78 </child>
79 <child>
80 <object class="GtkCheckButton" id="cbsharefolderro">
81 <property name="label" translatable="yes">Read-only</property>
82 <property name="visible">True</property>
83 <property name="can_focus">True</property>
84 <property name="receives_default">False</property>
85 <property name="draw_indicator">True</property>
86 </object>
87 <packing>
88 <property name="right_attach">2</property>
89 <property name="top_attach">1</property>
90 <property name="bottom_attach">2</property>
91 </packing>
92 </child>
93 <child>
94 <object class="GtkFileChooserButton" id="fcsharefolder">
95 <property name="visible">True</property>
96 <property name="can_focus">False</property>
97 <property name="action">select-folder</property>
98 </object>
99 <packing>
100 <property name="left_attach">1</property>
101 <property name="right_attach">2</property>
102 </packing>
103 </child>
104 </object>
105 <packing>
106 <property name="expand">False</property>
107 <property name="fill">False</property>
108 <property name="position">1</property>
109 </packing>
110 </child>
111 </object>
112 </child>
113 <child type="tab">
114 <object class="GtkLabel" id="label1">
115 <property name="visible">True</property>
116 <property name="can_focus">False</property>
117 <property name="label" translatable="yes">Spice</property>
118 </object>
119 <packing>
120 <property name="tab_fill">False</property>
121 </packing>
122 </child>
123 </object>
124 <packing>
125 <property name="expand">True</property>
126 <property name="fill">True</property>
127 <property name="position">1</property>
128 </packing>
129 </child>
130 </object>
131 </child>
132 </object>
133 </interface>
0 #include <gio/gio.h>
1
2 #if defined (__ELF__) && ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))
3 # define SECTION __attribute__ ((section (".gresource.virt_viewer"), aligned (8)))
4 #else
5 # define SECTION
6 #endif
7
8 static const SECTION union { const guint8 data[78584]; 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, 0xf8, 0x02, 0x00, 0x00,
12 0x00, 0x00, 0x00, 0x28, 0x1a, 0x00, 0x00, 0x00,
13 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
14 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
15 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
16 0x07, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
17 0x0a, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
18 0x0b, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
19 0x0b, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
20 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
21 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
22 0x11, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
23 0x14, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
24 0x16, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
25 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
26 0xc6, 0x62, 0xa8, 0x11, 0x05, 0x00, 0x00, 0x00,
27 0xf8, 0x02, 0x00, 0x00, 0x13, 0x00, 0x76, 0x00,
28 0x10, 0x03, 0x00, 0x00, 0x47, 0x07, 0x00, 0x00,
29 0x5a, 0xc6, 0xe1, 0x03, 0x0b, 0x00, 0x00, 0x00,
30 0x47, 0x07, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00,
31 0x50, 0x07, 0x00, 0x00, 0x54, 0x07, 0x00, 0x00,
32 0x1a, 0x0f, 0x8f, 0x65, 0x17, 0x00, 0x00, 0x00,
33 0x54, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x4c, 0x00,
34 0x60, 0x07, 0x00, 0x00, 0x68, 0x07, 0x00, 0x00,
35 0x2d, 0x7f, 0x1e, 0x74, 0x08, 0x00, 0x00, 0x00,
36 0x68, 0x07, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
37 0x78, 0x07, 0x00, 0x00, 0xc4, 0x0d, 0x00, 0x00,
38 0x4b, 0x50, 0x90, 0x0b, 0x0c, 0x00, 0x00, 0x00,
39 0xc4, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x4c, 0x00,
40 0xc8, 0x0d, 0x00, 0x00, 0xcc, 0x0d, 0x00, 0x00,
41 0xf8, 0xc1, 0x12, 0x06, 0x0b, 0x00, 0x00, 0x00,
42 0xcc, 0x0d, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00,
43 0xd4, 0x0d, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00,
44 0x47, 0xf0, 0x78, 0xb7, 0x02, 0x00, 0x00, 0x00,
45 0xdc, 0x0d, 0x00, 0x00, 0x03, 0x00, 0x4c, 0x00,
46 0xe0, 0x0d, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00,
47 0x44, 0x7e, 0x05, 0x0b, 0x0b, 0x00, 0x00, 0x00,
48 0xfc, 0x0d, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00,
49 0x04, 0x0e, 0x00, 0x00, 0x08, 0x0e, 0x00, 0x00,
50 0x96, 0xbd, 0x43, 0x08, 0x0b, 0x00, 0x00, 0x00,
51 0x08, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00,
52 0x10, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00,
53 0x1b, 0xfe, 0x47, 0xed, 0x07, 0x00, 0x00, 0x00,
54 0x14, 0x0e, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
55 0x28, 0x0e, 0x00, 0x00, 0x26, 0x18, 0x00, 0x00,
56 0x5f, 0x8c, 0xb5, 0x30, 0x06, 0x00, 0x00, 0x00,
57 0x26, 0x18, 0x00, 0x00, 0x14, 0x00, 0x76, 0x00,
58 0x40, 0x18, 0x00, 0x00, 0xcf, 0x24, 0x00, 0x00,
59 0x85, 0x5f, 0xf4, 0x8b, 0x02, 0x00, 0x00, 0x00,
60 0xcf, 0x24, 0x00, 0x00, 0x06, 0x00, 0x4c, 0x00,
61 0xd8, 0x24, 0x00, 0x00, 0xf0, 0x24, 0x00, 0x00,
62 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,
63 0xf0, 0x24, 0x00, 0x00, 0x01, 0x00, 0x4c, 0x00,
64 0xf4, 0x24, 0x00, 0x00, 0xf8, 0x24, 0x00, 0x00,
65 0x17, 0x53, 0x0e, 0x8b, 0x06, 0x00, 0x00, 0x00,
66 0xf8, 0x24, 0x00, 0x00, 0x0e, 0x00, 0x76, 0x00,
67 0x08, 0x25, 0x00, 0x00, 0x94, 0x67, 0x00, 0x00,
68 0x44, 0xd2, 0xec, 0x36, 0x06, 0x00, 0x00, 0x00,
69 0x94, 0x67, 0x00, 0x00, 0x1c, 0x00, 0x76, 0x00,
70 0xb0, 0x67, 0x00, 0x00, 0xed, 0x7b, 0x00, 0x00,
71 0x76, 0x74, 0xd6, 0xa2, 0x06, 0x00, 0x00, 0x00,
72 0xed, 0x7b, 0x00, 0x00, 0x1a, 0x00, 0x76, 0x00,
73 0x08, 0x7c, 0x00, 0x00, 0x16, 0x94, 0x00, 0x00,
74 0xfd, 0x25, 0x30, 0x6a, 0x19, 0x00, 0x00, 0x00,
75 0x16, 0x94, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
76 0x28, 0x94, 0x00, 0x00, 0xf9, 0xda, 0x00, 0x00,
77 0x16, 0x22, 0x3d, 0xaa, 0x06, 0x00, 0x00, 0x00,
78 0xf9, 0xda, 0x00, 0x00, 0x13, 0x00, 0x76, 0x00,
79 0x10, 0xdb, 0x00, 0x00, 0x25, 0xf7, 0x00, 0x00,
80 0x15, 0xe9, 0x13, 0x36, 0x06, 0x00, 0x00, 0x00,
81 0x25, 0xf7, 0x00, 0x00, 0x18, 0x00, 0x76, 0x00,
82 0x40, 0xf7, 0x00, 0x00, 0x29, 0x12, 0x01, 0x00,
83 0x8b, 0x62, 0xfb, 0x34, 0x18, 0x00, 0x00, 0x00,
84 0x29, 0x12, 0x01, 0x00, 0x0f, 0x00, 0x76, 0x00,
85 0x38, 0x12, 0x01, 0x00, 0x0e, 0x16, 0x01, 0x00,
86 0x7f, 0x72, 0x6e, 0x6f, 0x06, 0x00, 0x00, 0x00,
87 0x0e, 0x16, 0x01, 0x00, 0x1c, 0x00, 0x76, 0x00,
88 0x30, 0x16, 0x01, 0x00, 0x54, 0x2b, 0x01, 0x00,
89 0x71, 0x87, 0xdc, 0x71, 0x01, 0x00, 0x00, 0x00,
90 0x54, 0x2b, 0x01, 0x00, 0x0f, 0x00, 0x76, 0x00,
91 0x68, 0x2b, 0x01, 0x00, 0x0e, 0x2e, 0x01, 0x00,
92 0x4f, 0x83, 0xfd, 0xf2, 0x05, 0x00, 0x00, 0x00,
93 0x0e, 0x2e, 0x01, 0x00, 0x0f, 0x00, 0x76, 0x00,
94 0x20, 0x2e, 0x01, 0x00, 0xcd, 0x32, 0x01, 0x00,
95 0x07, 0xd6, 0x7a, 0xe9, 0x04, 0x00, 0x00, 0x00,
96 0xcd, 0x32, 0x01, 0x00, 0x0d, 0x00, 0x4c, 0x00,
97 0xdc, 0x32, 0x01, 0x00, 0xe0, 0x32, 0x01, 0x00,
98 0xb4, 0x90, 0xee, 0x05, 0x0b, 0x00, 0x00, 0x00,
99 0xe0, 0x32, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
100 0xe8, 0x32, 0x01, 0x00, 0xec, 0x32, 0x01, 0x00,
101 0x66, 0x9e, 0xc2, 0x8d, 0x0b, 0x00, 0x00, 0x00,
102 0xec, 0x32, 0x01, 0x00, 0x08, 0x00, 0x4c, 0x00,
103 0xf4, 0x32, 0x01, 0x00, 0xf8, 0x32, 0x01, 0x00,
104 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65,
105 0x77, 0x65, 0x72, 0x2d, 0x75, 0x73, 0x62, 0x2e,
106 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00,
107 0x27, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
108 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
109 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
110 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
111 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
112 0xf8, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
113 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
114 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x03, 0xdc, 0x49,
115 0x44, 0x41, 0x54, 0x48, 0x89, 0x95, 0x96, 0x4d,
116 0x68, 0x5c, 0x55, 0x14, 0xc7, 0x7f, 0xf7, 0xde,
117 0x37, 0xb1, 0xb6, 0x26, 0x21, 0x35, 0x36, 0xa1,
118 0x60, 0x5a, 0x5b, 0x0b, 0x29, 0xe2, 0xa6, 0xa5,
119 0x54, 0x12, 0x93, 0x12, 0x14, 0x51, 0xa1, 0x0b,
120 0x3f, 0xc0, 0x85, 0x96, 0x5a, 0x5d, 0xe9, 0xce,
121 0x9d, 0xe0, 0xd2, 0x18, 0x2b, 0x82, 0x9b, 0x2e,
122 0xdc, 0x29, 0x4d, 0x11, 0x41, 0x09, 0xba, 0x48,
123 0x83, 0x88, 0x1f, 0xf5, 0xa3, 0x69, 0x2d, 0x71,
124 0xa1, 0xa1, 0xb5, 0x4d, 0x32, 0xda, 0xa4, 0xc9,
125 0x24, 0x4d, 0x32, 0x9d, 0x97, 0x74, 0x92, 0xce,
126 0xbc, 0xfb, 0xe5, 0xe2, 0xcd, 0xbc, 0x74, 0x92,
127 0x99, 0x40, 0x0f, 0x1c, 0x78, 0xef, 0xcf, 0xf9,
128 0xfc, 0x9f, 0x7b, 0xcf, 0x7b, 0x62, 0x74, 0x74,
129 0xb4, 0x45, 0xd6, 0xf9, 0x33, 0x78, 0xdf, 0x85,
130 0x60, 0x0b, 0x80, 0xf7, 0x1e, 0x21, 0x04, 0xf7,
131 0x22, 0x15, 0x3e, 0x9e, 0x02, 0xf0, 0x8b, 0xd3,
132 0xf2, 0x78, 0xe0, 0x55, 0xf4, 0x45, 0x53, 0x43,
133 0x4b, 0x4f, 0x43, 0x7d, 0xa3, 0x04, 0x41, 0xd9,
134 0x46, 0x08, 0x81, 0xf7, 0x65, 0xc7, 0x18, 0x3b,
135 0x3b, 0x3c, 0x81, 0x00, 0x9e, 0xef, 0x78, 0xb4,
136 0x14, 0x34, 0xb6, 0x13, 0x22, 0xb6, 0x2b, 0x63,
137 0xe0, 0xb7, 0x2c, 0xe7, 0x97, 0x9e, 0x5e, 0xc8,
138 0x2e, 0x7c, 0x19, 0x44, 0x91, 0xee, 0xae, 0x7f,
139 0xa0, 0x51, 0xae, 0xae, 0xae, 0x24, 0x46, 0xd5,
140 0x64, 0x34, 0xbd, 0xc8, 0xc9, 0xd3, 0xbf, 0x01,
141 0xd0, 0xb4, 0x4d, 0xf1, 0xf8, 0xde, 0xe6, 0x4d,
142 0x3b, 0xaa, 0xdf, 0xd6, 0xa0, 0x32, 0x73, 0xd3,
143 0x4f, 0x4a, 0x6b, 0x5d, 0x0a, 0x3c, 0xd6, 0x5a,
144 0x9c, 0x73, 0x55, 0x75, 0x21, 0x5c, 0xa1, 0xb7,
145 0xff, 0x02, 0xc6, 0x79, 0x8c, 0xf3, 0xf4, 0xf6,
146 0x5f, 0x60, 0x21, 0x5c, 0xa9, 0x69, 0xef, 0x9c,
147 0x03, 0xc0, 0x5a, 0x97, 0x92, 0xc6, 0x18, 0xbc,
148 0x07, 0x6b, 0x6d, 0x55, 0x2d, 0x44, 0x9a, 0xde,
149 0xfe, 0x4b, 0x84, 0x79, 0x8d, 0x94, 0x0a, 0x29,
150 0x15, 0x61, 0x3e, 0xc6, 0x0a, 0x91, 0xae, 0xe9,
151 0xe7, 0x3d, 0x18, 0x63, 0x08, 0xb4, 0x36, 0x00,
152 0x49, 0xd6, 0xf5, 0xf2, 0xd9, 0xd0, 0x15, 0xc6,
153 0xa6, 0x97, 0x90, 0x4a, 0x56, 0xe0, 0x63, 0xd3,
154 0x4b, 0x7c, 0x3e, 0x74, 0x85, 0xc1, 0x8b, 0x93,
155 0x15, 0xf8, 0xb7, 0xef, 0x3f, 0x97, 0x3c, 0x6b,
156 0x6d, 0x08, 0x9c, 0xb5, 0xc4, 0x14, 0x55, 0x4f,
157 0xf0, 0xce, 0x2b, 0x87, 0x79, 0xef, 0x44, 0x0f,
158 0x00, 0x9d, 0x6f, 0x9d, 0x01, 0xe0, 0xfc, 0xa7,
159 0xc7, 0x00, 0x58, 0x5d, 0x5d, 0xe5, 0xec, 0xa5,
160 0xe9, 0x0a, 0xfb, 0xb5, 0x38, 0x1e, 0x67, 0x2d,
161 0x81, 0xb1, 0x31, 0x45, 0xce, 0xd9, 0xaa, 0x09,
162 0x72, 0xb9, 0x5b, 0xe4, 0x72, 0xb7, 0x00, 0x90,
163 0x4a, 0x01, 0x30, 0x33, 0x13, 0x07, 0x0d, 0xf3,
164 0x51, 0x82, 0x95, 0xa5, 0x1c, 0xc7, 0x7b, 0x30,
165 0xd6, 0x10, 0x68, 0xad, 0x2b, 0x32, 0x5b, 0xe7,
166 0x19, 0x38, 0x7f, 0x83, 0xe1, 0xab, 0x8b, 0x00,
167 0x74, 0xb4, 0x37, 0xf3, 0x52, 0xe7, 0xc3, 0x28,
168 0x29, 0x10, 0x52, 0x25, 0xb6, 0xe1, 0x8a, 0xa6,
169 0xef, 0xab, 0xcb, 0x09, 0xb6, 0xb1, 0x03, 0xd0,
170 0x5a, 0x13, 0x58, 0x63, 0x71, 0xce, 0x26, 0x99,
171 0x07, 0x86, 0x67, 0x18, 0x1c, 0x99, 0x4b, 0x8c,
172 0x06, 0x47, 0xe6, 0x40, 0x08, 0x5e, 0xee, 0xd8,
173 0x99, 0x54, 0x9b, 0xcb, 0x17, 0xf8, 0x68, 0x60,
174 0x9c, 0xb9, 0x30, 0xa2, 0xad, 0xb5, 0x91, 0x4f,
175 0xde, 0xee, 0xa6, 0xb9, 0xe1, 0x7e, 0x00, 0xa6,
176 0xa6, 0xae, 0x27, 0x9d, 0x58, 0x53, 0xa2, 0xc8,
177 0x39, 0x97, 0x64, 0xbe, 0x38, 0xb6, 0x8c, 0x5c,
178 0x57, 0xd5, 0x1f, 0xe3, 0x21, 0x2f, 0x1c, 0x6e,
179 0x4d, 0xf0, 0x8f, 0xbf, 0x49, 0xc7, 0xc1, 0x5b,
180 0x1a, 0x39, 0xf9, 0xe6, 0x13, 0xac, 0x86, 0xf3,
181 0xfc, 0x97, 0xad, 0xa4, 0xd8, 0x39, 0x17, 0x53,
182 0x64, 0xb4, 0xc1, 0x39, 0xbf, 0x36, 0x03, 0x29,
183 0x11, 0xb2, 0xf2, 0xc4, 0x38, 0x14, 0xce, 0xd9,
184 0x04, 0x9f, 0x0d, 0x23, 0xda, 0x5a, 0x1a, 0xe8,
185 0x3b, 0x71, 0x88, 0xc2, 0xed, 0x79, 0xac, 0xdd,
186 0x38, 0x3f, 0xe7, 0x3c, 0x46, 0x1b, 0xa4, 0x31,
187 0x26, 0x6e, 0xc7, 0xc6, 0x5d, 0x3c, 0x73, 0xb0,
188 0x0d, 0xa9, 0x54, 0x85, 0xde, 0x57, 0x97, 0x22,
189 0x97, 0xd7, 0xc9, 0xfb, 0xae, 0xd6, 0x46, 0x3e,
190 0x7c, 0xe3, 0x10, 0x2b, 0xe1, 0x4d, 0xa2, 0x48,
191 0x27, 0xbe, 0x77, 0xab, 0x73, 0x76, 0xed, 0x1e,
192 0xc4, 0x60, 0x5c, 0xc5, 0xd1, 0x83, 0x0f, 0xa1,
193 0x94, 0xe2, 0xbb, 0x3f, 0xa7, 0xf1, 0xde, 0x53,
194 0x17, 0x28, 0x16, 0x97, 0x0b, 0x9c, 0xfa, 0x7e,
195 0x2e, 0x19, 0xe8, 0x07, 0xc7, 0x0f, 0xb0, 0x9c,
196 0x9d, 0xc5, 0x18, 0xb3, 0xa1, 0xf2, 0xbb, 0x87,
197 0xad, 0xb5, 0x21, 0xb0, 0xd6, 0x60, 0x4b, 0x73,
198 0x00, 0xc8, 0x2e, 0xce, 0x73, 0xf4, 0xc0, 0x0e,
199 0x5e, 0xeb, 0xd9, 0x0d, 0x08, 0xf2, 0x77, 0x22,
200 0xfa, 0xbe, 0xbe, 0xc2, 0xe5, 0xa9, 0x30, 0x19,
201 0x72, 0xb8, 0x30, 0xb3, 0x69, 0xf0, 0x38, 0x41,
202 0x1c, 0x37, 0x30, 0xc6, 0x60, 0x8c, 0xad, 0xe0,
203 0x31, 0x93, 0xc9, 0x90, 0xc9, 0x64, 0x4a, 0x23,
204 0x91, 0xbc, 0xfb, 0xe2, 0x3e, 0x4e, 0x0d, 0x4d,
205 0x32, 0x32, 0x91, 0x05, 0xa0, 0x58, 0x2c, 0x6e,
206 0x1a, 0x1c, 0xc0, 0x98, 0x98, 0x22, 0xa9, 0xb5,
207 0x26, 0x9e, 0x43, 0xf5, 0xa5, 0x65, 0x8c, 0xe1,
208 0xc6, 0xe4, 0x75, 0x5a, 0x9b, 0x52, 0x08, 0xa5,
209 0x10, 0x4a, 0xf1, 0xe3, 0xd5, 0x3b, 0x25, 0x9e,
210 0x6b, 0xab, 0x31, 0x26, 0xbe, 0x07, 0xc6, 0x98,
211 0xd2, 0x82, 0xaa, 0xbe, 0x2a, 0x00, 0x7e, 0x1a,
212 0xd7, 0xfc, 0xfe, 0xef, 0x6d, 0x64, 0xe9, 0x14,
213 0x9d, 0x9b, 0xd0, 0x58, 0x07, 0x3d, 0xfb, 0x52,
214 0x9b, 0x50, 0x54, 0x1a, 0x72, 0x4c, 0x91, 0xa9,
215 0xb9, 0x2a, 0x00, 0xfe, 0xba, 0x29, 0x10, 0xeb,
216 0x56, 0xc2, 0xdf, 0xf3, 0x82, 0x23, 0x7b, 0x6b,
217 0xfb, 0x94, 0xe3, 0x06, 0xe5, 0x56, 0x36, 0xeb,
218 0x20, 0x15, 0xa4, 0x58, 0x77, 0x35, 0x08, 0x54,
219 0x80, 0xb5, 0xba, 0xa6, 0x4f, 0x99, 0x7a, 0x19,
220 0x27, 0x88, 0x92, 0x75, 0x51, 0x4d, 0xbb, 0xda,
221 0xb7, 0x23, 0x4a, 0x17, 0xb0, 0xac, 0x5d, 0xfb,
222 0xb7, 0x6f, 0xea, 0xa3, 0x75, 0x14, 0x77, 0x60,
223 0xb5, 0xd1, 0xc5, 0x62, 0x31, 0xe5, 0x9c, 0xaf,
224 0xf9, 0xc9, 0x3c, 0xb2, 0x47, 0x22, 0xe4, 0x0e,
225 0x7e, 0xfd, 0x27, 0xde, 0xaa, 0xdd, 0xfb, 0x1f,
226 0xa4, 0x7b, 0xb7, 0x27, 0x33, 0x5d, 0xbd, 0x6b,
227 0x21, 0x04, 0xc5, 0x62, 0x84, 0xd5, 0x2e, 0x0a,
228 0xbc, 0xe7, 0xdc, 0x78, 0x7a, 0xac, 0xe7, 0x91,
229 0x5d, 0x7b, 0x02, 0x29, 0x25, 0x52, 0xca, 0x52,
230 0xa2, 0xb5, 0x1f, 0x80, 0xa5, 0xdc, 0x22, 0xcf,
231 0xb6, 0xef, 0xe4, 0xd5, 0xce, 0xc7, 0x00, 0xc8,
232 0x66, 0xb3, 0xcc, 0xce, 0x66, 0xd8, 0xba, 0x35,
233 0x5e, 0x70, 0xa5, 0x0f, 0x3d, 0x42, 0x88, 0xe4,
234 0x14, 0x8d, 0xa7, 0xaf, 0x19, 0xef, 0xed, 0xcf,
235 0x41, 0xb1, 0x60, 0x8e, 0xa5, 0xd3, 0xe9, 0xd3,
236 0x63, 0x63, 0xd7, 0x9e, 0x02, 0x82, 0x9a, 0xa4,
237 0xde, 0x9b, 0x18, 0xa5, 0xd4, 0x0f, 0xde, 0xca,
238 0xd7, 0xff, 0x07, 0x57, 0xb2, 0x08, 0x89, 0x73,
239 0xd4, 0x4a, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x49,
240 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00,
241 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x31,
242 0x36, 0x78, 0x31, 0x36, 0x2f, 0x00, 0x00, 0x00,
243 0x15, 0x00, 0x00, 0x00, 0x76, 0x69, 0x72, 0x74,
244 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2f,
245 0x0b, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
246 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65,
247 0x77, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00,
248 0x3c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
249 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
250 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
251 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20,
252 0x08, 0x06, 0x00, 0x00, 0x00, 0x73, 0x7a, 0x7a,
253 0xf4, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49,
254 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64,
255 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
256 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d,
257 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00,
258 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f,
259 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
260 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63,
261 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b,
262 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x05, 0xb9, 0x49,
263 0x44, 0x41, 0x54, 0x58, 0x85, 0xc5, 0x57, 0x4b,
264 0x8f, 0x63, 0x47, 0x15, 0xfe, 0xaa, 0xea, 0x56,
265 0xd5, 0x75, 0x8f, 0xed, 0xee, 0x76, 0x37, 0x19,
266 0x26, 0x2d, 0x02, 0xd3, 0xf3, 0x20, 0xc9, 0x74,
267 0xc3, 0x82, 0x24, 0x68, 0x44, 0x88, 0x82, 0x82,
268 0xb0, 0x66, 0x11, 0x14, 0x65, 0x01, 0xac, 0x58,
269 0xe7, 0x2f, 0x64, 0x11, 0xb1, 0x43, 0x48, 0x48,
270 0xd9, 0x05, 0x89, 0x05, 0x0a, 0x6c, 0x10, 0x3f,
271 0x21, 0xde, 0x21, 0xc4, 0x23, 0x44, 0x4c, 0x93,
272 0x99, 0x46, 0x30, 0x51, 0x80, 0x69, 0xd2, 0x78,
273 0xda, 0x49, 0x3f, 0xfc, 0x6a, 0xbf, 0x6e, 0x55,
274 0x9d, 0xc3, 0xc2, 0xf7, 0x3a, 0xbe, 0xb6, 0xd3,
275 0x43, 0x46, 0x23, 0xe5, 0x93, 0x8e, 0xeb, 0xd4,
276 0xad, 0xf2, 0x39, 0xdf, 0x3d, 0xe7, 0xd4, 0xe3,
277 0x8a, 0x6a, 0xb5, 0x8a, 0xcf, 0x12, 0xf2, 0x33,
278 0xf5, 0x0e, 0x20, 0xca, 0x94, 0x1b, 0x37, 0x6e,
279 0x3c, 0xad, 0xb5, 0x7e, 0x93, 0x99, 0xbf, 0x70,
280 0xbf, 0x3f, 0x31, 0x33, 0x88, 0x08, 0x44, 0x34,
281 0xd1, 0x99, 0x09, 0x21, 0xd0, 0xfc, 0x18, 0x13,
282 0x98, 0xc6, 0xcf, 0x84, 0x10, 0x7d, 0xe7, 0xdc,
283 0x4f, 0x77, 0x76, 0x76, 0x5e, 0x9f, 0x23, 0xa0,
284 0xb5, 0x7e, 0x6d, 0x6b, 0xfb, 0xda, 0xb5, 0xcd,
285 0xcd, 0x2f, 0x9d, 0xed, 0x7c, 0xea, 0x37, 0x53,
286 0x39, 0x37, 0xca, 0xe3, 0x3e, 0xcf, 0x8f, 0x0d,
287 0x06, 0xc3, 0xf2, 0x9b, 0xbf, 0xf8, 0xd5, 0x8f,
288 0xb7, 0xb7, 0xb7, 0x7f, 0xbe, 0xbb, 0xbb, 0xdb,
289 0xcb, 0x11, 0x00, 0xb0, 0xb1, 0xb6, 0x5e, 0xc1,
290 0x6f, 0x7f, 0xb7, 0x8f, 0x5f, 0xfe, 0xfa, 0x26,
291 0xac, 0x95, 0x10, 0x10, 0x00, 0x00, 0x21, 0x04,
292 0xc0, 0x0c, 0xa4, 0xad, 0x10, 0x62, 0xa2, 0x33,
293 0x0b, 0xe0, 0xe3, 0xee, 0x78, 0x2c, 0x75, 0x28,
294 0x00, 0xf8, 0x40, 0xf8, 0xce, 0xb7, 0xae, 0xe2,
295 0xfb, 0xdf, 0xbb, 0x86, 0xa5, 0xa5, 0x73, 0x88,
296 0xa2, 0x28, 0xb4, 0xdb, 0xed, 0x0a, 0x80, 0x39,
297 0x02, 0x45, 0x1d, 0x69, 0xfc, 0xfd, 0x1f, 0x1f,
298 0xe1, 0xb1, 0xab, 0x11, 0x4c, 0x2c, 0x90, 0x87,
299 0x98, 0x69, 0x67, 0xf5, 0x7c, 0x8c, 0x32, 0xb4,
300 0x3a, 0x03, 0xfc, 0xe5, 0x66, 0x1d, 0xd7, 0x9e,
301 0x10, 0xd8, 0xda, 0xde, 0x82, 0xd6, 0xda, 0x2b,
302 0xa5, 0x4a, 0xd9, 0xf8, 0x84, 0x00, 0x33, 0x17,
303 0x75, 0x14, 0xe1, 0xe4, 0xa4, 0x8f, 0x60, 0x3c,
304 0x86, 0xa3, 0x05, 0xb6, 0x1f, 0x00, 0x21, 0x10,
305 0xc2, 0x30, 0xc1, 0x13, 0x4f, 0x5e, 0x85, 0x10,
306 0x04, 0x63, 0x0d, 0x7b, 0xef, 0xcb, 0x0b, 0x08,
307 0xd0, 0x52, 0xa4, 0x23, 0x34, 0x5b, 0x23, 0xa8,
308 0x75, 0x06, 0xe8, 0xe1, 0x10, 0x20, 0x16, 0x70,
309 0x49, 0xc0, 0x7b, 0x77, 0xde, 0xc7, 0xe6, 0xe6,
310 0x25, 0x58, 0x63, 0x04, 0x11, 0xcd, 0x47, 0x80,
311 0x88, 0x0b, 0x2a, 0x8a, 0xe0, 0x7c, 0x00, 0x13,
312 0x2f, 0xb6, 0xf6, 0x29, 0xd0, 0xeb, 0x8f, 0x70,
313 0xdc, 0xea, 0xe2, 0xa8, 0xd9, 0xc5, 0xe6, 0xb9,
314 0xcb, 0xb8, 0x74, 0x65, 0x13, 0x5a, 0x47, 0xb0,
315 0x85, 0x58, 0x38, 0xe7, 0xf2, 0x11, 0xb8, 0x7e,
316 0xfd, 0xba, 0x14, 0x42, 0x18, 0xa5, 0x24, 0x9c,
317 0x27, 0x30, 0x2d, 0xca, 0xed, 0xfd, 0xd1, 0xed,
318 0x0d, 0xd1, 0xec, 0xf4, 0xd1, 0xea, 0xf4, 0x90,
319 0x38, 0x9f, 0x3e, 0x15, 0x18, 0xb9, 0x80, 0x7b,
320 0xf5, 0x7b, 0x58, 0x59, 0xae, 0x60, 0xa9, 0x10,
321 0x4b, 0x66, 0xce, 0x13, 0xa8, 0x54, 0x2a, 0x45,
322 0x21, 0x84, 0x63, 0x86, 0xf1, 0x81, 0x01, 0xfa,
323 0x74, 0xfb, 0x53, 0xb7, 0x37, 0xc0, 0xc1, 0x61,
324 0x1b, 0xa3, 0x24, 0x73, 0xaa, 0xa0, 0x22, 0x35,
325 0x19, 0x77, 0x8e, 0x71, 0xfe, 0xf3, 0xe7, 0x61,
326 0xb4, 0x41, 0x1c, 0x17, 0xf4, 0x5c, 0x0a, 0x06,
327 0x83, 0x41, 0xb9, 0x54, 0x2a, 0x06, 0x66, 0x86,
328 0x0f, 0x0c, 0xfe, 0x3f, 0xf3, 0x3f, 0x4a, 0x02,
329 0x8e, 0x5a, 0x5d, 0xf4, 0x07, 0x09, 0x00, 0x09,
330 0xa5, 0xcd, 0xc2, 0x79, 0xc9, 0x80, 0x71, 0x50,
331 0x3f, 0xc0, 0xea, 0xea, 0x1a, 0xe2, 0x42, 0x1c,
332 0x11, 0xd1, 0x5c, 0x11, 0x96, 0xb4, 0x31, 0x1e,
333 0xcc, 0x70, 0x81, 0xc0, 0xa4, 0x16, 0x1a, 0xca,
334 0x40, 0x4c, 0x68, 0x75, 0x06, 0x38, 0x1d, 0x8c,
335 0x00, 0x08, 0x28, 0x6d, 0xcf, 0x9c, 0xef, 0x4e,
336 0x19, 0x8f, 0x9c, 0xff, 0x1c, 0x8c, 0xb1, 0x28,
337 0xc4, 0xb1, 0x14, 0x42, 0xac, 0xe6, 0x08, 0x84,
338 0x10, 0xca, 0x3a, 0xd2, 0x4c, 0x60, 0x24, 0x01,
339 0x10, 0xfc, 0xc9, 0x29, 0xe8, 0x0d, 0x13, 0xf4,
340 0xfa, 0x09, 0x88, 0x01, 0x15, 0x9d, 0xed, 0x78,
341 0x42, 0x80, 0x19, 0xce, 0x07, 0x44, 0x11, 0xc1,
342 0xc6, 0x31, 0x20, 0xb1, 0x96, 0x23, 0xc0, 0xcc,
343 0x65, 0x63, 0x0d, 0x40, 0x0c, 0x97, 0x10, 0x14,
344 0xeb, 0x39, 0x23, 0x9e, 0x08, 0xfd, 0xa1, 0x43,
345 0x08, 0x0c, 0x11, 0x69, 0x9c, 0x1d, 0xa3, 0x3c,
346 0x48, 0x06, 0x74, 0x3b, 0x09, 0xac, 0x31, 0x88,
347 0x6d, 0x0c, 0x0e, 0x5c, 0xc9, 0x11, 0x20, 0xa2,
348 0x92, 0x31, 0x46, 0x12, 0x13, 0x1c, 0x01, 0x99,
349 0x79, 0x66, 0x20, 0x30, 0xc3, 0x07, 0x42, 0x08,
350 0x00, 0xa4, 0x86, 0x7a, 0x80, 0xf3, 0x93, 0x74,
351 0x82, 0x76, 0x7b, 0x88, 0xca, 0x5a, 0x01, 0x71,
352 0x6c, 0xc1, 0xcc, 0xcb, 0x39, 0x02, 0x21, 0x84,
353 0xb2, 0xb5, 0x46, 0xf5, 0xfb, 0x01, 0x24, 0x05,
354 0x1c, 0x47, 0xe9, 0x49, 0x96, 0xee, 0x07, 0x52,
355 0x3d, 0x90, 0xe3, 0x0c, 0x23, 0x1d, 0xd0, 0x6e,
356 0x27, 0xa0, 0xc0, 0xb0, 0xd6, 0x22, 0x04, 0x9f,
357 0x27, 0xe0, 0xbd, 0x2f, 0x59, 0x63, 0x55, 0xbf,
358 0x37, 0x02, 0x45, 0x0a, 0x2c, 0xc7, 0xb5, 0xf9,
359 0xb0, 0x2e, 0x0b, 0x1c, 0x39, 0xb4, 0x5a, 0x43,
360 0x04, 0x0a, 0xb0, 0xb1, 0x45, 0x08, 0x54, 0xcc,
361 0x11, 0x20, 0xa2, 0xb2, 0x8d, 0xad, 0xee, 0xf5,
362 0x1c, 0xa0, 0xe4, 0xd4, 0x89, 0xf6, 0x70, 0x10,
363 0xd9, 0x08, 0x87, 0xc7, 0x43, 0x84, 0x10, 0x50,
364 0x5c, 0x8a, 0xe1, 0x9c, 0xcb, 0x13, 0x10, 0x42,
365 0x54, 0xac, 0xb1, 0xc2, 0xc6, 0x0a, 0x57, 0x57,
366 0x34, 0x70, 0xba, 0xe8, 0x24, 0x7a, 0xf0, 0xed,
367 0x99, 0x0d, 0x70, 0xf9, 0x72, 0x09, 0x44, 0x01,
368 0xd6, 0x1a, 0x84, 0x10, 0x96, 0x72, 0x04, 0x00,
369 0xae, 0xa8, 0x48, 0xa1, 0x58, 0xd2, 0x78, 0xed,
370 0xd5, 0xaf, 0xdc, 0xd7, 0x20, 0x05, 0xc2, 0x68,
371 0xe0, 0x20, 0x84, 0x84, 0x90, 0x02, 0x26, 0x9e,
372 0x3e, 0xd5, 0x3f, 0x99, 0x28, 0x13, 0x43, 0x29,
373 0x05, 0x66, 0x8e, 0x73, 0x04, 0x92, 0xc4, 0x1d,
374 0xed, 0xef, 0xef, 0xbb, 0x47, 0x1f, 0xfd, 0xba,
375 0x56, 0x72, 0x7e, 0x09, 0x2e, 0xc4, 0xea, 0xfd,
376 0xa7, 0xcc, 0x42, 0x29, 0x89, 0xc6, 0x41, 0x03,
377 0x42, 0x88, 0x5e, 0x8e, 0x00, 0x33, 0xff, 0xec,
378 0x0f, 0xbf, 0xff, 0xe3, 0xcb, 0x6f, 0xff, 0xe9,
379 0xed, 0x0d, 0x6b, 0x63, 0x66, 0x30, 0x98, 0x08,
380 0x44, 0x3c, 0x73, 0xef, 0x63, 0x10, 0x93, 0x62,
381 0x22, 0x3d, 0x3b, 0x46, 0x4c, 0x0c, 0xe6, 0xd1,
382 0xb8, 0x9f, 0xbf, 0x17, 0x66, 0x70, 0xce, 0xa1,
383 0xdb, 0xed, 0x92, 0x10, 0xe2, 0xd5, 0x1c, 0x81,
384 0xdd, 0xdd, 0xdd, 0xbb, 0x00, 0x2e, 0x5d, 0xbc,
385 0x78, 0xf1, 0x11, 0x29, 0x7b, 0x12, 0x00, 0xbc,
386 0xf7, 0xa2, 0xd3, 0xe9, 0x88, 0x24, 0x49, 0xa4,
387 0x52, 0x4a, 0x0e, 0x46, 0x83, 0x1f, 0x5a, 0x6b,
388 0x7e, 0x00, 0xe0, 0x8a, 0x8e, 0xa6, 0x43, 0x3e,
389 0x06, 0x83, 0xc5, 0x68, 0x98, 0x1c, 0x7a, 0x0a,
390 0xef, 0x9c, 0xb6, 0x4f, 0x7f, 0x42, 0x44, 0x1f,
391 0x4a, 0x29, 0x59, 0x4a, 0xc9, 0x4a, 0xa9, 0x49,
392 0xcb, 0xcc, 0x4d, 0x22, 0x9a, 0x14, 0x99, 0x98,
393 0xfd, 0x2e, 0xa8, 0xd5, 0x6a, 0x12, 0xe3, 0x15,
394 0xa8, 0x33, 0xf9, 0xee, 0x4b, 0x2f, 0xbe, 0xb5,
395 0xbc, 0x5c, 0x7e, 0xf2, 0xa9, 0xa7, 0x9f, 0x5a,
396 0xea, 0xf7, 0x7b, 0xb8, 0xf5, 0xd7, 0xdb, 0x73,
397 0x04, 0xb4, 0xd6, 0x78, 0xf6, 0xb9, 0x6f, 0xe0,
398 0x9f, 0xef, 0xff, 0x2b, 0xb9, 0x73, 0xe7, 0x3d,
399 0x5f, 0x3f, 0xb8, 0xf7, 0xe2, 0xce, 0x3b, 0x3b,
400 0x7f, 0x03, 0xe0, 0xa6, 0xc4, 0x03, 0xa0, 0x6a,
401 0xb5, 0x3a, 0x09, 0xcb, 0xe4, 0x55, 0x6a, 0xb5,
402 0x9a, 0x00, 0xa0, 0x00, 0x98, 0x54, 0x2c, 0x80,
403 0xf8, 0x99, 0x67, 0xbe, 0xf6, 0x7c, 0xb1, 0x54,
404 0xda, 0x7a, 0xe1, 0xdb, 0x2f, 0xc4, 0xa5, 0x52,
405 0x11, 0xcd, 0x66, 0x13, 0x8f, 0x3f, 0xfe, 0xe5,
406 0x05, 0xf9, 0x55, 0x58, 0x5f, 0x5f, 0x47, 0xa9,
407 0x5c, 0x36, 0xb6, 0x60, 0x75, 0xe2, 0xdc, 0x8f,
408 0x00, 0xbc, 0x02, 0x60, 0x34, 0x23, 0x49, 0xad,
409 0x56, 0x73, 0xd5, 0x6a, 0x95, 0x72, 0x04, 0xd2,
410 0xb7, 0x36, 0x00, 0xe2, 0x69, 0xa9, 0xd7, 0x1b,
411 0xc7, 0x17, 0x36, 0x36, 0x64, 0xe3, 0xc3, 0x06,
412 0xac, 0xfd, 0x22, 0xb6, 0xb7, 0xbe, 0x8a, 0xe7,
413 0xbe, 0xf9, 0x3c, 0x56, 0x96, 0x57, 0x10, 0xc7,
414 0x05, 0x78, 0xef, 0xd1, 0x6e, 0xb7, 0xd0, 0x6c,
415 0x35, 0xd1, 0x68, 0x1c, 0xe0, 0xdf, 0x77, 0xf7,
416 0xf0, 0x51, 0xe3, 0x28, 0x34, 0x8f, 0x9b, 0x75,
417 0x00, 0x6b, 0x00, 0x3a, 0x69, 0x24, 0x55, 0xea,
418 0x43, 0x00, 0xa0, 0x5a, 0xad, 0xc6, 0xd5, 0x6a,
419 0x95, 0x67, 0x93, 0x29, 0x52, 0xc9, 0xd2, 0x20,
420 0xeb, 0xf5, 0xfa, 0xd1, 0xfa, 0xdd, 0xf5, 0x37,
421 0x88, 0xe8, 0x95, 0xfd, 0xc7, 0x3e, 0x50, 0xb7,
422 0x77, 0x77, 0xb5, 0xb5, 0x56, 0x08, 0x88, 0xf4,
423 0x0b, 0x80, 0x21, 0x85, 0x84, 0xf3, 0x1e, 0xbd,
424 0xd3, 0x9e, 0xff, 0xcf, 0xde, 0x07, 0x7c, 0x74,
425 0x78, 0xf8, 0xee, 0xed, 0x5b, 0xb7, 0xdf, 0xc2,
426 0xf8, 0x66, 0xa9, 0xa6, 0xec, 0xcd, 0xed, 0x70,
427 0xd3, 0x04, 0x28, 0xcd, 0x53, 0x36, 0x39, 0x23,
428 0x84, 0x5b, 0xef, 0xde, 0xfa, 0xcd, 0xde, 0xdd,
429 0xbd, 0x3f, 0x5f, 0xd8, 0xb8, 0xf0, 0xec, 0xb9,
430 0x73, 0x4b, 0x57, 0x56, 0x57, 0x57, 0x2e, 0xc5,
431 0x71, 0xe1, 0x3c, 0x33, 0x17, 0x85, 0x10, 0xce,
432 0x3b, 0x7f, 0xd2, 0x6e, 0xb7, 0xfe, 0xdb, 0x6e,
433 0x77, 0xf7, 0x4e, 0x8e, 0x4f, 0x76, 0x1b, 0x8d,
434 0xc6, 0x4d, 0x00, 0xc7, 0x00, 0x86, 0x0b, 0x64,
435 0x04, 0x20, 0x64, 0x75, 0x90, 0x2b, 0xc2, 0xb4,
436 0x0e, 0xb2, 0x02, 0xcc, 0xea, 0xc0, 0xe0, 0xe3,
437 0x82, 0x34, 0x00, 0x0a, 0x59, 0x7a, 0x94, 0x52,
438 0x85, 0x10, 0x82, 0x4f, 0x89, 0x8f, 0x00, 0xf4,
439 0xd3, 0xd6, 0x03, 0x48, 0xd2, 0xe7, 0x49, 0xea,
440 0x38, 0xeb, 0x87, 0xe9, 0x22, 0x9c, 0x5b, 0x05,
441 0x53, 0x44, 0x32, 0x32, 0x59, 0x08, 0xa3, 0x29,
442 0x7d, 0x3a, 0xac, 0x59, 0xf4, 0x32, 0x09, 0x69,
443 0xeb, 0x53, 0x3d, 0x60, 0xbc, 0x3d, 0xe6, 0xaa,
444 0xff, 0x4c, 0x02, 0x67, 0x10, 0xc2, 0x82, 0x36,
445 0x03, 0xcf, 0xb6, 0x8b, 0x1c, 0xce, 0xe2, 0x7f,
446 0x16, 0x4f, 0x0f, 0x53, 0x97, 0x54, 0x4d, 0x69,
447 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
448 0xae, 0x42, 0x60, 0x82, 0x00, 0x00, 0x28, 0x75,
449 0x75, 0x61, 0x79, 0x29, 0x6f, 0x72, 0x67, 0x2f,
450 0x17, 0x00, 0x00, 0x00, 0x32, 0x34, 0x78, 0x32,
451 0x34, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
452 0x16, 0x00, 0x00, 0x00, 0x75, 0x69, 0x2f, 0x00,
453 0x12, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
454 0x11, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
455 0x0f, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
456 0x0d, 0x00, 0x00, 0x00, 0x34, 0x38, 0x78, 0x34,
457 0x38, 0x2f, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
458 0x33, 0x32, 0x78, 0x33, 0x32, 0x2f, 0x00, 0x00,
459 0x03, 0x00, 0x00, 0x00, 0x76, 0x69, 0x72, 0x74,
460 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2e,
461 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00,
462 0xee, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
463 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
464 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
465 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x30,
466 0x08, 0x06, 0x00, 0x00, 0x00, 0x57, 0x02, 0xf9,
467 0x87, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
468 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
469 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x09, 0xa3, 0x49,
470 0x44, 0x41, 0x54, 0x68, 0x81, 0xed, 0x59, 0x4d,
471 0x8c, 0x1c, 0x47, 0x15, 0xfe, 0xaa, 0xab, 0xaa,
472 0x7f, 0xbc, 0x3b, 0xfb, 0xe3, 0x5d, 0x67, 0xb3,
473 0x09, 0x6b, 0xaf, 0x77, 0xb3, 0xf6, 0x3a, 0x6b,
474 0x93, 0x4b, 0x12, 0x45, 0x72, 0x84, 0xe4, 0x20,
475 0x84, 0x84, 0x14, 0x38, 0x70, 0xe0, 0x90, 0x4b,
476 0xce, 0x5c, 0x50, 0x24, 0x38, 0x21, 0x21, 0x4e,
477 0x28, 0x48, 0xc8, 0x16, 0x41, 0xdc, 0x50, 0x6e,
478 0x08, 0x14, 0x21, 0x84, 0x44, 0x20, 0x0a, 0x5c,
479 0xa2, 0x24, 0x07, 0x12, 0xe1, 0x8d, 0x93, 0x10,
480 0x2c, 0x85, 0x80, 0x6d, 0xb2, 0xbb, 0x9e, 0xb5,
481 0x77, 0x67, 0x67, 0x67, 0x7a, 0x7e, 0xfa, 0xa7,
482 0xde, 0xe3, 0xd0, 0xd3, 0x33, 0xdd, 0x33, 0xbd,
483 0x33, 0x83, 0x9d, 0x13, 0xa4, 0xa4, 0xd2, 0x54,
484 0x77, 0xbd, 0xae, 0xfa, 0xbe, 0xf7, 0x5e, 0x7d,
485 0x5d, 0x5d, 0x03, 0x7c, 0x5e, 0x3e, 0x2f, 0xff,
486 0xdf, 0x45, 0x14, 0xdd, 0x7c, 0xe9, 0xa5, 0x97,
487 0xa6, 0x84, 0x25, 0x5e, 0x61, 0xe2, 0xa7, 0x98,
488 0xd9, 0xbe, 0x97, 0x81, 0x89, 0x08, 0xcc, 0xdc,
489 0xad, 0xfd, 0xd7, 0xd9, 0x7b, 0x00, 0xba, 0xf7,
490 0x8c, 0x31, 0x03, 0x36, 0x42, 0x70, 0x83, 0x08,
491 0x3f, 0x7f, 0xf1, 0xc5, 0x17, 0x7f, 0xd8, 0x3f,
492 0x8f, 0x2a, 0x9a, 0xdc, 0x18, 0xf3, 0x9d, 0xf3,
493 0x8f, 0x6e, 0x5c, 0x7a, 0xe2, 0xc9, 0x27, 0x6c,
494 0x4b, 0x58, 0x43, 0x81, 0x32, 0x38, 0x73, 0xc1,
495 0x99, 0xfb, 0x39, 0xa3, 0xc2, 0x0b, 0xce, 0x5d,
496 0xe6, 0x8c, 0x72, 0x7d, 0x61, 0x14, 0x7a, 0x2f,
497 0xff, 0xe2, 0xe5, 0xef, 0xbe, 0xf0, 0xc2, 0x0b,
498 0x7f, 0xbc, 0x72, 0xe5, 0xca, 0xbb, 0x23, 0x09,
499 0x68, 0xad, 0xcf, 0x2f, 0x2f, 0x9f, 0xb2, 0x5b,
500 0xed, 0x06, 0x1a, 0xcd, 0x06, 0x7c, 0x3f, 0x2e,
501 0x06, 0x9f, 0x02, 0xe6, 0x0c, 0x91, 0x4c, 0xdb,
502 0x75, 0x24, 0x6c, 0xc7, 0x1a, 0x6a, 0x33, 0x4e,
503 0xfb, 0xf8, 0xcc, 0x3c, 0xce, 0xae, 0xaf, 0x5b,
504 0xbb, 0xbb, 0x6f, 0x9e, 0x01, 0x30, 0x9a, 0x80,
505 0xb0, 0xc4, 0x8c, 0xd6, 0x36, 0x0c, 0x19, 0xfc,
506 0xfa, 0x57, 0x1f, 0xe1, 0xb5, 0x57, 0x3f, 0xc0,
507 0xc4, 0x84, 0xec, 0x85, 0x7b, 0x18, 0x91, 0x4c,
508 0xa7, 0x25, 0x05, 0xa4, 0x65, 0x75, 0x6c, 0x32,
509 0xf6, 0xfd, 0xde, 0xce, 0x46, 0x8e, 0x19, 0xb7,
510 0x77, 0x02, 0x7c, 0xff, 0x07, 0x5f, 0xc6, 0xc6,
511 0xc6, 0x34, 0xc0, 0x80, 0x31, 0x06, 0xae, 0xeb,
512 0x48, 0x00, 0x53, 0xfd, 0x58, 0x0b, 0x09, 0x80,
513 0x79, 0x5a, 0x29, 0x05, 0x26, 0x83, 0x3b, 0x65,
514 0x1f, 0x8f, 0x3f, 0x3e, 0x89, 0xd9, 0xd9, 0x63,
515 0x60, 0x46, 0x2e, 0x3f, 0xd3, 0x09, 0x7b, 0x15,
516 0xb9, 0x3e, 0x22, 0x4e, 0xe0, 0x76, 0xfa, 0xfa,
517 0xed, 0x93, 0x7e, 0x0c, 0xb4, 0x1b, 0xfe, 0x3e,
518 0x76, 0xb6, 0x6b, 0x98, 0x9d, 0x69, 0xc1, 0x71,
519 0x1c, 0xcc, 0xcd, 0x9f, 0x80, 0xeb, 0xba, 0x32,
520 0x8e, 0xe3, 0xd2, 0x58, 0x04, 0x98, 0x51, 0x52,
521 0x5a, 0x21, 0x8c, 0x62, 0x54, 0xab, 0x2d, 0xcc,
522 0xce, 0x10, 0xa2, 0x28, 0x2e, 0x04, 0xda, 0x03,
523 0x97, 0xef, 0xcb, 0x82, 0x3d, 0x0a, 0x68, 0xde,
524 0xae, 0x47, 0xd0, 0xb2, 0x80, 0xbd, 0xbd, 0x26,
525 0x96, 0x4e, 0x3d, 0x0a, 0x32, 0x04, 0x26, 0x82,
526 0xe3, 0xd8, 0x52, 0x08, 0x31, 0x3d, 0x1e, 0x01,
527 0xf0, 0xa4, 0x92, 0x12, 0x41, 0x48, 0x68, 0x34,
528 0x22, 0xcc, 0xce, 0x10, 0xc2, 0x30, 0x1a, 0x0b,
529 0x28, 0x33, 0x43, 0x08, 0xd1, 0x6d, 0xf7, 0x9e,
530 0x41, 0xe6, 0x99, 0xfe, 0xe7, 0x13, 0x1b, 0x40,
531 0x80, 0x99, 0xa1, 0x35, 0x50, 0xa9, 0xb4, 0xb0,
532 0xb3, 0x55, 0x86, 0x31, 0x06, 0x53, 0x53, 0xd3,
533 0xd0, 0xda, 0x86, 0x10, 0x62, 0x7e, 0x2c, 0x02,
534 0x60, 0x4c, 0x48, 0xa9, 0x40, 0xcc, 0x08, 0xc3,
535 0x18, 0xcc, 0x40, 0x14, 0xc5, 0x10, 0x42, 0x74,
536 0xa5, 0x2d, 0x2d, 0x44, 0xe8, 0x03, 0xc9, 0x60,
537 0xa6, 0x2e, 0xb0, 0x41, 0x12, 0x0c, 0x21, 0x92,
538 0xbe, 0x94, 0x64, 0x2f, 0xf2, 0x49, 0x5b, 0x29,
539 0xe0, 0xb0, 0xda, 0xc6, 0xe2, 0xc3, 0x0b, 0x20,
540 0x4a, 0xe6, 0xd3, 0x5a, 0x03, 0x02, 0xb3, 0x63,
541 0x11, 0x20, 0x22, 0x4f, 0x4a, 0x09, 0x22, 0x83,
542 0x38, 0x4e, 0x08, 0xc4, 0x71, 0x36, 0x9f, 0x7b,
543 0x9e, 0xcb, 0x46, 0x61, 0xd0, 0xd3, 0xe9, 0x78,
544 0x59, 0x1b, 0x51, 0x68, 0xcb, 0xcc, 0x68, 0x36,
545 0xdb, 0xa8, 0xd7, 0x5b, 0xa8, 0x56, 0x7d, 0x4c,
546 0x96, 0x0c, 0xf6, 0xef, 0x56, 0x50, 0x3b, 0xf4,
547 0x71, 0x6e, 0xe3, 0x0c, 0xb4, 0x56, 0x10, 0x10,
548 0x33, 0xe3, 0x45, 0x00, 0x70, 0x2d, 0xcb, 0xea,
549 0xa6, 0x85, 0x31, 0x47, 0x2d, 0xc4, 0x9e, 0x67,
550 0x8b, 0x48, 0xa4, 0x9e, 0x3e, 0x6a, 0x9d, 0x30,
551 0x33, 0x0e, 0x0f, 0x7d, 0x54, 0x2a, 0x35, 0xd4,
552 0x6a, 0x3e, 0xe2, 0xd8, 0x74, 0xa6, 0x17, 0x88,
553 0x22, 0x83, 0xb9, 0xf9, 0xe3, 0x98, 0x9d, 0x9b,
554 0x01, 0x13, 0x43, 0x6b, 0x0d, 0x63, 0xe2, 0xd1,
555 0x6b, 0xe0, 0xf2, 0xe5, 0xcb, 0x9e, 0xd6, 0x9a,
556 0x98, 0xd9, 0x02, 0x27, 0x6f, 0x54, 0x63, 0x68,
557 0x40, 0x61, 0x06, 0xbd, 0x2f, 0x06, 0xc8, 0x14,
558 0x11, 0x03, 0x80, 0x66, 0xb3, 0x8d, 0xbb, 0x77,
559 0xab, 0xa8, 0x56, 0xeb, 0x30, 0xa6, 0x97, 0x8e,
560 0x52, 0xf6, 0xe0, 0x44, 0x91, 0x41, 0xbd, 0xee,
561 0xe3, 0xf6, 0x76, 0x19, 0xe7, 0x36, 0xce, 0xc2,
562 0xd1, 0x1e, 0x98, 0x31, 0x5a, 0x85, 0x8c, 0x31,
563 0x25, 0xdb, 0xd6, 0x31, 0x31, 0x29, 0x46, 0xe2,
564 0xfd, 0x5e, 0xfa, 0x64, 0x01, 0xf5, 0xa7, 0x0a,
565 0x65, 0xb4, 0x7e, 0x30, 0x95, 0x98, 0x19, 0xad,
566 0x56, 0x80, 0xdd, 0xdd, 0x0a, 0x6a, 0xb5, 0x46,
567 0xd7, 0xd3, 0x52, 0xca, 0x6e, 0x1b, 0x48, 0xa2,
568 0x96, 0x46, 0x60, 0x72, 0x72, 0x02, 0x2b, 0x6b,
569 0xcb, 0xe0, 0x0e, 0xb9, 0xd8, 0xc4, 0x93, 0x23,
570 0x09, 0x30, 0x73, 0x49, 0x6b, 0x6d, 0xd2, 0x85,
571 0x48, 0x86, 0x3a, 0x0b, 0x29, 0x21, 0x91, 0xe6,
572 0xb0, 0x10, 0x59, 0x4f, 0xe7, 0x09, 0xf5, 0x13,
573 0x6d, 0xb7, 0x43, 0x94, 0xcb, 0x15, 0x34, 0x1a,
574 0xad, 0x01, 0x4f, 0x03, 0xa2, 0x3b, 0x56, 0x8f,
575 0x84, 0x80, 0x89, 0x0d, 0x82, 0x20, 0xc0, 0x27,
576 0x1f, 0xdf, 0xc0, 0xfa, 0xb9, 0x33, 0x98, 0x9e,
577 0x94, 0x30, 0xb1, 0x39, 0x36, 0x92, 0x80, 0x94,
578 0x72, 0x4a, 0x3b, 0x36, 0xa5, 0x0a, 0x41, 0x9c,
579 0x6e, 0xcc, 0x52, 0x0b, 0xea, 0x28, 0x48, 0xb1,
580 0xa7, 0x33, 0x8e, 0x80, 0x31, 0x84, 0xfd, 0xfd,
581 0x1a, 0x0e, 0x0e, 0xea, 0x00, 0x38, 0x07, 0x5c,
582 0x88, 0xec, 0x3e, 0x52, 0x74, 0x3d, 0x9f, 0xf4,
583 0x01, 0x51, 0x4c, 0xb0, 0x6d, 0x1b, 0x8f, 0x9e,
584 0x3f, 0x0b, 0x08, 0x40, 0x2a, 0x85, 0x38, 0x8e,
585 0xbd, 0x91, 0x04, 0x98, 0xb9, 0xe4, 0xda, 0x6e,
586 0x57, 0x0a, 0x8d, 0x31, 0x1d, 0xa9, 0x1c, 0xd4,
587 0xf4, 0xce, 0x13, 0x19, 0x79, 0x14, 0x5d, 0x79,
588 0xac, 0xd7, 0x9b, 0xa8, 0x54, 0x0e, 0x61, 0x0c,
589 0xc1, 0xb2, 0x64, 0x17, 0x58, 0x76, 0x03, 0xdc,
590 0x23, 0x31, 0x18, 0x05, 0x13, 0x53, 0x3a, 0x3a,
591 0x40, 0x80, 0x4c, 0x44, 0xc5, 0x41, 0xba, 0xd8,
592 0x3a, 0x65, 0x60, 0xab, 0x19, 0xc7, 0x71, 0xc9,
593 0xb6, 0xb5, 0x45, 0x44, 0x68, 0x36, 0x63, 0x80,
594 0x09, 0x44, 0x80, 0x31, 0xa9, 0x22, 0xf5, 0xf4,
595 0xdb, 0x18, 0x74, 0x2b, 0x91, 0x80, 0x31, 0x8c,
596 0x28, 0x32, 0xb8, 0x73, 0xa7, 0x8a, 0xfd, 0xfd,
597 0x1a, 0x98, 0x2d, 0x48, 0xa9, 0x20, 0xa5, 0x84,
598 0x94, 0x0a, 0x96, 0xa5, 0x3a, 0xd7, 0xfd, 0x55,
599 0x66, 0xfa, 0x12, 0xdb, 0x38, 0xee, 0xa4, 0x66,
600 0x67, 0x53, 0x47, 0x44, 0x50, 0x4a, 0xd1, 0xb3,
601 0xcf, 0x3e, 0x9b, 0x8b, 0x42, 0x51, 0x04, 0xa6,
602 0x1c, 0xc7, 0xb6, 0x88, 0x09, 0x0d, 0x3f, 0x84,
603 0xb0, 0x08, 0x71, 0x9c, 0x78, 0x26, 0xcd, 0xf7,
604 0xc4, 0x73, 0x83, 0x52, 0xea, 0xfb, 0x2d, 0xd4,
605 0x6a, 0x0d, 0x30, 0x67, 0xf3, 0x7c, 0x30, 0x3d,
606 0x8a, 0xa3, 0xd0, 0x7f, 0x4d, 0x68, 0xb7, 0x0d,
607 0x1c, 0xd7, 0x42, 0xaa, 0x86, 0xb6, 0x6d, 0xc7,
608 0xae, 0xeb, 0x4e, 0x01, 0x68, 0x1e, 0x49, 0x80,
609 0x88, 0x4a, 0xb6, 0xed, 0x58, 0x4c, 0x04, 0xbf,
610 0x1e, 0x75, 0xc0, 0xf5, 0x24, 0x32, 0x4d, 0x11,
611 0xa4, 0x01, 0x66, 0x81, 0x56, 0x2b, 0x84, 0xef,
612 0x37, 0x61, 0x0c, 0x43, 0x08, 0x09, 0x21, 0xf2,
613 0xc0, 0x8a, 0xf3, 0xbd, 0x98, 0x54, 0x6a, 0x6b,
614 0x59, 0x84, 0x5a, 0x3d, 0xc0, 0x09, 0x27, 0x71,
615 0xb8, 0x21, 0x03, 0xcf, 0x73, 0x63, 0x22, 0x2a,
616 0x01, 0x28, 0x0f, 0x25, 0xa0, 0x6d, 0xad, 0x88,
617 0x08, 0xb5, 0x7a, 0x08, 0x32, 0x04, 0x63, 0x24,
618 0x7a, 0x0a, 0xd4, 0xdb, 0x3a, 0x18, 0x43, 0xf0,
619 0xfd, 0x36, 0xc2, 0x30, 0x02, 0x60, 0x21, 0x51,
620 0xc4, 0x71, 0x3c, 0x3d, 0x3a, 0x2a, 0x42, 0x30,
621 0xfc, 0x5a, 0x8c, 0x13, 0xf3, 0xe9, 0x26, 0x90,
622 0xe0, 0xba, 0x2e, 0x33, 0x73, 0xee, 0x5d, 0x50,
623 0x98, 0x42, 0xb6, 0x9d, 0xa4, 0x50, 0xbd, 0x1e,
624 0x21, 0x51, 0x1d, 0xab, 0x13, 0x85, 0x64, 0xb0,
625 0x30, 0x34, 0x68, 0xb7, 0x43, 0xc4, 0xb1, 0x81,
626 0x10, 0xa2, 0x93, 0x2e, 0xc3, 0x3d, 0x9b, 0x27,
627 0x31, 0x9e, 0x6d, 0xbd, 0x1e, 0x75, 0xd5, 0x2d,
628 0x25, 0x40, 0x44, 0xb9, 0x6f, 0x82, 0x01, 0x02,
629 0x42, 0x88, 0x39, 0xa9, 0xa4, 0x20, 0x22, 0xec,
630 0xed, 0x35, 0xa0, 0x94, 0x00, 0x91, 0x00, 0x11,
631 0x21, 0x8a, 0x92, 0x6d, 0x75, 0xf2, 0xf6, 0x4c,
632 0x80, 0xdf, 0x4b, 0x7a, 0x8c, 0x63, 0x2b, 0x25,
633 0x50, 0xad, 0x06, 0x89, 0xd3, 0xc0, 0x20, 0x32,
634 0x70, 0x1c, 0x47, 0x8c, 0x8c, 0x80, 0x10, 0xe2,
635 0xb8, 0x56, 0x1a, 0x44, 0x84, 0x6a, 0x35, 0x04,
636 0xb3, 0x81, 0xef, 0x53, 0x47, 0x56, 0x05, 0x7a,
637 0x6f, 0xcf, 0xf1, 0x72, 0x7c, 0xbc, 0x54, 0x1a,
638 0xb4, 0xb5, 0x6d, 0x46, 0xa5, 0xd2, 0x4e, 0x64,
639 0xb4, 0xb3, 0x88, 0x5d, 0xcf, 0xb5, 0x3a, 0x6b,
640 0xe0, 0x68, 0x02, 0x00, 0xcd, 0x28, 0x25, 0x41,
641 0x44, 0x38, 0xac, 0xb6, 0x21, 0xa5, 0x05, 0x21,
642 0x04, 0x2c, 0x2b, 0x55, 0xdc, 0xcf, 0x26, 0x3d,
643 0x46, 0x11, 0x72, 0x5d, 0x46, 0xf5, 0x20, 0xe8,
644 0x2a, 0xbe, 0x21, 0x03, 0xd7, 0x73, 0x25, 0x33,
645 0x0f, 0x4f, 0x21, 0x66, 0x31, 0xad, 0x94, 0x4a,
646 0x08, 0x1c, 0x86, 0x70, 0x1c, 0xd5, 0x05, 0x30,
647 0x7e, 0x7a, 0xdc, 0x7f, 0x54, 0x1c, 0x87, 0x51,
648 0xad, 0x86, 0x1d, 0x4c, 0x0c, 0x26, 0x86, 0x9d,
649 0x88, 0xcb, 0xf0, 0x08, 0x18, 0x63, 0xa6, 0xa4,
650 0x52, 0x88, 0x4c, 0x80, 0xa0, 0x1d, 0x83, 0x59,
651 0x22, 0xbb, 0x4b, 0xb8, 0x7f, 0x4f, 0x8f, 0xa7,
652 0x52, 0x00, 0xd0, 0x6a, 0xc5, 0xbd, 0x45, 0xcc,
653 0x06, 0xae, 0xe3, 0x0d, 0x7c, 0xd8, 0x17, 0xc9,
654 0xe8, 0xa4, 0x92, 0x12, 0x61, 0x44, 0xf8, 0xca,
655 0x57, 0x4f, 0xe1, 0x9d, 0xbf, 0xf4, 0x9d, 0x6b,
656 0x71, 0xff, 0x25, 0x17, 0xde, 0x1f, 0xbc, 0xc5,
657 0x5d, 0xb8, 0x3c, 0xd8, 0x39, 0x60, 0xcf, 0xcc,
658 0x78, 0xe2, 0xc9, 0x07, 0xba, 0x6d, 0x32, 0x04,
659 0x6d, 0x6b, 0xa1, 0x94, 0xca, 0x7d, 0x56, 0x0e,
660 0x10, 0x88, 0xe3, 0x78, 0xc2, 0x92, 0x12, 0xc4,
661 0x84, 0x8b, 0x4f, 0x2f, 0xe2, 0xe2, 0xc5, 0xc5,
662 0xe1, 0xe7, 0x36, 0xdd, 0xcb, 0x7c, 0xfb, 0xd3,
663 0x5b, 0x5b, 0x08, 0xc2, 0x00, 0xf5, 0xba, 0x8f,
664 0xf5, 0xf5, 0x33, 0x70, 0x5d, 0x37, 0x67, 0x93,
665 0x02, 0x1b, 0xb7, 0x4d, 0xcc, 0xb0, 0xb5, 0x86,
666 0xa5, 0xac, 0xdc, 0x67, 0x65, 0xc1, 0x1a, 0x30,
667 0x1a, 0x60, 0x54, 0x0f, 0x0e, 0xe1, 0xfb, 0xfe,
668 0x50, 0x90, 0xb9, 0x53, 0xb5, 0xbe, 0xfb, 0x4a,
669 0x49, 0x48, 0xe5, 0xe1, 0x98, 0xe7, 0xe1, 0xa0,
670 0x72, 0x90, 0x3b, 0x0b, 0xca, 0x46, 0x60, 0x5c,
671 0x52, 0x0b, 0x0b, 0x0b, 0x89, 0x98, 0xc0, 0xca,
672 0x6d, 0xa9, 0x8b, 0x16, 0xf1, 0x87, 0x7f, 0xff,
673 0xe8, 0xfa, 0xc5, 0xf3, 0xe7, 0x37, 0xac, 0xd8,
674 0x44, 0xf9, 0x81, 0x32, 0x11, 0xe0, 0x1c, 0x00,
675 0x1e, 0x24, 0x98, 0xfb, 0x5a, 0xeb, 0xbd, 0xbd,
676 0x8b, 0x9c, 0xc0, 0x1d, 0x03, 0x2e, 0x1a, 0xa7,
677 0x83, 0x4b, 0x00, 0xf8, 0xed, 0x6f, 0x7e, 0xd7,
678 0x0a, 0xc3, 0xf0, 0xad, 0xa1, 0x04, 0xc2, 0x30,
679 0x7c, 0xee, 0x4f, 0xaf, 0xff, 0xf9, 0xd5, 0xb7,
680 0xde, 0x7c, 0xfb, 0x9c, 0xeb, 0x3a, 0x94, 0x3d,
681 0x94, 0x35, 0x86, 0x04, 0x31, 0x75, 0x5f, 0xed,
682 0x60, 0xc0, 0x90, 0x11, 0xdd, 0x8f, 0x1a, 0x86,
683 0x60, 0x66, 0x05, 0x24, 0xba, 0x9d, 0x7d, 0x36,
684 0xd7, 0x66, 0x8a, 0x98, 0xba, 0xf7, 0xb8, 0xe8,
685 0xe0, 0x57, 0x08, 0xc1, 0xd9, 0x08, 0xf8, 0xbe,
686 0x2f, 0x98, 0xf9, 0xf7, 0x9e, 0xe7, 0xfd, 0x34,
687 0x8b, 0xb7, 0xf0, 0x74, 0x1a, 0x00, 0x9e, 0x7f,
688 0xfe, 0x79, 0xd7, 0xf3, 0x3c, 0xaf, 0x5c, 0x2e,
689 0xeb, 0x83, 0x83, 0x03, 0xbb, 0xd1, 0x68, 0xd8,
690 0xed, 0x76, 0xdb, 0x0e, 0xc3, 0xd0, 0x8e, 0xa2,
691 0xc8, 0x36, 0xc6, 0xd8, 0x41, 0x10, 0x38, 0x52,
692 0xca, 0x63, 0xab, 0x8f, 0xac, 0x7e, 0x7d, 0x7a,
693 0x66, 0xea, 0x1b, 0x52, 0xca, 0xb9, 0xc7, 0x1e,
694 0xfb, 0xe2, 0x51, 0x07, 0x05, 0xdd, 0x88, 0x5c,
695 0xbb, 0xf6, 0xbe, 0x31, 0x86, 0xfe, 0x51, 0xde,
696 0x29, 0xbf, 0x72, 0xe3, 0xc6, 0x8d, 0xb7, 0x2d,
697 0xcb, 0x8a, 0x2c, 0xcb, 0x0a, 0xa5, 0x94, 0xa1,
698 0x94, 0x32, 0x54, 0x4a, 0x85, 0xb6, 0x6d, 0x87,
699 0x9e, 0xe7, 0x05, 0x13, 0x13, 0x13, 0xd1, 0xec,
700 0xec, 0x6c, 0xd4, 0x68, 0x34, 0xea, 0x6f, 0xbc,
701 0xf1, 0xc6, 0xc0, 0x21, 0xed, 0x91, 0x04, 0x3a,
702 0xc5, 0x02, 0xe0, 0xf4, 0x55, 0x17, 0x80, 0x0d,
703 0xc0, 0xb9, 0x70, 0x61, 0xe3, 0xa9, 0xe5, 0x95,
704 0x95, 0x1f, 0x2d, 0x3e, 0xb4, 0xa8, 0x2f, 0x5c,
705 0xd8, 0xf0, 0x16, 0x17, 0x1f, 0xc4, 0x3f, 0x3f,
706 0xf9, 0xd7, 0x88, 0x21, 0x19, 0xcb, 0xa7, 0x97,
707 0x71, 0xeb, 0xd6, 0xbf, 0xb1, 0x79, 0xf5, 0xbd,
708 0x96, 0xef, 0xfb, 0x5b, 0x9b, 0x7f, 0x7d, 0xef,
709 0x7b, 0x3b, 0x3b, 0x3b, 0x5b, 0x00, 0x82, 0x21,
710 0x95, 0x8a, 0x46, 0x1b, 0xea, 0x2d, 0x00, 0xb2,
711 0xaf, 0xaa, 0xf4, 0x77, 0x69, 0x79, 0x69, 0x69,
712 0xe5, 0x91, 0xd5, 0x9f, 0x5c, 0xba, 0x74, 0xc9,
713 0xfd, 0xc2, 0xd2, 0x43, 0xdd, 0x43, 0x2f, 0xc7,
714 0x19, 0xfd, 0x77, 0x82, 0x52, 0x0a, 0xab, 0xab,
715 0x2b, 0x38, 0x7d, 0x7a, 0xd9, 0xdb, 0xbc, 0x7a,
716 0x6d, 0x45, 0x08, 0xf1, 0xb3, 0x3b, 0x7f, 0xb8,
717 0xf3, 0xad, 0x38, 0x39, 0x57, 0x49, 0x6b, 0x9c,
718 0x99, 0xd7, 0xba, 0x57, 0x02, 0x40, 0xba, 0x01,
719 0xea, 0xab, 0x27, 0x97, 0x96, 0x9e, 0x59, 0x5b,
720 0x7b, 0x44, 0x2d, 0x3e, 0xfc, 0x20, 0xb4, 0xd6,
721 0x88, 0xe3, 0xe4, 0xe4, 0x6e, 0x7e, 0x6e, 0x6e,
722 0x8c, 0x21, 0x93, 0x62, 0x59, 0x16, 0xce, 0x6d,
723 0x9c, 0x95, 0xb7, 0x6e, 0xde, 0x98, 0x5f, 0x59,
724 0x5b, 0x59, 0xfb, 0xf8, 0xfa, 0xc7, 0x1f, 0x16,
725 0xcc, 0x05, 0x0c, 0xc9, 0x94, 0x51, 0x04, 0x18,
726 0x09, 0x73, 0xea, 0x6b, 0x53, 0x1c, 0x46, 0x7b,
727 0xfb, 0xd5, 0x83, 0xa8, 0x52, 0x39, 0x50, 0x67,
728 0xd6, 0xd6, 0x30, 0x33, 0x3d, 0x03, 0xbf, 0xe1,
729 0xa3, 0xe9, 0x35, 0x10, 0x04, 0x01, 0x0c, 0x99,
730 0xdc, 0x40, 0xc9, 0xb6, 0x5b, 0xc2, 0x75, 0x13,
731 0x69, 0x55, 0x4a, 0x63, 0xe7, 0xf6, 0x36, 0x2a,
732 0x95, 0x2a, 0x9a, 0xad, 0xb6, 0xd5, 0xac, 0x37,
733 0xf7, 0xb2, 0xe3, 0xf7, 0xcd, 0x5b, 0xf0, 0xda,
734 0x1b, 0x8f, 0xc0, 0x51, 0x21, 0x95, 0x9b, 0x9b,
735 0xd7, 0x5e, 0x3b, 0xf1, 0xc0, 0x89, 0x6f, 0xbe,
736 0xbf, 0x79, 0x6d, 0xfd, 0xf0, 0xb0, 0x6a, 0xcf,
737 0xcf, 0xcd, 0x63, 0xe5, 0xf4, 0x0a, 0x4e, 0x9f,
738 0x5e, 0xc5, 0xdc, 0x6c, 0x12, 0x85, 0x30, 0x0a,
739 0x61, 0x8c, 0x81, 0xd6, 0x1a, 0x52, 0x4a, 0x84,
740 0x61, 0x88, 0xf2, 0x6e, 0x19, 0xdb, 0x3b, 0xdb,
741 0xb8, 0x79, 0xf3, 0x06, 0x1a, 0xcd, 0x06, 0xde,
742 0xbf, 0xf6, 0x41, 0x70, 0x78, 0x58, 0xfb, 0xe5,
743 0xd6, 0xd6, 0xd6, 0xed, 0xce, 0x1c, 0x69, 0x35,
744 0x7d, 0xb5, 0xb0, 0x8c, 0x5a, 0xc4, 0xe8, 0x00,
745 0x4e, 0x17, 0xb0, 0xdd, 0xa9, 0x0e, 0x00, 0x5b,
746 0x6b, 0xed, 0x3d, 0xfd, 0xa5, 0xa7, 0xbf, 0x3d,
747 0x39, 0x39, 0xf1, 0xdc, 0xc9, 0x53, 0x4b, 0x58,
748 0x58, 0x58, 0x70, 0x84, 0xb4, 0x10, 0xb6, 0x43,
749 0x4c, 0x4d, 0x4f, 0xa1, 0x54, 0x2a, 0x41, 0x6b,
750 0x1b, 0xad, 0x66, 0x13, 0xd5, 0x6a, 0x15, 0x41,
751 0x18, 0xc0, 0x75, 0x1c, 0xb4, 0xc3, 0x80, 0xb7,
752 0x6e, 0x7d, 0x1a, 0xec, 0xef, 0x55, 0x5a, 0xdb,
753 0xb7, 0x77, 0x7e, 0x7c, 0xf5, 0xdd, 0xab, 0xaf,
754 0x03, 0x08, 0x3b, 0x35, 0x28, 0xf8, 0xbd, 0x2f,
755 0x02, 0x40, 0x4f, 0x8d, 0xec, 0x82, 0xaa, 0x8f,
756 0x1f, 0x2f, 0x4d, 0xad, 0x9e, 0x59, 0x7f, 0x66,
757 0xfe, 0xc4, 0xfc, 0xd7, 0xb4, 0x52, 0xe7, 0x88,
758 0xa8, 0xe4, 0x79, 0x5e, 0xe0, 0xb8, 0x0e, 0x84,
759 0x10, 0x82, 0x0d, 0x51, 0xbb, 0x1d, 0x58, 0xed,
760 0x76, 0xdb, 0x96, 0xd2, 0xba, 0xdb, 0x6a, 0xb5,
761 0x37, 0xcb, 0xbb, 0xbb, 0xaf, 0x5e, 0xff, 0xdb,
762 0xf5, 0x77, 0xa2, 0x28, 0x4a, 0x81, 0x47, 0x19,
763 0x12, 0x59, 0x32, 0x85, 0x8b, 0xf7, 0xbf, 0x25,
764 0x90, 0xda, 0xea, 0x14, 0x74, 0x5f, 0x55, 0xe8,
765 0x29, 0x94, 0xf4, 0x3c, 0xcf, 0x3d, 0x79, 0xf2,
766 0xe1, 0x53, 0x52, 0xda, 0x4e, 0xfa, 0x70, 0x2b,
767 0x6c, 0xd5, 0xb6, 0x6e, 0x6d, 0x6d, 0x47, 0x51,
768 0x14, 0x21, 0x9f, 0x96, 0x51, 0xe6, 0x37, 0xad,
769 0x29, 0xa1, 0x23, 0x73, 0xff, 0x5e, 0x08, 0xf4,
770 0x13, 0xc9, 0x02, 0xef, 0x82, 0x47, 0x12, 0xad,
771 0xf4, 0x93, 0x2d, 0x3b, 0x7e, 0xba, 0x18, 0x0d,
772 0x12, 0xaf, 0x66, 0x49, 0xa4, 0x35, 0x25, 0x30,
773 0x12, 0xf8, 0xfd, 0x10, 0xe8, 0x7f, 0xbe, 0x88,
774 0x80, 0x40, 0xef, 0xd0, 0x2c, 0x7b, 0x92, 0x96,
775 0x55, 0xb3, 0x7e, 0x02, 0x63, 0x83, 0xee, 0x07,
776 0xf0, 0x59, 0x97, 0x14, 0x7c, 0x56, 0xc3, 0x7b,
777 0x07, 0x49, 0x3d, 0x12, 0x9f, 0x97, 0xff, 0x89,
778 0xf2, 0x1f, 0xd1, 0x3b, 0x43, 0x1b, 0x76, 0x91,
779 0x7a, 0xea, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
780 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00,
781 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
782 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
783 0x72, 0x2d, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x2e,
784 0x75, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
785 0x7f, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
786 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
787 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
788 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
789 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
790 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
791 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
792 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
793 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
794 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
795 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
796 0x2b, 0x20, 0x32, 0x2e, 0x31, 0x32, 0x20, 0x2d,
797 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62,
798 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
799 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x41,
800 0x62, 0x6f, 0x75, 0x74, 0x44, 0x69, 0x61, 0x6c,
801 0x6f, 0x67, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
802 0x61, 0x62, 0x6f, 0x75, 0x74, 0x22, 0x3e, 0x0a,
803 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
804 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
805 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
806 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
807 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
808 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
809 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
810 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
811 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64,
812 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68,
813 0x22, 0x3e, 0x35, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
814 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
815 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
816 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
817 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65,
818 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
819 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
820 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41, 0x62, 0x6f,
821 0x75, 0x74, 0x20, 0x56, 0x69, 0x72, 0x74, 0x2d,
822 0x56, 0x69, 0x65, 0x77, 0x65, 0x72, 0x3c, 0x2f,
823 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
824 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
825 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
826 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x65,
827 0x73, 0x69, 0x7a, 0x61, 0x62, 0x6c, 0x65, 0x22,
828 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
829 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
830 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
831 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
832 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6d, 0x6f,
833 0x64, 0x61, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
834 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
835 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
836 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
837 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
838 0x22, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
839 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
840 0x22, 0x3e, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
841 0x2d, 0x6f, 0x6e, 0x2d, 0x70, 0x61, 0x72, 0x65,
842 0x6e, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
843 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
844 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
845 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
846 0x3d, 0x22, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f,
847 0x79, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x70,
848 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x54,
849 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
850 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
851 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
852 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
853 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65, 0x5f,
854 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64, 0x69,
855 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70, 0x72,
856 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
857 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
858 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
859 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70,
860 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x62, 0x61, 0x72,
861 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x54,
862 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
863 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
864 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
865 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
866 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70, 0x5f,
867 0x70, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x68, 0x69,
868 0x6e, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
869 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
870 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
871 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
872 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
873 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x5f,
874 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x56, 0x69,
875 0x72, 0x74, 0x75, 0x61, 0x6c, 0x20, 0x4d, 0x61,
876 0x63, 0x68, 0x69, 0x6e, 0x65, 0x20, 0x56, 0x69,
877 0x65, 0x77, 0x65, 0x72, 0x3c, 0x2f, 0x70, 0x72,
878 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
879 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
880 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
881 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x70, 0x79,
882 0x72, 0x69, 0x67, 0x68, 0x74, 0x22, 0x20, 0x74,
883 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
884 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
885 0x22, 0x3e, 0x43, 0x6f, 0x70, 0x79, 0x72, 0x69,
886 0x67, 0x68, 0x74, 0x20, 0x28, 0x43, 0x29, 0x20,
887 0x32, 0x30, 0x30, 0x37, 0x2d, 0x32, 0x30, 0x31,
888 0x32, 0x20, 0x44, 0x61, 0x6e, 0x69, 0x65, 0x6c,
889 0x20, 0x50, 0x2e, 0x20, 0x42, 0x65, 0x72, 0x72,
890 0x61, 0x6e, 0x67, 0x65, 0x0a, 0x43, 0x6f, 0x70,
891 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28,
892 0x43, 0x29, 0x20, 0x32, 0x30, 0x30, 0x37, 0x2d,
893 0x32, 0x30, 0x31, 0x34, 0x20, 0x52, 0x65, 0x64,
894 0x20, 0x48, 0x61, 0x74, 0x2c, 0x20, 0x49, 0x6e,
895 0x63, 0x2e, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
896 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
897 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
898 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
899 0x3d, 0x22, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
900 0x74, 0x73, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
901 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
902 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41,
903 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x20,
904 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x20,
905 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x62,
906 0x75, 0x69, 0x6c, 0x74, 0x20, 0x77, 0x69, 0x74,
907 0x68, 0x20, 0x47, 0x54, 0x4b, 0x2d, 0x56, 0x4e,
908 0x43, 0x2c, 0x20, 0x53, 0x50, 0x49, 0x43, 0x45,
909 0x2d, 0x47, 0x54, 0x4b, 0x20, 0x61, 0x6e, 0x64,
910 0x20, 0x6c, 0x69, 0x62, 0x76, 0x69, 0x72, 0x74,
911 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
912 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
913 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
914 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
915 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x22,
916 0x3e, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
917 0x76, 0x69, 0x72, 0x74, 0x2d, 0x6d, 0x61, 0x6e,
918 0x61, 0x67, 0x65, 0x72, 0x2e, 0x6f, 0x72, 0x67,
919 0x2f, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
920 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
921 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
922 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
923 0x22, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
924 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
925 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
926 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
927 0x73, 0x22, 0x3e, 0x76, 0x69, 0x72, 0x74, 0x2d,
928 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
929 0x6f, 0x72, 0x67, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
930 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
931 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
932 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
933 0x65, 0x3d, 0x22, 0x6c, 0x69, 0x63, 0x65, 0x6e,
934 0x73, 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
935 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
936 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x54,
937 0x68, 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f, 0x67,
938 0x72, 0x61, 0x6d, 0x20, 0x69, 0x73, 0x20, 0x66,
939 0x72, 0x65, 0x65, 0x20, 0x73, 0x6f, 0x66, 0x74,
940 0x77, 0x61, 0x72, 0x65, 0x3b, 0x20, 0x79, 0x6f,
941 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x72, 0x65,
942 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
943 0x74, 0x65, 0x20, 0x69, 0x74, 0x20, 0x61, 0x6e,
944 0x64, 0x2f, 0x6f, 0x72, 0x20, 0x6d, 0x6f, 0x64,
945 0x69, 0x66, 0x79, 0x0a, 0x69, 0x74, 0x20, 0x75,
946 0x6e, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65,
947 0x20, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x20, 0x6f,
948 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e,
949 0x55, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
950 0x6c, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63,
951 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65,
952 0x20, 0x61, 0x73, 0x20, 0x70, 0x75, 0x62, 0x6c,
953 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x62, 0x79,
954 0x0a, 0x74, 0x68, 0x65, 0x20, 0x46, 0x72, 0x65,
955 0x65, 0x20, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
956 0x72, 0x65, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64,
957 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x20, 0x65,
958 0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x76, 0x65,
959 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x32, 0x20,
960 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c,
961 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2c, 0x20,
962 0x6f, 0x72, 0x0a, 0x28, 0x61, 0x74, 0x20, 0x79,
963 0x6f, 0x75, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69,
964 0x6f, 0x6e, 0x29, 0x20, 0x61, 0x6e, 0x79, 0x20,
965 0x6c, 0x61, 0x74, 0x65, 0x72, 0x20, 0x76, 0x65,
966 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a,
967 0x54, 0x68, 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f,
968 0x67, 0x72, 0x61, 0x6d, 0x20, 0x69, 0x73, 0x20,
969 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
970 0x74, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74,
971 0x68, 0x65, 0x20, 0x68, 0x6f, 0x70, 0x65, 0x20,
972 0x74, 0x68, 0x61, 0x74, 0x20, 0x69, 0x74, 0x20,
973 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20,
974 0x75, 0x73, 0x65, 0x66, 0x75, 0x6c, 0x2c, 0x0a,
975 0x62, 0x75, 0x74, 0x20, 0x57, 0x49, 0x54, 0x48,
976 0x4f, 0x55, 0x54, 0x20, 0x41, 0x4e, 0x59, 0x20,
977 0x57, 0x41, 0x52, 0x52, 0x41, 0x4e, 0x54, 0x59,
978 0x3b, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75,
979 0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x74,
980 0x68, 0x65, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x69,
981 0x65, 0x64, 0x20, 0x77, 0x61, 0x72, 0x72, 0x61,
982 0x6e, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x0a, 0x4d,
983 0x45, 0x52, 0x43, 0x48, 0x41, 0x4e, 0x54, 0x41,
984 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x20, 0x6f,
985 0x72, 0x20, 0x46, 0x49, 0x54, 0x4e, 0x45, 0x53,
986 0x53, 0x20, 0x46, 0x4f, 0x52, 0x20, 0x41, 0x20,
987 0x50, 0x41, 0x52, 0x54, 0x49, 0x43, 0x55, 0x4c,
988 0x41, 0x52, 0x20, 0x50, 0x55, 0x52, 0x50, 0x4f,
989 0x53, 0x45, 0x2e, 0x20, 0x20, 0x53, 0x65, 0x65,
990 0x20, 0x74, 0x68, 0x65, 0x0a, 0x47, 0x4e, 0x55,
991 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
992 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
993 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x20,
994 0x66, 0x6f, 0x72, 0x20, 0x6d, 0x6f, 0x72, 0x65,
995 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
996 0x2e, 0x0a, 0x0a, 0x59, 0x6f, 0x75, 0x20, 0x73,
997 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x68, 0x61,
998 0x76, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69,
999 0x76, 0x65, 0x64, 0x20, 0x61, 0x20, 0x63, 0x6f,
1000 0x70, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68,
1001 0x65, 0x20, 0x47, 0x4e, 0x55, 0x20, 0x47, 0x65,
1002 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x75,
1003 0x62, 0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69, 0x63,
1004 0x65, 0x6e, 0x73, 0x65, 0x0a, 0x61, 0x6c, 0x6f,
1005 0x6e, 0x67, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
1006 0x74, 0x68, 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f,
1007 0x67, 0x72, 0x61, 0x6d, 0x3b, 0x20, 0x69, 0x66,
1008 0x20, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x77, 0x72,
1009 0x69, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x74,
1010 0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
1011 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
1012 0x0a, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
1013 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63,
1014 0x2e, 0x2c, 0x20, 0x35, 0x39, 0x20, 0x54, 0x65,
1015 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x50, 0x6c, 0x61,
1016 0x63, 0x65, 0x2c, 0x20, 0x53, 0x75, 0x69, 0x74,
1017 0x65, 0x20, 0x33, 0x33, 0x30, 0x2c, 0x20, 0x42,
1018 0x6f, 0x73, 0x74, 0x6f, 0x6e, 0x2c, 0x20, 0x4d,
1019 0x41, 0x20, 0x20, 0x30, 0x32, 0x31, 0x31, 0x31,
1020 0x2d, 0x31, 0x33, 0x30, 0x37, 0x20, 0x20, 0x55,
1021 0x53, 0x41, 0x0a, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
1022 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
1023 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
1024 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
1025 0x65, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x6f,
1026 0x72, 0x73, 0x22, 0x3e, 0x44, 0x61, 0x6e, 0x69,
1027 0x65, 0x6c, 0x20, 0x50, 0x2e, 0x20, 0x42, 0x65,
1028 0x72, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x0a, 0x4d,
1029 0x61, 0x72, 0x63, 0x2d, 0x41, 0x6e, 0x64, 0x72,
1030 0xc3, 0xa9, 0x20, 0x4c, 0x75, 0x72, 0x65, 0x61,
1031 0x75, 0x0a, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1032 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1033 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1034 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1035 0x3d, 0x22, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
1036 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x63, 0x72, 0x65,
1037 0x64, 0x69, 0x74, 0x73, 0x22, 0x20, 0x74, 0x72,
1038 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
1039 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
1040 0x3e, 0x54, 0x68, 0x65, 0x20, 0x46, 0x65, 0x64,
1041 0x6f, 0x72, 0x61, 0x20, 0x54, 0x72, 0x61, 0x6e,
1042 0x73, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
1043 0x54, 0x65, 0x61, 0x6d, 0x3c, 0x2f, 0x70, 0x72,
1044 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1045 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
1046 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1047 0x3d, 0x22, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
1048 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x20,
1049 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d,
1050 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69,
1051 0x65, 0x77, 0x65, 0x72, 0x5f, 0x61, 0x70, 0x70,
1052 0x5f, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x5f, 0x64,
1053 0x65, 0x6c, 0x65, 0x74, 0x65, 0x22, 0x20, 0x73,
1054 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
1055 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
1056 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
1057 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1058 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
1059 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
1060 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
1061 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x61,
1062 0x70, 0x70, 0x5f, 0x61, 0x62, 0x6f, 0x75, 0x74,
1063 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x22, 0x20,
1064 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d,
1065 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
1066 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
1067 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
1068 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64,
1069 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x22, 0x3e,
1070 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1071 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
1072 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
1073 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64,
1074 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67,
1075 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x31, 0x22, 0x3e,
1076 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1077 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1078 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1079 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
1080 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
1081 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1082 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1083 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1084 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1085 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
1086 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
1087 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1088 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1089 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
1090 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
1091 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f, 0x72,
1092 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f,
1093 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74, 0x69,
1094 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
1095 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
1096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1097 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1098 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
1099 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e,
1100 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1101 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1102 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
1103 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
1104 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
1105 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
1106 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x22,
1107 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1108 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
1109 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
1110 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75,
1111 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78, 0x22,
1112 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61,
1113 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74, 0x69,
1114 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x31,
1115 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1116 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1117 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1118 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
1119 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
1120 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1121 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1122 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1123 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1124 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1125 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
1126 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
1127 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1128 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1129 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1130 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1131 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1132 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x6f,
1133 0x75, 0x74, 0x5f, 0x73, 0x74, 0x79, 0x6c, 0x65,
1134 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70,
1135 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
1136 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1137 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
1138 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1139 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1140 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
1141 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1142 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
1143 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
1144 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
1145 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c,
1146 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1147 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1148 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1149 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1150 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1151 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
1152 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1153 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1154 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1155 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1156 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1157 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x61, 0x63, 0x6b,
1158 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x3e, 0x65,
1159 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1160 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1161 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1162 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1163 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1164 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
1165 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
1166 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
1167 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1168 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
1169 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
1170 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
1171 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
1172 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1173 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
1174 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1175 0x20, 0x3c, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68,
1176 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x3e, 0x0a,
1177 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1178 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
1179 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1180 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
1181 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
1182 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
1183 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
1184 0x3e, 0x0a, 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65,
1185 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00,
1186 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x69,
1187 0x63, 0x6f, 0x6e, 0x73, 0x2f, 0x00, 0x00, 0x00,
1188 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
1189 0x05, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
1190 0x08, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
1191 0x2f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
1192 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65,
1193 0x77, 0x65, 0x72, 0x2e, 0x75, 0x69, 0x00, 0x00,
1194 0x7c, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1195 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
1196 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
1197 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
1198 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
1199 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
1200 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
1201 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
1202 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
1203 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
1204 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
1205 0x2b, 0x20, 0x32, 0x2e, 0x36, 0x20, 0x2d, 0x2d,
1206 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
1207 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
1208 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x41, 0x63,
1209 0x63, 0x65, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70,
1210 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x63,
1211 0x63, 0x65, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70,
1212 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f,
1213 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
1214 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
1215 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
1216 0x69, 0x6f, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x6f,
1217 0x77, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x76,
1218 0x69, 0x65, 0x77, 0x65, 0x72, 0x22, 0x3e, 0x0a,
1219 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1220 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1221 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
1222 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
1223 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1224 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1225 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1226 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1227 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65, 0x66, 0x61,
1228 0x75, 0x6c, 0x74, 0x5f, 0x77, 0x69, 0x64, 0x74,
1229 0x68, 0x22, 0x3e, 0x31, 0x30, 0x32, 0x34, 0x3c,
1230 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1231 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
1232 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1233 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64,
1234 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x68,
1235 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0x3e, 0x37,
1236 0x36, 0x38, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1237 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1238 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
1239 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1240 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x2d, 0x65,
1241 0x76, 0x65, 0x6e, 0x74, 0x22, 0x20, 0x68, 0x61,
1242 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
1243 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
1244 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
1245 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
1246 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65,
1247 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e,
1248 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
1249 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1250 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
1251 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
1252 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4f, 0x76, 0x65,
1253 0x72, 0x6c, 0x61, 0x79, 0x22, 0x20, 0x69, 0x64,
1254 0x3d, 0x22, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
1255 0x2d, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
1256 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1257 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
1258 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
1259 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
1260 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
1261 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1262 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1263 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1264 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1265 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
1266 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
1267 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1268 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1269 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1270 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
1271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1272 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
1273 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
1274 0x22, 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f, 0x78,
1275 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x76, 0x69,
1276 0x65, 0x77, 0x65, 0x72, 0x2d, 0x62, 0x6f, 0x78,
1277 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1278 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1279 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1280 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
1281 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
1282 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1283 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1284 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1285 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1286 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1287 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
1288 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
1289 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1290 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1291 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1292 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
1293 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1295 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
1296 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
1297 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
1298 0x42, 0x61, 0x72, 0x22, 0x20, 0x69, 0x64, 0x3d,
1299 0x22, 0x74, 0x6f, 0x70, 0x2d, 0x6d, 0x65, 0x6e,
1300 0x75, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1301 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1302 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1303 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1304 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
1305 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
1306 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1307 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1308 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1309 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
1310 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
1311 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
1312 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
1313 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
1314 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
1315 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1316 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1317 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
1318 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1319 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1320 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
1321 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
1322 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
1323 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69,
1324 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d,
1325 0x66, 0x69, 0x6c, 0x65, 0x22, 0x3e, 0x0a, 0x20,
1326 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1327 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1328 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
1329 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
1330 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
1331 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
1332 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1333 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1334 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1335 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1336 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1337 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1338 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
1339 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
1340 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1341 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1342 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1343 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1344 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1345 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1346 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69,
1347 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61,
1348 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46,
1349 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1350 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1351 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1352 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1353 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1354 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1355 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
1356 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
1357 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
1358 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x46,
1359 0x69, 0x6c, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
1360 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
1361 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1362 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1363 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
1364 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
1365 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
1366 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
1367 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
1368 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1369 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1370 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1371 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
1372 0x68, 0x69, 0x6c, 0x64, 0x20, 0x74, 0x79, 0x70,
1373 0x65, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d, 0x65,
1374 0x6e, 0x75, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1375 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1376 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1377 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
1378 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
1379 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
1380 0x75, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d,
1381 0x65, 0x6e, 0x75, 0x31, 0x22, 0x3e, 0x0a, 0x20,
1382 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1383 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1384 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1385 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1386 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
1387 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
1388 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1389 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1390 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1391 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1392 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1393 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1394 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1395 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
1396 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
1397 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1398 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1399 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1400 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1401 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1402 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1403 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65,
1404 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22,
1405 0x3e, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x67, 0x72,
1406 0x6f, 0x75, 0x70, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
1407 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
1408 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1409 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1410 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1411 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
1412 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1413 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1414 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1415 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
1416 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
1417 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49,
1418 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d,
1419 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x66, 0x69,
1420 0x6c, 0x65, 0x2d, 0x73, 0x63, 0x72, 0x65, 0x65,
1421 0x6e, 0x73, 0x68, 0x6f, 0x74, 0x22, 0x3e, 0x0a,
1422 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1423 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1424 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1425 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1426 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1427 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
1428 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
1429 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1430 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1431 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1432 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1433 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1434 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1435 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1436 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
1437 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
1438 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1439 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1440 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1441 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1442 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1443 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1444 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1445 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
1446 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
1447 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
1448 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
1449 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
1450 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1451 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1452 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1453 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
1454 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
1455 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
1456 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
1457 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
1458 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f,
1459 0x53, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x73, 0x68,
1460 0x6f, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1461 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1462 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1463 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1464 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1465 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1466 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1467 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
1468 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
1469 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
1470 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
1471 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1472 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1473 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1474 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69,
1475 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d,
1476 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76,
1477 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e,
1478 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69,
1479 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65,
1480 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
1481 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x66, 0x69,
1482 0x6c, 0x65, 0x5f, 0x73, 0x63, 0x72, 0x65, 0x65,
1483 0x6e, 0x73, 0x68, 0x6f, 0x74, 0x22, 0x20, 0x73,
1484 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
1485 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
1486 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1487 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1488 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1489 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
1490 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1491 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1492 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1493 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
1494 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1497 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
1498 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1499 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1500 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1501 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
1502 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
1503 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d,
1504 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22,
1505 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e,
1506 0x75, 0x2d, 0x66, 0x69, 0x6c, 0x65, 0x2d, 0x75,
1507 0x73, 0x62, 0x2d, 0x64, 0x65, 0x76, 0x69, 0x63,
1508 0x65, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
1509 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20,
1510 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1511 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1512 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1513 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1514 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1515 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
1516 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
1517 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1518 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1519 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1520 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1521 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1522 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1523 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
1524 0x65, 0x6e, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65,
1525 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
1526 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1527 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1528 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1529 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1531 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1532 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
1533 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
1534 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
1535 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1536 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1537 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1538 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1539 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1540 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1541 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
1542 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f,
1543 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72,
1544 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61,
1545 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
1546 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
1547 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1548 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1549 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1550 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
1551 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
1552 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
1553 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
1554 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
1555 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x55, 0x53,
1556 0x42, 0x20, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
1557 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
1558 0x6f, 0x6e, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1559 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1560 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1561 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1562 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1563 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
1564 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
1565 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
1566 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
1567 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
1568 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
1569 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1570 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1571 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1572 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69,
1573 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d,
1574 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76,
1575 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e,
1576 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69,
1577 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65,
1578 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
1579 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x66, 0x69,
1580 0x6c, 0x65, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x64,
1581 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x73, 0x65,
1582 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22,
1583 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
1584 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
1585 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1586 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1587 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1588 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
1589 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1590 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1591 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1592 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
1593 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1594 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1595 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1596 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
1597 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1598 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1599 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1600 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1601 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
1602 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
1603 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65,
1604 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d,
1605 0x65, 0x6e, 0x75, 0x2d, 0x66, 0x69, 0x6c, 0x65,
1606 0x2d, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61,
1607 0x72, 0x64, 0x2d, 0x69, 0x6e, 0x73, 0x65, 0x72,
1608 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1609 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1610 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1611 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1612 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1613 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1614 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
1615 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
1616 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1617 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1618 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1619 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1620 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1621 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1622 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1623 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69,
1624 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61,
1625 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46,
1626 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1627 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1628 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1629 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1630 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1631 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1632 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1633 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65,
1634 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x22, 0x3e,
1635 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69, 0x72, 0x74,
1636 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x26,
1637 0x67, 0x74, 0x3b, 0x2f, 0x66, 0x69, 0x6c, 0x65,
1638 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61,
1639 0x72, 0x64, 0x2d, 0x69, 0x6e, 0x73, 0x65, 0x72,
1640 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1641 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1642 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1643 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1644 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1645 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1646 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1647 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
1648 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
1649 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
1650 0x73, 0x22, 0x3e, 0x53, 0x6d, 0x61, 0x72, 0x74,
1651 0x63, 0x61, 0x72, 0x64, 0x20, 0x69, 0x6e, 0x73,
1652 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x3c, 0x2f,
1653 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1654 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1655 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1656 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1657 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
1658 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
1659 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73,
1660 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c,
1661 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
1662 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1663 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1664 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1665 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1666 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1667 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c,
1668 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61,
1669 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x22,
1670 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
1671 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76,
1672 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69,
1673 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e,
1674 0x75, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73,
1675 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61, 0x72, 0x64,
1676 0x5f, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x22,
1677 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
1678 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
1679 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1680 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1681 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1682 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
1683 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1684 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1685 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1686 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
1687 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1688 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1689 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1690 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
1691 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1692 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1693 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1694 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1695 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
1696 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
1697 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65,
1698 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d,
1699 0x65, 0x6e, 0x75, 0x2d, 0x66, 0x69, 0x6c, 0x65,
1700 0x2d, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61,
1701 0x72, 0x64, 0x2d, 0x72, 0x65, 0x6d, 0x6f, 0x76,
1702 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1703 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1704 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1705 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1706 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1707 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1708 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
1709 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
1710 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1711 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1712 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1713 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1714 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1715 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1716 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1717 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69,
1718 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61,
1719 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46,
1720 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1721 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1722 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1723 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1724 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1725 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1726 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1727 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65,
1728 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x22, 0x3e,
1729 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69, 0x72, 0x74,
1730 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x26,
1731 0x67, 0x74, 0x3b, 0x2f, 0x66, 0x69, 0x6c, 0x65,
1732 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61,
1733 0x72, 0x64, 0x2d, 0x72, 0x65, 0x6d, 0x6f, 0x76,
1734 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1735 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1736 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1737 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1738 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1739 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1740 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1741 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
1742 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
1743 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
1744 0x73, 0x22, 0x3e, 0x53, 0x6d, 0x61, 0x72, 0x74,
1745 0x63, 0x61, 0x72, 0x64, 0x20, 0x72, 0x65, 0x6d,
1746 0x6f, 0x76, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72,
1747 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1748 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1749 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1750 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1751 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1752 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1753 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
1754 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
1755 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
1756 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1757 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1758 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1759 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1760 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1761 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e,
1762 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74,
1763 0x69, 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68,
1764 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22,
1765 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65,
1766 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64,
1767 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f,
1768 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x6d, 0x61,
1769 0x72, 0x74, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x72,
1770 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, 0x20, 0x73,
1771 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
1772 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
1773 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1774 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1775 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1776 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
1777 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1778 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1779 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1780 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
1781 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1782 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1783 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1784 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
1785 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1786 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1787 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1788 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
1789 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
1790 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d,
1791 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22,
1792 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e,
1793 0x75, 0x2d, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72,
1794 0x65, 0x6e, 0x63, 0x65, 0x73, 0x22, 0x3e, 0x0a,
1795 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1796 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1797 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1798 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1799 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1800 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
1801 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
1802 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1803 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1804 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1805 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1806 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1807 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1808 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1809 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
1810 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
1811 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
1812 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1813 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1814 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1815 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1816 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1817 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
1818 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
1819 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
1820 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
1821 0x73, 0x22, 0x3e, 0x5f, 0x50, 0x72, 0x65, 0x66,
1822 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x3c,
1823 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1824 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1826 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1827 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1828 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1829 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
1830 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
1831 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
1832 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
1833 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
1834 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1835 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1836 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1837 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
1838 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1839 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
1840 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
1841 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
1842 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77,
1843 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65,
1844 0x6e, 0x75, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65,
1845 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x5f, 0x63,
1846 0x62, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70,
1847 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f,
1848 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1849 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1850 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1851 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
1852 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
1853 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1854 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1855 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
1856 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
1857 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1858 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1859 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1860 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
1861 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1862 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1863 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1864 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
1865 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
1866 0x47, 0x74, 0x6b, 0x53, 0x65, 0x70, 0x61, 0x72,
1867 0x61, 0x74, 0x6f, 0x72, 0x4d, 0x65, 0x6e, 0x75,
1868 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
1869 0x3d, 0x22, 0x73, 0x65, 0x70, 0x61, 0x72, 0x61,
1870 0x74, 0x6f, 0x72, 0x6d, 0x65, 0x6e, 0x75, 0x69,
1871 0x74, 0x65, 0x6d, 0x31, 0x22, 0x3e, 0x0a, 0x20,
1872 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1873 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1874 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1875 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
1876 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
1877 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
1878 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
1879 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1880 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1881 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1882 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1883 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1884 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1885 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1886 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
1887 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
1888 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1889 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1890 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1891 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1892 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
1893 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
1894 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1895 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1896 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1897 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
1898 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1899 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1900 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1901 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
1902 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1903 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1904 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1905 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
1906 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
1907 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
1908 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69,
1909 0x64, 0x3d, 0x22, 0x69, 0x6d, 0x61, 0x67, 0x65,
1910 0x6d, 0x65, 0x6e, 0x75, 0x69, 0x74, 0x65, 0x6d,
1911 0x35, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1912 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1913 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1914 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1915 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1916 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1917 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
1918 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
1919 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
1920 0x22, 0x3e, 0x5f, 0x51, 0x75, 0x69, 0x74, 0x3c,
1921 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1922 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
1923 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1924 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1925 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
1926 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
1927 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
1928 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
1929 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1930 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1931 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1932 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1933 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1934 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1935 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1936 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
1937 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
1938 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
1939 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
1940 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1941 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1942 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1943 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
1944 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
1945 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
1946 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
1947 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63,
1948 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
1949 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
1950 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
1951 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1952 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1953 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1954 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
1955 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
1956 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
1957 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
1958 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
1959 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
1960 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1961 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1962 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1963 0x20, 0x20, 0x20, 0x3c, 0x61, 0x63, 0x63, 0x65,
1964 0x6c, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x20,
1965 0x6b, 0x65, 0x79, 0x3d, 0x22, 0x71, 0x22, 0x20,
1966 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x3d, 0x22,
1967 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
1968 0x22, 0x20, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,
1969 0x65, 0x72, 0x73, 0x3d, 0x22, 0x47, 0x44, 0x4b,
1970 0x5f, 0x53, 0x48, 0x49, 0x46, 0x54, 0x5f, 0x4d,
1971 0x41, 0x53, 0x4b, 0x20, 0x7c, 0x20, 0x47, 0x44,
1972 0x4b, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x52, 0x4f,
1973 0x4c, 0x5f, 0x4d, 0x41, 0x53, 0x4b, 0x22, 0x2f,
1974 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1975 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1976 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1977 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
1978 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61,
1979 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
1980 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61,
1981 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
1982 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
1983 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
1984 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x66,
1985 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x75, 0x69, 0x74,
1986 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65,
1987 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e,
1988 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1989 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1990 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1991 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
1992 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
1993 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1994 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1995 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
1996 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
1997 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1998 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
1999 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
2000 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
2001 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2002 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2003 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
2004 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2005 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2006 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
2007 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
2008 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2009 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2010 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
2011 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2012 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2013 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
2014 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2015 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2016 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
2017 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
2018 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
2019 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
2020 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x76,
2021 0x69, 0x65, 0x77, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2022 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2023 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2024 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2025 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2026 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
2027 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
2028 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2029 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2030 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2031 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2032 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2033 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
2034 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
2035 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
2036 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2037 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2038 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2039 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2040 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2041 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
2042 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f,
2043 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72,
2044 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61,
2045 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2046 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2047 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2048 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2049 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2050 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2051 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
2052 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
2053 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
2054 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x56, 0x69,
2055 0x65, 0x77, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2056 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2057 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2058 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2059 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2060 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2061 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
2062 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
2063 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2064 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2065 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2066 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2067 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
2068 0x69, 0x6c, 0x64, 0x20, 0x74, 0x79, 0x70, 0x65,
2069 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d, 0x65, 0x6e,
2070 0x75, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2071 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2072 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2073 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
2074 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
2075 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
2076 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
2077 0x6e, 0x75, 0x32, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2078 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2079 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2080 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2081 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2082 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
2083 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
2084 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2085 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2086 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2087 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2088 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2089 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2090 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
2091 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
2092 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
2093 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2094 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2095 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2097 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2098 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2099 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c,
2100 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e,
2101 0x61, 0x63, 0x63, 0x65, 0x6c, 0x67, 0x72, 0x6f,
2102 0x75, 0x70, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2103 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2104 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2105 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2106 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
2107 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
2108 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2109 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2110 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2111 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
2112 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
2113 0x74, 0x6b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d,
2114 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22,
2115 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e,
2116 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x66,
2117 0x75, 0x6c, 0x6c, 0x73, 0x63, 0x72, 0x65, 0x65,
2118 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2119 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2120 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2121 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2122 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2123 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2124 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
2125 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2126 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2127 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2129 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2130 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2131 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2132 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
2133 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
2134 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2135 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2136 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2137 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2138 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2139 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2140 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2141 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
2142 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
2143 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
2144 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2145 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2146 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2147 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2148 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2149 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2150 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2151 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2152 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x70,
2153 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c, 0x74,
2154 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
2155 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74, 0x3b,
2156 0x2f, 0x76, 0x69, 0x65, 0x77, 0x2f, 0x74, 0x6f,
2157 0x67, 0x67, 0x6c, 0x65, 0x2d, 0x66, 0x75, 0x6c,
2158 0x6c, 0x73, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x3c,
2159 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2160 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2161 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2162 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2163 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2164 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2165 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
2166 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
2167 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
2168 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
2169 0x3e, 0x5f, 0x46, 0x75, 0x6c, 0x6c, 0x20, 0x73,
2170 0x63, 0x72, 0x65, 0x65, 0x6e, 0x3c, 0x2f, 0x70,
2171 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2172 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2173 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2174 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2175 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2176 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2177 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
2178 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69,
2179 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
2180 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2181 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2182 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2183 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2184 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2185 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20,
2186 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
2187 0x67, 0x67, 0x6c, 0x65, 0x64, 0x22, 0x20, 0x68,
2188 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22,
2189 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65,
2190 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64,
2191 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f,
2192 0x76, 0x69, 0x65, 0x77, 0x5f, 0x66, 0x75, 0x6c,
2193 0x6c, 0x73, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x22,
2194 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
2195 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
2196 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2197 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2198 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2199 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
2200 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2201 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2202 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2203 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
2204 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2205 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2206 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2207 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
2208 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2209 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2211 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2212 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
2213 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
2214 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65,
2215 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d,
2216 0x65, 0x6e, 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77,
2217 0x2d, 0x7a, 0x6f, 0x6f, 0x6d, 0x22, 0x3e, 0x0a,
2218 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2219 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2220 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2221 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2222 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2223 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
2224 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
2225 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2226 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2227 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2228 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2229 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2230 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2231 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2232 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
2233 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2234 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2235 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2236 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2238 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2239 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2240 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2241 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
2242 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
2243 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
2244 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2245 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2246 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2247 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2249 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2250 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2251 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
2252 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
2253 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
2254 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f,
2255 0x5a, 0x6f, 0x6f, 0x6d, 0x3c, 0x2f, 0x70, 0x72,
2256 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2257 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2258 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2259 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2260 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2261 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2262 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
2263 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
2264 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
2265 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2266 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2267 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2268 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2269 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2270 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20, 0x74, 0x79,
2271 0x70, 0x65, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d,
2272 0x65, 0x6e, 0x75, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2273 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2275 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2276 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
2277 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
2278 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65,
2279 0x6e, 0x75, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
2280 0x6d, 0x65, 0x6e, 0x75, 0x34, 0x22, 0x3e, 0x0a,
2281 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2282 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2283 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2284 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2285 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2286 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2287 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
2288 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2289 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2290 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2291 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2292 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2293 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2294 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2295 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2296 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
2297 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2298 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2299 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2300 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2301 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2302 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2303 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2304 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2305 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63,
2306 0x65, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70,
2307 0x22, 0x3e, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x67,
2308 0x72, 0x6f, 0x75, 0x70, 0x3c, 0x2f, 0x70, 0x72,
2309 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2310 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2311 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2312 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2313 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2314 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
2315 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2316 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2317 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2318 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2319 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
2320 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
2321 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
2322 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
2323 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x76,
2324 0x69, 0x65, 0x77, 0x2d, 0x7a, 0x6f, 0x6f, 0x6d,
2325 0x2d, 0x69, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2326 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2327 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2328 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2329 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2330 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2331 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2332 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f,
2333 0x70, 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c,
2334 0x74, 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76,
2335 0x69, 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74,
2336 0x3b, 0x2f, 0x76, 0x69, 0x65, 0x77, 0x2f, 0x7a,
2337 0x6f, 0x6f, 0x6d, 0x2d, 0x69, 0x6e, 0x3c, 0x2f,
2338 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2339 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2340 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2341 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2342 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2343 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2344 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2345 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
2346 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
2347 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
2348 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
2349 0x5a, 0x6f, 0x6f, 0x6d, 0x20, 0x5f, 0x49, 0x6e,
2350 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2351 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2352 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2353 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2354 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2355 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2356 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2357 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2358 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
2359 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2360 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2361 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2362 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2363 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2364 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2365 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2366 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2367 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
2368 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
2369 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2370 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2371 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2372 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2373 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2374 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2375 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2376 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2377 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
2378 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
2379 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
2380 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2381 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2382 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2383 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2384 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2385 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2386 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2387 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2388 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2389 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
2390 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
2391 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
2392 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2393 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2394 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2395 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2396 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2397 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
2398 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2399 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
2400 0x74, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64,
2401 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72,
2402 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
2403 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
2404 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x76, 0x69, 0x65,
2405 0x77, 0x5f, 0x7a, 0x6f, 0x6f, 0x6d, 0x5f, 0x69,
2406 0x6e, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70,
2407 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f,
2408 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2409 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2410 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2411 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2412 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
2413 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
2414 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2415 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2416 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2417 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
2418 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
2419 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2420 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2421 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2422 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2423 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
2424 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2425 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2426 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2427 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2428 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
2429 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
2430 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49,
2431 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d,
2432 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x76, 0x69,
2433 0x65, 0x77, 0x2d, 0x7a, 0x6f, 0x6f, 0x6d, 0x2d,
2434 0x6f, 0x75, 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2435 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2436 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2437 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2438 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2439 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2440 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2441 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f,
2442 0x70, 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c,
2443 0x74, 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76,
2444 0x69, 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74,
2445 0x3b, 0x2f, 0x76, 0x69, 0x65, 0x77, 0x2f, 0x7a,
2446 0x6f, 0x6f, 0x6d, 0x2d, 0x6f, 0x75, 0x74, 0x3c,
2447 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2448 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2449 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2450 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2451 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2452 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2453 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2454 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
2455 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
2456 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
2457 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
2458 0x3e, 0x5a, 0x6f, 0x6f, 0x6d, 0x20, 0x5f, 0x4f,
2459 0x75, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2460 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2461 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2462 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2463 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2464 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2465 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2466 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2467 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
2468 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
2469 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2470 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2471 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2472 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2473 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2474 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2475 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2476 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
2477 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
2478 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
2479 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2480 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2481 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2482 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2483 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2484 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2485 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2486 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
2487 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f,
2488 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72,
2489 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61,
2490 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2491 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2492 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2493 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2494 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2496 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2497 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2498 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
2499 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
2500 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
2501 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2502 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2503 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2504 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2505 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2506 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
2507 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61,
2508 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
2509 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61,
2510 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
2511 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
2512 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
2513 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x76,
2514 0x69, 0x65, 0x77, 0x5f, 0x7a, 0x6f, 0x6f, 0x6d,
2515 0x5f, 0x6f, 0x75, 0x74, 0x22, 0x20, 0x73, 0x77,
2516 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e,
2517 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2518 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2519 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2520 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2521 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2522 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
2523 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2524 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2525 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2526 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2527 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
2528 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2529 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2531 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2532 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
2533 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2534 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2535 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2536 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2537 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
2538 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
2539 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x53, 0x65,
2540 0x70, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x4d,
2541 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22,
2542 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x65, 0x70,
2543 0x61, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x6d, 0x65,
2544 0x6e, 0x75, 0x69, 0x74, 0x65, 0x6d, 0x34, 0x22,
2545 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2546 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2547 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2548 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2549 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2550 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2551 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
2552 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
2553 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2554 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2555 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2556 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2557 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2558 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2559 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2560 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2561 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
2562 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
2563 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2564 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2565 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2566 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2567 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2568 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2569 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
2570 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2571 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2572 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2573 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2574 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
2575 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2577 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2578 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2579 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
2580 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2581 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2582 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2583 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2584 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
2585 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
2586 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
2587 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
2588 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
2589 0x6e, 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d,
2590 0x7a, 0x6f, 0x6f, 0x6d, 0x2d, 0x72, 0x65, 0x73,
2591 0x65, 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2592 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2593 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2594 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2595 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2596 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2597 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2598 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x70,
2599 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c, 0x74,
2600 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
2601 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74, 0x3b,
2602 0x2f, 0x76, 0x69, 0x65, 0x77, 0x2f, 0x7a, 0x6f,
2603 0x6f, 0x6d, 0x2d, 0x72, 0x65, 0x73, 0x65, 0x74,
2604 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2605 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2606 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2607 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2608 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2609 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2610 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2611 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2612 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
2613 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
2614 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
2615 0x22, 0x3e, 0x5f, 0x4e, 0x6f, 0x72, 0x6d, 0x61,
2616 0x6c, 0x20, 0x53, 0x69, 0x7a, 0x65, 0x3c, 0x2f,
2617 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2618 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2619 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2620 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2621 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2622 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2623 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2624 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
2625 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
2626 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2627 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2628 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2629 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2630 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2631 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2632 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2633 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2634 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
2635 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
2636 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2637 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2638 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2639 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2640 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2641 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2642 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2643 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2644 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61,
2645 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70,
2646 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65,
2647 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
2648 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2649 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2650 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2651 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2652 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2653 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2654 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2655 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
2656 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
2657 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
2658 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2659 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2660 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2661 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2662 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2663 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2664 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
2665 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2666 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
2667 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
2668 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
2669 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77,
2670 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65,
2671 0x6e, 0x75, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f,
2672 0x7a, 0x6f, 0x6f, 0x6d, 0x5f, 0x72, 0x65, 0x73,
2673 0x65, 0x74, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70,
2674 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22,
2675 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2676 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2677 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2678 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2679 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
2680 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
2681 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2682 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2683 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2684 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2685 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
2686 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2687 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2688 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2689 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
2690 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
2691 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2692 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2693 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2694 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
2695 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2696 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2697 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2698 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2699 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
2700 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2701 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2702 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2703 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
2704 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2705 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2706 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2707 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
2708 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2709 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2710 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2711 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
2712 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
2713 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65,
2714 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20,
2715 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75,
2716 0x2d, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
2717 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2718 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2719 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2720 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2721 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2722 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2723 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
2724 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2725 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2726 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2727 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2728 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2729 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2730 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2731 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
2732 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
2733 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2734 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2735 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2736 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2737 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2738 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2739 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2740 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
2741 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
2742 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
2743 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2744 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2745 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2746 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2747 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2748 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2749 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2750 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2751 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
2752 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
2753 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
2754 0x73, 0x22, 0x3e, 0x5f, 0x44, 0x69, 0x73, 0x70,
2755 0x6c, 0x61, 0x79, 0x73, 0x3c, 0x2f, 0x70, 0x72,
2756 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2757 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2758 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2759 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2760 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2761 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2762 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
2763 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
2764 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
2765 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2766 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2767 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2768 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2769 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
2770 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
2771 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2772 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2773 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2774 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
2775 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2776 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2777 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2778 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
2779 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2780 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2781 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2782 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
2783 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
2784 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
2785 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
2786 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x76,
2787 0x69, 0x65, 0x77, 0x2d, 0x72, 0x65, 0x6c, 0x65,
2788 0x61, 0x73, 0x65, 0x2d, 0x63, 0x75, 0x72, 0x73,
2789 0x6f, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2790 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2791 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2792 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2793 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2794 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2795 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
2796 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2797 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2798 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2799 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2800 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2801 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2802 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2803 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2804 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
2805 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
2806 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
2807 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2808 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2809 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2810 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2811 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2812 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2813 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2814 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63,
2815 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x22,
2816 0x3e, 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69, 0x72,
2817 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
2818 0x26, 0x67, 0x74, 0x3b, 0x2f, 0x76, 0x69, 0x65,
2819 0x77, 0x2f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73,
2820 0x65, 0x2d, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72,
2821 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2822 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2823 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2824 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2826 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2827 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2828 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
2829 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
2830 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
2831 0x22, 0x3e, 0x52, 0x65, 0x6c, 0x65, 0x61, 0x73,
2832 0x65, 0x20, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72,
2833 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2834 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2835 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2836 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2837 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2838 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2839 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2840 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
2841 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
2842 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2843 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2844 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2845 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2846 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2847 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e,
2848 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2849 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74,
2850 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
2851 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74,
2852 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f,
2853 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d,
2854 0x65, 0x6e, 0x75, 0x5f, 0x76, 0x69, 0x65, 0x77,
2855 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65,
2856 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22,
2857 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
2858 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
2859 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2860 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2861 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2862 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
2863 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2864 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2865 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2866 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
2867 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2868 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2869 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2870 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
2871 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2872 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2873 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2874 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
2875 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2876 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2877 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
2878 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
2879 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2880 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
2881 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
2882 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2883 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2884 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
2885 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2886 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2887 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
2888 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
2889 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49,
2890 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d,
2891 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x73, 0x65,
2892 0x6e, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2893 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2894 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2895 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2896 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2897 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
2898 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
2899 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2900 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2901 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2902 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2903 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2904 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
2905 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
2906 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
2907 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2908 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2909 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2910 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2911 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2912 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73,
2913 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
2914 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61,
2915 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c,
2916 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2917 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2918 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2919 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2920 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2921 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2922 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
2923 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
2924 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
2925 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x53, 0x65, 0x6e,
2926 0x64, 0x20, 0x6b, 0x65, 0x79, 0x3c, 0x2f, 0x70,
2927 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2928 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2929 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2930 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2931 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2932 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
2933 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69,
2934 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
2935 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2936 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2937 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2938 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
2939 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
2940 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2941 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2942 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
2943 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2944 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2945 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
2946 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2947 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2948 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
2949 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
2950 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
2951 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69,
2952 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d,
2953 0x68, 0x65, 0x6c, 0x70, 0x22, 0x3e, 0x0a, 0x20,
2954 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2955 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2956 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2957 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2958 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
2959 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
2960 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2961 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2962 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2963 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2964 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2965 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2966 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
2967 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
2968 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2969 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2970 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2971 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2972 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2973 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2974 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69,
2975 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61,
2976 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46,
2977 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
2978 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2979 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2980 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2981 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2982 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2983 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
2984 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
2985 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
2986 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x48,
2987 0x65, 0x6c, 0x70, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2988 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2989 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2990 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2991 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2992 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2993 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
2994 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
2995 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
2996 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2997 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2998 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2999 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
3000 0x68, 0x69, 0x6c, 0x64, 0x20, 0x74, 0x79, 0x70,
3001 0x65, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d, 0x65,
3002 0x6e, 0x75, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3003 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3004 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3005 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3006 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3007 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
3008 0x75, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d,
3009 0x65, 0x6e, 0x75, 0x33, 0x22, 0x3e, 0x0a, 0x20,
3010 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3011 0x20, 0x20, 0x20, 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, 0x76,
3015 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
3016 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3017 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3018 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3019 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3020 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3021 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3022 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3023 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
3024 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
3025 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3026 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3027 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3028 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3029 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
3030 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3031 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3032 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3033 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
3034 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
3035 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
3036 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
3037 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
3038 0x6e, 0x75, 0x2d, 0x68, 0x65, 0x6c, 0x70, 0x2d,
3039 0x67, 0x75, 0x65, 0x73, 0x74, 0x2d, 0x64, 0x65,
3040 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x3e, 0x0a,
3041 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3042 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3043 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3044 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3045 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3046 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
3047 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
3048 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3049 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3050 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3051 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3052 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3053 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3054 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3055 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
3056 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
3057 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3058 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3059 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3060 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3061 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3062 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3063 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3064 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
3065 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
3066 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
3067 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
3068 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3069 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3070 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3071 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3072 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3073 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3074 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
3075 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
3076 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
3077 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f,
3078 0x47, 0x75, 0x65, 0x73, 0x74, 0x20, 0x44, 0x65,
3079 0x74, 0x61, 0x69, 0x6c, 0x73, 0x3c, 0x2f, 0x70,
3080 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3081 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3083 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3084 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3085 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3086 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
3087 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69,
3088 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
3089 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3090 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3091 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3092 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3093 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3094 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20,
3095 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63,
3096 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x22, 0x20,
3097 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d,
3098 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69,
3099 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e,
3100 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75,
3101 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x5f, 0x67, 0x75,
3102 0x65, 0x73, 0x74, 0x5f, 0x64, 0x65, 0x74, 0x61,
3103 0x69, 0x6c, 0x73, 0x22, 0x20, 0x73, 0x77, 0x61,
3104 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f,
3105 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3106 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3107 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3108 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
3109 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
3110 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3111 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3112 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3113 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3114 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3115 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3116 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3117 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3118 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3119 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3120 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3121 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3122 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3123 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
3124 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69,
3125 0x64, 0x3d, 0x22, 0x69, 0x6d, 0x61, 0x67, 0x65,
3126 0x6d, 0x65, 0x6e, 0x75, 0x69, 0x74, 0x65, 0x6d,
3127 0x31, 0x30, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3129 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3130 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3131 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3132 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3133 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
3134 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
3135 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
3136 0x73, 0x22, 0x3e, 0x5f, 0x41, 0x62, 0x6f, 0x75,
3137 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3138 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3139 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3140 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3141 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3142 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3143 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3144 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
3145 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3146 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3147 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3148 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3149 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3150 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3151 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3152 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
3153 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
3154 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
3155 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3156 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3157 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3158 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3159 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3160 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3161 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73,
3162 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
3163 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61,
3164 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c,
3165 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3166 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3167 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3168 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3169 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3170 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3171 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3172 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
3173 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
3174 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
3175 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3176 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3177 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3178 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3179 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69,
3180 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d,
3181 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76,
3182 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e,
3183 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69,
3184 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65,
3185 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
3186 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x68, 0x65,
3187 0x6c, 0x70, 0x5f, 0x61, 0x62, 0x6f, 0x75, 0x74,
3188 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65,
3189 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e,
3190 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3191 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3192 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3193 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
3194 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3195 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3196 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3197 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3198 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3199 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3200 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3201 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
3202 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3203 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3204 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3205 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
3206 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3207 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3208 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
3209 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
3210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3211 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3212 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
3213 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3214 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3215 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
3216 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3217 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3218 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3219 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
3220 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
3221 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
3222 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x63,
3223 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2d, 0x63, 0x64,
3224 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3225 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3226 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3227 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3228 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
3229 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f,
3230 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72,
3231 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61,
3232 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3233 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3234 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3235 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3236 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3237 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3238 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
3239 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
3240 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3241 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3242 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3243 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3244 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3245 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3246 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
3247 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
3248 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
3249 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x43, 0x68,
3250 0x61, 0x6e, 0x67, 0x65, 0x20, 0x43, 0x44, 0x3c,
3251 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3252 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3253 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3254 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3255 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3256 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
3257 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
3258 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
3259 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3260 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3261 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3262 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3263 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
3264 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3265 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3266 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
3267 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3268 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3269 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3270 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3272 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
3273 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3275 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3276 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3277 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
3278 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
3279 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3280 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3281 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3282 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3283 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3284 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
3285 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3286 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3287 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3288 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3289 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3290 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3291 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
3292 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
3293 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3294 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3295 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3296 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
3297 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3298 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
3299 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
3300 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3301 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3302 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3303 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
3304 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
3305 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3306 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3307 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3308 0x65, 0x3d, 0x22, 0x69, 0x6e, 0x64, 0x65, 0x78,
3309 0x22, 0x3e, 0x2d, 0x31, 0x3c, 0x2f, 0x70, 0x72,
3310 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3311 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3312 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
3313 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3314 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3315 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3316 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
3317 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3318 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
3319 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
3320 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x3c,
3321 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
3322 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28, 0x75,
3323 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72, 0x74,
3324 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d,
3325 0x76, 0x6d, 0x2d, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
3326 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x75, 0x69,
3327 0x2d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3328 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
3329 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
3330 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
3331 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
3332 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
3333 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
3334 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
3335 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
3336 0x20, 0x33, 0x2e, 0x31, 0x36, 0x2e, 0x31, 0x20,
3337 0x2d, 0x2d, 0x3e, 0x0a, 0x3c, 0x69, 0x6e, 0x74,
3338 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a,
3339 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3340 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
3341 0x22, 0x47, 0x74, 0x6b, 0x44, 0x69, 0x61, 0x6c,
3342 0x6f, 0x67, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
3343 0x76, 0x6d, 0x2d, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
3344 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x69,
3345 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x3e, 0x0a, 0x20,
3346 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3347 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3348 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
3349 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
3350 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3351 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3352 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3353 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3354 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65,
3355 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22,
3356 0x3e, 0x35, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3357 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3358 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3359 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3360 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22,
3361 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
3362 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
3363 0x65, 0x73, 0x22, 0x3e, 0x43, 0x68, 0x6f, 0x6f,
3364 0x73, 0x65, 0x20, 0x61, 0x20, 0x76, 0x69, 0x72,
3365 0x74, 0x75, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x63,
3366 0x68, 0x69, 0x6e, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3367 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3368 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3369 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3370 0x6d, 0x65, 0x3d, 0x22, 0x6d, 0x6f, 0x64, 0x61,
3371 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3372 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3373 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
3374 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3375 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77,
3376 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x70, 0x6f,
3377 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
3378 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2d, 0x6f,
3379 0x6e, 0x2d, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
3380 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3381 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3382 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3383 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3384 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
3385 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0x3e,
3386 0x32, 0x30, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3387 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3388 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3389 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3390 0x65, 0x3d, 0x22, 0x64, 0x65, 0x73, 0x74, 0x72,
3391 0x6f, 0x79, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f,
3392 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e,
3393 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3394 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3395 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3396 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3397 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65,
3398 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64,
3399 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70,
3400 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3401 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
3402 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
3403 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
3404 0x6c, 0x64, 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78,
3405 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3406 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
3407 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
3408 0x47, 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20,
3409 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c,
3410 0x6f, 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x31,
3411 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3412 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3413 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3414 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
3415 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
3416 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3417 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3418 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3419 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3420 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f,
3421 0x72, 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69,
3422 0x6f, 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74,
3423 0x69, 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72,
3424 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3425 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3426 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3427 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3428 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
3429 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3430 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3431 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
3432 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74,
3433 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68,
3434 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74,
3435 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61,
3436 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3437 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
3438 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
3439 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42,
3440 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78,
3441 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69,
3442 0x61, 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74,
3443 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61,
3444 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3445 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3446 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3447 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3448 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
3449 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
3450 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3451 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3452 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3453 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3454 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3455 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f, 0x73,
3456 0x74, 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65, 0x6e,
3457 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3458 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3459 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3460 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3461 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3462 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3463 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
3464 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
3465 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
3466 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
3467 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x61, 0x6e, 0x63,
3468 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3469 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3470 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3471 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3472 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
3473 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
3474 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
3475 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
3476 0x3e, 0x5f, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c,
3477 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3478 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3479 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3480 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3481 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3482 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
3483 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
3484 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3485 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3486 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3487 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3488 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3489 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
3490 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
3491 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3492 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3493 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3494 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3495 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3496 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3497 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73,
3498 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
3499 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3500 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3501 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3502 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3503 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3504 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3505 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
3506 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
3507 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
3508 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3509 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3510 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3511 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
3512 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3513 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3514 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
3515 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3516 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3517 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3518 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3519 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
3520 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
3521 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3522 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3523 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3524 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3525 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3526 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
3527 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3528 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3529 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3531 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3532 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3533 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
3534 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3535 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3536 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3537 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
3538 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
3539 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3540 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
3541 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3542 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3543 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3544 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3545 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3546 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
3547 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
3548 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
3549 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
3550 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x6f, 0x6e, 0x6e,
3551 0x65, 0x63, 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20,
3552 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3553 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3554 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3555 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
3556 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
3557 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
3558 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
3559 0x43, 0x5f, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
3560 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3561 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3562 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3563 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3564 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3565 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
3566 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
3567 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3568 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3569 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3570 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3571 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3572 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
3573 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
3574 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3575 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3577 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3578 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3579 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3580 0x63, 0x61, 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x61,
3581 0x75, 0x6c, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75,
3582 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3583 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3584 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3585 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3586 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3587 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x68, 0x61, 0x73,
3588 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
3589 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3590 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3591 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3592 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3593 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3594 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3595 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
3596 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
3597 0x6c, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
3598 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3599 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3600 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3601 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3602 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3603 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
3604 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
3605 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3606 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3607 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3608 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3609 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3610 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3611 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3612 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
3613 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3614 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3615 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3616 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3617 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
3618 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
3619 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3620 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3621 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3622 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3623 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3624 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
3625 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3626 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3627 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3628 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3629 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3630 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3631 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
3632 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70,
3633 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3634 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3635 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3636 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
3637 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3638 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
3639 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
3640 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3641 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3642 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3643 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
3644 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
3645 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3646 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3647 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3648 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
3649 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
3650 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3651 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3652 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3653 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3654 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3655 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
3656 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3657 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3658 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3659 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3660 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3661 0x3d, 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74,
3662 0x79, 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
3663 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3664 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3665 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3666 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3667 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3668 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
3669 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3670 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3671 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3672 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
3673 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3674 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
3675 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3676 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
3677 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3678 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3679 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
3680 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
3681 0x6b, 0x54, 0x72, 0x65, 0x65, 0x56, 0x69, 0x65,
3682 0x77, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74,
3683 0x72, 0x65, 0x65, 0x76, 0x69, 0x65, 0x77, 0x22,
3684 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3685 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3686 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3687 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
3688 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
3689 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3690 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3691 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3692 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3693 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3694 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
3695 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72,
3696 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3697 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3698 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3699 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3700 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3701 0x3d, 0x22, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
3702 0x73, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
3703 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
3704 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3705 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3706 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3707 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3708 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3709 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63,
3710 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0x3e, 0x30,
3711 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3712 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3713 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3714 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3715 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3716 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x67,
3717 0x72, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65,
3718 0x73, 0x22, 0x3e, 0x68, 0x6f, 0x72, 0x69, 0x7a,
3719 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x3c, 0x2f, 0x70,
3720 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3721 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3722 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
3723 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
3724 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
3725 0x6c, 0x64, 0x3d, 0x22, 0x73, 0x65, 0x6c, 0x65,
3726 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x0a,
3727 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3728 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
3729 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
3730 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
3731 0x54, 0x72, 0x65, 0x65, 0x53, 0x65, 0x6c, 0x65,
3732 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x69,
3733 0x64, 0x3d, 0x22, 0x74, 0x72, 0x65, 0x65, 0x76,
3734 0x69, 0x65, 0x77, 0x2d, 0x73, 0x65, 0x6c, 0x65,
3735 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x3e,
3736 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3737 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3738 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3739 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3740 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
3741 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3742 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3743 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
3744 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
3745 0x74, 0x6b, 0x54, 0x72, 0x65, 0x65, 0x56, 0x69,
3746 0x65, 0x77, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
3747 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x72,
3748 0x65, 0x65, 0x76, 0x69, 0x65, 0x77, 0x63, 0x6f,
3749 0x6c, 0x75, 0x6d, 0x6e, 0x31, 0x22, 0x3e, 0x0a,
3750 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3751 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3752 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3753 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3754 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x20, 0x74,
3755 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
3756 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
3757 0x22, 0x3e, 0x4e, 0x61, 0x6d, 0x65, 0x3c, 0x2f,
3758 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3759 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3760 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3761 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
3762 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3763 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3764 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
3765 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
3766 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x43, 0x65,
3767 0x6c, 0x6c, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72,
3768 0x65, 0x72, 0x54, 0x65, 0x78, 0x74, 0x22, 0x20,
3769 0x69, 0x64, 0x3d, 0x22, 0x63, 0x65, 0x6c, 0x6c,
3770 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x72,
3771 0x74, 0x65, 0x78, 0x74, 0x31, 0x22, 0x2f, 0x3e,
3772 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3773 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3774 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72,
3775 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a,
3776 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3777 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3778 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74,
3779 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x6e,
3780 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78,
3781 0x74, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x61, 0x74,
3782 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x3e,
3783 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3784 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3785 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74,
3786 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e,
3787 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3788 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3789 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
3790 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3791 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3792 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
3793 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3794 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
3795 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
3796 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3797 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3798 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3799 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
3800 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
3801 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3802 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3803 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3804 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
3805 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3806 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3807 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3808 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3809 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3810 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
3811 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
3812 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3813 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3814 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3815 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3816 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3817 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74, 0x79,
3818 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c,
3819 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3820 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3821 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3822 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3823 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
3824 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
3825 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3826 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3827 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3828 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
3829 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3830 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
3831 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3832 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
3833 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3834 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
3835 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
3836 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
3837 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
3838 0x64, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
3839 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3840 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3841 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3842 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
3843 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
3844 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3845 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3846 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3847 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3848 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3849 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
3850 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
3851 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3852 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3853 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3854 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3855 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3856 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69,
3857 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
3858 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3859 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3860 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3861 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3862 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x79, 0x61, 0x6c,
3863 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
3864 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3865 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3866 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3867 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3868 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x70,
3869 0x61, 0x64, 0x22, 0x3e, 0x34, 0x3c, 0x2f, 0x70,
3870 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3871 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3872 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3873 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3874 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
3875 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
3876 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
3877 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41,
3878 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65,
3879 0x20, 0x76, 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c,
3880 0x20, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
3881 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3882 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3883 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3884 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3885 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3886 0x22, 0x65, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x69,
3887 0x7a, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c,
3888 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3889 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3890 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3891 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3892 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77,
3893 0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x68, 0x61,
3894 0x72, 0x73, 0x22, 0x3e, 0x32, 0x36, 0x3c, 0x2f,
3895 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3896 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3897 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61,
3898 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
3899 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3900 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3901 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62,
3902 0x75, 0x74, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3903 0x3d, 0x22, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74,
3904 0x22, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d,
3905 0x22, 0x62, 0x6f, 0x6c, 0x64, 0x22, 0x2f, 0x3e,
3906 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3907 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61,
3908 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
3909 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3910 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
3911 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
3912 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3913 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
3914 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3915 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3916 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3917 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
3918 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
3919 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3920 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3921 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3922 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3923 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3924 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
3925 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3926 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3927 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3928 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3929 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3930 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x61,
3931 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22,
3932 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72,
3933 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3934 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3935 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3936 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3937 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
3938 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x32, 0x3c,
3939 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3940 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3941 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
3942 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
3943 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3944 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3945 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3946 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
3947 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3948 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3949 0x20, 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f,
3950 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
3951 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3952 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
3953 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x20,
3954 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
3955 0x3d, 0x22, 0x2d, 0x36, 0x22, 0x3e, 0x62, 0x75,
3956 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x61, 0x6e,
3957 0x63, 0x65, 0x6c, 0x3c, 0x2f, 0x61, 0x63, 0x74,
3958 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67,
3959 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3960 0x20, 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f,
3961 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
3962 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
3963 0x65, 0x3d, 0x22, 0x2d, 0x33, 0x22, 0x3e, 0x62,
3964 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x6f,
3965 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x3c, 0x2f, 0x61,
3966 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69,
3967 0x64, 0x67, 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3968 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69,
3969 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65,
3970 0x74, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f,
3971 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
3972 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
3973 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28,
3974 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72,
3975 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
3976 0x2d, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
3977 0x6e, 0x63, 0x65, 0x73, 0x2e, 0x75, 0x69, 0x00,
3978 0xfe, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3979 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
3980 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
3981 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
3982 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
3983 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
3984 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
3985 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
3986 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
3987 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
3988 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
3989 0x2b, 0x20, 0x32, 0x2e, 0x36, 0x20, 0x2d, 0x2d,
3990 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d,
3991 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
3992 0x63, 0x65, 0x2d, 0x6e, 0x61, 0x6d, 0x69, 0x6e,
3993 0x67, 0x2d, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
3994 0x20, 0x74, 0x6f, 0x70, 0x6c, 0x65, 0x76, 0x65,
3995 0x6c, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
3996 0x74, 0x75, 0x61, 0x6c, 0x20, 0x2d, 0x2d, 0x3e,
3997 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3998 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3999 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44, 0x69, 0x61,
4000 0x6c, 0x6f, 0x67, 0x22, 0x20, 0x69, 0x64, 0x3d,
4001 0x22, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
4002 0x6e, 0x63, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x20,
4003 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4004 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4005 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
4006 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
4007 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4008 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4009 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4010 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4011 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65,
4012 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22,
4013 0x3e, 0x35, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4014 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4015 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4016 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4017 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22,
4018 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
4019 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
4020 0x65, 0x73, 0x22, 0x3e, 0x50, 0x72, 0x65, 0x66,
4021 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x3c,
4022 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4023 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
4024 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4025 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74,
4026 0x79, 0x70, 0x65, 0x5f, 0x68, 0x69, 0x6e, 0x74,
4027 0x22, 0x3e, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c,
4028 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4029 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4030 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20,
4031 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65,
4032 0x6c, 0x65, 0x74, 0x65, 0x2d, 0x65, 0x76, 0x65,
4033 0x6e, 0x74, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64,
4034 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x67, 0x74, 0x6b,
4035 0x5f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x5f,
4036 0x68, 0x69, 0x64, 0x65, 0x5f, 0x6f, 0x6e, 0x5f,
4037 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x22, 0x20,
4038 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d,
4039 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
4040 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
4041 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
4042 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64,
4043 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x22, 0x3e,
4044 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4045 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
4046 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
4047 0x6b, 0x56, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69,
4048 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f,
4049 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x31, 0x22,
4050 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4051 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4052 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4053 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4054 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4055 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4056 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4057 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4058 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4059 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
4060 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
4061 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4062 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4063 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4064 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e,
4065 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63,
4066 0x68, 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63,
4067 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65,
4068 0x61, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4069 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
4070 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
4071 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
4072 0x48, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x42,
4073 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
4074 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x2d, 0x61,
4075 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72,
4076 0x65, 0x61, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4077 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4078 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4079 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4080 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4081 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4082 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4083 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4084 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4085 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4086 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4087 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4088 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4089 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4090 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4091 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4092 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4093 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
4094 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x74,
4095 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
4096 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4097 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4098 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4099 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4100 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4101 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4102 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
4103 0x65, 0x72, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4104 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4105 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
4106 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4107 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
4108 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4109 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4110 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x6c, 0x61,
4111 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72,
4112 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4113 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4114 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4115 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4116 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
4117 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4118 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4119 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
4120 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4121 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4122 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4123 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
4124 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
4125 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4126 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4127 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4128 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4129 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4130 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
4131 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4132 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4133 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4134 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4135 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4136 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
4137 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
4138 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4139 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4140 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
4141 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
4142 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4143 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4144 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4145 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4146 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4147 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
4148 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
4149 0x47, 0x74, 0x6b, 0x4e, 0x6f, 0x74, 0x65, 0x62,
4150 0x6f, 0x6f, 0x6b, 0x22, 0x20, 0x69, 0x64, 0x3d,
4151 0x22, 0x6e, 0x6f, 0x74, 0x65, 0x62, 0x6f, 0x6f,
4152 0x6b, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4153 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4154 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4155 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4156 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
4157 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4158 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4159 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4160 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4161 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4162 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
4163 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
4164 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4165 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4166 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4167 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
4168 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4169 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4170 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
4171 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
4172 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f,
4173 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x76,
4174 0x62, 0x6f, 0x78, 0x31, 0x22, 0x3e, 0x0a, 0x20,
4175 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4176 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4177 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4178 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
4179 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
4180 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4181 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4182 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4183 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4184 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4185 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4186 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
4187 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
4188 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4189 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4190 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4191 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4192 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4193 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64,
4194 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68,
4195 0x22, 0x3e, 0x31, 0x38, 0x3c, 0x2f, 0x70, 0x72,
4196 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4197 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4198 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4199 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4200 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4201 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
4202 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4203 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4204 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4205 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
4206 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4207 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4208 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4209 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
4210 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
4211 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22,
4212 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x61, 0x62,
4213 0x65, 0x6c, 0x32, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4214 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4215 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4216 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4217 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4218 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4219 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4220 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4221 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4222 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4223 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4224 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4225 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4226 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4227 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4228 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4229 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4230 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4231 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4232 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4233 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
4234 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30,
4235 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4236 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4238 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4239 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4240 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4241 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
4242 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
4243 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
4244 0x22, 0x3e, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
4245 0x20, 0x73, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67,
4246 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4247 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4249 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4250 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
4251 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4252 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4253 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4254 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72,
4255 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x6e, 0x61,
4256 0x6d, 0x65, 0x3d, 0x22, 0x77, 0x65, 0x69, 0x67,
4257 0x68, 0x74, 0x22, 0x20, 0x76, 0x61, 0x6c, 0x75,
4258 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x6c, 0x64, 0x22,
4259 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4260 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4261 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4262 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
4263 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4264 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4265 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4266 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
4267 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4268 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4269 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
4270 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4272 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4273 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4274 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4275 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
4276 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
4277 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4278 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4279 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4280 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4281 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4282 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69,
4283 0x6c, 0x6c, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
4284 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4285 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4286 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4287 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4288 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4289 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4290 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
4291 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72,
4292 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4293 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4295 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
4296 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4297 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4298 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
4299 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4300 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4301 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
4302 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4303 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4304 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4305 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
4306 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
4307 0x74, 0x6b, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x22,
4308 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x61, 0x62,
4309 0x6c, 0x65, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4310 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4311 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4312 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4313 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4314 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4315 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4316 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4317 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4318 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4319 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4320 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4321 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4322 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4323 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4324 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4325 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4326 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4327 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4328 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4329 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
4330 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x77, 0x69,
4331 0x64, 0x74, 0x68, 0x22, 0x3e, 0x36, 0x3c, 0x2f,
4332 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4333 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4334 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4335 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4336 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4337 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x5f,
4338 0x72, 0x6f, 0x77, 0x73, 0x22, 0x3e, 0x32, 0x3c,
4339 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4340 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4341 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4342 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4343 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4344 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e,
4345 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73,
4346 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4347 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4348 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4349 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4350 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4351 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4352 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x6c, 0x75, 0x6d,
4353 0x6e, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e,
4354 0x67, 0x22, 0x3e, 0x31, 0x32, 0x3c, 0x2f, 0x70,
4355 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4356 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4357 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4358 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4359 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4360 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x6f, 0x77,
4361 0x5f, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67,
4362 0x22, 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4363 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4364 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4365 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4366 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
4367 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4368 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4369 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4370 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
4371 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
4372 0x47, 0x74, 0x6b, 0x43, 0x68, 0x65, 0x63, 0x6b,
4373 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20,
4374 0x69, 0x64, 0x3d, 0x22, 0x63, 0x62, 0x73, 0x68,
4375 0x61, 0x72, 0x65, 0x66, 0x6f, 0x6c, 0x64, 0x65,
4376 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4377 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4378 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4379 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4380 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4381 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
4382 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
4383 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
4384 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53, 0x68,
4385 0x61, 0x72, 0x65, 0x20, 0x66, 0x6f, 0x6c, 0x64,
4386 0x65, 0x72, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4387 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4388 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4389 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4390 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4391 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4392 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
4393 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
4394 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4395 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4396 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4397 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4398 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4399 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4400 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4401 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4402 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4403 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4404 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4405 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4406 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4407 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4408 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4409 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
4410 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
4411 0x6c, 0x74, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
4412 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4413 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4414 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4415 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4416 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4417 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4418 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x72, 0x61,
4419 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61,
4420 0x74, 0x6f, 0x72, 0x22, 0x3e, 0x54, 0x72, 0x75,
4421 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4422 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4423 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4424 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4425 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
4426 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4427 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4428 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4429 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
4430 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4431 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4432 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4433 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4434 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4435 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x5f, 0x6f,
4436 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x2f,
4437 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4438 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4439 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4440 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
4441 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4442 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4443 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4444 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4445 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4446 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4447 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
4448 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4449 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4450 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4451 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
4452 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
4453 0x22, 0x47, 0x74, 0x6b, 0x43, 0x68, 0x65, 0x63,
4454 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
4455 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x62, 0x73,
4456 0x68, 0x61, 0x72, 0x65, 0x66, 0x6f, 0x6c, 0x64,
4457 0x65, 0x72, 0x72, 0x6f, 0x22, 0x3e, 0x0a, 0x20,
4458 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4459 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4460 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4461 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4462 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
4463 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
4464 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
4465 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
4466 0x3e, 0x52, 0x65, 0x61, 0x64, 0x2d, 0x6f, 0x6e,
4467 0x6c, 0x79, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4468 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4469 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4470 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4471 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4472 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4473 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
4474 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
4475 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4476 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4477 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4478 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4479 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4480 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4481 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4482 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4483 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4484 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4485 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4486 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4487 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4488 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4489 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4490 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
4491 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
4492 0x6c, 0x74, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
4493 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4494 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4497 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4498 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4499 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x72, 0x61,
4500 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61,
4501 0x74, 0x6f, 0x72, 0x22, 0x3e, 0x54, 0x72, 0x75,
4502 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4503 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4504 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4505 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4506 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
4507 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4508 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4509 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4510 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
4511 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4512 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4513 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4514 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4515 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4516 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67,
4517 0x68, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
4518 0x68, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72,
4519 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4520 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4521 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4522 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4523 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4524 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4525 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61,
4526 0x63, 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70,
4527 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4528 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4529 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4531 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4532 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4533 0x22, 0x62, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
4534 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e,
4535 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4536 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4537 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4538 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4539 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
4540 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
4541 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4542 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4543 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
4544 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4545 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4546 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4547 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4548 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4549 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4550 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
4551 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
4552 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x46,
4553 0x69, 0x6c, 0x65, 0x43, 0x68, 0x6f, 0x6f, 0x73,
4554 0x65, 0x72, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
4555 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x66, 0x63,
4556 0x73, 0x68, 0x61, 0x72, 0x65, 0x66, 0x6f, 0x6c,
4557 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4558 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4559 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4560 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4561 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4562 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
4563 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
4564 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4565 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4566 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4567 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4568 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4569 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4570 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4571 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4572 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4573 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4574 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4575 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4577 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4578 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4579 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x6f,
4580 0x6e, 0x22, 0x3e, 0x73, 0x65, 0x6c, 0x65, 0x63,
4581 0x74, 0x2d, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72,
4582 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4583 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4584 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4585 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4586 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
4587 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4588 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4589 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4590 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
4591 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4592 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4593 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4594 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4595 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4596 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x65, 0x66, 0x74,
4597 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22,
4598 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4599 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4600 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4601 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4602 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4603 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4604 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x69,
4605 0x67, 0x68, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61,
4606 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70,
4607 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4608 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4609 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4610 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4611 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
4612 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4613 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4614 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4615 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4616 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4617 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4618 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
4619 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4620 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4621 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
4622 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
4623 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4624 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4625 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4626 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4627 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
4628 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
4629 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4630 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4631 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4632 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4633 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4634 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4635 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x46, 0x61,
4636 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4637 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4638 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4639 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4640 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4641 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4642 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
4643 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
4644 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4645 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4646 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4647 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
4648 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
4649 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4650 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4651 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4652 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4653 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4654 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
4655 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4656 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
4657 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4658 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4659 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20,
4660 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x74, 0x61,
4661 0x62, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4662 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4663 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
4664 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
4665 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65,
4666 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c,
4667 0x61, 0x62, 0x65, 0x6c, 0x31, 0x22, 0x3e, 0x0a,
4668 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4669 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4670 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4671 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4672 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
4673 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4674 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4675 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4676 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4677 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4678 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4679 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
4680 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
4681 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4682 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4683 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4684 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4685 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4686 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
4687 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
4688 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
4689 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53,
4690 0x70, 0x69, 0x63, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4691 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4692 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4693 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4694 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
4695 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4696 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4697 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
4698 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4699 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4700 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4701 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4702 0x74, 0x61, 0x62, 0x5f, 0x66, 0x69, 0x6c, 0x6c,
4703 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4704 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4705 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4706 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4707 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
4708 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4709 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4710 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
4711 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4712 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
4713 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4714 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4715 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
4716 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4717 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4718 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4719 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
4720 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75,
4721 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4722 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4723 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4724 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4725 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4726 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
4727 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4728 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4729 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4730 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4731 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4732 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
4733 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
4734 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4735 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4736 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
4737 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
4738 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4739 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4740 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4741 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
4742 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
4743 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x3c,
4744 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
4745 0x0a, 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
4746 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00,
4747 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
4748 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
4749 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00,
4750 0xc1, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4751 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
4752 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
4753 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
4754 0x08, 0x06, 0x00, 0x00, 0x00, 0x5c, 0x72, 0xa8,
4755 0x66, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47,
4756 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00,
4757 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff,
4758 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93,
4759 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73,
4760 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d, 0xd7,
4761 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00, 0x00,
4762 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xdc, 0x02,
4763 0x08, 0x0f, 0x27, 0x1b, 0x4d, 0xa0, 0x31, 0xcf,
4764 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54,
4765 0x78, 0xda, 0xed, 0xbd, 0x69, 0xb0, 0x24, 0xd7,
4766 0x75, 0x1e, 0xf8, 0xdd, 0xdc, 0xab, 0xea, 0xbd,
4767 0x7a, 0x4b, 0x77, 0x03, 0xfd, 0x5e, 0x2f, 0x68,
4768 0xa0, 0xd1, 0x40, 0xa3, 0xd1, 0x8d, 0x85, 0x10,
4769 0x88, 0x85, 0x0b, 0x44, 0x6a, 0x2c, 0x6b, 0x6c,
4770 0x4b, 0xf3, 0x63, 0x0c, 0x4b, 0xf2, 0x58, 0x8b,
4771 0x2d, 0x53, 0x31, 0x21, 0x86, 0xa8, 0xc0, 0x48,
4772 0xb6, 0x27, 0xac, 0x09, 0xbb, 0xc3, 0xe1, 0x18,
4773 0x69, 0xe8, 0xa1, 0x40, 0x49, 0xb6, 0x35, 0xa3,
4774 0x18, 0x8b, 0x54, 0x38, 0x62, 0xc6, 0x36, 0x6d,
4775 0x2b, 0x1c, 0x21, 0x2e, 0x61, 0x8f, 0x2d, 0x48,
4776 0xa4, 0x08, 0x4a, 0x34, 0x49, 0x00, 0x0d, 0x34,
4777 0xb1, 0x34, 0x76, 0xf4, 0xfa, 0xb6, 0xda, 0xb7,
4778 0xcc, 0xbc, 0xd7, 0x3f, 0xb2, 0xb2, 0x2a, 0x97,
4779 0x9b, 0x7b, 0x56, 0xbd, 0xaa, 0x7a, 0x79, 0x22,
4780 0x2a, 0x5e, 0xbd, 0xaa, 0xcc, 0xac, 0x5c, 0xee,
4781 0xf7, 0xdd, 0x73, 0xce, 0x3d, 0x0b, 0x50, 0x48,
4782 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
4783 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
4784 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52,
4785 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85,
4786 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
4787 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
4788 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
4789 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52,
4790 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85,
4791 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
4792 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
4793 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
4794 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x4c, 0x55,
4795 0xc8, 0x2c, 0x9e, 0xd4, 0xc5, 0x8b, 0x17, 0x95,
4796 0x95, 0x95, 0x95, 0x73, 0x94, 0xd2, 0x35, 0x42,
4797 0xc8, 0xaa, 0x20, 0x08, 0x52, 0xf1, 0xa8, 0xa2,
4798 0xc5, 0x34, 0xcd, 0x89, 0x6e, 0x3f, 0xeb, 0xfb,
4799 0xcc, 0xfa, 0xf9, 0x19, 0x86, 0x61, 0x88, 0xa2,
4800 0xb8, 0x03, 0x60, 0xa7, 0x54, 0x2a, 0xbd, 0x76,
4801 0xf1, 0xe2, 0x45, 0xa3, 0x20, 0x80, 0xa1, 0x3c,
4802 0xfb, 0xec, 0xb3, 0xab, 0x84, 0x90, 0x4f, 0x31,
4803 0xc6, 0x7e, 0x0c, 0xc0, 0x23, 0x00, 0x4a, 0x05,
4804 0xa4, 0xe3, 0x09, 0x63, 0x2c, 0xf4, 0x7f, 0xef,
4805 0x67, 0x51, 0xdf, 0xc7, 0x3d, 0x6e, 0x9a, 0x7d,
4806 0xf2, 0x3a, 0xee, 0x02, 0x5c, 0x53, 0x8d, 0x31,
4807 0xf6, 0x9f, 0x18, 0x63, 0xff, 0x72, 0x69, 0x69,
4808 0xe9, 0xcb, 0x17, 0x2f, 0x5e, 0xa4, 0x07, 0x92,
4809 0x00, 0x2e, 0x5e, 0xbc, 0x28, 0xad, 0xac, 0xac,
4810 0xfc, 0x03, 0x00, 0xcf, 0x00, 0x58, 0x2a, 0xe0,
4811 0x9c, 0x1e, 0xfc, 0x05, 0x20, 0xe7, 0xf6, 0x9a,
4812 0xbe, 0x4f, 0x08, 0xf9, 0xf4, 0x67, 0x3f, 0xfb,
4813 0xd9, 0x3f, 0x9a, 0xf6, 0xf8, 0x11, 0xf7, 0x73,
4814 0xf0, 0xfe, 0xfa, 0xaf, 0xff, 0xfa, 0x4a, 0xa5,
4815 0x52, 0xf9, 0x1a, 0x80, 0x9f, 0x06, 0xa0, 0x14,
4816 0x70, 0x3e, 0x38, 0xb3, 0x7e, 0x1e, 0xe7, 0xb7,
4817 0x40, 0xd7, 0x74, 0x84, 0x31, 0xf6, 0x53, 0x4f,
4818 0x3e, 0xf9, 0xa4, 0xf4, 0xcd, 0x6f, 0x7e, 0xf3,
4819 0x8f, 0x0e, 0x04, 0x01, 0xfc, 0xd6, 0x6f, 0xfd,
4820 0x96, 0x2a, 0x08, 0xc2, 0x97, 0x01, 0x3c, 0x55,
4821 0xc0, 0x39, 0x5f, 0xf0, 0xcf, 0x3b, 0x20, 0x0f,
4822 0xe8, 0x35, 0x11, 0xc6, 0xd8, 0x53, 0x4f, 0x3e,
4823 0xf9, 0xa4, 0xf2, 0xfc, 0xf3, 0xcf, 0xff, 0x97,
4824 0x85, 0x37, 0x01, 0x7e, 0xe3, 0x37, 0x7e, 0xe3,
4825 0xb3, 0x84, 0x90, 0xbf, 0x53, 0xc0, 0x79, 0xba,
4826 0x2a, 0xff, 0xac, 0x01, 0x52, 0x51, 0x94, 0x03,
4827 0x65, 0x26, 0x50, 0x4a, 0x61, 0x18, 0x46, 0xd4,
4828 0x6f, 0xfd, 0x8f, 0x9f, 0xfb, 0xdc, 0xe7, 0xfe,
4829 0xfd, 0xc2, 0x12, 0xc0, 0xe7, 0x3e, 0xf7, 0xb9,
4830 0x13, 0x82, 0x20, 0xbc, 0x01, 0x40, 0xf5, 0x7e,
4831 0xb7, 0xb2, 0x52, 0xc5, 0x87, 0x7e, 0xe0, 0x43,
4832 0xb8, 0xfd, 0xb6, 0xdb, 0xa0, 0x69, 0x25, 0x88,
4833 0x92, 0x08, 0x42, 0xc8, 0x1c, 0x23, 0x36, 0xd9,
4834 0xd3, 0x10, 0xec, 0x6b, 0x65, 0xc9, 0x77, 0x9f,
4835 0x8d, 0x8b, 0xc8, 0x69, 0x6f, 0x36, 0x8b, 0x8f,
4836 0x92, 0x65, 0x3a, 0x77, 0xc6, 0x18, 0x4c, 0x6a,
4837 0xa2, 0xdd, 0x6a, 0xe1, 0xe5, 0x97, 0x5f, 0xc1,
4838 0x1f, 0x3f, 0xf7, 0x27, 0xd0, 0x75, 0x9d, 0xb7,
4839 0xdd, 0x75, 0xc6, 0xd8, 0xe9, 0x67, 0x9f, 0x7d,
4840 0xb6, 0x3b, 0xe9, 0x6b, 0xda, 0x97, 0xe5, 0x35,
4841 0x41, 0x10, 0xfe, 0x06, 0x0f, 0xfc, 0xa7, 0xcf,
4842 0x9c, 0xc6, 0x53, 0x4f, 0x7d, 0x1c, 0x92, 0xb8,
4843 0x08, 0xab, 0x7e, 0x2c, 0x3d, 0xc5, 0xb2, 0x03,
4844 0x0c, 0xfc, 0x05, 0x05, 0x3f, 0x00, 0x10, 0x42,
4845 0x20, 0x89, 0x12, 0x56, 0x56, 0x56, 0xf1, 0x91,
4846 0x8f, 0x7c, 0x04, 0xe7, 0xcf, 0xdf, 0x8f, 0x2f,
4847 0x7e, 0xe1, 0xf7, 0x51, 0xab, 0xd5, 0xbd, 0x9a,
4848 0xc0, 0x06, 0x21, 0xe4, 0xc7, 0x01, 0x7c, 0x71,
4849 0xe2, 0x58, 0xdc, 0x8f, 0x9b, 0x49, 0x08, 0xf9,
4850 0x31, 0xef, 0x67, 0xe5, 0x4a, 0x19, 0x1f, 0xff,
4851 0xf8, 0x47, 0x17, 0x0b, 0xfc, 0x28, 0xc0, 0x7f,
4852 0x60, 0xc0, 0xcf, 0x92, 0x9f, 0xfb, 0xca, 0xca,
4853 0x2a, 0x7e, 0xfa, 0x67, 0x7e, 0x0a, 0xa2, 0x24,
4854 0x82, 0x31, 0xe6, 0x35, 0x03, 0xfe, 0xc6, 0x54,
4855 0x26, 0xe3, 0x7d, 0xb0, 0x61, 0x09, 0x80, 0x87,
4856 0xbc, 0x9f, 0x3f, 0xf0, 0xe0, 0x79, 0xc8, 0x92,
4857 0x52, 0x80, 0xff, 0x20, 0xab, 0xfc, 0x6c, 0xf6,
4858 0x80, 0x1f, 0x1b, 0xfc, 0x29, 0x65, 0x6d, 0x6d,
4859 0x1d, 0x1f, 0x7e, 0xec, 0x51, 0x1e, 0x4e, 0x1e,
4860 0x59, 0x48, 0x02, 0xf8, 0xfc, 0xe7, 0x3f, 0x7f,
4861 0x94, 0x31, 0xa6, 0x79, 0x3f, 0xdf, 0xd8, 0xd8,
4862 0x5c, 0x00, 0xe0, 0xb3, 0xf4, 0xc0, 0x67, 0x85,
4863 0xbd, 0xbf, 0x68, 0x2a, 0x7f, 0x5c, 0xb9, 0xe7,
4864 0xcc, 0x19, 0x97, 0x09, 0x30, 0xd4, 0x04, 0x56,
4865 0x7f, 0xe9, 0x97, 0x7e, 0xe9, 0xf6, 0x85, 0xf3,
4866 0x01, 0x88, 0xa2, 0xb8, 0xc6, 0x0b, 0xa3, 0x2c,
4867 0x97, 0xcb, 0xbe, 0xcf, 0x06, 0x7a, 0x1f, 0xbd,
4868 0x5e, 0x77, 0x0e, 0xa0, 0x9f, 0x75, 0xd6, 0x77,
4869 0x78, 0x89, 0x19, 0x9d, 0x2e, 0x78, 0x58, 0xc6,
4870 0x6b, 0xc8, 0xb8, 0x3f, 0xa5, 0x34, 0xfd, 0x05,
4871 0xb1, 0x8c, 0xcf, 0x82, 0x65, 0xbc, 0xa5, 0x2c,
4872 0xf9, 0x78, 0x58, 0xad, 0xae, 0x41, 0x51, 0xdc,
4873 0xee, 0xaf, 0xd5, 0xd5, 0x35, 0xa7, 0xfd, 0x3f,
4874 0x7a, 0x4f, 0x08, 0x59, 0x07, 0x70, 0x73, 0xa1,
4875 0x08, 0x40, 0xd7, 0xf5, 0xaa, 0x20, 0xf8, 0x15,
4876 0x0f, 0x59, 0x96, 0x7d, 0x9f, 0xf5, 0xfb, 0x3d,
4877 0x74, 0x7a, 0xed, 0xd9, 0x06, 0x3f, 0xcb, 0x0f,
4878 0xfc, 0xfb, 0xb1, 0xff, 0x7e, 0x82, 0xdf, 0xb9,
4879 0x1b, 0x9b, 0x09, 0xe0, 0xb3, 0x89, 0xef, 0xdf,
4880 0xed, 0x6b, 0x3e, 0x02, 0x50, 0x55, 0x85, 0xbb,
4881 0x94, 0xc8, 0x18, 0xab, 0x2e, 0xa2, 0x06, 0xb0,
4882 0xec, 0x05, 0x8d, 0x20, 0x08, 0x5c, 0xe7, 0x9f,
4883 0x49, 0xcd, 0xc5, 0x04, 0xff, 0xbc, 0x02, 0x6f,
4884 0x02, 0xfb, 0x1f, 0x24, 0xf0, 0x03, 0x00, 0xe5,
4885 0x68, 0xbf, 0x92, 0x24, 0x73, 0xc7, 0x93, 0x20,
4886 0x08, 0xcb, 0x0b, 0x47, 0x00, 0x8c, 0xb1, 0x65,
4887 0xff, 0x0d, 0x90, 0x20, 0x08, 0xfe, 0xf5, 0xb2,
4888 0xc4, 0xea, 0x70, 0x31, 0xeb, 0x17, 0xe0, 0x9f,
4889 0x61, 0xf0, 0x83, 0xf1, 0xc7, 0xb4, 0x24, 0x8a,
4890 0xdc, 0x31, 0x65, 0x9a, 0xe6, 0xc4, 0x09, 0x60,
4891 0x3f, 0x96, 0x01, 0x7d, 0x6a, 0x8d, 0xaa, 0xaa,
4892 0xe0, 0x2d, 0x98, 0x33, 0xca, 0x0a, 0xf0, 0x4f,
4893 0x48, 0xe5, 0xcf, 0x02, 0xde, 0xac, 0xfb, 0xa7,
4894 0x3a, 0x06, 0x87, 0x38, 0xa6, 0x06, 0x7e, 0x96,
4895 0xdf, 0xfe, 0xbc, 0x31, 0x4d, 0x04, 0xc1, 0x65,
4896 0x02, 0x3b, 0x1c, 0x81, 0x8b, 0x67, 0x02, 0x00,
4897 0xf0, 0xb1, 0x9a, 0xaa, 0xa9, 0x01, 0x60, 0x0b,
4898 0xd6, 0x00, 0x7e, 0xff, 0x0b, 0x97, 0xf1, 0x8f,
4899 0xff, 0xd1, 0xb7, 0x41, 0x27, 0x40, 0x12, 0xb2,
4900 0x2c, 0xa0, 0x5c, 0xce, 0xff, 0xd6, 0x08, 0x82,
4901 0x80, 0xa5, 0x65, 0x79, 0x22, 0x37, 0x75, 0xa5,
4902 0xaa, 0x64, 0xc1, 0x41, 0xf0, 0xc3, 0x5a, 0x96,
4903 0xb9, 0xda, 0x59, 0x56, 0xf0, 0x97, 0x2b, 0x12,
4904 0x64, 0x49, 0xc8, 0x7a, 0x28, 0x9f, 0x94, 0x34,
4905 0x11, 0x8a, 0x22, 0xe6, 0x77, 0x1f, 0x86, 0x1b,
4906 0x56, 0xab, 0x32, 0x7e, 0xea, 0x67, 0xee, 0xc5,
4907 0x91, 0x23, 0x5a, 0x26, 0xad, 0x21, 0x48, 0xab,
4908 0x2d, 0x97, 0x4b, 0xa8, 0xd7, 0x75, 0xd7, 0x04,
4909 0x43, 0x08, 0x59, 0x4c, 0x13, 0xc0, 0x1b, 0xda,
4910 0x6b, 0x69, 0x00, 0x1c, 0x7b, 0x29, 0x64, 0xb6,
4911 0xfd, 0xd2, 0xbf, 0xbe, 0x32, 0x11, 0xf0, 0x03,
4912 0x80, 0xae, 0x53, 0xd4, 0xeb, 0x83, 0x89, 0x1c,
4913 0x7b, 0x6f, 0xaf, 0x37, 0x91, 0xe3, 0xbe, 0x8f,
4914 0x42, 0x26, 0x2d, 0x5f, 0xff, 0xfa, 0x75, 0xfc,
4915 0xc1, 0x7f, 0xf8, 0x91, 0x4c, 0x26, 0x83, 0x7f,
4916 0xd5, 0x63, 0x48, 0x00, 0x95, 0x8a, 0x2b, 0x22,
4917 0x30, 0xc8, 0x5c, 0x9e, 0x7b, 0x02, 0x10, 0x04,
4918 0xc1, 0xe7, 0x04, 0xd4, 0xd4, 0xe4, 0x1a, 0x80,
4919 0x0d, 0x50, 0x41, 0x30, 0xa0, 0xaa, 0x8d, 0x9c,
4920 0x49, 0x4a, 0x00, 0x63, 0x93, 0xb1, 0x8e, 0x28,
4921 0x9d, 0x4c, 0x02, 0x26, 0x63, 0xd2, 0x9c, 0x9d,
4922 0xaf, 0x08, 0x2b, 0x26, 0x6c, 0x7e, 0xe4, 0xfd,
4923 0xf7, 0x5a, 0xd9, 0xfd, 0x05, 0x34, 0x58, 0x03,
4924 0xe0, 0x98, 0x9a, 0x8b, 0x47, 0x00, 0xc1, 0x3e,
4925 0x80, 0x64, 0xf6, 0x76, 0xab, 0x35, 0x18, 0xaa,
4926 0xeb, 0x1d, 0x3c, 0xfc, 0x70, 0x07, 0xb2, 0x2c,
4927 0x7a, 0xf6, 0xcd, 0xd7, 0xce, 0xd7, 0x75, 0x23,
4928 0x90, 0xbd, 0xf3, 0x92, 0xc1, 0xc0, 0x08, 0x25,
4929 0xbd, 0x3c, 0x7c, 0x13, 0xba, 0x6e, 0xa6, 0xfe,
4930 0x8d, 0xf8, 0x1a, 0x94, 0x99, 0xfb, 0xbd, 0xf2,
4931 0x5e, 0x1f, 0xa5, 0x14, 0xa6, 0x49, 0xa7, 0x42,
4932 0xde, 0xb5, 0xda, 0x9d, 0xe8, 0x76, 0xd7, 0xd0,
4933 0xed, 0x1a, 0x30, 0x0c, 0x0a, 0x29, 0xcc, 0x74,
4934 0x89, 0x78, 0x0c, 0x26, 0xe3, 0xaf, 0x6c, 0x95,
4935 0x4a, 0x25, 0xde, 0xb5, 0x2e, 0x9e, 0x0f, 0x80,
4936 0xa7, 0xd6, 0x28, 0xaa, 0xc2, 0x51, 0xff, 0x69,
4937 0xe8, 0x60, 0x68, 0xb5, 0xf4, 0xa1, 0x06, 0x60,
4938 0xe2, 0x93, 0x9f, 0xfc, 0x30, 0x4a, 0x25, 0x35,
4939 0x10, 0x04, 0x8c, 0x25, 0x03, 0x4d, 0xf2, 0xcf,
4940 0xd3, 0x1f, 0x3f, 0x89, 0x53, 0x71, 0x16, 0xce,
4941 0x37, 0xf8, 0x3a, 0x92, 0x21, 0x62, 0x16, 0x9e,
4942 0x55, 0xd4, 0xbe, 0xdf, 0xff, 0xfe, 0x5b, 0x78,
4943 0xf5, 0xd5, 0xb7, 0x21, 0x08, 0xe3, 0x8c, 0xbd,
4944 0x66, 0x53, 0xc7, 0xda, 0x9a, 0x1a, 0x78, 0xa9,
4945 0xdd, 0x4e, 0x17, 0xdd, 0x5e, 0x1f, 0x04, 0x80,
4946 0x20, 0x8a, 0x50, 0x15, 0x19, 0x92, 0x2c, 0x41,
4947 0x10, 0x05, 0x10, 0x42, 0x02, 0xcd, 0x56, 0x4d,
4948 0xd3, 0x78, 0x29, 0xc2, 0x0b, 0xa9, 0x01, 0x70,
4949 0x08, 0x40, 0x4d, 0x34, 0xa3, 0x75, 0x3a, 0xc6,
4950 0xe8, 0x46, 0x12, 0x62, 0x40, 0x14, 0xed, 0x64,
4951 0x8a, 0xec, 0x83, 0x67, 0xbf, 0x41, 0x5e, 0x00,
4952 0x7d, 0xfa, 0x40, 0x0f, 0xfa, 0xdc, 0x0e, 0x58,
4953 0x13, 0x04, 0x33, 0x92, 0x00, 0x6e, 0xdd, 0xdc,
4954 0xc6, 0x5b, 0x57, 0xde, 0x01, 0x35, 0x29, 0x2a,
4955 0x4b, 0x65, 0x54, 0x2a, 0x15, 0x94, 0x4a, 0x1a,
4956 0x8c, 0x92, 0x06, 0x59, 0x91, 0xa1, 0xaa, 0x0a,
4957 0x24, 0x59, 0x84, 0x75, 0x48, 0x06, 0xef, 0xaa,
4958 0x97, 0xaa, 0x6a, 0xbe, 0xdf, 0x5f, 0x54, 0x02,
4959 0xf0, 0xa9, 0x35, 0x0a, 0x27, 0x0a, 0x30, 0x4c,
4960 0x4d, 0x6d, 0x36, 0xc6, 0x0e, 0x3a, 0x51, 0xa4,
4961 0x90, 0x24, 0x31, 0x90, 0x59, 0x67, 0x75, 0x36,
4962 0x2f, 0x80, 0x3e, 0x3b, 0x40, 0x0f, 0x3a, 0x4f,
4963 0x9b, 0x00, 0x08, 0x31, 0x1c, 0x63, 0xcf, 0x9f,
4964 0xbf, 0xbf, 0x7d, 0x6b, 0x07, 0x2f, 0x7d, 0xef,
4965 0xe5, 0xe1, 0x4c, 0xae, 0x82, 0x51, 0x36, 0x5a,
4966 0xca, 0xa3, 0x8c, 0x5a, 0x7f, 0x29, 0x05, 0x63,
4967 0xe2, 0xd0, 0x7c, 0x61, 0xbe, 0x95, 0x95, 0x52,
4968 0x49, 0xf3, 0x9d, 0x13, 0x21, 0xe4, 0x60, 0x2c,
4969 0x03, 0x7a, 0xab, 0xc2, 0x58, 0xce, 0x92, 0x30,
4970 0xfb, 0x7f, 0xfc, 0x10, 0x64, 0x99, 0xf1, 0x52,
4971 0x29, 0x0b, 0xa0, 0x17, 0x40, 0x4f, 0x78, 0xbd,
4972 0x3c, 0x0d, 0x80, 0x70, 0x34, 0x80, 0x81, 0xef,
4973 0x16, 0xed, 0xed, 0xd5, 0xc6, 0x36, 0x3e, 0xa5,
4974 0xa0, 0x94, 0x82, 0x9a, 0x26, 0x28, 0x63, 0xae,
4975 0x71, 0xcc, 0x28, 0x05, 0x44, 0x01, 0x94, 0x51,
4976 0x08, 0x9e, 0x10, 0x1c, 0x55, 0x55, 0x0f, 0x86,
4977 0x09, 0x40, 0x08, 0xf1, 0xad, 0x02, 0x48, 0xb2,
4978 0x94, 0xc8, 0x07, 0xe0, 0x7c, 0x08, 0xaa, 0x2a,
4979 0x44, 0x10, 0x40, 0x01, 0xf4, 0x02, 0xe8, 0xe9,
4980 0xce, 0x59, 0x10, 0xc4, 0xe1, 0x98, 0xe5, 0x10,
4981 0x80, 0x63, 0xd7, 0x63, 0xc7, 0x36, 0x70, 0xed,
4982 0x83, 0x1b, 0xd0, 0x75, 0x1d, 0xd4, 0xa4, 0xa0,
4983 0x8c, 0x82, 0x8e, 0x66, 0x7d, 0x06, 0x36, 0xfc,
4984 0x6b, 0xcf, 0xfe, 0x16, 0x11, 0xb8, 0x7f, 0xd3,
4985 0x1b, 0x0b, 0xb3, 0xb0, 0xab, 0x00, 0xbc, 0x04,
4986 0x07, 0x99, 0x6b, 0x02, 0xb0, 0x10, 0x02, 0x30,
4987 0x1c, 0xda, 0x03, 0xcb, 0x6c, 0xff, 0x17, 0x40,
4988 0x3f, 0xd8, 0x40, 0x0f, 0xfa, 0x5c, 0x14, 0xfd,
4989 0x1a, 0x40, 0xab, 0x69, 0xf8, 0x6e, 0x65, 0xb9,
4990 0x52, 0xc6, 0x63, 0x4f, 0x3c, 0x82, 0xb7, 0xdf,
4991 0x7a, 0x0f, 0x3b, 0x3b, 0xbb, 0x96, 0x06, 0x40,
4992 0xe9, 0x08, 0xf8, 0x4e, 0x9f, 0x02, 0x21, 0xfc,
4993 0x58, 0x00, 0x75, 0x98, 0x20, 0xe4, 0x39, 0xa7,
4994 0x83, 0x61, 0x02, 0xc8, 0x09, 0x7d, 0x00, 0xf6,
4995 0x12, 0xa0, 0xa5, 0x01, 0x10, 0x2b, 0x97, 0xbe,
4996 0x00, 0x7a, 0x01, 0xf4, 0x9c, 0xcf, 0xd9, 0xf6,
4997 0x01, 0x88, 0xe2, 0x98, 0x00, 0x1a, 0x0d, 0x7e,
4998 0x80, 0x98, 0x56, 0xd2, 0x70, 0xf6, 0xfe, 0x33,
4999 0x00, 0x03, 0x7a, 0xbd, 0x3e, 0x0c, 0xc3, 0x00,
5000 0x08, 0xa0, 0x2a, 0x0a, 0x44, 0x49, 0xb4, 0x8e,
5001 0xc5, 0x82, 0xb5, 0x5b, 0x55, 0x51, 0x78, 0xe7,
5002 0xb3, 0x58, 0x1a, 0xc0, 0xc5, 0x8b, 0x17, 0x05,
5003 0x00, 0x15, 0x1f, 0x01, 0x48, 0x32, 0xc7, 0x04,
5004 0x60, 0xb1, 0x4c, 0x00, 0x49, 0x82, 0xcf, 0x04,
5005 0x28, 0x80, 0x5e, 0x00, 0x3d, 0xae, 0x36, 0x19,
5006 0x26, 0xd6, 0x8c, 0x4d, 0x5c, 0x26, 0x40, 0xab,
5007 0xa9, 0x07, 0x3c, 0x8d, 0x71, 0x0d, 0x48, 0xad,
5008 0xa4, 0xc2, 0x57, 0xf2, 0xd2, 0x79, 0x7f, 0x38,
5009 0x1a, 0x80, 0xac, 0xc8, 0xbc, 0x73, 0x5e, 0xb2,
5010 0x8e, 0x38, 0xb9, 0x92, 0x29, 0x53, 0x4d, 0x06,
5011 0x2a, 0x95, 0x4a, 0x15, 0xde, 0x6f, 0x4a, 0x92,
5012 0x98, 0xe8, 0xa1, 0x39, 0x1f, 0x82, 0xaa, 0x92,
5013 0xb1, 0xad, 0x15, 0xe2, 0x0b, 0xb0, 0x8f, 0x99,
5014 0xcf, 0x0b, 0x01, 0xaf, 0xf4, 0xc7, 0xa4, 0x74,
5015 0xfc, 0x72, 0x1e, 0x73, 0x9c, 0x49, 0xe2, 0x7e,
5016 0x4d, 0xf3, 0xdc, 0x82, 0x8e, 0xef, 0x3e, 0xe7,
5017 0xbc, 0xae, 0x37, 0xfb, 0xf3, 0x8a, 0x4f, 0xfc,
5018 0xde, 0x6b, 0x01, 0x28, 0x1d, 0x7f, 0x46, 0x88,
5019 0x45, 0x00, 0x4e, 0x0d, 0xa0, 0xd9, 0xd2, 0x7d,
5020 0xc0, 0x8f, 0x8c, 0x0e, 0x64, 0x61, 0x93, 0x9b,
5021 0xf5, 0x3c, 0x9d, 0x8e, 0x70, 0xc7, 0x35, 0x08,
5022 0xbf, 0xf0, 0x0b, 0xbf, 0x50, 0x59, 0x18, 0x0d,
5023 0xa0, 0x5c, 0x2e, 0x2f, 0x1b, 0x86, 0xbf, 0x1f,
5024 0xa2, 0xc8, 0xa9, 0x05, 0x10, 0x6e, 0x02, 0xe8,
5025 0x2e, 0x0d, 0xa0, 0x98, 0xd1, 0x17, 0x6f, 0x46,
5026 0xf7, 0x7f, 0x46, 0x62, 0xdf, 0xa7, 0xa0, 0xdf,
5027 0x77, 0xbe, 0x77, 0xa6, 0xa3, 0x8c, 0xb7, 0x67,
5028 0x9e, 0x71, 0x49, 0x00, 0x10, 0x08, 0xc2, 0xf8,
5029 0x73, 0xe7, 0x12, 0x74, 0xda, 0x7a, 0x81, 0x63,
5030 0x1f, 0x00, 0xf3, 0x99, 0xc1, 0xde, 0xeb, 0x30,
5031 0x0c, 0x63, 0x19, 0x40, 0x6b, 0x21, 0x08, 0xa0,
5032 0xdf, 0xef, 0x57, 0x45, 0xd1, 0x3f, 0xdb, 0x8b,
5033 0x3c, 0x0d, 0x80, 0xc6, 0x33, 0x01, 0x14, 0x85,
5034 0xc4, 0x6a, 0xe8, 0x50, 0x00, 0x9d, 0xcd, 0xa8,
5035 0xda, 0x1e, 0x7b, 0xbe, 0xe6, 0x1c, 0x87, 0x24,
5036 0x3c, 0x4e, 0x34, 0x31, 0xb8, 0x4d, 0x00, 0x11,
5037 0x84, 0xd8, 0xab, 0x00, 0x56, 0xf0, 0x4e, 0x73,
5038 0xa8, 0x7d, 0x26, 0x9d, 0xf5, 0xfd, 0x04, 0xe0,
5039 0x5d, 0x09, 0x93, 0xb9, 0x24, 0x26, 0x8a, 0x62,
5040 0x15, 0xc0, 0xf5, 0x85, 0x20, 0x00, 0x49, 0x92,
5041 0x96, 0x79, 0x03, 0x81, 0x57, 0x0d, 0x28, 0x6c,
5042 0x19, 0xb0, 0xe5, 0x22, 0x00, 0x24, 0x20, 0x80,
5043 0xd9, 0x04, 0xfa, 0xe2, 0xcd, 0xe6, 0x24, 0x01,
5044 0xd0, 0xf9, 0x33, 0x7d, 0xf0, 0x3d, 0xc9, 0x9f,
5045 0x4c, 0x79, 0x91, 0x79, 0x63, 0x27, 0xe0, 0x78,
5046 0x25, 0x80, 0x52, 0x09, 0xcd, 0xa6, 0x1e, 0x09,
5047 0x7e, 0x43, 0x37, 0x60, 0x18, 0x26, 0x18, 0x63,
5048 0x10, 0x05, 0x01, 0xa2, 0x24, 0xc2, 0x9e, 0xf8,
5049 0x18, 0x18, 0x28, 0x27, 0x1f, 0x80, 0xa7, 0x01,
5050 0x0c, 0x09, 0x60, 0xa2, 0x8e, 0xc0, 0xa9, 0x12,
5051 0x40, 0x50, 0x35, 0x20, 0x5e, 0xe7, 0x9f, 0xf0,
5052 0x44, 0x20, 0x67, 0x20, 0x10, 0x4f, 0x03, 0xc8,
5053 0xa2, 0x6a, 0x16, 0x6a, 0x7b, 0x3c, 0xa0, 0x87,
5054 0x7d, 0x9e, 0xcc, 0x0e, 0x8f, 0x9e, 0xe9, 0x27,
5055 0xa5, 0x55, 0x84, 0x9d, 0x33, 0x19, 0x39, 0x01,
5056 0x2d, 0x02, 0xa0, 0xa0, 0xd4, 0x6d, 0x02, 0x78,
5057 0xe5, 0xd6, 0xcd, 0x6d, 0x5c, 0xff, 0xe0, 0x3a,
5058 0x74, 0xc3, 0x40, 0xa5, 0x5c, 0x41, 0xb9, 0x52,
5059 0x82, 0x56, 0xd2, 0xa0, 0xaa, 0x2a, 0x54, 0x55,
5060 0x81, 0xac, 0xca, 0x10, 0x45, 0x81, 0xbb, 0x0c,
5061 0x28, 0x89, 0x12, 0xf7, 0x7a, 0x28, 0xa5, 0x8b,
5062 0x43, 0x00, 0xe0, 0xac, 0x6b, 0x06, 0x13, 0x40,
5063 0x58, 0x20, 0x90, 0x3e, 0xb4, 0xe3, 0xcc, 0x61,
5064 0x1e, 0x40, 0x61, 0x9f, 0x67, 0xb9, 0x5e, 0x42,
5065 0x48, 0xcc, 0x19, 0x37, 0x1e, 0x41, 0xc7, 0xdb,
5066 0x9e, 0x64, 0x98, 0xd1, 0x49, 0x4a, 0xa0, 0xf3,
5067 0x67, 0xfa, 0xa0, 0x67, 0xee, 0x0c, 0xd7, 0x15,
5068 0x04, 0x03, 0x80, 0xe2, 0x73, 0x02, 0xda, 0xf2,
5069 0xd6, 0x95, 0x77, 0xf0, 0xf6, 0x9b, 0xef, 0x02,
5070 0x04, 0x58, 0x5a, 0x5a, 0x1a, 0x46, 0x04, 0x8e,
5071 0x83, 0x81, 0x4c, 0x4a, 0x21, 0x98, 0x26, 0x08,
5072 0x71, 0xc4, 0xfa, 0x3b, 0x2e, 0x5b, 0x14, 0xad,
5073 0xa5, 0x42, 0x9b, 0x1c, 0x1c, 0xb1, 0x03, 0xd5,
5074 0x45, 0x22, 0x00, 0x7f, 0x35, 0x20, 0x55, 0xe5,
5075 0x12, 0x00, 0x8d, 0xa1, 0x01, 0x08, 0x82, 0x09,
5076 0x49, 0x12, 0x63, 0x2d, 0x01, 0x1e, 0x34, 0xa0,
5077 0x07, 0x1f, 0x87, 0x7f, 0x8c, 0xa8, 0x6b, 0x89,
5078 0xdb, 0x9e, 0x31, 0xbe, 0xea, 0xce, 0x52, 0xee,
5079 0x1b, 0xad, 0x61, 0x84, 0xdf, 0x12, 0x3f, 0x99,
5080 0x04, 0x6d, 0x2f, 0x8a, 0xa2, 0x4b, 0x03, 0xb0,
5081 0x9c, 0x80, 0x3a, 0xf7, 0x90, 0xef, 0xbf, 0x7b,
5082 0x75, 0xf4, 0xde, 0xb6, 0xf1, 0xad, 0x60, 0x20,
5083 0x36, 0x36, 0x67, 0xd9, 0xd8, 0x07, 0xe0, 0x55,
5084 0x3a, 0x08, 0x21, 0x50, 0x55, 0x15, 0xdd, 0x6e,
5085 0xd7, 0xdb, 0x4c, 0x74, 0xb1, 0x4c, 0x00, 0x2f,
5086 0xd8, 0x79, 0xa9, 0xc0, 0x91, 0x1a, 0x40, 0x63,
5087 0x10, 0x8b, 0x00, 0x16, 0x11, 0xe8, 0x61, 0x8d,
5088 0x52, 0xa3, 0x8f, 0xe3, 0x1f, 0xec, 0xe3, 0xc3,
5089 0x25, 0x03, 0x15, 0xef, 0xf0, 0xd6, 0xb1, 0x58,
5090 0x6a, 0x7f, 0x80, 0xf7, 0x9c, 0xa3, 0x9a, 0xc2,
5091 0x26, 0xb5, 0xe9, 0xf9, 0xdb, 0x87, 0x2f, 0x1d,
5092 0x12, 0x62, 0x85, 0x9a, 0xdb, 0x04, 0xd0, 0x6a,
5093 0xeb, 0x76, 0xcd, 0x7e, 0xd7, 0x6d, 0x3b, 0x74,
5094 0x68, 0x0d, 0x37, 0x6f, 0x6e, 0xb9, 0x48, 0x80,
5095 0x0d, 0x43, 0x82, 0xad, 0xe4, 0xa0, 0x61, 0x38,
5096 0xb0, 0x4d, 0x10, 0x9c, 0x9f, 0x2c, 0x97, 0xcb,
5097 0xe8, 0x74, 0x3a, 0xde, 0xfb, 0xb1, 0xd8, 0x26,
5098 0x80, 0x96, 0xaa, 0x18, 0x88, 0x6d, 0x02, 0x18,
5099 0x10, 0x45, 0x25, 0xa4, 0x34, 0xd8, 0x7c, 0x00,
5100 0x3d, 0x49, 0xf3, 0x63, 0xef, 0x6c, 0x1d, 0x0c,
5101 0xc4, 0xa0, 0xfb, 0xc1, 0xb8, 0x84, 0x10, 0x36,
5102 0xfb, 0x46, 0x9d, 0xdf, 0x38, 0x7d, 0x35, 0x9b,
5103 0x3f, 0x20, 0xee, 0x71, 0xd3, 0xda, 0xf4, 0xf1,
5104 0xcc, 0x0d, 0xaf, 0x16, 0x40, 0x60, 0x9a, 0xb6,
5105 0x09, 0x00, 0x50, 0x93, 0xa1, 0xdd, 0x36, 0xb1,
5106 0xb4, 0x24, 0xb9, 0x0e, 0x71, 0xee, 0xc2, 0x59,
5107 0x94, 0x2a, 0x25, 0x5c, 0xfb, 0xe0, 0xfa, 0x30,
5108 0x19, 0x68, 0x08, 0x7e, 0xfb, 0x45, 0xc7, 0x04,
5109 0x4e, 0x63, 0x54, 0x05, 0x72, 0x10, 0xfe, 0xe2,
5110 0x98, 0x00, 0xbc, 0x72, 0x60, 0xaa, 0xa6, 0xf1,
5111 0x1f, 0x44, 0x8c, 0x65, 0x40, 0x41, 0xa0, 0xc3,
5112 0x20, 0xa2, 0xd9, 0x04, 0xba, 0xd3, 0xde, 0x8b,
5113 0xaf, 0xa2, 0x33, 0xee, 0x80, 0x0d, 0x06, 0x22,
5114 0x4f, 0x95, 0x8e, 0x67, 0xd3, 0x13, 0xc2, 0x12,
5115 0x00, 0x2a, 0xfc, 0x3e, 0x24, 0x69, 0xe1, 0x1e,
5116 0xc7, 0xa6, 0x8f, 0x73, 0xb8, 0x78, 0x1a, 0x06,
5117 0x7f, 0x8d, 0x3f, 0x2e, 0xa9, 0x08, 0x82, 0x08,
5118 0xd3, 0x34, 0x46, 0x1a, 0x00, 0x60, 0xad, 0x42,
5119 0x2d, 0x55, 0x24, 0xef, 0xd8, 0xc6, 0xe9, 0xbb,
5120 0xef, 0xc4, 0xe9, 0xd3, 0x77, 0xa2, 0x56, 0xaf,
5121 0x5b, 0xa1, 0xc0, 0x20, 0x90, 0x25, 0x09, 0xb2,
5122 0x2a, 0x43, 0x91, 0x65, 0xab, 0x28, 0x08, 0x08,
5123 0x27, 0x12, 0xd0, 0x3a, 0x99, 0x52, 0xb9, 0x3c,
5124 0xf5, 0x8c, 0xc0, 0x7d, 0x5f, 0x05, 0x50, 0x79,
5125 0xa9, 0xc0, 0x2c, 0x38, 0xba, 0xca, 0x34, 0x18,
5126 0xba, 0x5d, 0x73, 0xe4, 0x04, 0x14, 0x04, 0x61,
5127 0xea, 0x40, 0x8f, 0xbb, 0x6a, 0xc1, 0x8b, 0x6e,
5128 0xe3, 0x93, 0x04, 0xef, 0x9c, 0xe3, 0xd9, 0xc8,
5129 0x7c, 0x95, 0xde, 0x3f, 0xd3, 0x27, 0xf1, 0x0d,
5130 0x78, 0x72, 0xd2, 0x53, 0x82, 0x3a, 0x89, 0x76,
5131 0xc2, 0x62, 0x9f, 0x5b, 0xd0, 0xbe, 0x4e, 0xe2,
5132 0x4c, 0x03, 0xf4, 0x60, 0x0d, 0x40, 0x84, 0x61,
5133 0x98, 0x10, 0x45, 0xea, 0x32, 0x41, 0x8f, 0x1e,
5134 0x2d, 0xf3, 0xf7, 0x27, 0x0c, 0x2b, 0xab, 0xd5,
5135 0x50, 0x85, 0xd4, 0xf2, 0x09, 0xf8, 0x4f, 0xac,
5136 0xc4, 0x9f, 0x0c, 0x17, 0xca, 0x04, 0xf0, 0xd7,
5137 0x02, 0xd0, 0x94, 0x44, 0xf6, 0xbf, 0x6d, 0x83,
5138 0xb9, 0x7d, 0x00, 0xd9, 0x81, 0x9e, 0x64, 0xa0,
5139 0xf3, 0x66, 0xb0, 0x60, 0xdb, 0x3a, 0x1c, 0x64,
5140 0xde, 0xc2, 0x98, 0xc9, 0xfc, 0x16, 0x24, 0x64,
5141 0xb6, 0xe6, 0xef, 0xeb, 0xd4, 0x24, 0x92, 0x06,
5142 0xf0, 0x24, 0xf3, 0xa2, 0x07, 0xab, 0xe1, 0x71,
5143 0x48, 0x31, 0xc8, 0xa6, 0x8f, 0x26, 0x7b, 0x96,
5144 0x18, 0xe4, 0x61, 0xe7, 0x6b, 0xa5, 0x04, 0x13,
5145 0x77, 0x4d, 0x00, 0xce, 0x4a, 0x40, 0x92, 0xc0,
5146 0xa0, 0x91, 0x0f, 0xc0, 0x13, 0xe5, 0xaf, 0x95,
5147 0x34, 0xde, 0x7d, 0x5f, 0x6c, 0x1f, 0x80, 0x22,
5148 0x2b, 0x89, 0xec, 0xff, 0x46, 0xa3, 0xef, 0x00,
5149 0x99, 0xe1, 0x73, 0x02, 0xa6, 0x55, 0x4d, 0xf9,
5150 0x09, 0x45, 0x24, 0xd5, 0x40, 0x77, 0x0e, 0xf2,
5151 0x68, 0xdb, 0x3a, 0x99, 0x1a, 0x1e, 0xe6, 0xc0,
5152 0x0a, 0xba, 0xd6, 0x20, 0x07, 0x5e, 0x54, 0x54,
5153 0x5d, 0x9a, 0xd9, 0x3a, 0x9c, 0x64, 0x59, 0x2c,
5154 0xd3, 0x84, 0xef, 0xd3, 0x09, 0xbe, 0xd6, 0x7c,
5155 0xe3, 0x01, 0xdc, 0xbf, 0x29, 0x8a, 0x04, 0x84,
5156 0xc0, 0xa3, 0x01, 0xe8, 0xf1, 0xc1, 0x1f, 0xf0,
5157 0x15, 0x65, 0x0c, 0x02, 0x88, 0xeb, 0x6b, 0xbb,
5158 0x30, 0xa8, 0x67, 0x1c, 0x2e, 0xf6, 0x32, 0x20,
5159 0x8f, 0x00, 0x82, 0xa2, 0x00, 0x9d, 0xc5, 0x40,
5160 0x6d, 0x1f, 0x00, 0x2f, 0xb4, 0x38, 0xca, 0xde,
5161 0xf4, 0xce, 0xc4, 0xe1, 0x4e, 0xb3, 0xb0, 0x7d,
5162 0x83, 0x6c, 0xeb, 0x18, 0x23, 0x20, 0x11, 0x70,
5163 0xe2, 0x11, 0x11, 0x0f, 0x38, 0x41, 0x9a, 0x89,
5164 0xff, 0x77, 0x58, 0x84, 0x0f, 0x22, 0x89, 0xa3,
5165 0x35, 0x98, 0x88, 0xa2, 0x8e, 0x99, 0xc6, 0xe4,
5166 0x48, 0x17, 0x0f, 0x10, 0x7d, 0xbe, 0xb6, 0x6d,
5167 0xef, 0xd5, 0x00, 0x9c, 0x63, 0x30, 0x0d, 0xf8,
5168 0x6d, 0x2d, 0x80, 0x78, 0xc6, 0x2e, 0xaf, 0x2a,
5169 0xd0, 0x42, 0x69, 0x00, 0xbc, 0x6a, 0x40, 0xb2,
5170 0x1a, 0xaf, 0x18, 0x88, 0xfd, 0x99, 0x33, 0x0c,
5171 0xd8, 0xbd, 0x0c, 0x98, 0xce, 0x19, 0x64, 0xcd,
5172 0x2c, 0x24, 0xa6, 0x0d, 0x1a, 0xcf, 0xa4, 0x88,
5173 0x9e, 0xfd, 0x59, 0xa2, 0xe8, 0x47, 0xa7, 0xd7,
5174 0x38, 0x79, 0x66, 0x6b, 0xd2, 0x73, 0x0b, 0x72,
5175 0x10, 0x26, 0x5d, 0x5a, 0x4b, 0xed, 0x27, 0x4a,
5176 0xa9, 0x99, 0x64, 0xd1, 0x00, 0x82, 0xf3, 0x0c,
5177 0xec, 0x58, 0x00, 0x51, 0x64, 0x0e, 0x2d, 0x34,
5178 0x3c, 0x1c, 0xb8, 0xd5, 0x6c, 0xa3, 0xdb, 0xee,
5179 0x82, 0x10, 0x02, 0x41, 0x14, 0xa1, 0x28, 0x32,
5180 0x14, 0x55, 0x71, 0xf5, 0xc0, 0xa4, 0x8c, 0x42,
5181 0xf4, 0x94, 0x05, 0xda, 0x8f, 0xaa, 0x40, 0x53,
5182 0x25, 0x00, 0x4a, 0x69, 0xd5, 0x3b, 0xf0, 0x79,
5183 0xb5, 0x00, 0xc2, 0x02, 0x7b, 0x9a, 0x4d, 0xb7,
5184 0x06, 0x60, 0x39, 0x01, 0xc3, 0x1d, 0x5f, 0xd1,
5185 0xbe, 0x00, 0x36, 0xa5, 0x84, 0x96, 0xf8, 0x4e,
5186 0xb3, 0xe4, 0x01, 0x38, 0xd1, 0xe7, 0xc6, 0xd7,
5187 0x4c, 0x92, 0x98, 0x0d, 0xe1, 0xce, 0xd0, 0x64,
5188 0xbe, 0x98, 0x78, 0x7e, 0x93, 0x38, 0x26, 0x47,
5189 0x52, 0xbf, 0x49, 0x92, 0x67, 0x6d, 0x5f, 0xa3,
5190 0xcb, 0x04, 0x68, 0xf2, 0xc3, 0x81, 0xf7, 0x76,
5191 0x6b, 0x78, 0xf5, 0xf2, 0x1b, 0xa0, 0x26, 0xc5,
5192 0xd2, 0x52, 0x05, 0xe5, 0x72, 0x09, 0x5a, 0xb9,
5193 0x04, 0x4a, 0xad, 0x92, 0xdf, 0x4c, 0x61, 0x56,
5194 0x89, 0x70, 0x81, 0x80, 0x52, 0x13, 0x80, 0x3c,
5195 0x26, 0x1f, 0x00, 0x9a, 0xaa, 0xf1, 0xee, 0xd7,
5196 0xe2, 0x98, 0x00, 0xbc, 0x5e, 0x67, 0x8a, 0x22,
5197 0x07, 0x9a, 0x00, 0xbc, 0x81, 0xe3, 0x36, 0x01,
5198 0x4c, 0x97, 0x09, 0x10, 0xec, 0xf8, 0x62, 0xa9,
5199 0x1e, 0xbe, 0x97, 0x4c, 0xf2, 0x0a, 0x3d, 0x8d,
5200 0xb3, 0x1e, 0x1d, 0x3c, 0xd8, 0x79, 0x6a, 0x73,
5201 0xf2, 0x19, 0x31, 0x48, 0xab, 0x89, 0xe3, 0x37,
5202 0x09, 0x5a, 0x16, 0x9c, 0x85, 0x98, 0x84, 0x38,
5203 0xda, 0x49, 0x50, 0x56, 0x60, 0x18, 0x09, 0x38,
5204 0x97, 0x01, 0x9b, 0x9c, 0xa2, 0x20, 0x9d, 0x76,
5205 0x07, 0x2f, 0x7c, 0xe7, 0x12, 0x18, 0xb3, 0x72,
5206 0xfb, 0x29, 0xb5, 0xe2, 0x00, 0xc0, 0xab, 0xc5,
5207 0x00, 0x3b, 0x1a, 0xd0, 0xfd, 0xe3, 0x8a, 0xaa,
5208 0xf0, 0x26, 0xbf, 0xc5, 0x5e, 0x05, 0x90, 0x78,
5209 0x1a, 0x00, 0x0d, 0x8e, 0xce, 0x72, 0xb2, 0xaf,
5210 0x2c, 0xb3, 0xc0, 0x81, 0x13, 0xfc, 0xf0, 0xe3,
5211 0xcc, 0x58, 0x09, 0x8c, 0x39, 0xc4, 0x4d, 0x8c,
5212 0x49, 0x96, 0xc6, 0xca, 0xf7, 0x4d, 0xc4, 0xb3,
5213 0xad, 0xc3, 0x66, 0xb2, 0x24, 0xda, 0x44, 0x72,
5214 0x20, 0x4e, 0x2f, 0x26, 0x21, 0xa9, 0xdf, 0x24,
5215 0x2a, 0x1e, 0x83, 0x52, 0x8a, 0x76, 0xbb, 0x8b,
5216 0x76, 0xbb, 0x87, 0x4e, 0xa7, 0x8b, 0x56, 0xab,
5217 0x87, 0x5e, 0xaf, 0x3f, 0x22, 0x44, 0xa7, 0x06,
5218 0xd0, 0xe2, 0xac, 0x02, 0xb4, 0x5b, 0x9d, 0xd1,
5219 0x6f, 0x98, 0xa6, 0x01, 0x93, 0x3a, 0xca, 0x81,
5220 0xd3, 0x61, 0x34, 0x20, 0xd8, 0xb0, 0x22, 0xb0,
5221 0xe8, 0x5f, 0xe9, 0x62, 0xee, 0x25, 0xf1, 0x85,
5222 0x5b, 0x05, 0x60, 0x8c, 0x91, 0xcf, 0x7f, 0xfe,
5223 0xf3, 0x7e, 0x02, 0x90, 0x93, 0xa6, 0x02, 0x3b,
5224 0x33, 0x01, 0x05, 0x8f, 0xe3, 0x2b, 0xd9, 0x5a,
5225 0x70, 0x12, 0x67, 0x50, 0xf4, 0x71, 0xa2, 0x0a,
5226 0x56, 0x04, 0x01, 0x85, 0xc5, 0x56, 0xc3, 0xb3,
5227 0xda, 0xd6, 0x41, 0xe7, 0x9c, 0x26, 0x2a, 0x71,
5228 0x5a, 0x31, 0x09, 0x69, 0xaf, 0x33, 0x1a, 0xf0,
5229 0x0c, 0xed, 0x76, 0x07, 0x8d, 0x46, 0x1b, 0xcd,
5230 0x66, 0x07, 0xad, 0x56, 0x77, 0xa8, 0x96, 0xf3,
5231 0xae, 0x21, 0xb8, 0x28, 0x88, 0xfd, 0x08, 0x0f,
5232 0x1d, 0x3e, 0x84, 0xd5, 0xb5, 0x15, 0xd4, 0xf6,
5233 0xea, 0x6e, 0xf0, 0x0f, 0x43, 0x80, 0x19, 0x1c,
5234 0xc1, 0x6d, 0xcc, 0xe3, 0xb0, 0x65, 0xf6, 0x78,
5235 0x56, 0x78, 0xe7, 0xbe, 0x18, 0x04, 0xf0, 0xbb,
5236 0xbf, 0xfb, 0xbb, 0x25, 0xf8, 0x8a, 0x21, 0x7b,
5237 0x6b, 0x01, 0x0c, 0x1f, 0x1e, 0x8d, 0x57, 0x0d,
5238 0x48, 0x51, 0x82, 0x80, 0x9e, 0x56, 0x35, 0x8d,
5239 0x9e, 0xf9, 0x82, 0x67, 0xbb, 0xf0, 0x82, 0x15,
5240 0xe1, 0x40, 0x8a, 0x9f, 0xa0, 0x12, 0x0d, 0x70,
5241 0x12, 0x38, 0x5b, 0x07, 0x79, 0xfe, 0x93, 0x03,
5242 0x31, 0xbf, 0x98, 0x84, 0xb4, 0x7e, 0x8e, 0xa0,
5243 0xeb, 0x0d, 0x9b, 0xe1, 0x5b, 0xad, 0x2e, 0x9a,
5244 0xcd, 0x36, 0x9a, 0xcd, 0xf6, 0x10, 0xf0, 0xd1,
5245 0x13, 0x80, 0x7d, 0x6e, 0x84, 0xb0, 0x61, 0x4a,
5246 0xb0, 0x30, 0x8e, 0x03, 0x70, 0xec, 0x2e, 0x08,
5247 0x04, 0x0f, 0x3f, 0xf2, 0x00, 0xae, 0x5f, 0xbb,
5248 0x89, 0x5b, 0x37, 0xb7, 0x30, 0x18, 0xe8, 0x23,
5249 0x4d, 0xd6, 0x2a, 0x13, 0x4e, 0x41, 0x84, 0x61,
5250 0x8a, 0xb1, 0x40, 0xac, 0x49, 0x8e, 0x79, 0xcd,
5251 0x61, 0x85, 0x47, 0xd4, 0xd2, 0x33, 0xcf, 0x3c,
5252 0x53, 0x7a, 0xf6, 0xd9, 0x67, 0xbb, 0x73, 0x4d,
5253 0x00, 0xf5, 0x7a, 0xbd, 0xca, 0xab, 0xfe, 0x2b,
5254 0x8d, 0x6a, 0x7a, 0xc5, 0x2b, 0xea, 0xe9, 0xac,
5255 0x08, 0x2c, 0xcb, 0x48, 0x19, 0x2e, 0x4b, 0x12,
5256 0x44, 0xe9, 0x65, 0xf1, 0x07, 0xa4, 0x4d, 0x8c,
5257 0x49, 0xb6, 0x74, 0xe8, 0xd7, 0x12, 0x98, 0x4f,
5258 0x0d, 0x8f, 0x43, 0x6c, 0xd9, 0xbc, 0xeb, 0x2c,
5259 0x55, 0x04, 0x61, 0x94, 0x53, 0x2f, 0xda, 0x19,
5260 0x1a, 0x4c, 0xf6, 0x8d, 0x46, 0x1b, 0x8d, 0x46,
5261 0x0b, 0x8d, 0x46, 0x1b, 0x9d, 0x4e, 0xcf, 0xa7,
5262 0xe9, 0xc4, 0x35, 0xb1, 0xc6, 0x20, 0x1f, 0x12,
5263 0x40, 0x43, 0xe7, 0x3e, 0x22, 0x42, 0x08, 0x36,
5264 0x8f, 0x1d, 0xc5, 0xe6, 0xb1, 0xa3, 0x00, 0x03,
5265 0x0c, 0xc3, 0x80, 0x41, 0xcd, 0x91, 0xf7, 0xdf,
5266 0x79, 0x4f, 0x28, 0xa7, 0xb1, 0xa9, 0xb7, 0x43,
5267 0x96, 0x7d, 0xbe, 0xcd, 0x66, 0xb3, 0x0a, 0x60,
5268 0xbe, 0x09, 0x40, 0x55, 0xd5, 0x65, 0x5e, 0x12,
5269 0x84, 0xe5, 0xc4, 0x63, 0xb1, 0x4d, 0x80, 0xa6,
5270 0xab, 0x20, 0x68, 0xbc, 0xd9, 0xde, 0xaf, 0x9a,
5271 0xc6, 0x0f, 0xb3, 0x0d, 0xf6, 0x07, 0x24, 0xb5,
5272 0xe9, 0xf9, 0x44, 0x94, 0x1c, 0xe8, 0x4e, 0x87,
5273 0x66, 0x5c, 0xcf, 0x3f, 0x4b, 0x09, 0xc4, 0xc9,
5274 0xae, 0xd3, 0x87, 0x6b, 0x27, 0x5e, 0xcd, 0x2a,
5275 0xda, 0xac, 0xa3, 0x94, 0xa2, 0x5e, 0x6f, 0xa2,
5276 0x56, 0x6b, 0xa2, 0xd1, 0x68, 0x43, 0xd7, 0x0d,
5277 0xd7, 0x3d, 0x4e, 0x42, 0x4a, 0xbc, 0xed, 0x45,
5278 0x91, 0xc2, 0x30, 0x82, 0x2b, 0x03, 0x7b, 0x1f,
5279 0xad, 0x28, 0x8b, 0xbe, 0xa5, 0x3e, 0xfb, 0x92,
5280 0xdc, 0x3e, 0x00, 0x36, 0x34, 0x87, 0xe5, 0x20,
5281 0x73, 0x6d, 0x19, 0xc0, 0xcd, 0xb9, 0x26, 0x00,
5282 0x5e, 0x5e, 0xb3, 0x20, 0x08, 0xa3, 0xda, 0xeb,
5283 0x71, 0x1d, 0x36, 0xad, 0x51, 0x31, 0x10, 0x06,
5284 0x51, 0x14, 0x22, 0xd4, 0x72, 0x12, 0xdb, 0x61,
5285 0x96, 0x2d, 0x15, 0x35, 0x7d, 0x04, 0x61, 0xfa,
5286 0xe5, 0x47, 0x16, 0xfb, 0x7a, 0xe3, 0x39, 0x1c,
5287 0xd3, 0x86, 0x42, 0x27, 0x5b, 0xa7, 0xf7, 0xee,
5288 0x9b, 0x36, 0x62, 0xd2, 0xfe, 0x8d, 0x5e, 0x6f,
5289 0x80, 0x5a, 0xcd, 0x02, 0x7d, 0xb3, 0xd9, 0x89,
5290 0x45, 0xb0, 0x49, 0x89, 0x60, 0x3c, 0x5e, 0x4d,
5291 0xdf, 0x24, 0x14, 0xf0, 0x54, 0x23, 0x95, 0x42,
5292 0x5e, 0x5d, 0x40, 0x59, 0x96, 0x82, 0xc6, 0xfe,
5293 0xc4, 0xfc, 0x00, 0xd3, 0x5c, 0x05, 0xe0, 0x57,
5294 0x03, 0xe2, 0x12, 0x40, 0x74, 0x5b, 0x30, 0x42,
5295 0x4c, 0x5f, 0x39, 0x71, 0xff, 0x60, 0xcf, 0x23,
5296 0x15, 0x35, 0x8f, 0x70, 0x59, 0x92, 0x01, 0xe8,
5297 0x49, 0xb4, 0x04, 0x96, 0x4a, 0xa5, 0x0f, 0x72,
5298 0x88, 0xf2, 0x9c, 0x7a, 0xc1, 0x11, 0x84, 0x4e,
5299 0xb2, 0x8f, 0xf7, 0x1b, 0xb6, 0x26, 0x16, 0xec,
5300 0x37, 0xe1, 0x47, 0x69, 0x0e, 0x06, 0x3a, 0x76,
5301 0x77, 0x1b, 0xd8, 0xdb, 0x6b, 0xa0, 0xd5, 0xea,
5302 0x8e, 0x40, 0x9d, 0x16, 0xd8, 0x61, 0xb6, 0xbf,
5303 0x5b, 0x03, 0x60, 0xae, 0x31, 0x98, 0x08, 0xfc,
5304 0xbe, 0xd2, 0xe0, 0x3c, 0x6d, 0x58, 0x1a, 0x56,
5305 0x67, 0x72, 0xdf, 0x17, 0x4a, 0x69, 0x75, 0xee,
5306 0x09, 0x80, 0x57, 0x0c, 0x44, 0x96, 0x65, 0x08,
5307 0xa9, 0xab, 0x01, 0xd1, 0x61, 0x7d, 0x35, 0x96,
5308 0x79, 0xa0, 0xf3, 0xd5, 0xe6, 0xa8, 0xa7, 0xc8,
5309 0xb8, 0x20, 0xe1, 0x3b, 0x1c, 0x83, 0x3d, 0xf0,
5310 0xd1, 0xe7, 0x4b, 0x03, 0x06, 0x6c, 0x9c, 0x9a,
5311 0x03, 0xd1, 0x4e, 0xc2, 0xe0, 0xe3, 0xd0, 0x48,
5312 0xbf, 0x49, 0x9c, 0xa2, 0x20, 0x61, 0x24, 0x16,
5313 0xcf, 0xff, 0x61, 0xed, 0xab, 0xeb, 0x06, 0x76,
5314 0x76, 0x6a, 0xd8, 0xde, 0xae, 0xa3, 0xd7, 0xeb,
5315 0xc7, 0x9c, 0xcd, 0xe3, 0x01, 0x3b, 0xee, 0xbe,
5316 0xb6, 0x06, 0xd0, 0xef, 0x53, 0x0c, 0x06, 0x26,
5317 0x14, 0x45, 0x4c, 0x05, 0x7e, 0x60, 0xec, 0xe8,
5318 0x66, 0xcc, 0xad, 0x11, 0x4b, 0x92, 0x04, 0x5d,
5319 0xd7, 0xa7, 0xb6, 0x12, 0x30, 0x4d, 0x0d, 0xc0,
5320 0xdf, 0x12, 0x4c, 0x91, 0xf9, 0x59, 0x73, 0xbc,
5321 0x29, 0x64, 0x78, 0x3f, 0xc6, 0xd5, 0x80, 0xe8,
5322 0xc8, 0x81, 0x18, 0xc7, 0xee, 0x8f, 0x9e, 0xad,
5323 0x19, 0xc7, 0x69, 0x16, 0x55, 0x9d, 0x87, 0xc5,
5324 0x04, 0x5f, 0x94, 0x0f, 0x21, 0xe9, 0xd2, 0x17,
5325 0xcb, 0xe0, 0xd0, 0x4b, 0x1e, 0x0b, 0x61, 0xa9,
5326 0xe1, 0xf1, 0xfd, 0x08, 0x71, 0xfc, 0x26, 0xee,
5327 0x64, 0x1e, 0x12, 0x48, 0x42, 0xb5, 0x5a, 0x03,
5328 0x3b, 0x3b, 0x0d, 0xd4, 0xeb, 0x2d, 0x07, 0x71,
5329 0x92, 0xdc, 0x40, 0xcd, 0x37, 0x11, 0xf8, 0xfb,
5330 0x3a, 0xc3, 0x81, 0x5b, 0x2d, 0x1d, 0xeb, 0xeb,
5331 0xa2, 0x0f, 0xfc, 0x94, 0x52, 0x6c, 0x6f, 0xed,
5332 0xa2, 0xd5, 0x6c, 0x81, 0x31, 0x2b, 0xd2, 0x55,
5333 0x55, 0x15, 0x94, 0xca, 0x56, 0x71, 0x50, 0x59,
5334 0x91, 0x46, 0x45, 0x41, 0xbc, 0xe3, 0x82, 0x08,
5335 0x04, 0x8a, 0xa2, 0x60, 0x30, 0x18, 0x78, 0xc7,
5336 0xda, 0x62, 0x9a, 0x00, 0x76, 0x43, 0xc4, 0x48,
5337 0x0d, 0x80, 0x8d, 0x6f, 0x70, 0xab, 0x65, 0x8c,
5338 0xd8, 0xd8, 0xee, 0xde, 0x1a, 0x57, 0x95, 0x0e,
5339 0xaa, 0x1c, 0xe4, 0x5f, 0x07, 0x67, 0x3e, 0x87,
5340 0x5b, 0xfc, 0xc1, 0x8e, 0xd0, 0x7d, 0x27, 0x11,
5341 0xb6, 0x9a, 0xd6, 0x69, 0xe6, 0x2f, 0xe1, 0xe5,
5342 0x3c, 0x5f, 0x12, 0x49, 0x38, 0x41, 0x7e, 0x93,
5343 0x20, 0x40, 0x3a, 0xcf, 0xc9, 0xaf, 0x9d, 0x10,
5344 0x87, 0x99, 0xd7, 0xc6, 0xce, 0x4e, 0x1d, 0xf5,
5345 0x7a, 0x13, 0xa6, 0xc3, 0x5b, 0x1e, 0x3c, 0xdb,
5346 0x67, 0x03, 0x76, 0x5c, 0xf1, 0x66, 0x04, 0xae,
5347 0xaf, 0x6b, 0xae, 0x59, 0xbf, 0xd7, 0xed, 0xe1,
5348 0xc5, 0xef, 0xbd, 0x82, 0x4e, 0xbb, 0x83, 0x72,
5349 0xa5, 0x8c, 0xe5, 0xa5, 0x25, 0x90, 0x12, 0x81,
5350 0x2c, 0x4b, 0x30, 0x4d, 0x0a, 0xd3, 0x34, 0x41,
5351 0x0c, 0x02, 0x49, 0x12, 0x1d, 0x63, 0x9c, 0xb9,
5352 0xce, 0xa4, 0x5c, 0x2e, 0xa3, 0xd5, 0x6a, 0xb9,
5353 0xee, 0xed, 0x24, 0x0b, 0x83, 0x4e, 0x8d, 0x00,
5354 0xb8, 0xd5, 0x80, 0x02, 0xcb, 0x81, 0x51, 0x2e,
5355 0xf8, 0x2d, 0x02, 0x70, 0x6a, 0x00, 0x42, 0x82,
5356 0xd9, 0x3f, 0x8b, 0xd3, 0x8c, 0xc5, 0x8c, 0x5b,
5357 0xe7, 0xef, 0x1b, 0x77, 0xe6, 0x8c, 0x47, 0x0a,
5358 0xe9, 0x9c, 0x66, 0xbc, 0x7d, 0xdd, 0x80, 0xb7,
5359 0x81, 0x18, 0x9f, 0x71, 0xf8, 0x79, 0xfb, 0xe9,
5360 0x42, 0x79, 0x29, 0x35, 0xb1, 0xb3, 0x53, 0xc7,
5361 0xf6, 0x76, 0x0d, 0xdd, 0x6e, 0x3f, 0x80, 0x88,
5362 0xf2, 0x07, 0x75, 0x12, 0x07, 0xa1, 0x8b, 0x00,
5363 0x5a, 0xfe, 0x84, 0xa0, 0x37, 0xaf, 0xbc, 0x83,
5364 0x4e, 0xbb, 0x33, 0xba, 0x58, 0x57, 0xcb, 0x3a,
5365 0xbb, 0x0d, 0x1a, 0x1d, 0x86, 0x07, 0x7b, 0x9c,
5366 0x80, 0xf6, 0xbb, 0x72, 0xb9, 0x34, 0xd5, 0x8c,
5367 0xc0, 0xa9, 0xfa, 0x00, 0x7c, 0x1a, 0x00, 0xaf,
5368 0x18, 0x88, 0x73, 0x66, 0xf1, 0x80, 0x7f, 0x30,
5369 0x30, 0xd1, 0xef, 0x9b, 0x0e, 0x1f, 0x80, 0x98,
5370 0xc8, 0xde, 0x8c, 0xaa, 0x41, 0xef, 0x74, 0xc0,
5371 0xc4, 0x05, 0x6c, 0xd2, 0x80, 0x94, 0xec, 0x8e,
5372 0x3e, 0x44, 0x6a, 0x27, 0x69, 0xb3, 0x11, 0xa3,
5373 0xb4, 0x8a, 0x74, 0x7e, 0x13, 0xaf, 0xe9, 0xe2,
5374 0xde, 0xb0, 0xdb, 0xed, 0xe1, 0xe6, 0xcd, 0x3d,
5375 0xd4, 0x6a, 0x0d, 0x87, 0x86, 0x46, 0xa6, 0x0a,
5376 0xec, 0xf8, 0x93, 0xd8, 0x98, 0x00, 0x1a, 0x9c,
5377 0xea, 0xc0, 0x4e, 0x7f, 0x16, 0xa5, 0x74, 0x14,
5378 0x11, 0x68, 0x07, 0x03, 0x39, 0x9d, 0x7b, 0x06,
5379 0x35, 0xb8, 0x54, 0x5b, 0x2a, 0x97, 0x7d, 0xcf,
5380 0x6a, 0x92, 0x65, 0xc1, 0xf6, 0xd5, 0x07, 0xc0,
5381 0xd3, 0x00, 0x6c, 0x86, 0xe4, 0x39, 0x55, 0x9c,
5382 0x51, 0x80, 0xa2, 0x48, 0x21, 0x8a, 0x4a, 0x40,
5383 0xb8, 0x6c, 0xda, 0x12, 0x5e, 0x93, 0xb7, 0xad,
5384 0xe3, 0xd9, 0xf4, 0x24, 0x86, 0x93, 0x8e, 0xbf,
5385 0x6f, 0xd6, 0xec, 0x41, 0xde, 0x0c, 0x1b, 0x27,
5386 0x37, 0x22, 0x69, 0x09, 0xaf, 0x46, 0xa3, 0x8d,
5387 0x5b, 0xb7, 0xf6, 0x5c, 0x4b, 0x77, 0x59, 0xd7,
5388 0xe9, 0xb3, 0x4a, 0xd4, 0xf1, 0x24, 0xc9, 0x11,
5389 0x0e, 0xcc, 0x59, 0x09, 0xb8, 0xfb, 0x9e, 0xd3,
5390 0xe8, 0xf7, 0x07, 0xd8, 0xdb, 0xad, 0x79, 0xc2,
5391 0x81, 0xed, 0x44, 0x20, 0x3a, 0x2a, 0x77, 0xc7,
5392 0xbd, 0xff, 0x0c, 0x28, 0x4d, 0xb9, 0x2a, 0xd0,
5393 0xbe, 0xfa, 0x00, 0x14, 0x85, 0x5f, 0x0e, 0x2c,
5394 0xc8, 0x9b, 0xda, 0x6a, 0x26, 0x2b, 0x06, 0xe2,
5395 0x60, 0xd0, 0x48, 0xdb, 0x3a, 0x7a, 0x2c, 0xe5,
5396 0x53, 0xc2, 0x2b, 0xc8, 0xe1, 0xe5, 0x5f, 0x61,
5397 0xe0, 0x69, 0x18, 0x69, 0x0a, 0x8c, 0xc6, 0xf7,
5398 0x84, 0x07, 0xdd, 0xa7, 0xbc, 0x4a, 0x78, 0x99,
5399 0x26, 0xc5, 0xce, 0x4e, 0x0d, 0x3b, 0x3b, 0x75,
5400 0xf4, 0xfb, 0xfa, 0x54, 0x80, 0x9d, 0xed, 0x58,
5401 0xc4, 0xa3, 0x01, 0x30, 0xee, 0x58, 0x1c, 0xc7,
5402 0xf2, 0x4b, 0x78, 0xe8, 0x43, 0x17, 0xd0, 0x68,
5403 0x34, 0xb1, 0xbb, 0xbd, 0x07, 0x93, 0xd2, 0x51,
5404 0x6b, 0x30, 0x49, 0x92, 0x20, 0x2b, 0x32, 0x64,
5405 0x75, 0xdc, 0x08, 0x67, 0xa4, 0x89, 0x39, 0xee,
5406 0x6f, 0x49, 0x9b, 0x6e, 0x55, 0xa0, 0x7d, 0xd5,
5407 0x00, 0x7c, 0x04, 0xc0, 0xe2, 0x47, 0x01, 0x5a,
5408 0x04, 0xe0, 0x5d, 0x33, 0x4d, 0x57, 0xc2, 0xcb,
5409 0x09, 0xec, 0xb0, 0xe8, 0xba, 0x64, 0x51, 0x75,
5410 0x71, 0x80, 0x1e, 0x14, 0x41, 0xc8, 0x62, 0x68,
5411 0x09, 0xd1, 0x40, 0x0c, 0x3a, 0xdf, 0xb8, 0x59,
5412 0x90, 0x7c, 0xcf, 0x3f, 0xe1, 0xda, 0xfc, 0x61,
5413 0x79, 0x06, 0xd6, 0x12, 0x5e, 0x1d, 0xdb, 0xdb,
5414 0x75, 0x98, 0xa6, 0x99, 0x0b, 0xc8, 0xf3, 0x04,
5415 0x76, 0x5c, 0xcd, 0x49, 0x92, 0x38, 0x29, 0xc1,
5416 0x9c, 0x5b, 0x54, 0xad, 0x2e, 0xa3, 0x5a, 0x5d,
5417 0xf6, 0x3e, 0x3d, 0x8e, 0xdf, 0x83, 0x42, 0xf4,
5418 0x38, 0xb2, 0xb5, 0x92, 0xc6, 0xd3, 0x60, 0xe7,
5419 0x5f, 0x03, 0x70, 0x56, 0x03, 0xb2, 0xff, 0xba,
5420 0xca, 0x81, 0x0d, 0x35, 0xff, 0xb0, 0x72, 0xe0,
5421 0xce, 0x3c, 0x00, 0xcb, 0x04, 0x10, 0x23, 0x6d,
5422 0xd5, 0xe0, 0x25, 0xa6, 0xe4, 0x9e, 0xff, 0x6c,
5423 0xcb, 0x8d, 0xbc, 0xed, 0x69, 0x80, 0x96, 0x90,
5424 0x6c, 0x60, 0x5a, 0x40, 0x25, 0x09, 0xce, 0x2d,
5425 0xc8, 0x6f, 0x42, 0x22, 0xfc, 0x1c, 0xfe, 0xf8,
5426 0x80, 0x30, 0x20, 0x0e, 0x06, 0x3a, 0x6e, 0xdc,
5427 0xd8, 0x45, 0xad, 0xd6, 0x4c, 0x60, 0x72, 0xe4,
5428 0x07, 0xec, 0xbc, 0x97, 0x07, 0x9d, 0x04, 0xd0,
5429 0x6a, 0xe9, 0xb1, 0xfd, 0xa5, 0x41, 0x1a, 0x2d,
5430 0xa3, 0x14, 0x10, 0xdc, 0x7e, 0x2c, 0x6f, 0x99,
5431 0xfc, 0xa1, 0x96, 0x30, 0xff, 0x04, 0x60, 0x57,
5432 0x03, 0x72, 0x0e, 0x04, 0x59, 0x91, 0x1d, 0xf6,
5433 0xfe, 0x70, 0xbb, 0x18, 0x51, 0x80, 0xb6, 0x06,
5434 0x20, 0x08, 0xa2, 0x63, 0x90, 0x92, 0x84, 0x83,
5435 0x3d, 0xca, 0x7e, 0xcd, 0x12, 0x45, 0x98, 0xbc,
5436 0x77, 0x5e, 0x16, 0x5f, 0x42, 0xf2, 0x75, 0xfa,
5437 0x68, 0x52, 0x8c, 0x7f, 0xad, 0xfe, 0x7d, 0x7a,
5438 0xbd, 0x01, 0x6e, 0xde, 0xdc, 0x41, 0xad, 0xd6,
5439 0x1a, 0x81, 0x7a, 0xd2, 0x51, 0x7a, 0x59, 0x80,
5440 0x1d, 0xd7, 0xe1, 0xe8, 0x0c, 0x5a, 0x6d, 0xc6,
5441 0xc8, 0x07, 0x88, 0x0a, 0x09, 0xe6, 0x95, 0x07,
5442 0xd7, 0x14, 0x65, 0x71, 0x4d, 0x00, 0x6f, 0x3a,
5443 0xa7, 0x2c, 0xcb, 0xfe, 0xa4, 0xda, 0xd0, 0x28,
5444 0x40, 0xc3, 0xa3, 0x01, 0x90, 0x18, 0x83, 0x3d,
5445 0xc8, 0x96, 0x4f, 0x56, 0x28, 0x23, 0x4b, 0xbb,
5446 0xea, 0xb4, 0x6b, 0xfc, 0xde, 0x53, 0x0b, 0x33,
5447 0x73, 0xe2, 0xe7, 0xe7, 0x47, 0xdf, 0xef, 0xb4,
5448 0xe4, 0x65, 0x01, 0x7f, 0x17, 0xf5, 0x7a, 0x2b,
5449 0xc6, 0xbd, 0x9d, 0x2c, 0xb0, 0x27, 0xb1, 0x8a,
5450 0xe0, 0x72, 0x02, 0x36, 0x52, 0xe6, 0x03, 0x78,
5451 0xcb, 0x83, 0x7b, 0x44, 0x2b, 0x95, 0xa6, 0x5a,
5452 0x15, 0x68, 0x5f, 0x7c, 0x00, 0xf6, 0x05, 0xf2,
5453 0xd2, 0x83, 0x59, 0xcc, 0x62, 0x20, 0x7e, 0x0d,
5454 0x20, 0x59, 0x32, 0x4f, 0xd0, 0x60, 0x8f, 0xa3,
5455 0xd2, 0x27, 0xef, 0x8c, 0xcb, 0x1f, 0x09, 0xee,
5456 0xe3, 0x12, 0x0e, 0xf3, 0xf3, 0x7e, 0x93, 0x05,
5457 0xf8, 0x26, 0xa2, 0x9c, 0x81, 0xf9, 0x66, 0xfb,
5458 0x39, 0xa5, 0xd3, 0xe9, 0xe1, 0xe6, 0xcd, 0x5d,
5459 0x34, 0x9b, 0x5d, 0x1f, 0xd0, 0xf6, 0x6b, 0xb6,
5460 0x9e, 0x84, 0x2f, 0x41, 0x10, 0xd8, 0xb0, 0xb4,
5461 0x39, 0xe1, 0x56, 0x05, 0xf2, 0x82, 0xdf, 0x30,
5462 0x4c, 0x18, 0x86, 0x01, 0x46, 0x99, 0xe5, 0x08,
5463 0x1c, 0x16, 0x18, 0x1d, 0x39, 0x01, 0x3d, 0x04,
5464 0xc0, 0xe0, 0x2e, 0x91, 0xb7, 0x70, 0xab, 0x00,
5465 0xde, 0x01, 0x37, 0xae, 0x05, 0xe0, 0x60, 0x45,
5466 0x16, 0xdd, 0x12, 0xcc, 0xd2, 0x00, 0xc0, 0xcd,
5467 0x24, 0xf4, 0x0f, 0xfa, 0xe8, 0x42, 0x19, 0xe1,
5468 0x80, 0xf3, 0xaa, 0xcc, 0xc9, 0xba, 0x0a, 0x05,
5469 0xa9, 0xbf, 0xfe, 0x25, 0xc7, 0x74, 0x9a, 0x49,
5470 0x90, 0xad, 0xce, 0xb1, 0x23, 0x53, 0xab, 0xf4,
5471 0x41, 0x4d, 0x39, 0x06, 0x03, 0x1d, 0xb7, 0x6e,
5472 0xed, 0xa2, 0x5e, 0x6f, 0x87, 0x94, 0x57, 0x9f,
5473 0x3e, 0xb0, 0x27, 0xe9, 0x20, 0x14, 0x45, 0x06,
5474 0xc3, 0x20, 0x81, 0x26, 0x00, 0x65, 0x14, 0xd7,
5475 0x3e, 0xb8, 0x81, 0xed, 0xad, 0x1d, 0x00, 0x56,
5476 0x64, 0x5f, 0xa9, 0x5c, 0x82, 0xa6, 0xa9, 0x50,
5477 0x15, 0x05, 0x8a, 0xaa, 0x40, 0x96, 0x25, 0x08,
5478 0xa2, 0x60, 0xf5, 0x0e, 0xf4, 0x0c, 0x01, 0x5e,
5479 0x51, 0x10, 0x4c, 0xb0, 0x30, 0xe8, 0xbe, 0x05,
5480 0x02, 0x31, 0xc6, 0xb8, 0x04, 0x10, 0xb7, 0x1a,
5481 0x90, 0x15, 0x0a, 0x2c, 0xf8, 0xec, 0x6d, 0xe7,
5482 0xc3, 0x72, 0xdf, 0x48, 0xc6, 0x01, 0x4c, 0x7e,
5483 0x85, 0x3d, 0x82, 0x9b, 0x72, 0xe4, 0xaf, 0x99,
5484 0xe4, 0xd3, 0xba, 0x8b, 0x84, 0x98, 0x13, 0x41,
5485 0x1e, 0x7d, 0x7b, 0x66, 0xa3, 0x23, 0xe7, 0x5e,
5486 0x72, 0x95, 0x7e, 0xbf, 0x82, 0x79, 0xf2, 0x31,
5487 0x39, 0xac, 0x9a, 0x00, 0x82, 0xaf, 0x2c, 0x98,
5488 0x0d, 0xe5, 0x57, 0x2e, 0xbd, 0x8a, 0xed, 0x5b,
5489 0x3b, 0x10, 0x45, 0x01, 0x95, 0xa5, 0x25, 0x2b,
5490 0x02, 0xd0, 0xb4, 0xdb, 0x84, 0x5b, 0x71, 0x01,
5491 0x94, 0x5a, 0xd5, 0x81, 0x78, 0x5d, 0x82, 0xf9,
5492 0x4b, 0xe3, 0x93, 0x0b, 0x04, 0x12, 0xa6, 0x01,
5493 0xfe, 0x8b, 0x17, 0x2f, 0x6a, 0xb0, 0x6a, 0x20,
5494 0xbb, 0x06, 0x58, 0x22, 0x0d, 0x80, 0xb9, 0x7b,
5495 0x02, 0x48, 0x92, 0x55, 0x0f, 0x60, 0x9c, 0x17,
5496 0x6f, 0xbd, 0x6c, 0x50, 0x7b, 0x5f, 0x94, 0x8e,
5497 0x5f, 0xfc, 0x5e, 0xf5, 0xfc, 0xee, 0x3e, 0xde,
5498 0x97, 0x35, 0xa3, 0xc3, 0xf7, 0x4a, 0xe2, 0x34,
5499 0x0b, 0x7f, 0xf1, 0xcf, 0x21, 0xfe, 0xf1, 0xfc,
5500 0xe7, 0x3c, 0x06, 0x3b, 0x71, 0x01, 0x3f, 0x68,
5501 0xdf, 0x20, 0x31, 0x0c, 0x86, 0x1b, 0x37, 0x76,
5502 0xf1, 0xc6, 0x1b, 0xef, 0xa1, 0x5e, 0x6f, 0x7a,
5503 0xee, 0x01, 0xf1, 0xbd, 0x82, 0x7e, 0x37, 0x48,
5504 0x4b, 0x8a, 0x7a, 0xf1, 0x81, 0xe9, 0x7e, 0x05,
5505 0xef, 0x0f, 0xdf, 0xf9, 0xf2, 0xcf, 0x8f, 0x77,
5506 0xbc, 0xf1, 0x7e, 0x76, 0x38, 0x70, 0x93, 0xd3,
5507 0x1c, 0xa4, 0xdf, 0xeb, 0x63, 0xfb, 0x96, 0x35,
5508 0xf3, 0x9b, 0x26, 0x05, 0x1b, 0x82, 0xdd, 0x79,
5509 0x8f, 0x5d, 0x74, 0xea, 0x2b, 0x0a, 0xc2, 0x20,
5510 0x7b, 0x0a, 0x83, 0x0e, 0xf7, 0x51, 0x7e, 0xf1,
5511 0x17, 0x7f, 0x51, 0x9d, 0x5b, 0x0d, 0x60, 0x7d,
5512 0x7d, 0x7d, 0x59, 0xd7, 0x75, 0xdf, 0xec, 0xc2,
5513 0xd5, 0x00, 0x18, 0x3f, 0x13, 0x90, 0x81, 0xb9,
5514 0xd4, 0x2e, 0x6b, 0x57, 0x77, 0xa0, 0x4a, 0xdc,
5515 0x6e, 0xbc, 0x5e, 0x2d, 0x80, 0x37, 0xd3, 0x27,
5516 0x9d, 0x6c, 0xe2, 0xf4, 0x21, 0x9c, 0x7c, 0xeb,
5517 0xae, 0x24, 0x69, 0xb7, 0x61, 0x9a, 0x0e, 0xf3,
5518 0xa8, 0xfe, 0xc0, 0xde, 0x5e, 0x13, 0x5b, 0x5b,
5519 0x7b, 0x30, 0x0c, 0x33, 0xd6, 0x4c, 0x3e, 0x0b,
5520 0xb3, 0xf5, 0x24, 0x4c, 0x8e, 0x51, 0x4d, 0x80,
5521 0xa1, 0x13, 0xd0, 0xa9, 0xc4, 0x2b, 0xaa, 0x82,
5522 0xca, 0x52, 0x19, 0xed, 0x56, 0x67, 0xf4, 0xfc,
5523 0xec, 0x10, 0x60, 0x4a, 0xa9, 0x8f, 0x74, 0x29,
5524 0x27, 0x1f, 0x40, 0x09, 0xa8, 0x0a, 0xb4, 0xbd,
5525 0xbd, 0xbd, 0x0c, 0xa0, 0x3f, 0x97, 0x04, 0x60,
5526 0x9a, 0xe6, 0x32, 0xaf, 0x2a, 0x2d, 0x2f, 0x92,
5527 0xcf, 0xb5, 0x9d, 0x27, 0x24, 0xd8, 0x36, 0x01,
5528 0xc6, 0xd5, 0x80, 0x82, 0x7b, 0xf2, 0xc5, 0x05,
5529 0x62, 0x76, 0xa0, 0xc7, 0x3f, 0x40, 0x50, 0x11,
5530 0xca, 0x78, 0x55, 0x79, 0xd3, 0x35, 0xc8, 0x48,
5531 0x92, 0x9f, 0xcf, 0xf3, 0x79, 0xb4, 0x5a, 0x1d,
5532 0xdc, 0xbc, 0xb9, 0x3b, 0x8a, 0xdc, 0x9b, 0xe5,
5533 0x75, 0xfa, 0x69, 0x98, 0x1c, 0xf6, 0x90, 0xed,
5534 0x74, 0xac, 0xd2, 0xdf, 0x76, 0xa7, 0x1f, 0x7b,
5535 0xfb, 0x87, 0x3e, 0x74, 0x01, 0x6f, 0xbe, 0xf1,
5536 0x0e, 0xb6, 0x6e, 0x6d, 0x8f, 0xd4, 0x7d, 0xab,
5537 0x07, 0xc0, 0x90, 0x10, 0x28, 0x83, 0x40, 0xc8,
5538 0xa8, 0xab, 0xb5, 0xf7, 0xc9, 0xc8, 0xb2, 0xcc,
5539 0xad, 0xe0, 0x2c, 0x49, 0xd2, 0x32, 0x80, 0xed,
5540 0xb9, 0x24, 0x00, 0x5d, 0xd7, 0xab, 0xb6, 0xc3,
5541 0xce, 0xa9, 0xfe, 0xf3, 0x9c, 0x78, 0xa3, 0x38,
5542 0x00, 0x16, 0x9c, 0x0b, 0x20, 0x8a, 0xfe, 0x72,
5543 0x60, 0xe3, 0x87, 0xc5, 0x62, 0x0c, 0x8e, 0x2c,
5544 0x1d, 0x64, 0xf9, 0xc0, 0x0c, 0x76, 0x1a, 0x92,
5545 0x10, 0x20, 0x06, 0xd7, 0x22, 0x08, 0x3b, 0x87,
5546 0x24, 0x0d, 0x32, 0xc2, 0xb2, 0x0c, 0xc3, 0xf2,
5547 0x1b, 0x2c, 0x07, 0xdf, 0x38, 0x56, 0x3f, 0x49,
5548 0x2a, 0xee, 0x22, 0x79, 0xfe, 0xbd, 0xbf, 0x69,
5549 0x9b, 0x00, 0x94, 0x32, 0x74, 0x3a, 0x06, 0x96,
5550 0x96, 0x64, 0xd7, 0x6d, 0x95, 0x65, 0x19, 0x67,
5551 0xcf, 0x9d, 0xc1, 0x3d, 0x67, 0x4f, 0xa3, 0x5e,
5552 0x6f, 0x80, 0x9a, 0x14, 0x84, 0x10, 0xc8, 0x8a,
5553 0x02, 0x55, 0x51, 0x20, 0xc9, 0xa2, 0x05, 0x7e,
5554 0x30, 0x98, 0xde, 0x32, 0xe4, 0xcc, 0xea, 0x93,
5555 0xc1, 0xab, 0x0a, 0x34, 0xa9, 0x58, 0x80, 0x69,
5556 0x39, 0x01, 0x97, 0xbd, 0x20, 0x91, 0x65, 0x99,
5557 0xef, 0x1d, 0xb7, 0xd3, 0x25, 0x39, 0x20, 0xb5,
5558 0x57, 0x01, 0xbc, 0x1d, 0x81, 0xdc, 0xc7, 0xce,
5559 0x63, 0x89, 0x2e, 0x78, 0xd6, 0x0c, 0xde, 0x9e,
5560 0x84, 0xee, 0x1b, 0x3f, 0xa6, 0x3e, 0xce, 0x6c,
5561 0xcd, 0x12, 0x55, 0xd3, 0x89, 0x73, 0x0f, 0x1c,
5562 0xe5, 0xa7, 0xb0, 0xb5, 0x55, 0x43, 0xad, 0xd6,
5563 0xf6, 0x39, 0x3c, 0x67, 0x7d, 0x9d, 0x7e, 0x1a,
5564 0x26, 0x87, 0x37, 0x16, 0x60, 0x44, 0x00, 0x9e,
5565 0x5b, 0x2f, 0x08, 0x02, 0xd6, 0xd6, 0x56, 0x03,
5566 0x46, 0x16, 0xf3, 0x9b, 0xbb, 0xc3, 0xfb, 0x2f,
5567 0x8a, 0x22, 0x44, 0x51, 0xb4, 0x96, 0x0f, 0xdd,
5568 0x35, 0x01, 0x96, 0xe7, 0x96, 0x00, 0x44, 0x51,
5569 0xf4, 0x55, 0x04, 0xb6, 0x9b, 0x2e, 0xfa, 0x09,
5570 0x20, 0x24, 0x19, 0xc8, 0x53, 0x0e, 0xcc, 0xbe,
5571 0xeb, 0xee, 0xea, 0x32, 0x59, 0x67, 0xf4, 0xa0,
5572 0x7d, 0xf3, 0x88, 0xa9, 0x0f, 0xaa, 0x7d, 0x47,
5573 0x02, 0x54, 0x7a, 0x86, 0x2c, 0x11, 0x89, 0xfe,
5574 0xfc, 0x7c, 0xc2, 0x59, 0x95, 0x18, 0xbf, 0xaf,
5575 0xd7, 0x5b, 0xd8, 0xde, 0xae, 0x8f, 0xec, 0x7c,
5576 0x5e, 0x9c, 0xc2, 0x3c, 0x03, 0x3b, 0x0f, 0x02,
5577 0x73, 0x56, 0x05, 0x6a, 0x36, 0x07, 0xd8, 0x40,
5578 0x39, 0xd1, 0x23, 0x72, 0x8e, 0x6d, 0xcb, 0x24,
5579 0x64, 0x9e, 0xfe, 0x02, 0x02, 0x64, 0x59, 0x86,
5580 0xed, 0x33, 0x1b, 0xf9, 0x12, 0x38, 0x45, 0x75,
5581 0xe7, 0x86, 0x00, 0xbc, 0x45, 0x0d, 0xed, 0xfe,
5582 0x69, 0xbc, 0x87, 0x6b, 0xc6, 0x08, 0x05, 0x16,
5583 0x45, 0xe6, 0x32, 0x1f, 0xb2, 0xb4, 0x8a, 0x8e,
5584 0xd3, 0x27, 0x2e, 0xaf, 0xda, 0x77, 0x61, 0x21,
5585 0xb8, 0xf9, 0xe4, 0xe7, 0x47, 0xc5, 0x2b, 0xf0,
5586 0x56, 0x3b, 0x08, 0xba, 0xdd, 0x3e, 0x6e, 0xdd,
5587 0xda, 0x43, 0xaf, 0x37, 0x48, 0x38, 0x23, 0xce,
5588 0xde, 0x3a, 0xfd, 0xa4, 0x4d, 0x0e, 0x37, 0x01,
5589 0xe8, 0xa9, 0xc1, 0x3f, 0x32, 0x77, 0xbd, 0x9a,
5590 0x83, 0x28, 0x8c, 0x02, 0xe4, 0xa6, 0xd1, 0x24,
5591 0x74, 0xaa, 0x26, 0x80, 0xf3, 0xa2, 0x78, 0xeb,
5592 0x9d, 0x3e, 0xb5, 0xc8, 0xab, 0x01, 0x34, 0x9d,
5593 0x3e, 0x00, 0x31, 0x71, 0xb3, 0xc8, 0x60, 0x47,
5594 0x5e, 0x3a, 0xdb, 0x3a, 0xaa, 0x2a, 0x6f, 0x92,
5595 0xc1, 0x99, 0x2c, 0xba, 0x30, 0xaa, 0x8a, 0x0f,
5596 0x89, 0x55, 0xc2, 0xcb, 0x56, 0xf7, 0x1b, 0x8d,
5597 0xb6, 0xe3, 0x5c, 0xe7, 0x7b, 0x9d, 0x7e, 0xd2,
5598 0x9a, 0x89, 0xdb, 0x04, 0x30, 0x52, 0x01, 0x7f,
5599 0xe4, 0xe3, 0x0a, 0x88, 0x79, 0x29, 0x95, 0x4a,
5600 0xa8, 0xd5, 0x6a, 0xde, 0x7b, 0xbb, 0x3c, 0xd7,
5601 0x04, 0xe0, 0x1d, 0x7c, 0x5a, 0x49, 0x4b, 0x04,
5602 0x84, 0x6e, 0xd7, 0x84, 0x69, 0xda, 0x76, 0x92,
5603 0x39, 0xf2, 0xbe, 0xfa, 0x67, 0x55, 0x7e, 0x87,
5604 0xa1, 0x6c, 0x3d, 0xef, 0x58, 0xea, 0x81, 0x1e,
5605 0x5d, 0x39, 0x88, 0x25, 0x20, 0x87, 0xb8, 0x0d,
5606 0x2f, 0x83, 0x2a, 0x09, 0x8f, 0x57, 0x1d, 0xea,
5607 0xf5, 0x16, 0x76, 0x76, 0x1a, 0xc3, 0xa5, 0xa8,
5608 0x49, 0x2d, 0xe9, 0x2d, 0x9e, 0x83, 0xd0, 0x49,
5609 0x00, 0x61, 0xe1, 0xc0, 0x51, 0xe0, 0xb7, 0x09,
5610 0x98, 0x37, 0x02, 0x4a, 0xe5, 0x92, 0xef, 0x39,
5611 0x4f, 0x2a, 0x18, 0x68, 0x6a, 0x26, 0x80, 0xdb,
5612 0x4e, 0x67, 0xdc, 0x82, 0xa0, 0xfc, 0xe2, 0x1d,
5613 0xf6, 0xec, 0xef, 0xcc, 0x04, 0x74, 0x86, 0x01,
5614 0xf3, 0x9b, 0x4f, 0x06, 0x45, 0xd2, 0x25, 0x2d,
5615 0x93, 0x95, 0xb6, 0x72, 0x50, 0xf0, 0xe0, 0x9c,
5616 0x4c, 0x9d, 0x3f, 0xaf, 0x5a, 0x1f, 0x74, 0x8d,
5617 0xb6, 0x77, 0x3f, 0xdb, 0xb2, 0xde, 0x7c, 0x01,
5618 0x3b, 0x4f, 0xcd, 0xc4, 0x67, 0x02, 0xa4, 0x04,
5619 0xff, 0x68, 0x1c, 0x71, 0xf6, 0x2b, 0x97, 0x4a,
5620 0xbc, 0xf1, 0xb7, 0x60, 0x26, 0x80, 0xaa, 0x24,
5621 0x53, 0xff, 0x7d, 0xe5, 0xc0, 0xc4, 0x00, 0x80,
5622 0xf2, 0xd4, 0x70, 0x12, 0x13, 0x80, 0xf9, 0x55,
5623 0x0e, 0x0a, 0xcb, 0xf6, 0x0b, 0x26, 0x89, 0x3c,
5624 0x6a, 0x11, 0x10, 0xf0, 0xc3, 0x9e, 0x19, 0xb6,
5625 0xb6, 0x6a, 0x68, 0x36, 0xdb, 0x53, 0x75, 0x9a,
5626 0xed, 0xe7, 0x6c, 0x3d, 0x09, 0x12, 0x73, 0xc6,
5627 0xae, 0x85, 0xb5, 0x08, 0xf3, 0x41, 0x3b, 0x48,
5628 0xb3, 0x74, 0xf7, 0x47, 0x1b, 0x99, 0x00, 0xd3,
5629 0x2a, 0x0a, 0xb2, 0x6f, 0xcb, 0x80, 0x3c, 0x1f,
5630 0x40, 0x9c, 0x86, 0x20, 0x63, 0x02, 0x90, 0x7d,
5631 0x55, 0x6d, 0xe3, 0x98, 0x02, 0x93, 0xae, 0x1c,
5632 0x14, 0x4e, 0x34, 0x84, 0x73, 0x6e, 0x3c, 0x40,
5633 0xc7, 0x5d, 0xce, 0xe3, 0x03, 0xdd, 0x1b, 0x41,
5634 0xd8, 0x6e, 0x77, 0xb1, 0xbd, 0x5d, 0x1b, 0x96,
5635 0xd8, 0x26, 0x0b, 0xbd, 0x4e, 0x3f, 0x69, 0xcd,
5636 0xc4, 0x45, 0x00, 0x1c, 0x13, 0x20, 0x6a, 0xd6,
5637 0xe7, 0x68, 0xc7, 0xbe, 0x78, 0x98, 0x12, 0xc7,
5638 0x3c, 0x9e, 0x6b, 0x13, 0x00, 0x9c, 0x5a, 0x00,
5639 0x49, 0x35, 0x00, 0x77, 0x26, 0x20, 0x73, 0xf8,
5640 0x00, 0x82, 0xc3, 0x65, 0xe3, 0x47, 0xd5, 0xe5,
5641 0x59, 0x39, 0x88, 0x84, 0x68, 0x14, 0x51, 0x19,
5642 0x7f, 0xd1, 0xe7, 0xe0, 0x5e, 0xd2, 0x0b, 0x1f,
5643 0xec, 0x86, 0x61, 0x95, 0xda, 0xee, 0x74, 0x7a,
5644 0x9e, 0xef, 0x17, 0x77, 0x9d, 0x7e, 0xd2, 0x24,
5645 0x16, 0x66, 0x02, 0x24, 0x05, 0xbf, 0x35, 0xe9,
5646 0x51, 0x08, 0xc3, 0x94, 0x1c, 0x7b, 0x53, 0x4d,
5647 0xf3, 0x9b, 0x00, 0xf3, 0xae, 0x01, 0x54, 0xbd,
5648 0x03, 0x59, 0xe5, 0x65, 0x3d, 0xd1, 0xb0, 0x44,
5649 0x20, 0xa7, 0x06, 0x80, 0x80, 0xa6, 0x20, 0xee,
5650 0xec, 0x3f, 0x1e, 0xa8, 0xf3, 0xaa, 0x1c, 0x14,
5651 0x06, 0xf4, 0xe8, 0xc1, 0x1e, 0xb4, 0xee, 0xef,
5652 0x7f, 0xcf, 0xaf, 0xca, 0xcb, 0xf7, 0x7d, 0x8c,
5653 0xf7, 0x21, 0xa8, 0xd7, 0xdb, 0xd8, 0xdb, 0xb3,
5654 0x4b, 0x6d, 0x93, 0x05, 0x03, 0xf6, 0xfe, 0x69,
5655 0x26, 0x4e, 0x0d, 0xc0, 0x39, 0x29, 0xa5, 0x01,
5656 0xff, 0x68, 0xcc, 0x8b, 0xee, 0x4d, 0x15, 0x4d,
5657 0xe1, 0x8d, 0xab, 0xf9, 0xf6, 0x01, 0x78, 0x41,
5658 0xe2, 0xaa, 0x07, 0xe8, 0x60, 0xc3, 0xa0, 0x9b,
5659 0xd8, 0x74, 0x11, 0x00, 0x73, 0xa4, 0x02, 0x67,
5660 0x1b, 0x24, 0x36, 0xd8, 0xe2, 0x94, 0xbe, 0x8e,
5661 0x7f, 0xbc, 0xf8, 0x0d, 0x32, 0x82, 0xd2, 0x7c,
5662 0x9d, 0x84, 0x15, 0x74, 0x1c, 0x9e, 0x6f, 0x43,
5663 0xd7, 0x8d, 0x61, 0xff, 0xbc, 0x01, 0xec, 0x6c,
5664 0xb6, 0x83, 0x3a, 0x5b, 0x4f, 0xe2, 0x7a, 0xad,
5665 0x8c, 0x40, 0x06, 0xd3, 0xb4, 0x6a, 0x02, 0xa4,
5666 0x05, 0xfe, 0x78, 0xcc, 0x9b, 0x60, 0x90, 0x5d,
5667 0x3b, 0x95, 0x54, 0xcd, 0x67, 0xb6, 0xce, 0xb5,
5668 0x09, 0xc0, 0xab, 0x05, 0x10, 0xab, 0x1a, 0x90,
5669 0x23, 0x19, 0xc8, 0x5b, 0x10, 0xd4, 0x32, 0x01,
5670 0xd2, 0x78, 0xd4, 0xb3, 0x03, 0x3b, 0x68, 0x26,
5671 0x8f, 0x5b, 0x0c, 0x34, 0xb8, 0x45, 0x39, 0x5f,
5672 0x33, 0x89, 0x33, 0x3e, 0x4d, 0x93, 0x0d, 0x5b,
5673 0x64, 0x77, 0x13, 0xd7, 0x2c, 0x98, 0x05, 0x60,
5674 0xcf, 0x93, 0x66, 0xe2, 0x24, 0x80, 0x2c, 0xe0,
5675 0x67, 0xf0, 0x67, 0x04, 0x82, 0x01, 0x8a, 0xa3,
5676 0x5f, 0xc6, 0xa4, 0xab, 0x02, 0x4d, 0xd5, 0x04,
5677 0x70, 0x5e, 0x90, 0xac, 0xc8, 0x1c, 0x36, 0x0c,
5678 0xce, 0x04, 0x6c, 0x7a, 0x4c, 0x00, 0x2b, 0x61,
5679 0x22, 0xae, 0x27, 0x3c, 0x59, 0x90, 0x4d, 0x58,
5680 0xb8, 0x6c, 0xd8, 0xd3, 0xf6, 0xce, 0xd6, 0xc1,
5681 0xbf, 0xcb, 0x77, 0x10, 0xc6, 0x59, 0xad, 0xe0,
5682 0x17, 0xe1, 0xd4, 0xb1, 0xb3, 0xe3, 0x0c, 0xe1,
5683 0x25, 0x33, 0x01, 0xea, 0x45, 0x35, 0x39, 0x24,
5684 0x09, 0x18, 0x0c, 0x38, 0xab, 0x00, 0x29, 0xa2,
5685 0x02, 0x79, 0x63, 0x5e, 0x55, 0xd5, 0xa9, 0x55,
5686 0x05, 0xda, 0xd7, 0x64, 0x20, 0xbf, 0x3d, 0x44,
5687 0x3d, 0x64, 0x38, 0xfe, 0xa7, 0xdd, 0x76, 0xd6,
5688 0x02, 0xb0, 0x53, 0x89, 0xf9, 0x40, 0x8f, 0xdf,
5689 0x7e, 0x2b, 0x7e, 0xb8, 0xac, 0xd7, 0x7f, 0xe0,
5690 0x05, 0x7a, 0x92, 0x75, 0x7a, 0x7e, 0xe2, 0x50,
5691 0xf2, 0x7d, 0x29, 0xa5, 0xd8, 0xd9, 0x69, 0x8c,
5692 0x9c, 0x7c, 0xf3, 0x0a, 0xec, 0x79, 0x33, 0x39,
5693 0xec, 0x60, 0xa0, 0x66, 0xd3, 0xc8, 0x04, 0xfe,
5694 0xd1, 0x98, 0xf7, 0xec, 0x3f, 0xcd, 0xaa, 0x40,
5695 0xfb, 0x62, 0x02, 0x00, 0x80, 0xc4, 0xa9, 0x05,
5696 0x60, 0xe7, 0xcb, 0x87, 0x65, 0x02, 0x02, 0xe3,
5697 0x0e, 0x2d, 0x41, 0xf9, 0xf5, 0x71, 0x40, 0x1d,
5698 0xbe, 0x4e, 0x1f, 0xe5, 0x8d, 0x8f, 0xb7, 0x4e,
5699 0xcf, 0x27, 0x9b, 0x7c, 0xaa, 0x10, 0xb7, 0x5a,
5700 0x5d, 0xd4, 0xeb, 0x2d, 0xab, 0xbc, 0x54, 0x4c,
5701 0xa7, 0xe3, 0xc1, 0x98, 0xad, 0x27, 0x6f, 0x72,
5702 0xd8, 0x2b, 0x01, 0x49, 0x7a, 0x03, 0x04, 0x8d,
5703 0xeb, 0xa8, 0xb2, 0x60, 0x93, 0x36, 0x01, 0x26,
5704 0x5e, 0x12, 0xec, 0xe2, 0xc5, 0x8b, 0x0a, 0x00,
5705 0xcd, 0xe3, 0xd0, 0x80, 0x14, 0xe0, 0x03, 0x08,
5706 0x6e, 0x0b, 0x66, 0xb8, 0x18, 0x98, 0x5f, 0x10,
5707 0x34, 0x38, 0xc6, 0xdf, 0x5f, 0x26, 0x2b, 0x5e,
5708 0x09, 0x30, 0xfe, 0xcb, 0x5d, 0x4a, 0x2b, 0xba,
5709 0x2c, 0x18, 0xe3, 0x90, 0x51, 0x70, 0x09, 0xaf,
5710 0x30, 0xff, 0x85, 0xae, 0x1b, 0xb8, 0x75, 0x6b,
5711 0xd7, 0xe3, 0xe1, 0x8f, 0x2a, 0x6b, 0x05, 0x6e,
5712 0x49, 0xac, 0x83, 0x50, 0xc2, 0x6b, 0x12, 0xd7,
5713 0x6a, 0xaf, 0x04, 0x38, 0x9b, 0xd5, 0xa6, 0x01,
5714 0x3f, 0x38, 0xfd, 0x23, 0x18, 0xd8, 0x88, 0x00,
5715 0x3c, 0xdf, 0x95, 0x7e, 0xfe, 0xe7, 0x7f, 0x5e,
5716 0x9e, 0x3b, 0x0d, 0xa0, 0x5a, 0xad, 0x2e, 0xf5,
5717 0xfb, 0x7d, 0xdf, 0x05, 0xf1, 0xeb, 0x01, 0x46,
5718 0xc7, 0x01, 0x58, 0xa5, 0x99, 0xfd, 0x03, 0x2c,
5719 0x48, 0x0d, 0x0f, 0x6a, 0x5a, 0x19, 0x54, 0x7b,
5720 0x34, 0xb8, 0x84, 0x17, 0xe3, 0x7a, 0xee, 0xdd,
5721 0xff, 0x27, 0x2d, 0xe1, 0x15, 0x7f, 0xf6, 0x67,
5722 0x8c, 0xa1, 0xd1, 0xe8, 0xa0, 0xd9, 0xec, 0x84,
5723 0x64, 0x0f, 0x16, 0xeb, 0xf4, 0x93, 0xbf, 0x56,
5724 0x4f, 0x3e, 0x40, 0x53, 0x87, 0xaa, 0x8a, 0xa9,
5725 0xc0, 0x6f, 0x8f, 0x79, 0xef, 0xf7, 0xbc, 0xca,
5726 0xc0, 0x8c, 0x31, 0xb4, 0x5a, 0xad, 0x25, 0x00,
5727 0x7b, 0x73, 0x45, 0x00, 0xfd, 0x7e, 0xbf, 0xca,
5728 0x03, 0x96, 0x7f, 0x06, 0x67, 0x11, 0x4d, 0x41,
5729 0xc6, 0xa9, 0xc0, 0x16, 0xab, 0x0b, 0x81, 0xc0,
5730 0x89, 0xea, 0x54, 0xeb, 0x75, 0x12, 0x06, 0x0d,
5731 0xb4, 0xe0, 0xf2, 0x5f, 0x41, 0x55, 0x88, 0xc3,
5732 0xb4, 0x11, 0x12, 0xb3, 0x2e, 0xbf, 0x7f, 0xdf,
5733 0xc1, 0xc0, 0xc4, 0xde, 0x5e, 0x13, 0xba, 0x6e,
5734 0x24, 0x1e, 0xc0, 0x07, 0x6d, 0x9d, 0x3e, 0x4f,
5735 0x09, 0x3a, 0x9e, 0x3b, 0x16, 0x40, 0xc7, 0xa1,
5736 0xc3, 0x5a, 0x7c, 0xf0, 0x7b, 0xff, 0xe5, 0xc4,
5737 0xbe, 0xc8, 0xb2, 0x14, 0x34, 0x4e, 0xaa, 0x73,
5738 0x47, 0x00, 0x84, 0x10, 0x57, 0x31, 0x10, 0xbb,
5739 0x16, 0x80, 0x3b, 0x99, 0xc7, 0x61, 0x0f, 0x05,
5740 0x11, 0xc0, 0xd0, 0x04, 0xb0, 0xec, 0x2f, 0x02,
5741 0x41, 0x20, 0x1e, 0x1f, 0x40, 0x9c, 0x66, 0x9c,
5742 0xce, 0x1b, 0x1a, 0x5d, 0xc2, 0xcb, 0xdf, 0x6e,
5743 0x2b, 0xbc, 0xfc, 0x57, 0x78, 0xbe, 0x7f, 0xf2,
5744 0xd6, 0x5d, 0x8c, 0x31, 0xd4, 0x6a, 0x2d, 0x9f,
5745 0x93, 0xaf, 0x58, 0xa7, 0xc7, 0x3e, 0x1d, 0xcb,
5746 0xae, 0x09, 0xe0, 0x20, 0x80, 0x80, 0x8c, 0xc0,
5747 0xb8, 0xf1, 0x01, 0x2e, 0xad, 0x97, 0x8d, 0xb5,
5748 0x63, 0xbb, 0x2a, 0x90, 0x53, 0x4c, 0xd3, 0xcc,
5749 0xdd, 0x0f, 0x30, 0x71, 0x02, 0x30, 0x0c, 0x63,
5750 0xd9, 0x2e, 0x80, 0xe8, 0x54, 0xff, 0x79, 0xb3,
5751 0x70, 0x78, 0x32, 0x90, 0xad, 0x01, 0xd8, 0xb1,
5752 0xd3, 0x71, 0x52, 0x63, 0xe3, 0xb5, 0xa6, 0xf2,
5753 0x83, 0x93, 0x44, 0x38, 0xe2, 0x48, 0xc0, 0x40,
5754 0xcf, 0xda, 0xba, 0x8b, 0x8c, 0xce, 0xa7, 0xd3,
5755 0xe9, 0xa3, 0x5e, 0x6f, 0xc7, 0x74, 0xf2, 0xcd,
5756 0xb6, 0xd3, 0x6c, 0x3f, 0x67, 0xeb, 0x49, 0x90,
5757 0xa2, 0x2c, 0x87, 0x67, 0x04, 0x26, 0x09, 0x0e,
5758 0x62, 0x1c, 0x27, 0xa0, 0x20, 0x08, 0x90, 0x24,
5759 0xc9, 0x45, 0x00, 0x93, 0x0a, 0x06, 0x9a, 0x38,
5760 0x01, 0x88, 0xa2, 0x58, 0xf5, 0xce, 0xec, 0x41,
5761 0xf5, 0x00, 0x69, 0x8c, 0xbe, 0x80, 0xce, 0x18,
5762 0x00, 0xe7, 0xc3, 0xe2, 0xab, 0xe2, 0xc9, 0x4a,
5763 0x84, 0x07, 0x13, 0x82, 0x77, 0x90, 0xb0, 0x10,
5764 0x5f, 0x40, 0x7c, 0x22, 0xe2, 0x69, 0x18, 0xa6,
5765 0x49, 0x51, 0xaf, 0xb7, 0xd0, 0xed, 0x0e, 0xb8,
5766 0xce, 0xa9, 0x83, 0x34, 0x5b, 0x67, 0x3b, 0xde,
5767 0xe4, 0x08, 0xd1, 0xa9, 0x01, 0x38, 0x9d, 0xd3,
5768 0x49, 0xc1, 0x1f, 0x34, 0xe6, 0x05, 0x51, 0x84,
5769 0x2c, 0xcb, 0xe8, 0xf5, 0x7a, 0x5e, 0xd3, 0xb9,
5770 0x3a, 0x77, 0x04, 0x60, 0x9a, 0xe6, 0xb2, 0xb7,
5771 0x16, 0x80, 0x24, 0x49, 0x20, 0x02, 0xbf, 0x1e,
5772 0x20, 0xf7, 0x26, 0x51, 0x36, 0x8a, 0x03, 0xb0,
5773 0x56, 0x00, 0xc8, 0xb0, 0x47, 0x1b, 0x42, 0x67,
5774 0xea, 0xe8, 0x27, 0x11, 0xbf, 0x2d, 0xb6, 0x37,
5775 0xde, 0x20, 0x99, 0x13, 0x2e, 0x5a, 0xc3, 0xb0,
5776 0x9c, 0x3c, 0x5d, 0xb4, 0xdb, 0xbd, 0x88, 0x12,
5777 0x61, 0xf3, 0xe7, 0x34, 0x9b, 0x0d, 0xbf, 0x44,
5778 0x7e, 0xf7, 0x4e, 0x96, 0x89, 0x43, 0x03, 0x18,
5779 0xa4, 0x02, 0x7e, 0x90, 0xd6, 0xcb, 0x60, 0x55,
5780 0xbc, 0x96, 0x24, 0x89, 0xe7, 0x08, 0x9c, 0x3f,
5781 0x0d, 0xc0, 0x99, 0xc5, 0x64, 0x5f, 0x90, 0xa6,
5782 0xa9, 0xdc, 0x47, 0x11, 0xb4, 0x0a, 0xd0, 0x69,
5783 0x1b, 0x23, 0x7b, 0xdf, 0xca, 0x03, 0x10, 0x53,
5784 0x15, 0xf9, 0x8c, 0x97, 0xf1, 0x17, 0x4f, 0xdd,
5785 0x4e, 0x1b, 0x51, 0xcc, 0xd3, 0x12, 0x7a, 0x3d,
5786 0x1d, 0x8d, 0x46, 0x7b, 0x98, 0xae, 0x1b, 0xa6,
5787 0x31, 0x14, 0x6a, 0xf8, 0x2c, 0x10, 0xa2, 0xab,
5788 0x2c, 0x58, 0xc6, 0x7c, 0x00, 0x5e, 0xec, 0x0b,
5789 0xe3, 0x93, 0x9a, 0x19, 0x00, 0x00, 0x20, 0x00,
5790 0x49, 0x44, 0x41, 0x54, 0x01, 0x81, 0xaa, 0xaa,
5791 0xbe, 0x31, 0x3a, 0x97, 0x04, 0xc0, 0x18, 0xab,
5792 0x3a, 0xeb, 0x9c, 0x03, 0x80, 0xaa, 0xc5, 0x2c,
5793 0x07, 0x36, 0x0a, 0x7a, 0xf1, 0x66, 0x02, 0xda,
5794 0x3e, 0x00, 0x16, 0x53, 0xa5, 0x4f, 0x74, 0xbe,
5795 0xa1, 0x76, 0x7b, 0x5c, 0x0d, 0xc3, 0x5d, 0xab,
5796 0x80, 0x9f, 0x39, 0x68, 0x18, 0x26, 0x1a, 0x8d,
5797 0xce, 0xa8, 0x02, 0x6c, 0x9a, 0x2a, 0xbc, 0xf3,
5798 0xe0, 0x34, 0x5b, 0x34, 0x13, 0x46, 0x92, 0x1c,
5799 0x8d, 0x53, 0xb2, 0xe6, 0x03, 0x78, 0x97, 0x01,
5800 0x87, 0x6f, 0xcb, 0x95, 0xb2, 0x6f, 0xcc, 0xcc,
5801 0xa5, 0x09, 0x40, 0x08, 0xf1, 0x65, 0x02, 0xf2,
5802 0xca, 0x81, 0xf9, 0xa2, 0xfa, 0x1c, 0xff, 0x36,
5803 0x9b, 0x7d, 0x07, 0x01, 0xd0, 0x84, 0x61, 0xb7,
5804 0x59, 0x5a, 0x6d, 0x25, 0xf5, 0x1f, 0x78, 0xfd,
5805 0x04, 0xc1, 0x9d, 0x80, 0x5a, 0xad, 0x2e, 0xba,
5806 0xdd, 0x41, 0xec, 0x02, 0x25, 0x07, 0x49, 0x0d,
5807 0x9f, 0xf5, 0x88, 0x44, 0x97, 0x13, 0xb0, 0x95,
5808 0x3e, 0x1f, 0xc0, 0xd6, 0x7a, 0x19, 0xf3, 0x8f,
5809 0x9c, 0x32, 0xa7, 0x2a, 0xd0, 0x5c, 0x6a, 0x00,
5810 0x94, 0xd2, 0x91, 0x0f, 0xc0, 0xbe, 0x20, 0xaf,
5811 0x7a, 0xe3, 0xb3, 0x85, 0x7c, 0x2d, 0xc1, 0x0c,
5812 0x17, 0xfb, 0x5a, 0x3d, 0x01, 0x78, 0x33, 0x74,
5813 0x96, 0x56, 0x5b, 0x24, 0x34, 0x25, 0x38, 0x98,
5814 0x24, 0xf8, 0x00, 0x0e, 0xca, 0xe1, 0xef, 0xf5,
5815 0x74, 0xb4, 0x5a, 0x9d, 0x91, 0xba, 0x7f, 0x10,
5816 0x9c, 0x66, 0xf3, 0x02, 0xec, 0xb8, 0x26, 0x07,
5817 0xb7, 0x2c, 0x58, 0x1a, 0x93, 0xd4, 0x76, 0x26,
5818 0x53, 0x6a, 0x15, 0xba, 0x74, 0x88, 0x56, 0x2a,
5819 0xf1, 0x76, 0x99, 0x5f, 0x1f, 0x80, 0xcb, 0x04,
5820 0x50, 0x43, 0x6a, 0x01, 0x78, 0xc0, 0xef, 0x74,
5821 0xb4, 0xd8, 0x3e, 0x00, 0x2b, 0x82, 0x99, 0x67,
5822 0x02, 0x44, 0xb5, 0xda, 0x4a, 0x92, 0x2b, 0xc0,
5823 0x07, 0x33, 0x3f, 0xdb, 0x2f, 0xba, 0xf5, 0xb6,
5824 0xae, 0x1b, 0x68, 0xb5, 0x3a, 0xd0, 0x75, 0x33,
5825 0xf1, 0xe0, 0x2d, 0xa2, 0xf4, 0x66, 0xeb, 0x5a,
5826 0x2d, 0x33, 0xd4, 0x8a, 0x26, 0x6d, 0x26, 0xcc,
5827 0x07, 0xf0, 0x8e, 0x6d, 0x30, 0x6b, 0xec, 0x8b,
5828 0x70, 0xc7, 0xc5, 0x94, 0x38, 0x55, 0x81, 0xe6,
5829 0xd6, 0x07, 0xe0, 0xb5, 0xb1, 0x79, 0x1a, 0x00,
5830 0xa5, 0x8c, 0x0b, 0x7e, 0xbf, 0x06, 0x60, 0x39,
5831 0x01, 0x29, 0x0d, 0xb3, 0xff, 0xfd, 0xeb, 0xf4,
5832 0xee, 0x44, 0x9e, 0x78, 0xbe, 0x03, 0x8e, 0x0d,
5833 0x16, 0x73, 0xd0, 0xb8, 0xed, 0xfc, 0x66, 0xb3,
5834 0x3b, 0x8a, 0xe2, 0x9b, 0xd4, 0x60, 0x2f, 0x66,
5835 0xeb, 0xe9, 0x9a, 0x1c, 0x76, 0x4a, 0x70, 0xdc,
5836 0xde, 0x00, 0x3e, 0xf0, 0x33, 0xaf, 0xf6, 0xeb,
5837 0x2d, 0x9b, 0xaf, 0x72, 0x7c, 0x52, 0xac, 0x3a,
5838 0x8f, 0x04, 0xe0, 0x33, 0x01, 0x94, 0x61, 0x2d,
5839 0x00, 0xe7, 0x72, 0xbd, 0x6d, 0x02, 0xf0, 0x3c,
5840 0xaa, 0xee, 0x62, 0x20, 0x80, 0x28, 0x86, 0x2d,
5841 0xc1, 0x45, 0xd5, 0x01, 0x60, 0x81, 0x01, 0x38,
5842 0xc1, 0x54, 0x1e, 0x14, 0x18, 0x14, 0xbc, 0xe6,
5843 0x6f, 0x2d, 0x5d, 0xf6, 0xd0, 0xef, 0xeb, 0x09,
5844 0x3a, 0xff, 0x1c, 0xac, 0x46, 0x9b, 0xf3, 0x7c,
5845 0xad, 0xa3, 0x9a, 0x00, 0x31, 0x7a, 0x03, 0x84,
5846 0x81, 0xdf, 0xe7, 0xff, 0x1a, 0xbe, 0xd5, 0x3c,
5847 0x35, 0x01, 0x18, 0x63, 0x13, 0xe9, 0x0f, 0xb8,
5848 0x2f, 0x4e, 0x40, 0x45, 0x51, 0xe0, 0x5d, 0x0d,
5849 0xa3, 0x61, 0x3d, 0x01, 0x9b, 0xba, 0xeb, 0xc6,
5850 0xfb, 0xed, 0x75, 0xbf, 0x0a, 0x6f, 0xad, 0x3c,
5851 0xc4, 0x5b, 0x97, 0x8f, 0x2a, 0xe1, 0x15, 0x16,
5852 0xe1, 0xc7, 0xd3, 0x16, 0x3a, 0x9d, 0x9e, 0xc3,
5853 0xc1, 0x57, 0x38, 0xcd, 0x16, 0xd1, 0xe4, 0xb0,
5854 0x96, 0x02, 0x89, 0xcb, 0x3c, 0x8d, 0xab, 0xf2,
5855 0x73, 0xfd, 0x5f, 0x9e, 0xcf, 0x9d, 0x2b, 0x65,
5856 0x73, 0x6d, 0x02, 0x80, 0x53, 0xc9, 0x44, 0x96,
5857 0x15, 0x7f, 0x52, 0x44, 0xcc, 0x9e, 0x00, 0x92,
5858 0x84, 0x51, 0xca, 0x67, 0x98, 0x6d, 0xcf, 0x58,
5859 0x78, 0x0b, 0xb0, 0xe4, 0x83, 0x33, 0xba, 0x92,
5860 0xf0, 0x60, 0xa0, 0xa3, 0xd3, 0xe9, 0xc5, 0x70,
5861 0xf0, 0x1d, 0xdc, 0x6a, 0x3a, 0x8b, 0x72, 0xad,
5862 0xb6, 0x23, 0xb0, 0x95, 0xa4, 0x39, 0x48, 0xc0,
5863 0x04, 0xc3, 0x33, 0x67, 0xa7, 0x55, 0x15, 0x68,
5864 0x2a, 0x26, 0x80, 0x97, 0xc9, 0xfc, 0xd5, 0x80,
5865 0x58, 0xa0, 0x4d, 0xef, 0x27, 0x00, 0xe6, 0x0b,
5866 0x05, 0xce, 0xa3, 0x75, 0x57, 0xf8, 0x4c, 0x1f,
5867 0xac, 0x49, 0x30, 0x06, 0xf4, 0xfb, 0x03, 0x74,
5868 0xbb, 0x03, 0xc7, 0x35, 0x90, 0xa9, 0x0d, 0xf6,
5869 0x62, 0x9d, 0x7e, 0x7f, 0xae, 0xd5, 0x8e, 0x05,
5870 0xe8, 0x74, 0x4c, 0x50, 0x3a, 0x2e, 0x53, 0x1f,
5871 0x47, 0xe5, 0xe7, 0x6a, 0x00, 0x9e, 0x0d, 0xf9,
5872 0x2b, 0x65, 0x73, 0xac, 0x01, 0xb8, 0xcb, 0x81,
5873 0x49, 0xbe, 0xbb, 0x12, 0x5e, 0x0b, 0x40, 0x77,
5874 0xdd, 0x78, 0xde, 0xcd, 0x8e, 0x56, 0xe9, 0xf9,
5875 0xb9, 0xfd, 0xee, 0xfd, 0xf8, 0xe0, 0xf7, 0x37,
5876 0x16, 0xb1, 0x8e, 0x3d, 0x18, 0xe8, 0x43, 0xe0,
5877 0xd3, 0x80, 0xa2, 0x20, 0x85, 0xd3, 0x6c, 0x51,
5878 0x49, 0xcc, 0x9e, 0xc3, 0xac, 0x98, 0x0e, 0x03,
5879 0xd5, 0xaa, 0x9c, 0x0a, 0xfc, 0xe3, 0xb1, 0xef,
5880 0x31, 0x93, 0x55, 0x6e, 0x55, 0xa0, 0xea, 0x3c,
5881 0x12, 0x80, 0xcf, 0x07, 0x20, 0x4a, 0xb2, 0x4f,
5882 0x2b, 0x8a, 0xdf, 0x16, 0xcc, 0xd6, 0x00, 0xc6,
5883 0xb3, 0xb5, 0x13, 0xb8, 0xce, 0x87, 0xe5, 0x4e,
5884 0xb6, 0x61, 0x1e, 0xf3, 0x20, 0xbc, 0x0f, 0xe0,
5885 0xd8, 0xf3, 0xef, 0x5f, 0x6a, 0xec, 0xf7, 0x0d,
5886 0xf4, 0x7a, 0xfa, 0x28, 0x7d, 0x79, 0x3a, 0x4b,
5887 0x7a, 0xc5, 0x3a, 0xfd, 0x2c, 0x99, 0x1c, 0xde,
5888 0x9a, 0x00, 0x36, 0x01, 0xc4, 0x51, 0xf9, 0x7d,
5889 0xe3, 0x6e, 0x14, 0x0e, 0xec, 0xf6, 0x93, 0x71,
5890 0xb4, 0xdb, 0xf9, 0xd2, 0x00, 0x2e, 0x5e, 0xbc,
5891 0x28, 0x31, 0xc6, 0x4a, 0x5e, 0x90, 0xc9, 0xb2,
5892 0xe4, 0x5f, 0xc1, 0x0f, 0x33, 0x01, 0x9a, 0x03,
5893 0x17, 0xf8, 0xbd, 0xeb, 0xec, 0x6e, 0x90, 0x26,
5894 0x5b, 0xf7, 0x0f, 0x76, 0xd4, 0xf9, 0x3d, 0xff,
5895 0xce, 0x19, 0xbf, 0x70, 0x9a, 0x1d, 0x6c, 0x12,
5896 0xb3, 0x08, 0x80, 0xb9, 0x26, 0xa8, 0x34, 0xe0,
5897 0xb7, 0x27, 0x3f, 0xef, 0xe6, 0x8a, 0xcc, 0xad,
5898 0x0a, 0x54, 0x7e, 0xfa, 0xe9, 0xa7, 0xc5, 0x2f,
5899 0x7d, 0xe9, 0x4b, 0xe6, 0x5c, 0x10, 0x00, 0x80,
5900 0x25, 0xe7, 0xdd, 0xb7, 0x2f, 0x48, 0xe4, 0x15,
5901 0x04, 0x0d, 0xd2, 0x00, 0x1c, 0x5d, 0x81, 0xec,
5902 0x15, 0x00, 0x7f, 0x39, 0xb0, 0xe8, 0xfc, 0xfc,
5903 0x60, 0x87, 0x60, 0x30, 0x49, 0x10, 0x42, 0x60,
5904 0x9a, 0x56, 0x47, 0xdd, 0xc1, 0x40, 0x1f, 0xd9,
5905 0xf8, 0x93, 0x5d, 0xd2, 0x2b, 0xd6, 0xe9, 0xe7,
5906 0xe1, 0x5a, 0xdd, 0x35, 0x01, 0x06, 0x89, 0x54,
5907 0x7e, 0xff, 0xd8, 0x77, 0x13, 0x87, 0x55, 0x17,
5908 0x50, 0xe6, 0x69, 0xa7, 0x64, 0x88, 0xa9, 0xfa,
5909 0x5c, 0x10, 0x80, 0x24, 0x49, 0xcb, 0xa6, 0x69,
5910 0xfa, 0x8a, 0x81, 0xb8, 0xca, 0x81, 0xb1, 0x10,
5911 0x13, 0xc0, 0x93, 0x0c, 0x64, 0xd5, 0x02, 0x08,
5912 0x1e, 0x5c, 0x7c, 0xcf, 0xbf, 0xdb, 0x1f, 0xe0,
5913 0x7d, 0xf8, 0x41, 0x95, 0x7a, 0x0c, 0x83, 0xa2,
5914 0xdf, 0xd7, 0xa1, 0xeb, 0xe6, 0xd4, 0x96, 0xf3,
5915 0x16, 0xd9, 0x69, 0xb6, 0x68, 0x24, 0xe6, 0x32,
5916 0x01, 0x1a, 0xd9, 0xc2, 0x81, 0xad, 0x7c, 0x00,
5917 0xf7, 0xce, 0xd2, 0xb0, 0x66, 0x86, 0x57, 0xdb,
5918 0x1c, 0x56, 0x05, 0x9a, 0x0f, 0x02, 0xa0, 0x94,
5919 0x56, 0xbd, 0x76, 0xf5, 0xa8, 0x1a, 0x50, 0x58,
5920 0x30, 0x84, 0xe7, 0x66, 0x36, 0x9b, 0xe3, 0x5a,
5921 0x00, 0xb6, 0xfa, 0xef, 0xdd, 0x7e, 0xfc, 0xf0,
5922 0x49, 0xc0, 0x6c, 0xce, 0xf7, 0x05, 0xb8, 0xd5,
5923 0x7d, 0x86, 0x7e, 0x5f, 0xc7, 0x60, 0x60, 0xb8,
5924 0x08, 0x29, 0x7c, 0x60, 0x15, 0x4e, 0xb3, 0x83,
5925 0x68, 0x72, 0x58, 0x35, 0x01, 0xcc, 0xf1, 0x04,
5926 0x95, 0x35, 0x17, 0xc0, 0x23, 0xa2, 0x28, 0x42,
5927 0x92, 0x24, 0x0c, 0x06, 0x03, 0x97, 0x06, 0x4b,
5928 0x29, 0xcd, 0xd5, 0x11, 0x38, 0x69, 0x02, 0xe0,
5929 0x2e, 0x01, 0xf2, 0x22, 0xef, 0x18, 0xa3, 0x5c,
5930 0x16, 0xb5, 0xda, 0x82, 0x8d, 0x4d, 0x00, 0x77,
5931 0x59, 0x67, 0x78, 0xc0, 0x1c, 0xee, 0x0b, 0xe0,
5932 0x9b, 0x08, 0x80, 0x69, 0x9a, 0x18, 0x0c, 0x9c,
5933 0xb3, 0x3d, 0x39, 0x40, 0xc0, 0x2e, 0x4c, 0x8e,
5934 0x78, 0xd7, 0x4b, 0x3c, 0x04, 0xe0, 0x30, 0x01,
5935 0x12, 0x86, 0x03, 0xbb, 0xfc, 0x05, 0x8c, 0x1f,
5936 0x07, 0x20, 0x0d, 0x8b, 0x82, 0x0c, 0x06, 0x83,
5937 0x89, 0x3a, 0x02, 0x27, 0x4a, 0x00, 0xde, 0x82,
5938 0xa0, 0x63, 0x13, 0xc0, 0x1f, 0x8f, 0x4f, 0x19,
5939 0xe3, 0x82, 0xdf, 0x34, 0x19, 0x7a, 0x3d, 0x73,
5940 0xc8, 0x8a, 0x51, 0xe0, 0x0c, 0x8f, 0xfc, 0x73,
5941 0xda, 0xfb, 0xa6, 0x49, 0x3d, 0xa0, 0x1f, 0x1f,
5942 0xa3, 0x70, 0x9a, 0x15, 0x26, 0x47, 0xb4, 0x79,
5943 0x3b, 0x7e, 0x9f, 0x24, 0x1c, 0xd8, 0x0b, 0x7e,
5944 0x9f, 0xf9, 0x3b, 0xfc, 0x4c, 0x94, 0x24, 0xc8,
5945 0xb2, 0xcc, 0xf3, 0x5d, 0xcd, 0x0f, 0x01, 0x98,
5946 0xa6, 0x59, 0xf5, 0x0e, 0x08, 0xab, 0x1c, 0x18,
5947 0xa7, 0xa4, 0xb7, 0xb3, 0x72, 0xb0, 0x83, 0x09,
5948 0x5a, 0x2d, 0x7d, 0x74, 0x13, 0x24, 0x89, 0x44,
5949 0xfa, 0x00, 0x82, 0x3e, 0xb7, 0xda, 0x6c, 0x53,
5950 0xe8, 0xba, 0x09, 0x5d, 0x37, 0x86, 0xd1, 0x7a,
5951 0x24, 0xf5, 0xa0, 0x2d, 0x9c, 0x66, 0x07, 0xdb,
5952 0xe4, 0xf0, 0x99, 0x00, 0x49, 0x80, 0xef, 0x51,
5953 0x56, 0x19, 0x65, 0xee, 0xc4, 0x98, 0xa1, 0x09,
5954 0xe0, 0x75, 0x96, 0x0f, 0xab, 0x02, 0xcd, 0x8f,
5955 0x09, 0x20, 0x08, 0xc2, 0xb2, 0xb7, 0x5f, 0x9f,
5956 0xaa, 0xf2, 0xcb, 0x81, 0x8d, 0xb6, 0xf3, 0x65,
5957 0x02, 0xba, 0xa3, 0x00, 0x6d, 0x0d, 0x80, 0x9f,
5958 0x9f, 0xef, 0x77, 0xd6, 0x51, 0x6a, 0x75, 0xd3,
5959 0xd1, 0x75, 0xd3, 0xe3, 0x50, 0x21, 0x85, 0xd3,
5960 0xac, 0x30, 0x39, 0x52, 0x5f, 0xab, 0xb3, 0x7d,
5961 0x5f, 0xd6, 0x7c, 0x00, 0x5e, 0x20, 0x90, 0x40,
5962 0x08, 0x34, 0x6d, 0xf2, 0x5d, 0x82, 0x27, 0xee,
5963 0x03, 0xf0, 0x96, 0x03, 0x73, 0x5e, 0x94, 0x87,
5964 0xd9, 0xf8, 0x99, 0x80, 0xbe, 0x28, 0x40, 0x21,
5965 0x70, 0xd6, 0xb7, 0x55, 0x7c, 0xd3, 0xa4, 0x30,
5966 0x4d, 0x13, 0x86, 0x61, 0xc2, 0x34, 0xa9, 0xa3,
5967 0xdc, 0x36, 0x59, 0x78, 0x60, 0x17, 0x26, 0xc7,
5968 0x74, 0xae, 0xd5, 0x5e, 0x91, 0x62, 0xcc, 0x9d,
5969 0xae, 0x1e, 0x47, 0xe5, 0xe7, 0x8e, 0x7f, 0xf8,
5970 0x13, 0xd5, 0x4b, 0xa5, 0xf2, 0x7c, 0x9b, 0x00,
5971 0x00, 0xaa, 0xfe, 0x4c, 0x40, 0xd5, 0x07, 0xdc,
5972 0xd0, 0x4c, 0xc0, 0x96, 0xee, 0xb3, 0xbb, 0xbc,
5973 0x4b, 0x7a, 0x94, 0xd2, 0x11, 0xd8, 0x4d, 0x93,
5974 0xc6, 0x2c, 0xf2, 0x59, 0x38, 0xcd, 0xa6, 0xe9,
5975 0x34, 0x5b, 0xb4, 0x6b, 0x25, 0xc4, 0x1a, 0x8f,
5976 0xba, 0xce, 0xef, 0x0d, 0x10, 0x17, 0xfc, 0xae,
5977 0x19, 0xde, 0x73, 0xa2, 0x5a, 0x49, 0xe3, 0x6d,
5978 0x57, 0x9d, 0x27, 0x02, 0x58, 0xf6, 0x5e, 0xa4,
5979 0xa6, 0xa9, 0xbe, 0x04, 0x9c, 0xf0, 0x7e, 0x00,
5980 0xfe, 0x4c, 0x40, 0x4a, 0x19, 0x4c, 0x93, 0x07,
5981 0x78, 0xff, 0x52, 0x60, 0x31, 0x83, 0x15, 0x26,
5982 0xc7, 0xa4, 0xae, 0x55, 0x92, 0x08, 0x74, 0x9d,
5983 0x45, 0x37, 0x07, 0x89, 0x53, 0x1e, 0x9c, 0x52,
5984 0x10, 0x8f, 0xcd, 0x5f, 0x2e, 0x95, 0xe6, 0xdb,
5985 0x04, 0x70, 0xd6, 0x02, 0xe0, 0xd7, 0x03, 0xb4,
5986 0xbf, 0x8b, 0x9b, 0x08, 0x64, 0xcd, 0xfe, 0x9d,
5987 0x4e, 0xdf, 0x13, 0xf3, 0x5f, 0xac, 0xd3, 0x17,
5988 0x26, 0xc7, 0xf4, 0x9f, 0xad, 0x2c, 0x13, 0x74,
5989 0xbb, 0xcc, 0x97, 0x12, 0x9c, 0x26, 0x2a, 0x90,
5990 0x32, 0xe6, 0x6a, 0xd5, 0x6d, 0x55, 0xce, 0xd2,
5991 0xbc, 0xe0, 0x77, 0x95, 0xd9, 0x9f, 0x79, 0x02,
5992 0x60, 0x8c, 0xf9, 0x8b, 0x81, 0x8c, 0xb2, 0x9c,
5993 0x62, 0xf6, 0x04, 0x74, 0x54, 0x03, 0xb2, 0x34,
5994 0x80, 0x62, 0x06, 0x2b, 0x48, 0x6c, 0x36, 0x4c,
5995 0x0e, 0x3b, 0x25, 0xb8, 0xe9, 0xe8, 0x0e, 0x94,
5996 0x36, 0x24, 0xd8, 0x59, 0x14, 0xc4, 0x3e, 0x86,
5997 0x56, 0xd2, 0x7c, 0x09, 0x6a, 0xf3, 0x46, 0x00,
5998 0x55, 0xaf, 0x0a, 0x63, 0x65, 0x39, 0x31, 0x97,
5999 0x0e, 0x10, 0x9a, 0x09, 0xd8, 0x70, 0x6a, 0x00,
6000 0x02, 0x82, 0x52, 0x79, 0x8b, 0x19, 0xac, 0x30,
6001 0x39, 0xf2, 0x7d, 0xb6, 0xd1, 0xc7, 0xb3, 0x53,
6002 0x82, 0x5b, 0x2d, 0x3d, 0x75, 0x22, 0xd0, 0x78,
6003 0x12, 0x64, 0x5e, 0xc3, 0x61, 0xe4, 0x30, 0x9f,
6004 0x64, 0x5d, 0xc0, 0xa9, 0xf8, 0x00, 0x5c, 0xb5,
6005 0x00, 0xec, 0x72, 0x60, 0x1e, 0xf5, 0x87, 0x63,
6006 0x44, 0x01, 0x00, 0xda, 0x6d, 0xc3, 0x75, 0xc3,
6007 0xe3, 0x3e, 0xd4, 0x62, 0x06, 0x2b, 0x4c, 0x8e,
6008 0x49, 0x1f, 0xcf, 0x6e, 0x11, 0x66, 0x18, 0x14,
6009 0xbd, 0x9e, 0x09, 0x4d, 0x13, 0x53, 0x81, 0xdf,
6010 0xc2, 0x80, 0xe9, 0xdb, 0x55, 0xd3, 0xb4, 0xf9,
6011 0x5e, 0x05, 0xe0, 0x55, 0x30, 0x51, 0x7c, 0xd5,
6012 0x80, 0x38, 0xb1, 0xd0, 0xae, 0x3c, 0x00, 0x77,
6013 0x41, 0xd0, 0x62, 0x06, 0x2b, 0x4c, 0x8e, 0x59,
6014 0xb9, 0x77, 0xce, 0xa1, 0xdc, 0x6c, 0xe8, 0xd0,
6015 0x54, 0x31, 0x1d, 0x4e, 0xc0, 0xdc, 0xe9, 0xf0,
6016 0xb6, 0xbf, 0x4c, 0x51, 0xbc, 0x78, 0x9a, 0x2f,
6017 0x02, 0x80, 0xa7, 0x82, 0x89, 0x55, 0x0b, 0x40,
6018 0xe6, 0x3a, 0x40, 0x82, 0xd4, 0x27, 0xe7, 0x2a,
6019 0x80, 0xb3, 0x29, 0xe3, 0xc1, 0x9c, 0xc1, 0x0e,
6020 0xb6, 0x1a, 0x3e, 0x6b, 0xf7, 0x4e, 0x96, 0x05,
6021 0xc7, 0x44, 0xa5, 0xe3, 0xc8, 0x11, 0x2d, 0x15,
6022 0xf8, 0x61, 0x67, 0xb1, 0x7a, 0x3b, 0x68, 0x95,
6023 0xfc, 0x85, 0x41, 0x91, 0x73, 0x55, 0xa0, 0xe9,
6024 0x9b, 0x00, 0x3c, 0x0d, 0x20, 0x24, 0x11, 0xc8,
6025 0x6e, 0xbd, 0x64, 0xad, 0xbb, 0x92, 0x05, 0x1d,
6026 0xe8, 0x07, 0xc9, 0xe4, 0x98, 0xaf, 0x7b, 0x17,
6027 0x36, 0x4e, 0x9c, 0x04, 0x90, 0x34, 0x1f, 0xc0,
6028 0x09, 0x7e, 0x6b, 0x12, 0xa4, 0xbe, 0x39, 0x50,
6029 0x91, 0x27, 0x5f, 0x15, 0x68, 0xe2, 0x04, 0xe0,
6030 0xb5, 0x61, 0x5c, 0x04, 0x60, 0x2f, 0x11, 0x52,
6031 0x7e, 0x22, 0x10, 0x00, 0xb4, 0x5b, 0xee, 0x62,
6032 0x20, 0xf3, 0x03, 0xec, 0xc2, 0x69, 0xb6, 0xe8,
6033 0xf7, 0xce, 0xd9, 0x25, 0xb8, 0xd5, 0x34, 0x92,
6034 0x01, 0xdf, 0x33, 0xe1, 0xd9, 0xd1, 0x80, 0x2e,
6035 0x73, 0x59, 0x91, 0x27, 0xde, 0x1f, 0x70, 0x62,
6036 0x04, 0x70, 0xf1, 0xe2, 0x45, 0x41, 0xd7, 0xf5,
6037 0x25, 0xaf, 0x09, 0x20, 0xd9, 0x8b, 0xf9, 0x2e,
6038 0x13, 0x80, 0xf2, 0x6f, 0x90, 0xc3, 0x07, 0x60,
6039 0x27, 0x02, 0x1d, 0xcc, 0xd9, 0x7a, 0xbf, 0x4c,
6040 0x8e, 0xe2, 0xde, 0x85, 0x89, 0xa2, 0x88, 0x89,
6041 0x35, 0x00, 0xe7, 0xac, 0xef, 0xfa, 0x9c, 0xb3,
6042 0x14, 0x6e, 0xc7, 0x01, 0x78, 0xcc, 0x00, 0xbb,
6043 0xca, 0x16, 0x9b, 0x69, 0x02, 0xe8, 0x74, 0x3a,
6044 0x15, 0xd9, 0x61, 0xb4, 0x0f, 0x3b, 0x9b, 0x40,
6045 0xe4, 0x66, 0x02, 0x32, 0x2e, 0xf8, 0xad, 0x1b,
6046 0x6b, 0xc4, 0xd6, 0x00, 0x0a, 0xa7, 0xd9, 0xbc,
6047 0x01, 0x7b, 0xbe, 0xcd, 0x35, 0xa7, 0x4f, 0x2a,
6048 0x76, 0x42, 0x50, 0x44, 0xfb, 0x39, 0xb7, 0xb6,
6049 0x2c, 0xf1, 0xaa, 0x02, 0x09, 0x3f, 0xf8, 0x83,
6050 0x3f, 0x58, 0x79, 0xee, 0xb9, 0xe7, 0x5a, 0x33,
6051 0x4d, 0x00, 0xb2, 0x2c, 0xfb, 0x62, 0x00, 0x24,
6052 0x49, 0x02, 0x11, 0x05, 0xae, 0x0f, 0x20, 0x2a,
6053 0x17, 0xc0, 0x0e, 0x03, 0x2e, 0xd4, 0xf0, 0x62,
6054 0xb6, 0x9e, 0x15, 0x93, 0xc3, 0x4d, 0x00, 0x46,
6055 0x6a, 0xf0, 0x5b, 0x5a, 0xb0, 0xa7, 0xd1, 0x2c,
6056 0xb3, 0xf0, 0x22, 0x8a, 0xe2, 0x88, 0x00, 0x6c,
6057 0x1c, 0x55, 0xab, 0xd5, 0x2a, 0x80, 0xd9, 0x26,
6058 0x00, 0x67, 0x5b, 0xf0, 0xb1, 0xcd, 0x24, 0x41,
6059 0x20, 0x82, 0xd7, 0xfc, 0x81, 0x19, 0x16, 0x08,
6060 0x34, 0x2a, 0x07, 0x46, 0xf6, 0x79, 0x70, 0x16,
6061 0x4e, 0xb3, 0x22, 0xac, 0xda, 0x4b, 0x00, 0x82,
6062 0x6f, 0x9c, 0x26, 0x05, 0xbe, 0x73, 0x12, 0xf4,
6063 0x9a, 0xc6, 0x76, 0x4d, 0x00, 0x5d, 0xd7, 0x5d,
6064 0x1a, 0xc2, 0x60, 0x30, 0xc8, 0xcd, 0x0f, 0x30,
6065 0x31, 0x02, 0xe0, 0x35, 0x05, 0xb5, 0x8a, 0x81,
6066 0x10, 0x4f, 0x5f, 0x40, 0xc6, 0xb5, 0x7f, 0xac,
6067 0x0b, 0x35, 0x31, 0x18, 0x98, 0xc3, 0x9b, 0xbd,
6068 0x68, 0xad, 0xb6, 0xf6, 0x7f, 0x06, 0x5b, 0x04,
6069 0x35, 0x7c, 0x3f, 0x4d, 0x0e, 0x45, 0x21, 0xa1,
6070 0x3e, 0x80, 0xb8, 0xe0, 0xe7, 0x99, 0x00, 0x0c,
6071 0x80, 0x28, 0x5b, 0x75, 0x01, 0xbd, 0xdf, 0xe5,
6072 0xd9, 0x24, 0x74, 0x62, 0x04, 0x20, 0x08, 0x02,
6073 0xa7, 0x23, 0x90, 0x6c, 0x69, 0x00, 0x9e, 0xea,
6074 0x27, 0x41, 0x25, 0xbb, 0xdd, 0x6d, 0xc1, 0x83,
6075 0x4b, 0x81, 0x15, 0x4e, 0xb3, 0xd9, 0x00, 0xf6,
6076 0x41, 0x33, 0x39, 0x14, 0x45, 0x08, 0x34, 0x01,
6077 0x92, 0x80, 0x1f, 0xb0, 0xfc, 0x60, 0x5e, 0x0a,
6078 0x90, 0x04, 0xc9, 0x72, 0x9a, 0xfb, 0x89, 0xa2,
6079 0x3a, 0xf3, 0x04, 0xc0, 0x5b, 0xae, 0x10, 0x45,
6080 0x71, 0x58, 0xd0, 0x23, 0x5e, 0x5b, 0xb0, 0x96,
6081 0xc3, 0xb1, 0x22, 0xcb, 0x24, 0xd3, 0x00, 0x2b,
6082 0x9c, 0x66, 0x45, 0x8c, 0x43, 0xde, 0xd7, 0x4a,
6083 0x88, 0xd5, 0xaa, 0xde, 0x34, 0x99, 0xbf, 0x39,
6084 0x48, 0x42, 0x1f, 0x3d, 0xd7, 0x07, 0x20, 0x8f,
6085 0x09, 0x60, 0x52, 0x19, 0x81, 0x93, 0x8c, 0x03,
6086 0xf0, 0xd5, 0x02, 0x50, 0x14, 0xc5, 0xf7, 0xb0,
6087 0x58, 0x98, 0x06, 0xd0, 0x74, 0x6a, 0x00, 0x93,
6088 0x07, 0x76, 0xe1, 0x34, 0x2b, 0xae, 0x35, 0xe9,
6089 0xf5, 0xca, 0xb2, 0x45, 0x00, 0xa3, 0xe6, 0x20,
6090 0x29, 0x17, 0xe7, 0x98, 0x5d, 0x16, 0xcc, 0x71,
6091 0x08, 0x41, 0x10, 0xa0, 0x28, 0xfe, 0x0e, 0x41,
6092 0xce, 0x6a, 0xdb, 0x33, 0x4b, 0x00, 0x84, 0x90,
6093 0xaa, 0x5d, 0xea, 0xcb, 0x16, 0x4d, 0xd3, 0x02,
6094 0x2e, 0x9c, 0xeb, 0x3d, 0x41, 0xd3, 0x95, 0x0a,
6095 0x9c, 0x5e, 0x03, 0x28, 0x9c, 0x66, 0x85, 0xc9,
6096 0x31, 0xa9, 0x6b, 0x95, 0x65, 0x82, 0x5e, 0x0f,
6097 0x68, 0xb5, 0xcc, 0x4c, 0x2b, 0xf3, 0xa3, 0x7c,
6098 0x00, 0xcf, 0x49, 0xa8, 0x9c, 0x12, 0x7a, 0x73,
6099 0x63, 0x02, 0x78, 0x99, 0x6b, 0x94, 0xde, 0xe8,
6100 0xb1, 0x7d, 0x78, 0xe0, 0x07, 0xc6, 0x51, 0x80,
6101 0xf6, 0x8d, 0x2e, 0x66, 0xb0, 0xc2, 0xe4, 0x98,
6102 0xb5, 0x67, 0x6b, 0x8f, 0xcb, 0x38, 0x71, 0x00,
6103 0x61, 0xe0, 0x07, 0x1b, 0x16, 0x05, 0xf1, 0x9c,
6104 0xac, 0xb3, 0x2a, 0xd0, 0x42, 0x98, 0x00, 0xfe,
6105 0x54, 0x60, 0x7f, 0x4d, 0xf4, 0x91, 0x09, 0xe0,
6106 0x20, 0x80, 0xad, 0x2d, 0x13, 0xfd, 0x3e, 0x9b,
6107 0xe0, 0xe9, 0x66, 0x19, 0xec, 0x93, 0xfd, 0xcd,
6108 0xfc, 0x07, 0xfa, 0xfe, 0x9c, 0x73, 0xfa, 0xf3,
6109 0x9b, 0xfc, 0x85, 0xa5, 0x25, 0xb1, 0xc1, 0x80,
6110 0xf9, 0x26, 0xab, 0x44, 0xc0, 0x77, 0x9a, 0xfd,
6111 0x8c, 0x02, 0xee, 0xba, 0x40, 0xd0, 0xb4, 0x52,
6112 0x24, 0xb6, 0x66, 0x9e, 0x00, 0x46, 0xe5, 0xc0,
6113 0x7c, 0xea, 0x0c, 0x0b, 0x4c, 0x04, 0x02, 0x80,
6114 0x4e, 0x67, 0xdc, 0x04, 0xf5, 0xea, 0x55, 0x13,
6115 0x57, 0xaf, 0x9a, 0x28, 0xa4, 0x90, 0x59, 0x94,
6116 0x6e, 0x97, 0x82, 0x52, 0x36, 0x6c, 0x7a, 0x13,
6117 0x7f, 0xd6, 0xf7, 0x4e, 0x92, 0xf0, 0x14, 0x16,
6118 0x29, 0x95, 0xb5, 0x89, 0x6a, 0x00, 0xc2, 0x04,
6119 0x4d, 0x00, 0xdf, 0x32, 0xa0, 0x55, 0x0f, 0x90,
6120 0xc1, 0xd9, 0x9e, 0x9b, 0xd7, 0x11, 0xc8, 0x96,
6121 0x87, 0x1e, 0x5e, 0x87, 0x9a, 0x32, 0xc7, 0xba,
6122 0x90, 0x42, 0xa6, 0x29, 0x4f, 0x3c, 0x79, 0x24,
6123 0x13, 0xf8, 0x81, 0x61, 0x69, 0x3c, 0x37, 0x3c,
6124 0x82, 0x34, 0x80, 0xf9, 0x5b, 0x06, 0xb4, 0x4d,
6125 0x00, 0xaf, 0xad, 0x1f, 0x14, 0x04, 0xc4, 0xc0,
6126 0x70, 0xef, 0xd9, 0x35, 0x7c, 0xf9, 0x6b, 0x7f,
6127 0x09, 0xbb, 0x7b, 0xfd, 0xa0, 0x3b, 0x19, 0x7a,
6128 0x9b, 0x63, 0x3c, 0x09, 0x64, 0x3a, 0x02, 0x8b,
6129 0xf1, 0xa0, 0x33, 0x9c, 0x5e, 0xe4, 0x31, 0xb2,
6130 0xec, 0xcf, 0x92, 0x1d, 0x25, 0xcb, 0xfe, 0x2c,
6131 0xf3, 0xef, 0x23, 0x73, 0xc9, 0x2d, 0x96, 0x43,
6132 0xee, 0x4c, 0xd0, 0x12, 0x9f, 0x24, 0x12, 0xdc,
6133 0x7d, 0xa6, 0x9a, 0x7a, 0x7f, 0xaf, 0xa6, 0xec,
6134 0xbc, 0xcc, 0x80, 0x3e, 0x1a, 0xf3, 0x63, 0x02,
6135 0x38, 0x2f, 0x4a, 0x51, 0x94, 0x00, 0xb5, 0x27,
6136 0xf8, 0x41, 0x6d, 0x6c, 0x56, 0xb0, 0xb1, 0x59,
6137 0x89, 0x3d, 0x80, 0x58, 0x7c, 0x64, 0x65, 0x1b,
6138 0x2c, 0x59, 0xf6, 0x67, 0xd3, 0x01, 0x6f, 0x1e,
6139 0xe0, 0x67, 0x99, 0xc1, 0xcf, 0xf2, 0x03, 0x3f,
6140 0xcb, 0x17, 0xb8, 0x89, 0x8f, 0x31, 0xe1, 0xfd,
6141 0x79, 0x29, 0xc1, 0x9a, 0xaa, 0xce, 0xad, 0x0f,
6142 0xa0, 0x1a, 0x5a, 0x0b, 0xc0, 0xa9, 0xf6, 0xe4,
6143 0x04, 0xde, 0x45, 0x01, 0x7f, 0x56, 0xcd, 0x21,
6144 0x0f, 0xcd, 0x83, 0x7b, 0x9c, 0x2c, 0xb3, 0x76,
6145 0xd6, 0x99, 0x7b, 0xc1, 0xc1, 0xcf, 0x9b, 0x0c,
6146 0x01, 0x40, 0xd5, 0xb4, 0xf9, 0x34, 0x01, 0xc0,
6147 0x59, 0x05, 0x70, 0x12, 0x00, 0xf3, 0x5c, 0xf4,
6148 0xc2, 0x83, 0xbf, 0x98, 0xf5, 0xf7, 0x4f, 0xe5,
6149 0x9f, 0x03, 0xf0, 0x03, 0xde, 0x88, 0x58, 0xbb,
6150 0x8f, 0x86, 0x32, 0x9f, 0x1a, 0x80, 0xd3, 0x4e,
6151 0xb1, 0x41, 0x2e, 0xcb, 0x32, 0x77, 0x19, 0x30,
6152 0x0b, 0xf0, 0xf2, 0x00, 0x7e, 0x1e, 0x33, 0xf7,
6153 0xac, 0x82, 0xff, 0x1f, 0xfe, 0xea, 0x3f, 0xc2,
6154 0x1d, 0xa7, 0xee, 0xc0, 0x91, 0x23, 0x87, 0xf1,
6155 0xe0, 0xc3, 0x0f, 0xe0, 0x6b, 0x5f, 0xfe, 0x8f,
6156 0x90, 0x24, 0x09, 0xe7, 0xce, 0xdf, 0x07, 0x49,
6157 0x92, 0xf0, 0xc7, 0xcf, 0x7d, 0x1d, 0x3f, 0xf7,
6158 0xa9, 0x9f, 0xc5, 0xbf, 0xf9, 0x57, 0xff, 0x16,
6159 0x27, 0x4f, 0x9e, 0xc0, 0x72, 0x75, 0x19, 0xf5,
6160 0x5a, 0x1d, 0x6b, 0xeb, 0x6b, 0x78, 0xfc, 0xc9,
6161 0x0f, 0x1f, 0x58, 0xf0, 0xef, 0x87, 0xe6, 0xe1,
6162 0x5b, 0x05, 0x80, 0xb7, 0x91, 0x4e, 0xfe, 0x04,
6163 0x30, 0xb1, 0x55, 0x00, 0xdb, 0x04, 0x08, 0xaf,
6164 0x07, 0xc8, 0x42, 0x7b, 0x02, 0x4c, 0x6b, 0xd6,
6165 0xcf, 0x02, 0xfe, 0xc8, 0xfd, 0xf7, 0x79, 0xe6,
6166 0x17, 0x44, 0x11, 0x77, 0x9f, 0x39, 0x8d, 0x0f,
6167 0x3e, 0xb8, 0x8a, 0x3f, 0xfb, 0xd6, 0xb7, 0xf1,
6168 0xf8, 0x93, 0x8f, 0xe1, 0xc7, 0xff, 0xfa, 0x5f,
6169 0xc5, 0x1f, 0x3f, 0xf7, 0x75, 0x00, 0x40, 0xa9,
6170 0xa4, 0xe1, 0x3b, 0xdf, 0xfe, 0x2e, 0x00, 0xe0,
6171 0x87, 0xfe, 0xc2, 0x27, 0xf0, 0xe2, 0x0b, 0x2f,
6172 0xe1, 0xfa, 0xf5, 0x1b, 0x78, 0xec, 0x89, 0x47,
6173 0xf7, 0xdf, 0xde, 0xcf, 0x6a, 0x32, 0x64, 0x01,
6174 0xef, 0x3e, 0xec, 0xcf, 0x33, 0x01, 0x7c, 0x8e,
6175 0xf3, 0x39, 0x31, 0x01, 0x08, 0x63, 0xcc, 0x55,
6176 0x0e, 0x8c, 0x10, 0x32, 0xce, 0x6c, 0x62, 0xce,
6177 0xae, 0x40, 0x6c, 0x5f, 0xc1, 0xbf, 0xe8, 0x2a,
6178 0xbf, 0x28, 0x08, 0x38, 0x76, 0x6c, 0x13, 0x8f,
6179 0xfc, 0xc0, 0xc3, 0xf8, 0xe6, 0x37, 0xbe, 0x85,
6180 0x9b, 0x37, 0x6f, 0xa2, 0x54, 0xd2, 0xb0, 0xb2,
6181 0x62, 0x8d, 0xa1, 0xfb, 0xce, 0x9d, 0xc5, 0x9b,
6182 0x57, 0xde, 0xb2, 0x06, 0x83, 0x2c, 0xe1, 0xcc,
6183 0x3d, 0x77, 0x63, 0x65, 0x75, 0x05, 0x04, 0x24,
6184 0xdb, 0x39, 0x14, 0xf6, 0x7e, 0x1a, 0xad, 0xd9,
6185 0x77, 0xfe, 0x01, 0x04, 0xb0, 0x34, 0xd3, 0x1a,
6186 0xc0, 0xaf, 0xfc, 0xca, 0xaf, 0x94, 0x01, 0x88,
6187 0xce, 0x0b, 0x13, 0x04, 0xc1, 0xca, 0x04, 0xf4,
6188 0x17, 0x39, 0x0c, 0x1e, 0xc0, 0x2c, 0x23, 0x70,
6189 0xb3, 0x3a, 0xeb, 0x16, 0xc0, 0xde, 0xff, 0xe8,
6190 0xc7, 0x3e, 0x82, 0xd3, 0x77, 0xdf, 0x85, 0x4a,
6191 0xa5, 0x82, 0x4f, 0xfc, 0xd0, 0x53, 0x10, 0x45,
6192 0x11, 0xaf, 0xbf, 0xfe, 0x06, 0x7e, 0xe2, 0x27,
6193 0x9f, 0xc6, 0xc6, 0xc6, 0xed, 0x38, 0x79, 0xc7,
6194 0x09, 0xfc, 0xf0, 0x8f, 0xfc, 0x77, 0x78, 0xf0,
6195 0xa1, 0x0b, 0x00, 0x80, 0x53, 0x77, 0xde, 0x81,
6196 0x8d, 0x8d, 0xa3, 0x53, 0x9f, 0xf5, 0xb3, 0x80,
6197 0x37, 0xeb, 0xfe, 0xb3, 0x00, 0x7e, 0x60, 0xb8,
6198 0x24, 0xce, 0xdc, 0xa1, 0x00, 0x92, 0xe4, 0x4f,
6199 0x09, 0x06, 0x20, 0xfd, 0xe8, 0x8f, 0xfe, 0x68,
6200 0x79, 0x66, 0x35, 0x00, 0x67, 0xa4, 0x92, 0x0d,
6201 0x70, 0x51, 0x14, 0x21, 0x04, 0x94, 0x03, 0xf3,
6202 0x11, 0x42, 0x61, 0xef, 0xe7, 0xb6, 0xff, 0x53,
6203 0x9f, 0xf8, 0x98, 0xeb, 0x19, 0x7c, 0xe2, 0x93,
6204 0x4f, 0x8d, 0xf5, 0xc8, 0xd5, 0xb1, 0x26, 0x79,
6205 0xfc, 0xc4, 0x31, 0x30, 0xc6, 0x70, 0xfa, 0xf4,
6206 0x5d, 0xe1, 0xc4, 0x5c, 0xd8, 0xfb, 0xb9, 0xef,
6207 0x3f, 0x2a, 0x9c, 0xc3, 0xb9, 0xa3, 0xb2, 0x2c,
6208 0x73, 0x73, 0x23, 0x86, 0x18, 0xeb, 0xcc, 0xaa,
6209 0x09, 0xe0, 0x8b, 0x01, 0xa0, 0x94, 0x0e, 0x6b,
6210 0x01, 0xf8, 0xef, 0x13, 0xa5, 0x14, 0xed, 0x56,
6211 0x1b, 0xba, 0x61, 0x00, 0x01, 0x26, 0xc1, 0xd4,
6212 0x54, 0xfe, 0x09, 0x12, 0x47, 0x1e, 0xe4, 0x31,
6213 0xb1, 0x25, 0xbe, 0xc4, 0xfb, 0x23, 0x3f, 0xf0,
6214 0xcf, 0xb1, 0xca, 0x8f, 0xcc, 0xfb, 0x03, 0xa2,
6215 0x24, 0xa2, 0x52, 0xa9, 0x40, 0x96, 0xfd, 0xea,
6216 0xbe, 0x24, 0x89, 0x5c, 0x32, 0xee, 0xf7, 0xfb,
6217 0xcb, 0x00, 0x6e, 0xce, 0x24, 0x01, 0x50, 0x4a,
6218 0xab, 0x4e, 0xd6, 0x62, 0x8c, 0x8d, 0x08, 0x80,
6219 0x79, 0x9e, 0x98, 0x20, 0x88, 0xa8, 0xed, 0xd5,
6220 0xd0, 0xef, 0xf7, 0xb3, 0x8f, 0xeb, 0x05, 0xb7,
6221 0xf7, 0xb1, 0x20, 0x4b, 0x7c, 0xb9, 0x92, 0x71,
6222 0x26, 0xf0, 0xef, 0x37, 0x79, 0x0c, 0x65, 0x00,
6223 0xf4, 0x7b, 0x7d, 0x1c, 0x3f, 0x71, 0xc2, 0x77,
6224 0x43, 0x45, 0x49, 0x82, 0x69, 0x72, 0x73, 0x60,
6225 0x72, 0x71, 0x04, 0x4e, 0xca, 0x04, 0x90, 0xbc,
6226 0x1a, 0x80, 0x61, 0x18, 0xc3, 0x0b, 0xf1, 0x04,
6227 0x07, 0x49, 0x32, 0x5a, 0xad, 0x16, 0x18, 0x9b,
6228 0x0c, 0x70, 0xf3, 0x99, 0xb9, 0x17, 0x65, 0x7d,
6229 0x1f, 0xf9, 0x80, 0x6e, 0xce, 0x55, 0x7e, 0xcc,
6230 0x80, 0xe6, 0xe1, 0x15, 0x1d, 0xb0, 0x1c, 0xaf,
6231 0xde, 0x6a, 0x59, 0xd4, 0x0c, 0x32, 0xc7, 0xa4,
6232 0x99, 0x25, 0x00, 0xc6, 0x58, 0x93, 0xf7, 0x79,
6233 0xaf, 0xd7, 0x45, 0xa9, 0xe4, 0x8e, 0x6c, 0x52,
6234 0x55, 0x0d, 0x84, 0x10, 0xf4, 0x7a, 0xbd, 0xb4,
6235 0xc8, 0x98, 0xe0, 0xac, 0x9f, 0x0f, 0xa2, 0x66,
6236 0x21, 0x9e, 0x3f, 0x3b, 0x78, 0xf3, 0x00, 0x3f,
6237 0xf6, 0x1d, 0x78, 0xb9, 0x3c, 0x8b, 0x09, 0x64,
6238 0xa5, 0x4b, 0xa2, 0x84, 0x52, 0xa9, 0xec, 0xc1,
6239 0x11, 0xd0, 0x69, 0x77, 0x83, 0x26, 0xd9, 0xfa,
6240 0xcc, 0x12, 0x80, 0x69, 0x9a, 0x7b, 0xa2, 0x28,
6241 0xba, 0x4c, 0x00, 0x00, 0xb8, 0x79, 0xf3, 0x26,
6242 0xd6, 0xd6, 0xd6, 0x5c, 0x23, 0x42, 0x14, 0x44,
6243 0xdc, 0x7d, 0xfa, 0x1e, 0xbc, 0xf8, 0xe2, 0x0b,
6244 0x30, 0x4d, 0x63, 0x3e, 0x54, 0xfe, 0x3c, 0x06,
6245 0x1b, 0xcb, 0x7c, 0x81, 0xe9, 0xa1, 0xbb, 0x9f,
6246 0x21, 0xbd, 0xfb, 0xa8, 0xf2, 0x23, 0xb3, 0x97,
6247 0x1f, 0x13, 0x01, 0xbf, 0x20, 0x0a, 0x38, 0x7b,
6248 0xef, 0x59, 0x08, 0x02, 0xf1, 0x69, 0xc2, 0xef,
6249 0xbf, 0xff, 0x5e, 0x90, 0x99, 0xbd, 0x97, 0x8b,
6250 0xb6, 0x8e, 0xc9, 0x08, 0xf9, 0xe5, 0x5f, 0xfe,
6251 0xe5, 0xab, 0x00, 0x36, 0x9c, 0xea, 0xcb, 0xe9,
6252 0xbb, 0xef, 0xc2, 0x5f, 0xfb, 0xf1, 0xa7, 0x2d,
6253 0xaf, 0x26, 0xf3, 0x6b, 0x07, 0xbb, 0xb5, 0x5d,
6254 0xf4, 0xfa, 0xdd, 0xc2, 0xde, 0xc7, 0x22, 0x85,
6255 0xf4, 0xe6, 0x48, 0x1c, 0x73, 0xbc, 0xc4, 0x17,
6256 0x30, 0x8b, 0x43, 0x55, 0x55, 0xac, 0xae, 0xac,
6257 0x42, 0x92, 0xf8, 0x4d, 0x73, 0xff, 0xd9, 0x3f,
6258 0xfd, 0x1d, 0xbc, 0xf6, 0xea, 0xeb, 0xde, 0xaf,
6259 0x3e, 0xf8, 0xea, 0x57, 0xbf, 0x7a, 0x62, 0x66,
6260 0x35, 0x00, 0x6b, 0xd2, 0x67, 0x5f, 0x01, 0xf0,
6261 0x73, 0xce, 0x0f, 0xdf, 0xbc, 0xf2, 0x16, 0xae,
6262 0x5f, 0xbb, 0x8e, 0xcd, 0xcd, 0x4d, 0xdf, 0x0e,
6263 0xaa, 0xa6, 0x61, 0xe3, 0xe8, 0xe6, 0xc8, 0x61,
6264 0x18, 0x38, 0x8c, 0x22, 0xc7, 0x03, 0xcb, 0xa8,
6265 0x7e, 0x86, 0xc0, 0x7f, 0x62, 0xe0, 0x65, 0x11,
6266 0x33, 0x0d, 0x4b, 0x41, 0x62, 0x9c, 0x0d, 0x12,
6267 0x4c, 0xa2, 0x79, 0x98, 0x0c, 0x2c, 0x83, 0xbd,
6268 0xcd, 0x12, 0x4c, 0xb7, 0x2c, 0x46, 0x5a, 0x38,
6269 0x4b, 0xc9, 0x44, 0x2c, 0xd3, 0xf9, 0x87, 0xed,
6270 0x48, 0x86, 0xf5, 0x03, 0x48, 0xe0, 0x2f, 0xbf,
6271 0xf9, 0xe6, 0x5b, 0x78, 0xfd, 0xb5, 0x37, 0x78,
6272 0xc4, 0xf1, 0xe5, 0xdc, 0x4c, 0x8f, 0x09, 0x11,
6273 0x00, 0x08, 0x21, 0x5f, 0x62, 0x8c, 0xfd, 0x9c,
6274 0xd7, 0x0c, 0xf8, 0xf7, 0xff, 0xee, 0x0f, 0xf0,
6275 0x73, 0x9f, 0xfa, 0x5b, 0x28, 0x39, 0x0a, 0x1d,
6276 0x38, 0x07, 0x1b, 0x21, 0x04, 0xa2, 0x28, 0xc6,
6277 0x1c, 0xf3, 0x2c, 0x8a, 0x85, 0x92, 0x30, 0x56,
6278 0x26, 0x7f, 0x52, 0x1e, 0xda, 0x43, 0xbc, 0x7d,
6279 0x59, 0x8c, 0xc3, 0xb1, 0x4c, 0xb3, 0x6f, 0xa2,
6280 0x59, 0x97, 0x73, 0xdf, 0x58, 0x0c, 0x9f, 0x01,
6281 0xcb, 0x15, 0x78, 0x2c, 0xc6, 0xa9, 0xa5, 0x39,
6282 0x9f, 0xf1, 0xac, 0xcf, 0x48, 0xfa, 0xf3, 0x88,
6283 0x47, 0x54, 0xee, 0xfd, 0x1b, 0xcd, 0x06, 0xbe,
6284 0xf8, 0x7b, 0xbf, 0xcf, 0x1d, 0x97, 0x94, 0xd2,
6285 0x3f, 0xc8, 0x0b, 0xa7, 0x13, 0x2b, 0xb7, 0xf3,
6286 0xfc, 0xf3, 0xcf, 0xbf, 0xf9, 0xc4, 0x13, 0x4f,
6287 0xfc, 0x08, 0x63, 0xec, 0xb8, 0x5b, 0xd5, 0xef,
6288 0xe1, 0xed, 0xb7, 0xdf, 0xc1, 0x3d, 0xf7, 0x9c,
6289 0x81, 0xac, 0x28, 0xb1, 0x46, 0xc5, 0xa4, 0x40,
6290 0x3f, 0x1e, 0x63, 0x2c, 0x13, 0xe8, 0xb3, 0xa8,
6291 0xec, 0xf1, 0x56, 0x28, 0x58, 0xdc, 0xab, 0xcf,
6292 0xa4, 0x72, 0xc7, 0x06, 0x5d, 0x20, 0xe8, 0xd3,
6293 0x68, 0x6c, 0x69, 0xcf, 0x83, 0x45, 0x3c, 0xd3,
6294 0xac, 0x24, 0xc4, 0xc0, 0xd8, 0x74, 0x41, 0x6f,
6295 0xcb, 0xf6, 0xf6, 0x36, 0xfe, 0xf9, 0x3f, 0xfd,
6296 0xbf, 0xb0, 0xb3, 0xb3, 0xcb, 0xdb, 0xe1, 0xcf,
6297 0xbe, 0xf6, 0xb5, 0xaf, 0xfd, 0xfd, 0x99, 0x27,
6298 0x00, 0x00, 0x78, 0xfc, 0xf1, 0xc7, 0xaf, 0x00,
6299 0xf8, 0x19, 0x5b, 0xcf, 0xb1, 0xc1, 0xd9, 0x6a,
6300 0xb5, 0x70, 0xe9, 0xd2, 0xcb, 0x58, 0x5b, 0x5b,
6301 0xc3, 0xf2, 0xf2, 0x32, 0x24, 0x51, 0x9c, 0x3a,
6302 0xe8, 0x13, 0x3b, 0xa7, 0xd2, 0xf8, 0x0c, 0x32,
6303 0x45, 0x34, 0xb2, 0x74, 0x2a, 0x7b, 0xd6, 0x38,
6304 0xf4, 0xd4, 0xa0, 0xe7, 0xa3, 0x8b, 0xa5, 0x21,
6305 0xa0, 0xc0, 0x1d, 0xa3, 0xef, 0x73, 0x98, 0xe9,
6306 0x13, 0xef, 0x7c, 0x58, 0x0c, 0x67, 0x5f, 0xfe,
6307 0xa0, 0x07, 0x80, 0x76, 0xab, 0x8d, 0x3f, 0xfd,
6308 0xc6, 0xf3, 0xf8, 0xbd, 0xff, 0xe7, 0x8b, 0xa8,
6309 0xd7, 0x1b, 0xbc, 0x4d, 0x28, 0x80, 0x9f, 0xbc,
6310 0x72, 0xe5, 0xca, 0x7b, 0xb9, 0x69, 0xea, 0x98,
6311 0xb0, 0x3c, 0xf3, 0xcc, 0x33, 0xbf, 0xc6, 0x18,
6312 0xfb, 0x5f, 0x83, 0x06, 0xdc, 0xd1, 0xa3, 0x47,
6313 0x71, 0xfe, 0xfc, 0xfd, 0x38, 0x72, 0xe4, 0xc8,
6314 0x28, 0x52, 0x30, 0x8e, 0x0d, 0xca, 0xb8, 0xb6,
6315 0x1d, 0xc7, 0xe6, 0xf3, 0x56, 0x59, 0x61, 0x9c,
6316 0xd9, 0x34, 0x68, 0x70, 0x33, 0xe6, 0x7b, 0x1f,
6317 0xa6, 0xea, 0xb2, 0xd8, 0x79, 0x0e, 0xcc, 0xf5,
6318 0x44, 0x9d, 0x9f, 0x8f, 0xbe, 0xa1, 0x21, 0xf0,
6319 0xf2, 0x5c, 0x13, 0xf7, 0x77, 0x22, 0xae, 0xd3,
6320 0x7d, 0x7d, 0x2c, 0x84, 0x83, 0x78, 0x95, 0x6b,
6321 0xc3, 0x87, 0xb4, 0x2f, 0xc1, 0x2b, 0xe4, 0x19,
6322 0x44, 0xdd, 0x6f, 0x16, 0xa5, 0xde, 0x3b, 0x8f,
6323 0xcd, 0x28, 0x1f, 0x62, 0x8c, 0x05, 0xfe, 0x96,
6324 0x75, 0xab, 0x59, 0x34, 0x78, 0x63, 0xdc, 0xab,
6325 0xb0, 0xb1, 0x1b, 0x66, 0x8e, 0xf4, 0xfb, 0x7d,
6326 0x5c, 0xbd, 0x7a, 0x0d, 0x97, 0x5e, 0xba, 0x84,
6327 0x76, 0xbb, 0x1d, 0x06, 0xa7, 0xbf, 0xf7, 0xd5,
6328 0xaf, 0x7e, 0xf5, 0xb3, 0x79, 0xe2, 0x53, 0x9a,
6329 0x34, 0x01, 0xac, 0xac, 0xac, 0xfc, 0x6a, 0xbd,
6330 0x5e, 0x3f, 0xcd, 0x18, 0x7b, 0x9a, 0x37, 0x60,
6331 0x6f, 0xdc, 0xb8, 0x81, 0xeb, 0xd7, 0xaf, 0x43,
6332 0x51, 0x14, 0xac, 0xae, 0xae, 0x42, 0xd3, 0x34,
6333 0x5e, 0xf2, 0x03, 0x77, 0x90, 0x33, 0x96, 0x0c,
6334 0x7c, 0x61, 0xdb, 0x07, 0x6d, 0x13, 0x36, 0x33,
6335 0x06, 0x1d, 0x2f, 0xea, 0xb7, 0xe3, 0x9e, 0x73,
6336 0x9a, 0x6b, 0x8a, 0x9a, 0xc9, 0x83, 0xb6, 0x09,
6337 0xfb, 0x2c, 0xce, 0x71, 0x79, 0xc7, 0xa1, 0x94,
6338 0xc6, 0xda, 0x3e, 0xcd, 0x75, 0x7b, 0x8f, 0x9d,
6339 0xe6, 0x9a, 0x92, 0x3c, 0xd3, 0xbc, 0x7d, 0x48,
6340 0x8c, 0x31, 0x0c, 0x06, 0x03, 0xf4, 0xfb, 0x7d,
6341 0x34, 0x1a, 0x8d, 0x38, 0xfb, 0x7f, 0x21, 0x6f,
6342 0xf0, 0x4f, 0x45, 0x03, 0x00, 0x80, 0xa7, 0x9f,
6343 0x7e, 0x5a, 0xdc, 0xdc, 0xdc, 0xfc, 0x3f, 0x00,
6344 0xfc, 0x72, 0x56, 0x10, 0xe4, 0x05, 0xf6, 0x49,
6345 0xec, 0x93, 0x17, 0xd0, 0x8b, 0x6b, 0x9a, 0x8d,
6346 0x6b, 0x9a, 0x21, 0xf9, 0xec, 0xd2, 0xd2, 0xd2,
6347 0xdf, 0xff, 0xd2, 0x97, 0xbe, 0x64, 0xce, 0x25,
6348 0x01, 0xd8, 0xf2, 0x99, 0xcf, 0x7c, 0xe6, 0xaf,
6349 0x11, 0x42, 0xfe, 0x4f, 0x00, 0x27, 0xa6, 0xf5,
6350 0xf0, 0x67, 0x79, 0xf0, 0x4e, 0x8a, 0xf0, 0x8a,
6351 0x6b, 0xca, 0x7e, 0x4d, 0x33, 0x22, 0xef, 0x11,
6352 0x42, 0xfe, 0x97, 0xaf, 0x7c, 0xe5, 0x2b, 0xff,
6353 0x6e, 0x52, 0x3f, 0x40, 0xa6, 0x7d, 0x45, 0x3f,
6354 0xfb, 0xb3, 0x3f, 0xab, 0xad, 0xac, 0xac, 0x7c,
6355 0x9a, 0x52, 0xfa, 0x3f, 0x13, 0x42, 0xee, 0x9e,
6356 0xd4, 0xc3, 0x9f, 0xb5, 0xc1, 0x3b, 0x4b, 0xb3,
6357 0x5d, 0x71, 0x4d, 0x33, 0x0f, 0xfe, 0x37, 0x18,
6358 0x63, 0xbf, 0xd3, 0xeb, 0xf5, 0x7e, 0xe7, 0xb9,
6359 0xe7, 0x9e, 0xeb, 0x4d, 0xf2, 0x87, 0xc8, 0x7e,
6360 0x5e, 0xe5, 0xa7, 0x3f, 0xfd, 0xe9, 0x7b, 0x08,
6361 0x21, 0xff, 0x3d, 0x21, 0xe4, 0x2e, 0x00, 0x47,
6362 0x08, 0x21, 0x12, 0xcf, 0x6e, 0xe4, 0x3c, 0x48,
6363 0xe2, 0xf9, 0x3b, 0x7a, 0x0f, 0x80, 0x38, 0x8e,
6364 0xe1, 0xda, 0xce, 0xf3, 0xde, 0xb5, 0xdd, 0xf0,
6365 0x3d, 0x77, 0x3b, 0xe7, 0x67, 0xce, 0xdf, 0x1a,
6366 0x9e, 0x17, 0x6f, 0x1f, 0xd7, 0x6f, 0x3b, 0xec,
6367 0x4e, 0xe2, 0xb9, 0x1e, 0xdf, 0xbe, 0x84, 0x90,
6368 0x2a, 0x11, 0xc8, 0x3a, 0x18, 0x5b, 0x25, 0x82,
6369 0x50, 0xc5, 0xb0, 0x68, 0x8b, 0xaa, 0xaa, 0x28,
6370 0x95, 0x4a, 0x89, 0x6c, 0xd1, 0x34, 0x76, 0x7b,
6371 0x9a, 0x7d, 0xe2, 0xec, 0x67, 0x18, 0x3a, 0x1a,
6372 0x8d, 0xe6, 0xd0, 0x7c, 0xa7, 0x75, 0xca, 0x68,
6373 0xdd, 0xd4, 0xcd, 0x5d, 0x4a, 0x69, 0x93, 0x10,
6374 0xc2, 0x78, 0xde, 0x31, 0xfb, 0x73, 0x4a, 0x29,
6375 0xf7, 0x3d, 0x67, 0x1f, 0x66, 0xef, 0x67, 0x3f,
6376 0x5b, 0xef, 0x7b, 0xcf, 0x3e, 0xcc, 0xfb, 0x5b,
6377 0xde, 0xe3, 0x70, 0x7e, 0x87, 0xb7, 0x4f, 0xe0,
6378 0x67, 0x9e, 0x63, 0x04, 0xde, 0x1e, 0x00, 0x5b,
6379 0x94, 0xd2, 0x37, 0x25, 0x49, 0xfa, 0xea, 0x1f,
6380 0xfe, 0xe1, 0x1f, 0xbe, 0x31, 0x2d, 0x0c, 0x12,
6381 0xcc, 0x97, 0x10, 0xc7, 0x4b, 0xc8, 0xf8, 0x7f,
6382 0x9c, 0xcf, 0x78, 0xdf, 0xc7, 0xf9, 0x2e, 0xf6,
6383 0x4b, 0x92, 0x24, 0xf1, 0x9e, 0xb3, 0xf7, 0x3c,
6384 0x70, 0xf8, 0xc8, 0xe1, 0x8f, 0x56, 0xca, 0xa5,
6385 0x8f, 0x0b, 0x82, 0x78, 0x3b, 0xef, 0xc2, 0x37,
6386 0x37, 0x37, 0x70, 0xec, 0xd8, 0x31, 0xcc, 0xab,
6387 0x34, 0x1a, 0x0d, 0xbc, 0xf6, 0xda, 0xeb, 0x7e,
6388 0x67, 0x9e, 0x49, 0x6f, 0xb4, 0xdb, 0x9d, 0xaf,
6389 0x6f, 0x6f, 0x6d, 0x7f, 0xe3, 0xf5, 0xd7, 0x5f,
6390 0xbf, 0x64, 0x18, 0xc6, 0xb0, 0x4f, 0x76, 0xac,
6391 0x17, 0xcd, 0xb8, 0x1d, 0x8d, 0xd8, 0x26, 0xce,
6392 0x67, 0x49, 0xfe, 0x9f, 0x49, 0x40, 0x1d, 0x04,
6393 0xf0, 0x27, 0xdd, 0x46, 0x48, 0x08, 0xfa, 0xc4,
6394 0x64, 0x70, 0xec, 0xe4, 0xb1, 0x8d, 0x3b, 0x4f,
6395 0xdd, 0xf9, 0x97, 0x97, 0x97, 0x97, 0xfe, 0x92,
6396 0x20, 0x08, 0x87, 0xa3, 0x2e, 0xfe, 0xd8, 0xb1,
6397 0x0d, 0x1c, 0x3f, 0x7e, 0x7c, 0xe2, 0x37, 0x79,
6398 0x52, 0x1a, 0x71, 0xa3, 0xd1, 0xc0, 0xab, 0xaf,
6399 0xbe, 0x16, 0xba, 0x8d, 0x69, 0xd2, 0xad, 0x76,
6400 0xab, 0xf9, 0x95, 0x37, 0xaf, 0xbc, 0xfd, 0xd5,
6401 0x6b, 0xd7, 0xae, 0xdd, 0x48, 0x09, 0xf6, 0xa8,
6402 0x6d, 0x69, 0x42, 0x22, 0xc8, 0x4a, 0x02, 0xde,
6403 0xef, 0x0a, 0x02, 0x48, 0x29, 0x42, 0x82, 0x99,
6404 0x3a, 0xcb, 0xff, 0x69, 0x34, 0x85, 0xd8, 0xdf,
6405 0x5d, 0x78, 0xf0, 0xc2, 0xa3, 0x47, 0x6f, 0xbf,
6406 0xed, 0xc7, 0x65, 0x45, 0x79, 0x94, 0x24, 0xe8,
6407 0x83, 0x7d, 0xec, 0xd8, 0x26, 0x4e, 0x9c, 0x38,
6408 0x8e, 0x79, 0x12, 0x27, 0x99, 0xd4, 0x1b, 0x0d,
6409 0xbc, 0xfa, 0xfd, 0x57, 0xe3, 0x9a, 0x17, 0x4c,
6410 0x1f, 0x0c, 0xbe, 0x7d, 0xe3, 0xe6, 0xad, 0x7f,
6411 0x7d, 0xe9, 0xc5, 0x4b, 0xff, 0x35, 0xc7, 0x59,
6412 0x3e, 0x2d, 0x68, 0x69, 0x8e, 0x04, 0x30, 0x53,
6413 0x24, 0x20, 0xcd, 0xc9, 0x58, 0x22, 0x53, 0x7a,
6414 0xe5, 0x61, 0x36, 0xf8, 0xbe, 0x93, 0x24, 0x49,
6415 0x7c, 0xe8, 0x43, 0x0f, 0xfd, 0x85, 0x43, 0x87,
6416 0xd6, 0x7f, 0x42, 0x92, 0xa4, 0xd3, 0x49, 0x2f,
6417 0x5e, 0x56, 0x64, 0xac, 0xae, 0xac, 0x82, 0x10,
6418 0x61, 0xae, 0x08, 0xc0, 0x49, 0x6f, 0xa2, 0x20,
6419 0x24, 0xd8, 0x8f, 0x10, 0x45, 0x55, 0x3f, 0x7c,
6420 0xf2, 0xe4, 0x89, 0x0f, 0x6f, 0x6e, 0x6e, 0x5c,
6421 0xd9, 0xde, 0xde, 0xf9, 0x57, 0xdf, 0xf9, 0xf6,
6422 0x77, 0xfe, 0x7f, 0x0e, 0xb0, 0xbc, 0x13, 0x04,
6423 0xef, 0x3b, 0x21, 0x64, 0x7b, 0x1a, 0xf0, 0x3f,
6424 0x89, 0x98, 0x28, 0x93, 0xfc, 0xef, 0xfd, 0x8e,
6425 0xcd, 0x1a, 0xb0, 0xe6, 0x55, 0xf5, 0xcf, 0x4b,
6426 0x23, 0x10, 0x72, 0x36, 0x23, 0x5c, 0x9f, 0x9f,
6427 0x7f, 0xe0, 0xfc, 0x23, 0xc7, 0x8e, 0x6d, 0x7e,
6428 0x5a, 0x92, 0xa4, 0x33, 0x09, 0x00, 0x80, 0x23,
6429 0x47, 0x0e, 0xe3, 0xc4, 0xc9, 0x13, 0xd8, 0xd8,
6430 0xd8, 0xc0, 0xe1, 0xc3, 0x87, 0x50, 0xdb, 0xdd,
6431 0xc3, 0xd6, 0xd6, 0x76, 0x7e, 0xb3, 0xf3, 0x94,
6432 0x1f, 0x62, 0xa5, 0x5c, 0x86, 0x5a, 0xd2, 0x70,
6433 0xfd, 0xda, 0x75, 0xbc, 0xf7, 0xde, 0xfb, 0xd8,
6434 0xde, 0xde, 0x4e, 0xe4, 0x81, 0x37, 0x74, 0xe3,
6435 0xb5, 0xab, 0x1f, 0x7c, 0xf0, 0xcf, 0x5f, 0x7e,
6436 0xf9, 0xf2, 0xf7, 0x72, 0x9a, 0xe5, 0xa3, 0xb6,
6437 0x49, 0xab, 0x11, 0xc4, 0xfd, 0xae, 0x20, 0x80,
6438 0x14, 0xaa, 0xbf, 0x30, 0x01, 0x42, 0x10, 0x30,
6439 0x01, 0xa7, 0xe2, 0xb1, 0x93, 0xc7, 0x36, 0xce,
6440 0x9d, 0x3d, 0xfb, 0x8c, 0xa2, 0xaa, 0x4f, 0xc6,
6441 0xb9, 0x48, 0x51, 0x14, 0xb1, 0xb1, 0x71, 0x14,
6442 0x27, 0xef, 0x38, 0x89, 0x93, 0x27, 0x4f, 0xa2,
6443 0x5c, 0x76, 0x7b, 0xfc, 0x77, 0x77, 0x76, 0xb1,
6444 0xbd, 0xbd, 0x3d, 0x93, 0x0f, 0x28, 0x0e, 0x8e,
6445 0xcb, 0x95, 0xb2, 0xcb, 0x84, 0xe9, 0xb4, 0x3b,
6446 0x78, 0xef, 0xfd, 0xf7, 0xf0, 0xce, 0x3b, 0xef,
6447 0xe3, 0xc6, 0xf5, 0xeb, 0xb1, 0xa2, 0x06, 0x01,
6448 0xa0, 0xdf, 0xeb, 0xfd, 0xe9, 0xf7, 0x2f, 0xbf,
6449 0xf6, 0x9b, 0x57, 0xaf, 0x5e, 0xbd, 0x3e, 0x61,
6450 0xa7, 0x1d, 0xcd, 0x19, 0xf0, 0x33, 0x69, 0x0a,
6451 0xcc, 0x3a, 0x01, 0x64, 0x01, 0x7a, 0x52, 0xd0,
6452 0xe7, 0xe6, 0x47, 0x78, 0xec, 0x89, 0x47, 0xff,
6453 0xca, 0xa1, 0x43, 0x87, 0x7f, 0x91, 0x10, 0x52,
6454 0x89, 0xba, 0xc0, 0xc3, 0x87, 0x0f, 0xe3, 0xcc,
6455 0x99, 0xd3, 0xb8, 0xeb, 0xf4, 0x5d, 0x41, 0x6d,
6456 0xa0, 0x00, 0x00, 0x7b, 0xbb, 0xbb, 0xd8, 0xde,
6457 0xde, 0x99, 0xdb, 0x55, 0x80, 0x72, 0xb9, 0x8c,
6458 0x63, 0xc7, 0xf9, 0xab, 0x18, 0xfd, 0x7e, 0x1f,
6459 0x6f, 0xbe, 0xf9, 0x16, 0xae, 0xbc, 0x71, 0x25,
6460 0xd6, 0x35, 0x32, 0xca, 0xda, 0xdb, 0x5b, 0x5b,
6461 0xbf, 0xf9, 0xe7, 0x7f, 0xfe, 0x5f, 0xbf, 0x96,
6462 0xb3, 0xbd, 0x1e, 0x87, 0x00, 0xd2, 0x00, 0x3e,
6463 0x68, 0x9f, 0x82, 0x00, 0x52, 0xce, 0xfe, 0x69,
6464 0x48, 0x80, 0xb7, 0x4f, 0xae, 0x1a, 0xc5, 0xca,
6465 0x4a, 0xa5, 0xfc, 0xe8, 0x87, 0x1f, 0xfb, 0xdf,
6466 0x54, 0x4d, 0x7b, 0x2a, 0x4a, 0xc5, 0xbf, 0xf3,
6467 0xce, 0x53, 0xb8, 0xf0, 0xc0, 0x05, 0x1c, 0x3a,
6468 0xb4, 0x1e, 0xeb, 0x46, 0xec, 0xed, 0xee, 0x05,
6469 0xa5, 0x87, 0xce, 0x85, 0x94, 0xca, 0x25, 0x1c,
6470 0x3b, 0xb6, 0x19, 0xb9, 0xdd, 0xce, 0xf6, 0x2e,
6471 0x5e, 0x7a, 0xe9, 0x25, 0xbc, 0xfd, 0xf6, 0x3b,
6472 0x91, 0xdb, 0xf6, 0xba, 0xbd, 0x3f, 0xfa, 0xd6,
6473 0xf3, 0x7f, 0xf6, 0x6b, 0xed, 0x76, 0xbb, 0x93,
6474 0x93, 0x43, 0x8f, 0xf7, 0x5d, 0x56, 0xc0, 0x47,
6475 0xfd, 0x7e, 0x41, 0x00, 0x29, 0x67, 0xff, 0xac,
6476 0x24, 0x20, 0x20, 0x47, 0x33, 0x62, 0x73, 0x73,
6477 0xf3, 0xb6, 0x0b, 0x0f, 0x9d, 0xff, 0xac, 0x24,
6478 0x06, 0xdb, 0xfa, 0x82, 0x20, 0xe0, 0xcc, 0x99,
6479 0xbb, 0xf1, 0xc0, 0x03, 0xe7, 0xb1, 0x5c, 0x4d,
6480 0x56, 0xd5, 0xb9, 0xb6, 0x57, 0xc3, 0xee, 0xee,
6481 0xfe, 0x13, 0x40, 0xda, 0x65, 0xc2, 0x52, 0xb9,
6482 0x84, 0xcd, 0xcd, 0x8d, 0xd8, 0xdb, 0xd7, 0xeb,
6483 0x0d, 0x5c, 0x7a, 0xe9, 0x12, 0xae, 0x5c, 0x79,
6484 0x33, 0xd4, 0x3c, 0x30, 0x74, 0xe3, 0xb5, 0x17,
6485 0x5e, 0x7a, 0xf1, 0xef, 0xdd, 0xbc, 0x76, 0x73,
6486 0x3b, 0xe3, 0x8c, 0xcd, 0xfb, 0x2e, 0x4f, 0xf0,
6487 0xcf, 0xa4, 0x2f, 0x60, 0xd6, 0x09, 0x40, 0xc8,
6488 0x01, 0xe0, 0x49, 0x81, 0x9f, 0x98, 0x10, 0x4e,
6489 0x9d, 0x3a, 0x75, 0xf2, 0xbe, 0xfb, 0xcf, 0xfe,
6490 0xb6, 0x20, 0x08, 0x47, 0x82, 0x2e, 0xe6, 0xd8,
6491 0xb1, 0x4d, 0x3c, 0xf6, 0xf8, 0x87, 0xb1, 0xba,
6492 0xba, 0x9a, 0xea, 0x66, 0xd4, 0xf7, 0x6a, 0xd8,
6493 0xdd, 0xdb, 0xc3, 0xbc, 0x4a, 0xa9, 0xa4, 0xe1,
6494 0xe8, 0xc6, 0x46, 0xe2, 0xfd, 0x76, 0xf7, 0xf6,
6495 0xf0, 0xe7, 0xdf, 0xfa, 0x73, 0x5c, 0xbb, 0x76,
6496 0x3d, 0x70, 0x1b, 0xd3, 0xa4, 0xb7, 0x5e, 0xb9,
6497 0xfc, 0xca, 0x67, 0xde, 0x7f, 0xe7, 0xfd, 0x0f,
6498 0x32, 0xd8, 0xe4, 0x51, 0xdb, 0xd1, 0x09, 0x11,
6499 0xc1, 0xbe, 0x8a, 0x38, 0xc3, 0xe0, 0x27, 0x33,
6500 0x48, 0x02, 0x3e, 0x42, 0x38, 0x72, 0xe4, 0xc8,
6501 0xda, 0x03, 0x0f, 0x3d, 0xf0, 0xdb, 0xa2, 0x28,
6502 0x70, 0x47, 0xb7, 0xaa, 0x2a, 0xf8, 0xd8, 0xc7,
6503 0x3f, 0x8a, 0x47, 0x1f, 0xfd, 0x01, 0x68, 0x9a,
6504 0x96, 0xfa, 0x86, 0xf4, 0xfb, 0x7d, 0xf4, 0x7a,
6505 0x7d, 0x10, 0x42, 0x22, 0x5e, 0x88, 0xb1, 0xcd,
6506 0xf4, 0x5f, 0x92, 0x2c, 0x63, 0x69, 0x69, 0x29,
6507 0x05, 0x71, 0x94, 0x70, 0xf7, 0x99, 0xbb, 0xb1,
6508 0x5c, 0x5d, 0xc6, 0xf5, 0x6b, 0x37, 0x60, 0x52,
6509 0x93, 0xa3, 0x59, 0x91, 0xca, 0xe1, 0xc3, 0x87,
6510 0x1f, 0xab, 0xed, 0xd5, 0xff, 0x73, 0xa7, 0xd3,
6511 0xe9, 0x05, 0x2c, 0x76, 0xb0, 0x98, 0x8b, 0x22,
6512 0xde, 0xf7, 0x2c, 0xe6, 0x76, 0x69, 0xdf, 0x17,
6513 0x04, 0x90, 0x51, 0xfd, 0x4f, 0xf3, 0x3e, 0x33,
6514 0xf0, 0x01, 0x10, 0x4d, 0xd3, 0x94, 0xc7, 0x3f,
6515 0xf2, 0xd8, 0xb3, 0x92, 0x24, 0xdd, 0xed, 0xb5,
6516 0xf1, 0x09, 0x21, 0xd8, 0xdc, 0xdc, 0xc0, 0x5f,
6517 0xfc, 0x8b, 0x3f, 0x8c, 0xdb, 0x6e, 0x3b, 0x32,
6518 0xfa, 0x9c, 0x31, 0x86, 0x04, 0xf1, 0x3f, 0x0e,
6519 0x02, 0xb0, 0x72, 0xc7, 0xa7, 0x0a, 0x5c, 0xe4,
6520 0x47, 0x26, 0x72, 0x0a, 0x02, 0xb0, 0xef, 0x15,
6521 0x63, 0x0c, 0xeb, 0xeb, 0x6b, 0x38, 0x7d, 0xfa,
6522 0x34, 0x76, 0x76, 0x77, 0xd1, 0x6e, 0xb7, 0x7d,
6523 0xf7, 0x50, 0x10, 0x84, 0x95, 0xdb, 0x8f, 0xde,
6524 0x7e, 0xfe, 0xea, 0x07, 0x57, 0xff, 0x93, 0x23,
6525 0x9c, 0x38, 0x4f, 0x80, 0x2e, 0x24, 0x11, 0xcc,
6526 0x32, 0x01, 0xcc, 0x22, 0xf8, 0x5d, 0xef, 0x9f,
6527 0xfc, 0xe8, 0x13, 0x9f, 0x2a, 0x95, 0x4a, 0x3f,
6528 0xec, 0x04, 0xbe, 0x28, 0x88, 0x20, 0x84, 0xe0,
6529 0xc1, 0x87, 0x1f, 0xc0, 0x13, 0x4f, 0x3c, 0x0e,
6530 0x59, 0x96, 0x5d, 0xeb, 0xdd, 0x69, 0xc0, 0x0f,
6531 0x00, 0x83, 0x7e, 0x1f, 0x83, 0x69, 0x13, 0x40,
6532 0x9e, 0x1a, 0x80, 0x24, 0xa1, 0xb2, 0x54, 0x49,
6533 0x36, 0x08, 0x86, 0xe0, 0x67, 0xd4, 0x2a, 0x1a,
6534 0x22, 0xcb, 0x12, 0x4e, 0x9f, 0xbe, 0x0b, 0x82,
6535 0x20, 0xe0, 0xd6, 0xcd, 0x2d, 0x08, 0x44, 0x70,
6536 0x41, 0x48, 0x14, 0x85, 0xdb, 0x0f, 0x1d, 0x3e,
6537 0x44, 0xdf, 0x7b, 0xf7, 0xbd, 0xef, 0xe5, 0x0c,
6538 0x50, 0xb6, 0xa8, 0x24, 0x20, 0xcc, 0x30, 0x01,
6539 0x4c, 0xf2, 0x7d, 0x96, 0xfd, 0x09, 0x00, 0x72,
6540 0xc7, 0x1d, 0x77, 0x6c, 0x2e, 0x2d, 0x2d, 0xfd,
6541 0x84, 0xf3, 0x80, 0x92, 0x24, 0x42, 0x10, 0x09,
6542 0xee, 0x3f, 0x7f, 0x1f, 0xce, 0x9f, 0xbf, 0x7f,
6543 0x54, 0xe2, 0x9c, 0x31, 0xcb, 0x01, 0x98, 0x16,
6544 0xfc, 0x63, 0xad, 0x42, 0x70, 0xbc, 0xe6, 0x8c,
6545 0x04, 0x04, 0x92, 0xfa, 0xba, 0xed, 0xae, 0xd2,
6546 0xd6, 0xbd, 0x64, 0x38, 0x7f, 0xfe, 0x7e, 0x9c,
6547 0xbb, 0xff, 0x5e, 0x08, 0x22, 0x81, 0x24, 0xbb,
6548 0xe7, 0xb0, 0x6a, 0x75, 0xf9, 0xaf, 0x1f, 0x3f,
6549 0x7e, 0xfc, 0xe8, 0x8c, 0x8d, 0x99, 0x99, 0xf5,
6550 0xb7, 0xcd, 0x57, 0x6c, 0xe9, 0x6c, 0x80, 0x1f,
6551 0x00, 0x70, 0xd7, 0x99, 0xbb, 0xfe, 0x26, 0x21,
6552 0x44, 0x75, 0x7a, 0xf8, 0x05, 0x41, 0xc4, 0xc9,
6553 0x3b, 0xee, 0xc0, 0x85, 0x0b, 0x17, 0x40, 0x4d,
6554 0x0a, 0x6a, 0x5a, 0xfd, 0xde, 0x45, 0x31, 0x9f,
6555 0xdb, 0xec, 0x06, 0x95, 0x90, 0xe3, 0x6b, 0x3a,
6556 0x24, 0x90, 0x69, 0xa0, 0x0a, 0xd6, 0x6c, 0x6f,
6557 0xdf, 0xd7, 0x07, 0x1e, 0x78, 0x10, 0x27, 0x4e,
6558 0x9c, 0x84, 0x20, 0x88, 0x10, 0x04, 0xd1, 0x79,
6559 0x8f, 0xb4, 0x33, 0x67, 0xcf, 0xfc, 0x4c, 0xce,
6560 0x13, 0x47, 0xde, 0x60, 0x9f, 0x19, 0x62, 0x90,
6561 0xe6, 0x14, 0xdc, 0x79, 0x1d, 0x23, 0xd5, 0xc3,
6562 0x5c, 0x5a, 0x5a, 0x2a, 0x95, 0xb4, 0xd2, 0x27,
6563 0xdd, 0xb3, 0xbf, 0x84, 0xa5, 0xa5, 0x25, 0x7c,
6564 0xe8, 0x91, 0x87, 0x61, 0x3a, 0x8a, 0x53, 0xca,
6565 0x92, 0x9c, 0x79, 0xf0, 0x8f, 0xc0, 0x2f, 0x90,
6566 0x29, 0xdc, 0xf2, 0x8c, 0x12, 0xb0, 0x4e, 0x48,
6567 0x32, 0xfe, 0x86, 0xdd, 0x2f, 0x42, 0x1f, 0xb6,
6568 0x8f, 0x03, 0x80, 0x47, 0x1e, 0x7d, 0x18, 0xb5,
6569 0x5a, 0x0d, 0xed, 0x56, 0x1b, 0xfd, 0xc1, 0xd8,
6570 0x39, 0x58, 0xd2, 0xb4, 0x1f, 0x5a, 0x5a, 0x5a,
6571 0xfa, 0xcd, 0x56, 0xab, 0xd5, 0x75, 0xa8, 0xd8,
6572 0x24, 0xe1, 0x7b, 0xde, 0x4d, 0x62, 0x29, 0x6f,
6573 0x2e, 0xcb, 0x78, 0x8c, 0x42, 0x03, 0xc8, 0x71,
6574 0x14, 0x93, 0xac, 0xc7, 0xbf, 0xef, 0xfe, 0xfb,
6575 0x3e, 0x46, 0x08, 0x5c, 0xb1, 0xba, 0xa2, 0x24,
6576 0xe2, 0xdc, 0xfd, 0xf7, 0x81, 0x80, 0xb8, 0x66,
6577 0x7f, 0x41, 0xc8, 0x6b, 0xf6, 0x07, 0x04, 0x42,
6578 0x66, 0xff, 0x25, 0x08, 0xdc, 0x57, 0x1e, 0xe4,
6579 0x35, 0x32, 0x05, 0x86, 0xf7, 0x97, 0x40, 0xc0,
6580 0x7d, 0xe7, 0xee, 0x1b, 0x7d, 0xee, 0x20, 0x8b,
6581 0xca, 0xbd, 0xf7, 0xdd, 0xfb, 0x64, 0x5e, 0xcf,
6582 0x7b, 0x42, 0x33, 0xf8, 0x4c, 0x98, 0x04, 0xd2,
6583 0x01, 0x01, 0x7d, 0xae, 0xc7, 0x2f, 0x97, 0xcb,
6584 0x67, 0x7d, 0x9f, 0x95, 0x34, 0xdc, 0x76, 0xdb,
6585 0x11, 0x30, 0x66, 0x8e, 0x66, 0x2c, 0x45, 0x51,
6586 0x21, 0x89, 0x92, 0xaf, 0x4c, 0x34, 0xbf, 0xfd,
6587 0x59, 0xc4, 0x83, 0x92, 0x64, 0x68, 0x5a, 0x29,
6588 0x87, 0x4b, 0xda, 0x9f, 0x09, 0x88, 0x57, 0xe9,
6589 0x39, 0xed, 0x03, 0xb1, 0xef, 0x31, 0x00, 0xdc,
6590 0x7e, 0xf4, 0x08, 0x4a, 0x65, 0x0d, 0xdd, 0x6e,
6591 0xd7, 0xa3, 0xa5, 0x55, 0xee, 0x03, 0xf0, 0x9f,
6592 0x73, 0x1c, 0x07, 0x0c, 0x0b, 0x28, 0xf3, 0x4e,
6593 0x00, 0x6c, 0xc2, 0x24, 0xe0, 0x3c, 0xfe, 0xe8,
6594 0xbd, 0x24, 0xf9, 0xab, 0xf6, 0xac, 0xae, 0xae,
6595 0x83, 0x31, 0xc0, 0x34, 0x99, 0x6b, 0x73, 0x59,
6596 0x91, 0xb9, 0x7d, 0x2a, 0x4c, 0xd3, 0x84, 0x61,
6597 0xe8, 0xb1, 0x33, 0xe2, 0x54, 0x4d, 0x85, 0xaa,
6598 0xa9, 0x58, 0x74, 0x21, 0x84, 0x58, 0xde, 0x7d,
6599 0xd7, 0xfd, 0x72, 0x96, 0x1a, 0x67, 0x8e, 0x7b,
6600 0x6c, 0x61, 0x73, 0x75, 0x75, 0x0d, 0xbb, 0x3b,
6601 0x7b, 0x5e, 0xc2, 0x39, 0x9a, 0x23, 0xe3, 0xb1,
6602 0x94, 0xdf, 0x15, 0x04, 0x30, 0x45, 0x50, 0x73,
6603 0xc1, 0x9a, 0x61, 0xbb, 0x40, 0x11, 0x05, 0xd1,
6604 0x17, 0xc0, 0xaf, 0xaa, 0x32, 0xa8, 0x27, 0x48,
6605 0xa5, 0xd5, 0x6a, 0x61, 0x65, 0x65, 0x05, 0x22,
6606 0xa7, 0xf3, 0x11, 0x18, 0x03, 0x63, 0x2a, 0xba,
6607 0xbd, 0x2e, 0x0c, 0xc3, 0xc0, 0x41, 0x17, 0x3b,
6608 0x56, 0x60, 0xec, 0xd0, 0x63, 0x3e, 0xd7, 0xc2,
6609 0x60, 0xd0, 0x87, 0xae, 0x0f, 0x7c, 0xda, 0x93,
6610 0xa2, 0x28, 0xb1, 0x9e, 0x51, 0x0c, 0x00, 0x87,
6611 0x2d, 0xcf, 0xe5, 0xb1, 0x74, 0x37, 0x73, 0xc1,
6612 0x40, 0xb3, 0xae, 0x01, 0x04, 0x81, 0x35, 0x09,
6613 0x70, 0xb3, 0x12, 0x83, 0xef, 0x3d, 0x65, 0x66,
6614 0x1d, 0x70, 0xb7, 0x73, 0xee, 0xf5, 0x07, 0x30,
6615 0x3d, 0x1d, 0x71, 0x4c, 0x6a, 0x60, 0x6f, 0x6f,
6616 0x0f, 0x47, 0x6f, 0x3f, 0x3a, 0xec, 0x04, 0xeb,
6617 0x7f, 0xfa, 0x8a, 0xaa, 0x42, 0x1f, 0x0c, 0xd0,
6618 0xe9, 0x74, 0x60, 0x98, 0xc6, 0x81, 0x04, 0xbe,
6619 0xa2, 0xa8, 0x50, 0x39, 0x20, 0x76, 0x4a, 0xb7,
6620 0xd7, 0x45, 0xa7, 0xd3, 0x81, 0x6e, 0xf8, 0x23,
6621 0x01, 0x07, 0xfd, 0xbe, 0xef, 0x33, 0x4a, 0xcd,
6622 0x3a, 0xd2, 0xaf, 0xbd, 0xa7, 0x01, 0xea, 0xcc,
6623 0x47, 0xfd, 0xcd, 0x13, 0x01, 0x24, 0x01, 0x7b,
6624 0x6c, 0xe0, 0x66, 0xd8, 0xc7, 0xf5, 0xde, 0xd0,
6625 0xe9, 0x0d, 0x6f, 0xe6, 0xee, 0xf6, 0xf6, 0xb6,
6626 0x4f, 0x03, 0x00, 0x80, 0x5a, 0xbd, 0x0e, 0x45,
6627 0x51, 0x70, 0xdb, 0x91, 0x23, 0x10, 0x45, 0xfe,
6628 0xed, 0x56, 0x64, 0x05, 0x95, 0xca, 0x12, 0x7a,
6629 0xfd, 0x1e, 0xda, 0xed, 0x16, 0x06, 0x83, 0xc1,
6630 0xc2, 0x03, 0x5f, 0x10, 0x04, 0x94, 0x4a, 0x25,
6631 0x68, 0xaa, 0x36, 0x5a, 0x25, 0xe1, 0x75, 0x79,
6632 0x63, 0x60, 0x68, 0xb5, 0x9a, 0xe8, 0x76, 0xbb,
6633 0x68, 0x36, 0x5b, 0x1c, 0x7f, 0x0a, 0xb8, 0x85,
6634 0x52, 0x0c, 0xd3, 0xbc, 0x9e, 0x10, 0x9c, 0x2c,
6635 0xe1, 0x67, 0x41, 0xe0, 0x9e, 0xab, 0x40, 0xa0,
6636 0x59, 0xd6, 0x00, 0x78, 0x00, 0xcc, 0x04, 0x5c,
6637 0xcf, 0x31, 0xd2, 0x2e, 0x0f, 0x91, 0x5e, 0xbf,
6638 0x73, 0xa5, 0xb2, 0x54, 0x76, 0x9d, 0x6c, 0xa3,
6639 0xde, 0x40, 0xbb, 0xd9, 0x44, 0xb9, 0x52, 0xf1,
6640 0x5c, 0x04, 0xc5, 0xad, 0x5b, 0x37, 0x41, 0xa9,
6641 0x89, 0x8d, 0xa3, 0x1b, 0xd0, 0xd4, 0x52, 0xa0,
6642 0x7d, 0x2b, 0xcb, 0x32, 0x96, 0x97, 0x96, 0x31,
6643 0x18, 0x0c, 0xd0, 0x6a, 0x35, 0xd1, 0xee, 0xb4,
6644 0x67, 0xb9, 0x69, 0x45, 0x2a, 0x51, 0x55, 0x15,
6645 0xe5, 0x52, 0x25, 0x56, 0x5e, 0x84, 0x69, 0x9a,
6646 0xd8, 0xab, 0xed, 0xa1, 0xdb, 0xeb, 0x60, 0x77,
6647 0x6f, 0x97, 0xeb, 0x38, 0x6d, 0x35, 0x5b, 0x68,
6648 0x36, 0x9b, 0x7e, 0x8d, 0xa1, 0xd3, 0xbb, 0x02,
6649 0x77, 0x2c, 0x7f, 0xdc, 0xf7, 0x59, 0xc0, 0x5d,
6650 0x84, 0x02, 0xe7, 0xa5, 0x19, 0xc2, 0x13, 0x79,
6651 0xe7, 0x78, 0x8f, 0x90, 0xf7, 0x24, 0xe6, 0xfb,
6652 0x24, 0xdb, 0xfa, 0xde, 0x77, 0xda, 0xdd, 0x9b,
6653 0xc7, 0x4f, 0x1e, 0xfb, 0x09, 0x02, 0xe2, 0xba,
6654 0x7f, 0xad, 0x76, 0x1b, 0xb7, 0x1f, 0xdd, 0x00,
6655 0x63, 0x70, 0xbd, 0x28, 0x65, 0xe8, 0x74, 0xbb,
6656 0xe8, 0xf7, 0x7b, 0x90, 0x65, 0x09, 0x4b, 0x95,
6657 0x25, 0x88, 0x92, 0x08, 0x51, 0x14, 0x21, 0x0a,
6658 0xc3, 0xbf, 0xc3, 0x97, 0x20, 0x8a, 0x50, 0x14,
6659 0x05, 0x4b, 0x4b, 0xcb, 0x58, 0x5d, 0x5d, 0x85,
6660 0xa2, 0xaa, 0x10, 0x08, 0x81, 0x61, 0x18, 0x73,
6661 0x49, 0x06, 0x84, 0x10, 0x68, 0x9a, 0x86, 0xea,
6662 0x72, 0x15, 0xeb, 0xeb, 0x87, 0x50, 0xad, 0xae,
6663 0x40, 0x55, 0xd5, 0xf1, 0x35, 0xfb, 0xae, 0x5f,
6664 0x80, 0x28, 0x8a, 0xe8, 0xf7, 0xfb, 0xd8, 0xd9,
6665 0xdd, 0x46, 0xbb, 0xd3, 0xc6, 0xf6, 0xf6, 0x2e,
6666 0x4c, 0x83, 0xfa, 0xee, 0x2b, 0x00, 0x7c, 0xf7,
6667 0x85, 0x17, 0xd0, 0xeb, 0xfa, 0x7a, 0x67, 0x0c,
6668 0x5e, 0x7a, 0xf1, 0xd2, 0xff, 0xde, 0xed, 0x76,
6669 0x07, 0x21, 0x60, 0x4f, 0x02, 0xd2, 0x2c, 0xe4,
6670 0x31, 0xd3, 0xa6, 0xc1, 0xbc, 0x99, 0x00, 0x71,
6671 0x66, 0xf7, 0x38, 0x33, 0x79, 0x16, 0x0d, 0x00,
6672 0xbb, 0xbb, 0xbb, 0xf5, 0x41, 0x7f, 0xf0, 0x0d,
6673 0x55, 0x55, 0x3f, 0xe1, 0x32, 0x03, 0xb6, 0x76,
6674 0x70, 0xfd, 0xfa, 0x75, 0x1c, 0x3d, 0xea, 0x2f,
6675 0xed, 0x4f, 0x0d, 0x13, 0x5b, 0x3b, 0x3b, 0xe8,
6676 0x74, 0xbb, 0x68, 0xb7, 0xdb, 0xd8, 0xd8, 0xd8,
6677 0x44, 0xa5, 0x12, 0x90, 0x1c, 0xe3, 0x00, 0xba,
6678 0xaa, 0xa8, 0x58, 0x5f, 0x5d, 0x07, 0x63, 0x0c,
6679 0x9d, 0x6e, 0x07, 0x9d, 0x4e, 0x1b, 0xed, 0x4e,
6680 0x07, 0xbd, 0x5e, 0x77, 0x66, 0x09, 0x41, 0x51,
6681 0x14, 0x94, 0xb4, 0x12, 0x4a, 0xa5, 0x32, 0xca,
6682 0xe5, 0x32, 0x44, 0x41, 0x0c, 0x9c, 0x46, 0xbd,
6683 0x9f, 0xe8, 0xba, 0x8e, 0xed, 0x9d, 0x6d, 0x34,
6684 0x9b, 0x0d, 0xd4, 0x1b, 0x0d, 0xb4, 0xda, 0x6d,
6685 0x7e, 0x70, 0x11, 0x21, 0xb8, 0xf6, 0xde, 0x55,
6686 0xec, 0xed, 0xf8, 0x53, 0xa4, 0x7b, 0xfd, 0xfe,
6687 0x9f, 0xec, 0xec, 0xec, 0x34, 0x23, 0x80, 0x1f,
6688 0x57, 0x33, 0x58, 0xe8, 0x6c, 0xc0, 0x79, 0x33,
6689 0x01, 0x90, 0x45, 0x75, 0xe7, 0xb0, 0x75, 0x9a,
6690 0xe8, 0x30, 0x02, 0x80, 0xbd, 0xff, 0xee, 0x07,
6691 0xff, 0xe2, 0xee, 0x7b, 0x4e, 0x3f, 0x05, 0x4f,
6692 0x30, 0xd5, 0xa5, 0x17, 0x2f, 0x0d, 0x67, 0xbc,
6693 0x65, 0xee, 0x45, 0x35, 0x1b, 0x4d, 0x74, 0xdb,
6694 0x1d, 0xec, 0xd5, 0x6a, 0xd8, 0xdc, 0xd8, 0xc0,
6695 0xe6, 0xc6, 0x31, 0xa8, 0xaa, 0xe6, 0x1b, 0x13,
6696 0x3c, 0x7b, 0x58, 0x51, 0x54, 0xac, 0xae, 0xac,
6697 0xd9, 0x4e, 0x2e, 0x74, 0x7b, 0x5d, 0x74, 0xbb,
6698 0x5d, 0x74, 0xbb, 0x1d, 0x74, 0x7b, 0x5d, 0xf4,
6699 0xfb, 0xfd, 0xa9, 0x93, 0x82, 0x2c, 0x2b, 0xd0,
6700 0x86, 0x5d, 0x8b, 0x34, 0xad, 0x84, 0x92, 0x56,
6701 0x82, 0x24, 0x49, 0xd1, 0x23, 0x9c, 0x79, 0x1d,
6702 0xa6, 0x14, 0x3b, 0x3b, 0xdb, 0xd8, 0xd9, 0xdd,
6703 0x46, 0xb3, 0xd5, 0x42, 0x6d, 0xaf, 0x06, 0xd3,
6704 0x0c, 0xee, 0x85, 0xd9, 0xa8, 0x37, 0xf0, 0xca,
6705 0x2b, 0x97, 0x79, 0xa3, 0xc6, 0x78, 0xef, 0xed,
6706 0xb7, 0xbf, 0x10, 0x01, 0xe8, 0xa4, 0xb3, 0x3a,
6707 0x9b, 0xf0, 0xfb, 0x7d, 0x55, 0xb5, 0x67, 0x56,
6708 0x7b, 0xc4, 0x64, 0xab, 0x02, 0x65, 0x3d, 0x26,
6709 0xf9, 0xc4, 0x27, 0x9f, 0x7a, 0xa6, 0x5c, 0xa9,
6710 0xfc, 0x24, 0xef, 0xe4, 0x2f, 0x5c, 0xb8, 0x1f,
6711 0x87, 0x8e, 0x1c, 0x0e, 0x0d, 0x03, 0x96, 0x64,
6712 0x19, 0x6b, 0x2b, 0x2b, 0x38, 0x7e, 0xec, 0x84,
6713 0xa5, 0x11, 0x94, 0x2b, 0x21, 0x6c, 0xc8, 0x10,
6714 0x31, 0x8d, 0x82, 0x81, 0x61, 0xd0, 0x1f, 0x60,
6715 0xa0, 0xf7, 0x31, 0x18, 0xe8, 0xd0, 0xf5, 0x01,
6716 0x06, 0x83, 0x01, 0x06, 0xfa, 0x00, 0x86, 0x61,
6717 0xc0, 0x34, 0x4d, 0x98, 0xa6, 0xf5, 0x37, 0x2c,
6718 0x10, 0xc9, 0x0e, 0xbb, 0xb5, 0x5e, 0x12, 0x24,
6719 0x51, 0x84, 0x24, 0xcb, 0x50, 0x14, 0x05, 0x8a,
6720 0xac, 0x40, 0x96, 0x64, 0xc8, 0xb2, 0x0c, 0x55,
6721 0xd5, 0x46, 0xab, 0x1b, 0xd1, 0xbc, 0xc3, 0x27,
6722 0x38, 0xc3, 0x30, 0xb0, 0xbd, 0x7d, 0x0b, 0x5b,
6723 0xdb, 0x5b, 0x68, 0x34, 0x9a, 0xa8, 0xd5, 0xf6,
6724 0xa0, 0x87, 0x2c, 0x8b, 0x32, 0xc6, 0xb0, 0xbd,
6725 0xb5, 0x85, 0x97, 0x2f, 0x5d, 0xe6, 0x7e, 0xdf,
6726 0x6a, 0x35, 0xff, 0xe5, 0x1f, 0xff, 0xd1, 0xd7,
6727 0xff, 0x19, 0xf2, 0xa9, 0x0c, 0x94, 0x57, 0xe1,
6728 0x8f, 0xa2, 0x22, 0x50, 0x86, 0xf3, 0x9b, 0x74,
6729 0x5d, 0xc0, 0xd4, 0x04, 0xb0, 0x72, 0x68, 0xa5,
6730 0xfa, 0xc4, 0x63, 0x8f, 0x7f, 0x51, 0x14, 0xc5,
6731 0x13, 0xbc, 0x93, 0xbf, 0xf7, 0xbe, 0xb3, 0x38,
6732 0x7a, 0xf4, 0xb6, 0xc8, 0xc7, 0x2c, 0x8a, 0x22,
6733 0xaa, 0xd5, 0x65, 0x6c, 0x6e, 0x6c, 0x62, 0x73,
6734 0xf3, 0x18, 0x0e, 0x1f, 0x3a, 0xc2, 0x8d, 0x20,
6735 0x8c, 0x9e, 0x54, 0xe7, 0x63, 0x7b, 0xc6, 0x18,
6736 0xea, 0x8d, 0x3a, 0xb6, 0x77, 0xb6, 0xb0, 0xb3,
6737 0xbd, 0x8d, 0xbd, 0x7a, 0x0d, 0x8d, 0x46, 0xc3,
6738 0x0a, 0x9f, 0x8e, 0x18, 0x0d, 0xd7, 0xaf, 0xdd,
6739 0xc0, 0xeb, 0x9c, 0x16, 0x63, 0x43, 0xa7, 0xe1,
6740 0xbb, 0xdf, 0xfa, 0xe6, 0x9f, 0xfd, 0xcd, 0x5a,
6741 0xad, 0xd6, 0x46, 0x3e, 0xd5, 0x7c, 0xf3, 0xa8,
6742 0xfe, 0x3b, 0xb3, 0xd5, 0x80, 0xe6, 0x85, 0x00,
6743 0xa6, 0x59, 0x19, 0x38, 0xf1, 0xff, 0x77, 0xdd,
6744 0x75, 0xc7, 0xc9, 0xb3, 0xe7, 0xce, 0xfd, 0x0b,
6745 0x42, 0x08, 0xb7, 0xd6, 0xd7, 0xda, 0xda, 0x3a,
6746 0xce, 0x5f, 0xb8, 0x2f, 0x16, 0x94, 0x09, 0x2c,
6747 0x87, 0xd9, 0xca, 0xca, 0x0a, 0x4e, 0xdd, 0x71,
6748 0x0a, 0xb7, 0xdf, 0x76, 0x3b, 0xd6, 0xd7, 0x0e,
6749 0x8d, 0xc2, 0x68, 0x59, 0xc4, 0xac, 0x1a, 0xad,
6750 0x24, 0xb0, 0x24, 0x5a, 0x79, 0xae, 0xdb, 0xdb,
6751 0xa0, 0xdf, 0xdd, 0xdd, 0xc1, 0xcd, 0x5b, 0x37,
6752 0xb0, 0xbb, 0xbb, 0x8b, 0x46, 0xb3, 0x89, 0x7e,
6753 0xaf, 0x1f, 0x8b, 0xe8, 0x08, 0x08, 0x5e, 0x7a,
6754 0xe9, 0x12, 0xea, 0xb5, 0x3a, 0xff, 0xf8, 0x94,
6755 0xed, 0xbd, 0xf2, 0xf2, 0xe5, 0xbf, 0xfd, 0xee,
6756 0xbb, 0xef, 0x7e, 0x80, 0xfc, 0xaa, 0x03, 0x4f,
6757 0xa2, 0x1c, 0xf8, 0x4c, 0xf5, 0x06, 0x98, 0x97,
6758 0xc6, 0x20, 0x79, 0x00, 0x7e, 0x62, 0xfd, 0x00,
6759 0xce, 0x9d, 0x3f, 0xf7, 0xc0, 0xa9, 0x53, 0x77,
6760 0xfc, 0x36, 0x21, 0xa4, 0x1c, 0xa4, 0x52, 0x9f,
6761 0x3b, 0x77, 0x1f, 0x56, 0xd7, 0xd7, 0x12, 0xcd,
6762 0xa2, 0xaa, 0xa6, 0x62, 0x79, 0x69, 0x09, 0x77,
6763 0x9c, 0x38, 0x89, 0xcd, 0xcd, 0x63, 0x58, 0x5b,
6764 0x5d, 0xc7, 0xf2, 0x72, 0x35, 0x32, 0x28, 0x22,
6765 0x02, 0xa5, 0xc9, 0x48, 0x82, 0xa5, 0xdf, 0xbe,
6766 0xdb, 0xeb, 0xa2, 0x56, 0xdb, 0xc3, 0x5e, 0x6d,
6767 0x0f, 0x1f, 0x5c, 0xfd, 0x00, 0x7b, 0xb5, 0x1a,
6768 0xda, 0xed, 0x36, 0xfa, 0x9c, 0xc0, 0x9d, 0x30,
6769 0x73, 0x64, 0x77, 0x67, 0x17, 0xdf, 0xbf, 0xfc,
6770 0xfd, 0x30, 0x26, 0x6a, 0xbd, 0xfd, 0xd6, 0xbb,
6771 0x9f, 0xb9, 0x7c, 0xf9, 0xf2, 0x2b, 0xc8, 0xbf,
6772 0x9f, 0x5f, 0xde, 0xfd, 0x01, 0x66, 0x66, 0xf6,
6773 0x9f, 0x17, 0x02, 0x00, 0xa6, 0xd7, 0x1c, 0x24,
6774 0x75, 0x47, 0xa0, 0xb3, 0x67, 0xcf, 0xde, 0x73,
6775 0xe7, 0xdd, 0xa7, 0x9e, 0x15, 0x88, 0x70, 0x5b,
6776 0x18, 0xa0, 0xcf, 0x9f, 0xbf, 0x1f, 0xaa, 0xaa,
6777 0x82, 0x26, 0x54, 0xa7, 0x05, 0x22, 0x40, 0x2b,
6778 0x6b, 0x58, 0xa9, 0xae, 0xe0, 0xc4, 0xf1, 0xe3,
6779 0xb8, 0xed, 0xf0, 0x6d, 0x58, 0x5b, 0x5f, 0xc7,
6780 0x6a, 0x75, 0x15, 0x8a, 0xa2, 0xc6, 0xb2, 0xb7,
6781 0xe3, 0x7e, 0x90, 0x66, 0x7b, 0x6a, 0x9a, 0x68,
6782 0x34, 0x1b, 0x68, 0x34, 0xea, 0xd8, 0xd9, 0xdb,
6783 0xc1, 0xf5, 0x1b, 0xd7, 0xb1, 0xbb, 0xbb, 0x87,
6784 0x6e, 0xa7, 0x83, 0x6e, 0xb7, 0x9b, 0xfc, 0x7a,
6785 0x05, 0x01, 0xbd, 0x6e, 0x17, 0xaf, 0x5c, 0xba,
6786 0x8c, 0xfe, 0x20, 0x98, 0x30, 0xa8, 0x49, 0xaf,
6787 0x5f, 0x79, 0xe3, 0xcd, 0x5f, 0x79, 0xe3, 0x8d,
6788 0x37, 0xae, 0x64, 0x00, 0x7f, 0x90, 0xda, 0x3f,
6789 0xa9, 0x0e, 0x41, 0x45, 0x67, 0xa0, 0x29, 0x98,
6790 0x02, 0x59, 0x9a, 0x82, 0xa6, 0xea, 0x09, 0x78,
6791 0xfc, 0xf8, 0xf1, 0xdb, 0xee, 0xbf, 0x70, 0xff,
6792 0x3f, 0x91, 0x24, 0xf1, 0x5c, 0xd8, 0xc5, 0x68,
6793 0x8a, 0x86, 0x7b, 0xef, 0xbf, 0x07, 0x95, 0x4a,
6794 0x25, 0x53, 0x1e, 0x00, 0x11, 0x04, 0x68, 0x9a,
6795 0x86, 0x23, 0x87, 0x0f, 0xe3, 0xf0, 0xa1, 0xdb,
6796 0x70, 0xf8, 0xd0, 0x21, 0xac, 0xae, 0xae, 0x61,
6797 0xa9, 0x52, 0x81, 0xa6, 0x6a, 0xd0, 0x34, 0x0d,
6798 0xaa, 0x23, 0xd2, 0x2e, 0x89, 0x43, 0x91, 0xb7,
6799 0x41, 0x7f, 0x30, 0x18, 0x16, 0x27, 0xed, 0xa2,
6800 0xd7, 0xeb, 0xa1, 0xde, 0xa8, 0x63, 0x6f, 0x6f,
6801 0x0f, 0x3b, 0xbb, 0x3b, 0xd8, 0xd9, 0xde, 0x42,
6802 0xab, 0x63, 0xcd, 0xee, 0x49, 0x33, 0x1d, 0xbd,
6803 0x8e, 0xd1, 0x56, 0xb3, 0x89, 0xd7, 0x5e, 0x7d,
6804 0x1d, 0xfd, 0x5e, 0xb8, 0xa6, 0xa0, 0x1b, 0xfa,
6805 0xcb, 0x2f, 0x7d, 0xef, 0xd2, 0xdf, 0xbd, 0x71,
6806 0xe3, 0xc6, 0x36, 0xd2, 0x75, 0x02, 0x4e, 0x02,
6807 0xfe, 0x3c, 0x9b, 0x84, 0xa2, 0x20, 0x80, 0xfc,
6808 0x4d, 0x81, 0x69, 0xfc, 0x1f, 0xdd, 0x08, 0xb4,
6809 0x24, 0xc9, 0x1f, 0x79, 0xfc, 0x89, 0x4f, 0x2d,
6810 0x2d, 0x2d, 0xff, 0x34, 0x22, 0x02, 0xad, 0x44,
6811 0x49, 0xc4, 0x5d, 0x77, 0xde, 0x89, 0x43, 0x47,
6812 0x0e, 0x0d, 0x3d, 0xf3, 0xf9, 0x8d, 0x0d, 0x51,
6813 0x10, 0x20, 0xc9, 0x12, 0x24, 0x49, 0xc2, 0xa1,
6814 0xf5, 0xc3, 0xa8, 0x94, 0x44, 0x1c, 0x74, 0x60,
6815 0x00, 0x00, 0x06, 0x29, 0x49, 0x44, 0x41, 0x54,
6816 0x4b, 0xd0, 0x4a, 0xd6, 0x32, 0x9d, 0xa6, 0x69,
6817 0xbe, 0xb5, 0x79, 0xaf, 0xf4, 0xfa, 0x3d, 0xf4,
6818 0x7a, 0x7d, 0x74, 0x7b, 0xd6, 0x0c, 0x5e, 0x6f,
6819 0x34, 0xd0, 0xed, 0x76, 0x60, 0x18, 0x06, 0x0c,
6820 0xdd, 0x80, 0x49, 0xf3, 0xd3, 0x62, 0x05, 0xc1,
6821 0x5a, 0x75, 0xd8, 0xde, 0xda, 0xc1, 0xdb, 0x6f,
6822 0xbd, 0x1d, 0xba, 0xfc, 0x67, 0xfb, 0xfb, 0x5a,
6823 0xcd, 0xe6, 0x17, 0xfe, 0xf4, 0x1b, 0xcf, 0xff,
6824 0x9e, 0x61, 0x31, 0x68, 0x1e, 0x5d, 0x82, 0xf3,
6825 0x6c, 0x2b, 0x16, 0x46, 0x00, 0x28, 0x08, 0x20,
6826 0x1f, 0x53, 0x20, 0x4f, 0x00, 0x0b, 0x29, 0x41,
6827 0x1f, 0x48, 0x06, 0xe7, 0x2e, 0x9c, 0xbb, 0x70,
6828 0xf2, 0xf8, 0x89, 0x5f, 0x15, 0x25, 0x31, 0x56,
6829 0x37, 0xe0, 0xa5, 0xa5, 0x0a, 0x4e, 0x9d, 0x3a,
6830 0x85, 0xa5, 0xea, 0x32, 0x0c, 0xd3, 0x04, 0x8d,
6831 0x06, 0xc1, 0x5c, 0x8b, 0x28, 0x8a, 0x90, 0x44,
6832 0x11, 0x8d, 0x46, 0x03, 0xef, 0xbe, 0xfd, 0x1e,
6833 0x5a, 0xed, 0x56, 0xac, 0xfd, 0x0c, 0xd3, 0x78,
6834 0xe3, 0xfd, 0x77, 0x3e, 0xf8, 0xb5, 0xcb, 0x97,
6835 0x2f, 0xbf, 0x8c, 0xf4, 0x2d, 0xc3, 0xe3, 0xf4,
6836 0xed, 0xcb, 0xd2, 0x58, 0x74, 0x2e, 0x5a, 0x83,
6837 0xcf, 0x23, 0x01, 0xec, 0x27, 0x09, 0xc4, 0xf9,
6838 0xce, 0xb5, 0x9d, 0x2c, 0xcb, 0xe2, 0x23, 0x8f,
6839 0x3e, 0xf2, 0x63, 0xeb, 0x6b, 0x6b, 0x3f, 0x4f,
6840 0x04, 0x72, 0x38, 0xb6, 0xf3, 0x4f, 0x51, 0x71,
6841 0xc7, 0xa9, 0x93, 0x58, 0x5b, 0x5f, 0x03, 0x08,
6842 0xc1, 0x60, 0x30, 0x98, 0xfb, 0x9c, 0x00, 0x42,
6843 0x08, 0x14, 0x55, 0x05, 0x28, 0xc3, 0xee, 0xee,
6844 0x2e, 0xde, 0x79, 0xe7, 0x1d, 0xe8, 0x03, 0x3d,
6845 0xf6, 0xfe, 0x94, 0xd2, 0xad, 0xbd, 0x9d, 0xbd,
6846 0xff, 0xfb, 0x3b, 0xdf, 0xf9, 0xee, 0x97, 0x75,
6847 0x5d, 0x37, 0x13, 0x82, 0x3d, 0x6f, 0xa0, 0x2f,
6848 0x04, 0xf8, 0xe7, 0x95, 0x00, 0x48, 0x0e, 0x00,
6849 0x4f, 0x32, 0xb3, 0xc7, 0x06, 0x7c, 0xd0, 0x77,
6850 0xab, 0xab, 0x4b, 0x95, 0x0b, 0x0f, 0x3e, 0xfc,
6851 0x3f, 0x2d, 0x2f, 0x2f, 0x3d, 0x1d, 0xb4, 0x5c,
6852 0x18, 0x26, 0x2b, 0xd5, 0x2a, 0x8e, 0x6e, 0x6e,
6853 0xa0, 0x5a, 0xad, 0x42, 0x96, 0x65, 0x98, 0xa6,
6854 0x81, 0x81, 0xae, 0xcf, 0x2c, 0x29, 0x10, 0x62,
6855 0x15, 0x42, 0x11, 0x05, 0x09, 0xa6, 0xa1, 0xa3,
6856 0x5e, 0x6b, 0xe0, 0xfa, 0xb5, 0xeb, 0x68, 0x34,
6857 0x1b, 0x89, 0x8f, 0xc5, 0x28, 0xdb, 0x6b, 0x34,
6858 0x9b, 0xff, 0xe6, 0x85, 0xef, 0xbe, 0xf0, 0xff,
6859 0x3a, 0x6a, 0xfc, 0x31, 0x64, 0x9b, 0xfd, 0xb3,
6860 0x00, 0x3f, 0xed, 0xbe, 0x28, 0x08, 0x60, 0x36,
6861 0x49, 0x20, 0xed, 0x8c, 0x1f, 0x97, 0x18, 0x46,
6862 0xaf, 0xe5, 0xe5, 0x65, 0xed, 0xfc, 0x03, 0xe7,
6863 0xff, 0xf2, 0xea, 0xca, 0xca, 0x4f, 0x0a, 0xa2,
6864 0x70, 0x47, 0x7a, 0x9b, 0x59, 0xc0, 0xe1, 0xc3,
6865 0x87, 0xb0, 0xbe, 0xbe, 0x8e, 0x4a, 0xa5, 0x02,
6866 0x49, 0x55, 0x20, 0x0e, 0x6b, 0xe8, 0xf7, 0xa6,
6867 0x18, 0x0e, 0x2c, 0x08, 0x02, 0x54, 0x45, 0x01,
6868 0x11, 0xac, 0x3a, 0x88, 0x83, 0x81, 0x8e, 0x4e,
6869 0xa7, 0x63, 0x85, 0xf4, 0x6e, 0xed, 0x82, 0xb2,
6870 0xf4, 0x7e, 0x02, 0xd3, 0x34, 0xdf, 0xad, 0xd7,
6871 0x1b, 0xff, 0xdf, 0x0b, 0xdf, 0x7d, 0xe1, 0xcb,
6872 0xdd, 0x6e, 0xb7, 0x9f, 0x00, 0xf8, 0x59, 0x9c,
6873 0x81, 0x69, 0xfc, 0x08, 0x73, 0x0b, 0xfe, 0x79,
6874 0x26, 0x00, 0x24, 0x00, 0xe5, 0xbe, 0x82, 0x3e,
6875 0xe8, 0xf5, 0xe0, 0x83, 0x0f, 0x3e, 0x72, 0xf8,
6876 0xf6, 0xc3, 0xff, 0x83, 0xa6, 0xaa, 0x9f, 0x04,
6877 0xa0, 0xe4, 0x75, 0x53, 0x4a, 0xe5, 0x12, 0xaa,
6878 0xcb, 0x55, 0x54, 0x2a, 0x56, 0x22, 0x8e, 0xa2,
6879 0x2a, 0x90, 0x24, 0x09, 0xa2, 0x24, 0x0e, 0x7b,
6880 0x13, 0x08, 0x20, 0x64, 0x18, 0xa5, 0xc7, 0xe0,
6881 0xf3, 0xd8, 0x0b, 0x82, 0x00, 0x10, 0xbb, 0x29,
6882 0x07, 0xc0, 0x18, 0x05, 0xa5, 0x14, 0xa6, 0x61,
6883 0xc2, 0x30, 0x0c, 0x0c, 0xfa, 0x03, 0xb4, 0x3b,
6884 0x6d, 0x74, 0xda, 0x1d, 0x34, 0x9a, 0x4d, 0x74,
6885 0x3b, 0xdd, 0xdc, 0x1e, 0x28, 0x63, 0xac, 0xdf,
6886 0xef, 0xf7, 0xff, 0xcb, 0xad, 0x5b, 0x5b, 0xff,
6887 0xe1, 0xd2, 0x8b, 0x97, 0x5e, 0x88, 0xa9, 0xd6,
6888 0xcf, 0x3a, 0x19, 0xa0, 0x20, 0x80, 0xe9, 0x92,
6889 0x40, 0xde, 0xa0, 0xcf, 0x9b, 0x00, 0x5c, 0xe7,
6890 0x7d, 0xe8, 0xd0, 0xa1, 0xea, 0xe9, 0x33, 0xa7,
6891 0x3f, 0x56, 0x5d, 0x5e, 0xfa, 0x98, 0xa2, 0xaa,
6892 0x4f, 0x04, 0x05, 0x13, 0x2d, 0xaa, 0x30, 0xc6,
6893 0xda, 0x83, 0x7e, 0xff, 0x5b, 0xcd, 0x46, 0xf3,
6894 0x4f, 0xae, 0x5c, 0x79, 0xeb, 0x4f, 0x77, 0x76,
6895 0x76, 0x1a, 0x08, 0x4e, 0xd6, 0xc9, 0x1b, 0xf8,
6896 0x59, 0x9d, 0x87, 0x73, 0x0d, 0xfe, 0x45, 0x20,
6897 0x80, 0x20, 0xc7, 0x60, 0x5c, 0xc0, 0x26, 0x05,
6898 0xb4, 0x90, 0x27, 0xf8, 0xbd, 0x9f, 0x97, 0x4a,
6899 0x25, 0xf5, 0xbe, 0xfb, 0xee, 0x7d, 0x74, 0x6d,
6900 0x7d, 0xed, 0x07, 0x15, 0x45, 0xfd, 0xb0, 0x10,
6901 0xd0, 0x70, 0x74, 0xde, 0x85, 0x52, 0x7a, 0xb5,
6902 0xdf, 0xeb, 0x7d, 0x7b, 0xb7, 0x56, 0x7b, 0xee,
6903 0xb5, 0xcb, 0xaf, 0x7d, 0xc7, 0xa1, 0xe2, 0x07,
6904 0x81, 0x3d, 0x2f, 0x12, 0x48, 0x43, 0x08, 0x34,
6905 0xe5, 0x77, 0x28, 0x08, 0x60, 0x7f, 0xb4, 0x01,
6906 0x21, 0x27, 0x00, 0xe7, 0xa6, 0xee, 0xc7, 0x01,
6907 0x3f, 0xef, 0xff, 0x53, 0xa7, 0x4e, 0x6d, 0x1e,
6908 0xdd, 0x3c, 0xfa, 0x68, 0xa5, 0x5c, 0x7a, 0x48,
6909 0x56, 0xd4, 0xfb, 0x44, 0x51, 0x38, 0x85, 0xf9,
6910 0xeb, 0xe5, 0x40, 0x4d, 0xd3, 0x78, 0x67, 0x30,
6911 0x30, 0x2e, 0x77, 0x3a, 0xad, 0x17, 0xaf, 0x5e,
6912 0xbb, 0xfe, 0xed, 0xf7, 0xdf, 0x79, 0xff, 0x9a,
6913 0x07, 0xd4, 0x88, 0x01, 0xf8, 0x49, 0x90, 0xc0,
6914 0x24, 0x08, 0x61, 0xee, 0x40, 0x83, 0x05, 0x24,
6915 0x81, 0x54, 0xcb, 0x76, 0x39, 0x03, 0x3e, 0x35,
6916 0xf0, 0x11, 0x50, 0x91, 0x68, 0x75, 0x75, 0xb5,
6917 0x7c, 0xf2, 0xce, 0x93, 0xe7, 0xaa, 0xcb, 0xd5,
6918 0xfb, 0x15, 0x55, 0xb9, 0x53, 0x96, 0xe4, 0x53,
6919 0xa2, 0x28, 0x9c, 0x9a, 0x15, 0xb3, 0x81, 0x31,
6920 0xd6, 0x36, 0x4c, 0xf3, 0x3d, 0xc3, 0x30, 0xde,
6921 0x1e, 0xf4, 0xfb, 0x6f, 0x37, 0xeb, 0xad, 0x97,
6922 0xdf, 0x7d, 0xf7, 0xdd, 0x57, 0x87, 0xd9, 0x79,
6923 0x40, 0xf2, 0x22, 0x1c, 0xd3, 0x26, 0x81, 0xac,
6924 0xcb, 0x8a, 0x28, 0x08, 0x60, 0x76, 0xfd, 0x02,
6925 0xd3, 0x02, 0x7c, 0x56, 0xf0, 0x47, 0xbd, 0xf7,
6926 0xfd, 0x3d, 0x79, 0x72, 0xf3, 0xe8, 0xfa, 0xfa,
6927 0xa1, 0x93, 0x6a, 0xa9, 0x7c, 0x9b, 0xa2, 0x28,
6928 0x1b, 0xb2, 0x24, 0x1e, 0x11, 0x45, 0xe9, 0x88,
6929 0x20, 0x8a, 0xb7, 0x13, 0x01, 0x65, 0x81, 0x08,
6930 0xcb, 0x43, 0x92, 0x48, 0x5b, 0x02, 0xce, 0x64,
6931 0x8c, 0x75, 0x18, 0x63, 0x0d, 0xca, 0x68, 0x87,
6932 0x1a, 0xf4, 0x96, 0x69, 0x1a, 0xb7, 0x0c, 0xc3,
6933 0xd8, 0xea, 0x0f, 0xf4, 0x9b, 0xdd, 0x6e, 0xf7,
6934 0xc6, 0xce, 0xd6, 0xce, 0x7b, 0x57, 0xaf, 0x5e,
6935 0xbd, 0x85, 0xe0, 0x8e, 0xba, 0x2c, 0x27, 0x12,
6936 0x98, 0x36, 0x11, 0xc4, 0x25, 0x03, 0x14, 0x04,
6937 0x30, 0xdb, 0x44, 0x20, 0x4c, 0x11, 0xec, 0x42,
6938 0xc0, 0x39, 0x44, 0x7d, 0x16, 0x06, 0xf8, 0x50,
6939 0x12, 0x88, 0x78, 0x0f, 0x58, 0xcb, 0x90, 0x6a,
6940 0x65, 0xa5, 0xb2, 0xbc, 0xb6, 0xbc, 0x16, 0x2b,
6941 0x28, 0x69, 0xaf, 0xb9, 0xb7, 0xdd, 0xae, 0xb7,
6942 0x9b, 0xcd, 0x66, 0xb3, 0xef, 0x01, 0x2f, 0x38,
6943 0xff, 0xc7, 0x69, 0xab, 0x9d, 0xa6, 0x62, 0x4e,
6944 0x94, 0x36, 0x40, 0xf7, 0x59, 0x3b, 0x98, 0x7b,
6945 0x90, 0xe0, 0x00, 0x91, 0xc0, 0xb4, 0x67, 0xfa,
6946 0x4c, 0x2a, 0x7f, 0x0c, 0x12, 0x88, 0x43, 0x04,
6947 0x61, 0xcf, 0x39, 0x51, 0x66, 0x71, 0x02, 0x12,
6948 0x88, 0x22, 0x83, 0x3c, 0xb5, 0x81, 0xfd, 0xd4,
6949 0x0c, 0x50, 0x10, 0xc0, 0xc1, 0x26, 0x02, 0xe4,
6950 0xf0, 0x5d, 0x62, 0x95, 0x3f, 0x81, 0x16, 0x10,
6951 0xf4, 0x8c, 0x93, 0x3c, 0x77, 0x96, 0x91, 0x04,
6952 0xc2, 0x8a, 0x71, 0x02, 0xf9, 0x9b, 0x01, 0x28,
6953 0x80, 0x5f, 0x10, 0xc0, 0x34, 0x88, 0x20, 0x09,
6954 0xf8, 0x79, 0xff, 0x0b, 0x19, 0x55, 0xfe, 0x28,
6955 0x2d, 0x20, 0x0f, 0xf0, 0xe7, 0x4d, 0x02, 0x59,
6956 0xfc, 0x01, 0xb3, 0xe0, 0x23, 0x58, 0x48, 0x40,
6957 0x1c, 0x44, 0x99, 0x96, 0x73, 0x2f, 0x89, 0xc3,
6958 0x2f, 0x2b, 0xf8, 0xa3, 0x34, 0x81, 0x3c, 0x9e,
6959 0x37, 0x8b, 0xf9, 0x7f, 0x56, 0x7f, 0x40, 0x56,
6960 0x62, 0x48, 0x4b, 0x04, 0x38, 0x48, 0xe0, 0x3f,
6961 0xc8, 0x04, 0x90, 0x85, 0x08, 0xd2, 0x82, 0x3f,
6962 0x08, 0xec, 0x51, 0x5a, 0x40, 0x1a, 0xbb, 0x9f,
6963 0x4c, 0xf0, 0x59, 0xa7, 0x75, 0x04, 0x86, 0x81,
6964 0x3f, 0x0f, 0x9f, 0x40, 0x1e, 0x24, 0x80, 0x83,
6965 0x02, 0xfc, 0x82, 0x00, 0xd2, 0x11, 0x41, 0x5c,
6966 0xf0, 0xc7, 0x9d, 0xf5, 0xd3, 0xd8, 0xfc, 0x89,
6967 0xbd, 0xff, 0x09, 0xc7, 0x01, 0x9b, 0x10, 0x09,
6968 0xa4, 0xf5, 0x05, 0x24, 0xf5, 0x0f, 0x20, 0x03,
6969 0x09, 0xe0, 0xa0, 0x00, 0xbf, 0x20, 0x80, 0x64,
6970 0x44, 0x30, 0x09, 0x95, 0x1f, 0xc8, 0xe6, 0xf8,
6971 0xe3, 0xbd, 0x4f, 0x02, 0x7e, 0x92, 0x02, 0xe8,
6972 0x51, 0x24, 0x90, 0x65, 0x59, 0x30, 0x89, 0x06,
6973 0x30, 0x29, 0x6d, 0xe0, 0x40, 0x0e, 0xf8, 0x42,
6974 0xc2, 0x89, 0x20, 0x8f, 0x59, 0x3f, 0x49, 0x5f,
6975 0xc2, 0x34, 0x0e, 0xbf, 0x69, 0xa9, 0xff, 0x71,
6976 0x1c, 0x82, 0x79, 0x90, 0xc0, 0xb4, 0x4d, 0x82,
6977 0x03, 0x3d, 0xd0, 0x0b, 0x49, 0xae, 0x15, 0x4c,
6978 0x52, 0xe5, 0x8f, 0x03, 0xfa, 0x24, 0x2a, 0x3f,
6979 0x49, 0x31, 0x06, 0xd8, 0x04, 0x48, 0x20, 0x2e,
6980 0x19, 0x24, 0xf9, 0x2c, 0xad, 0x83, 0x10, 0x07,
6981 0x1d, 0xf8, 0x05, 0x01, 0xa4, 0xbf, 0x57, 0x69,
6982 0x1c, 0x7d, 0x79, 0xa8, 0xfc, 0x69, 0x96, 0xfd,
6983 0x48, 0x0e, 0xcf, 0x3d, 0x4d, 0x40, 0x50, 0x5c,
6984 0xc0, 0xc7, 0x01, 0x7a, 0xde, 0x26, 0x41, 0x21,
6985 0x05, 0x01, 0x4c, 0x84, 0x0c, 0x80, 0xe9, 0x07,
6986 0xfa, 0x90, 0x09, 0x83, 0x3f, 0x2f, 0x12, 0xc8,
6987 0xd3, 0x1f, 0x90, 0x86, 0x04, 0x0a, 0x29, 0x08,
6988 0x60, 0x6a, 0x64, 0x10, 0x17, 0xf0, 0x93, 0xb4,
6989 0xfb, 0x27, 0xe5, 0x07, 0x48, 0x1b, 0x10, 0x94,
6990 0x37, 0x09, 0xc4, 0xed, 0xea, 0x5b, 0x48, 0x41,
6991 0x00, 0xfb, 0xe6, 0x33, 0x40, 0x06, 0x12, 0x48,
6992 0xab, 0x05, 0x4c, 0x12, 0xfc, 0x79, 0x92, 0x40,
6993 0x96, 0x40, 0x21, 0x14, 0xb3, 0x7c, 0x41, 0x00,
6994 0x8b, 0x40, 0x08, 0x79, 0xd8, 0xfd, 0xd3, 0x06,
6995 0xff, 0x24, 0x48, 0x20, 0x8b, 0x3f, 0xa0, 0x90,
6996 0x82, 0x00, 0xe6, 0xda, 0x64, 0xc8, 0xd3, 0xee,
6997 0x4f, 0x03, 0x7e, 0x92, 0x02, 0xe8, 0x69, 0x7c,
6998 0x00, 0x79, 0xf9, 0x03, 0x0a, 0x29, 0x08, 0xe0,
6999 0x40, 0x90, 0x42, 0x16, 0x22, 0x88, 0x7a, 0xb6,
7000 0x79, 0x3a, 0x01, 0xb3, 0xfa, 0x00, 0x0a, 0xb0,
7001 0x17, 0x04, 0x50, 0x48, 0xcc, 0xe7, 0xb3, 0x5f,
7002 0xe0, 0x8f, 0x43, 0x04, 0x59, 0x49, 0xa0, 0x90,
7003 0x82, 0x00, 0x0a, 0xc9, 0xe9, 0xf9, 0xed, 0x87,
7004 0x13, 0x30, 0x8e, 0x39, 0x50, 0x48, 0x21, 0x85,
7005 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
7006 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
7007 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
7008 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52,
7009 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85,
7010 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
7011 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
7012 0x52, 0x48, 0x46, 0xf9, 0x6f, 0xc0, 0x8f, 0xef,
7013 0xbb, 0xae, 0xa8, 0xc2, 0x7f, 0x00, 0x00, 0x00,
7014 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
7015 0x82, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79,
7016 0x29, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
7017 0x65, 0x77, 0x65, 0x72, 0x2d, 0x61, 0x75, 0x74,
7018 0x68, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00, 0x00,
7019 0x05, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7020 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
7021 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
7022 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
7023 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
7024 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
7025 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
7026 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
7027 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
7028 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
7029 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
7030 0x2b, 0x20, 0x32, 0x2e, 0x31, 0x32, 0x20, 0x2d,
7031 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62,
7032 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
7033 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44,
7034 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x20, 0x69,
7035 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x22,
7036 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7037 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7038 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
7039 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
7040 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7041 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7042 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7043 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7044 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f,
7045 0x72, 0x64, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64,
7046 0x74, 0x68, 0x22, 0x3e, 0x35, 0x3c, 0x2f, 0x70,
7047 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7048 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7049 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7050 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74,
7051 0x6c, 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
7052 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
7053 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41,
7054 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63,
7055 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x72, 0x65,
7056 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x3c, 0x2f,
7057 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7058 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7059 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7060 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6d, 0x6f,
7061 0x64, 0x61, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
7062 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7063 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7064 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7065 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7066 0x22, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
7067 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
7068 0x22, 0x3e, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
7069 0x2d, 0x6f, 0x6e, 0x2d, 0x70, 0x61, 0x72, 0x65,
7070 0x6e, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7071 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7072 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7073 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7074 0x3d, 0x22, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f,
7075 0x79, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x70,
7076 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x54,
7077 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7078 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7079 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7080 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7081 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65, 0x5f,
7082 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64, 0x69,
7083 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70, 0x72,
7084 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7085 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7086 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7087 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70,
7088 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x62, 0x61, 0x72,
7089 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x54,
7090 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7091 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7092 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7093 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7094 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70, 0x5f,
7095 0x70, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x68, 0x69,
7096 0x6e, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
7097 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7098 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7099 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69,
7100 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d,
7101 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x76,
7102 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20,
7103 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
7104 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
7105 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x6f,
7106 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64,
7107 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x2d, 0x76, 0x62,
7108 0x6f, 0x78, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
7109 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7110 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7111 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
7112 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
7113 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7114 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7115 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7116 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7117 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
7118 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
7119 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
7120 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7121 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7122 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7123 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7124 0x65, 0x3d, 0x22, 0x6f, 0x72, 0x69, 0x65, 0x6e,
7125 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
7126 0x76, 0x65, 0x72, 0x74, 0x69, 0x63, 0x61, 0x6c,
7127 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7128 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7129 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7130 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7131 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x70, 0x61, 0x63,
7132 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x32, 0x3c, 0x2f,
7133 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7134 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7135 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
7136 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
7137 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3d,
7138 0x22, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
7139 0x61, 0x72, 0x65, 0x61, 0x22, 0x3e, 0x0a, 0x20,
7140 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7141 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
7142 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
7143 0x47, 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f,
7144 0x6e, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64,
7145 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67,
7146 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
7147 0x61, 0x72, 0x65, 0x61, 0x31, 0x22, 0x3e, 0x0a,
7148 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7149 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7150 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7151 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
7152 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
7153 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7154 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7155 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7156 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7157 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7158 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
7159 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
7160 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7161 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7162 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7163 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7164 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7165 0x22, 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f,
7166 0x73, 0x74, 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65,
7167 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7168 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7169 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7170 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
7171 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7172 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7173 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
7174 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
7175 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
7176 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75,
7177 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x61, 0x6e,
7178 0x63, 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20,
7179 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7180 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7181 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7182 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
7183 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
7184 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
7185 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
7186 0x5f, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x3c,
7187 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7188 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7189 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7190 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7191 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7192 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
7193 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
7194 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7195 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7196 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7197 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7198 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7199 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
7200 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54,
7201 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7202 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7203 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7204 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7205 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7206 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72,
7207 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73, 0x5f,
7208 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22,
7209 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
7210 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7211 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7212 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7213 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7214 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7215 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
7216 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
7217 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
7218 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7219 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7220 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7221 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7222 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7223 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7224 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
7225 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
7226 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7227 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7228 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7229 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7230 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
7231 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7232 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7233 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
7234 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7235 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7236 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7237 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7238 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e,
7239 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7240 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7241 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7242 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7243 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7244 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7245 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x46,
7246 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7247 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7249 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7250 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7251 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7252 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
7253 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7254 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7255 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7256 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
7257 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
7258 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7259 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
7260 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7261 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7262 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7263 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7264 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7265 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
7266 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
7267 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
7268 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
7269 0x74, 0x6f, 0x6e, 0x2d, 0x6f, 0x6b, 0x22, 0x3e,
7270 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7272 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7273 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7274 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
7275 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
7276 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
7277 0x73, 0x22, 0x3e, 0x5f, 0x4f, 0x4b, 0x3c, 0x2f,
7278 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7279 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7280 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7281 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7282 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7283 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
7284 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7285 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7286 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7287 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7288 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7289 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7290 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
7291 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72,
7292 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7293 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 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, 0x63, 0x61,
7298 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
7299 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7300 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7301 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7302 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7303 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7304 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7305 0x65, 0x3d, 0x22, 0x68, 0x61, 0x73, 0x5f, 0x64,
7306 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22, 0x3e,
7307 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7308 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7309 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7310 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7311 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7312 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7313 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73,
7314 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
7315 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
7316 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7317 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7318 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7319 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7320 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7321 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63,
7322 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70,
7323 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22,
7324 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7325 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7326 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7327 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7328 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7329 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7330 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
7331 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
7332 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
7333 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7334 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7335 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7336 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
7337 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7338 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7339 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
7340 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7341 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7342 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7343 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7344 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
7345 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7346 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7347 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7348 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7349 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7350 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7351 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
7352 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7353 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7354 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7355 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7356 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7357 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7358 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
7359 0x6e, 0x22, 0x3e, 0x33, 0x3c, 0x2f, 0x70, 0x72,
7360 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7361 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7362 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7363 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
7364 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7365 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
7366 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7367 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7368 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
7369 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7370 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
7371 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
7372 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7373 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7374 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7375 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
7376 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
7377 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7378 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7379 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7380 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7381 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
7382 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
7383 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7384 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7385 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7386 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7387 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7388 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74, 0x79,
7389 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c,
7390 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7391 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7392 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7393 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7394 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
7395 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
7396 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7397 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7398 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7399 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
7400 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7401 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
7402 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7403 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
7404 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7405 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
7406 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
7407 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
7408 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
7409 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61,
7410 0x67, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7411 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7412 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7413 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7414 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
7415 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
7416 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7417 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7418 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7419 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7420 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
7421 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
7422 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7423 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7424 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7425 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7426 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7427 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61,
7428 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
7429 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7430 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7431 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7432 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7433 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x79,
7434 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30,
7435 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7436 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7437 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7438 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7439 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7440 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
7441 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
7442 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
7443 0x22, 0x3e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3c,
7444 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7445 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7446 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7447 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7448 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
7449 0x73, 0x65, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x75,
7450 0x70, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7451 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7452 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7453 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
7454 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
7455 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7456 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
7457 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7458 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7459 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7460 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
7461 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
7462 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7463 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7464 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7465 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7466 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7467 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
7468 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
7469 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7470 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7471 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7472 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7473 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
7474 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
7475 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7476 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7477 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7478 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
7479 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7480 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
7481 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7482 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
7483 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7484 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
7485 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
7486 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x54,
7487 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64,
7488 0x3d, 0x22, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x31,
7489 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7490 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7491 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7492 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
7493 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
7494 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7495 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7497 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7498 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7499 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
7500 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
7501 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7502 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7503 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7504 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7505 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7506 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x5f, 0x72, 0x6f,
7507 0x77, 0x73, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70,
7508 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7509 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7510 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7511 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7512 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x5f, 0x63,
7513 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x22, 0x3e,
7514 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7515 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7516 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7517 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7518 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7519 0x22, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f,
7520 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
7521 0x3e, 0x36, 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, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7525 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7526 0x3d, 0x22, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x70,
7527 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36,
7528 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7529 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7531 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
7532 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7533 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
7534 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
7535 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
7536 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
7537 0x64, 0x3d, 0x22, 0x70, 0x72, 0x6f, 0x6d, 0x70,
7538 0x74, 0x2d, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
7539 0x72, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7540 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7541 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7542 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7543 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
7544 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
7545 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7546 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7547 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7548 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7549 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7550 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
7551 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
7552 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7553 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7554 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7555 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7556 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7557 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7558 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e,
7559 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7560 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7561 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7562 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7563 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7564 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
7565 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
7566 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
7567 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
7568 0x3e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
7569 0x64, 0x3a, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7570 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7571 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7572 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
7573 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
7574 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7575 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
7576 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
7577 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7578 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7579 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7580 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
7581 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
7582 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7583 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7584 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7585 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7586 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7587 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
7588 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74,
7589 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
7590 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7591 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7592 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7593 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
7594 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7595 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7596 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7597 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7598 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
7599 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7600 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7601 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
7602 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
7603 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62,
7604 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
7605 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x2d, 0x75,
7606 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22,
7607 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7608 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7609 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7610 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7611 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
7612 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7613 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7614 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7615 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7616 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7617 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7618 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
7619 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
7620 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7621 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7622 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7623 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7624 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7625 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
7626 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x31,
7627 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7628 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7629 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7630 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7631 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7632 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
7633 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
7634 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
7635 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x55, 0x73,
7636 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x3c,
7637 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7638 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7639 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7640 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7641 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7642 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7643 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
7644 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7645 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
7646 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7647 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7648 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7649 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
7650 0x22, 0x47, 0x74, 0x6b, 0x45, 0x6e, 0x74, 0x72,
7651 0x79, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63,
7652 0x72, 0x65, 0x64, 0x2d, 0x75, 0x73, 0x65, 0x72,
7653 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x20,
7654 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7655 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7656 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7657 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
7658 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
7659 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7660 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7661 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7662 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7663 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7664 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7665 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
7666 0x73, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7667 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7668 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7669 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7670 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7671 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7672 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7673 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
7674 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7675 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7676 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7677 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7678 0x65, 0x3d, 0x22, 0x6c, 0x65, 0x66, 0x74, 0x5f,
7679 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e,
7680 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7681 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7682 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7683 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7684 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7685 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67,
7686 0x68, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
7687 0x68, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72,
7688 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7689 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7690 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7691 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
7692 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7693 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
7694 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7695 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7696 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
7697 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7698 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7699 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
7700 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
7701 0x74, 0x6b, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x22,
7702 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x72, 0x65,
7703 0x64, 0x2d, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
7704 0x72, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7705 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7706 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7707 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7708 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
7709 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
7710 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7711 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7712 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7713 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7714 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7715 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
7716 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
7717 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
7718 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7719 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7720 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7721 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7722 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7723 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
7724 0x69, 0x74, 0x79, 0x22, 0x3e, 0x46, 0x61, 0x6c,
7725 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7726 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7727 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7728 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7729 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7730 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63,
7731 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73, 0x5f,
7732 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22,
7733 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
7734 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7735 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7736 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7737 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
7738 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7739 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7740 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
7741 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7742 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7743 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7744 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7745 0x22, 0x6c, 0x65, 0x66, 0x74, 0x5f, 0x61, 0x74,
7746 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x31, 0x3c,
7747 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7748 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7749 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7750 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7751 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7752 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67, 0x68, 0x74,
7753 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22,
7754 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7755 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7756 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7757 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7758 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7759 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
7760 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
7761 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7762 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7763 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7764 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7765 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7766 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
7767 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74,
7768 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
7769 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7770 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7771 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7772 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
7773 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7774 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7775 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7776 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7777 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
7778 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7779 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7780 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
7781 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
7782 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x43, 0x68, 0x65,
7783 0x63, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
7784 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x68,
7785 0x6f, 0x77, 0x2d, 0x70, 0x61, 0x73, 0x73, 0x77,
7786 0x6f, 0x72, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20,
7787 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7788 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7789 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7790 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
7791 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
7792 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7793 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7794 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7795 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7796 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7797 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
7798 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
7799 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
7800 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7801 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7802 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7803 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7804 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7805 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
7806 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
7807 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7808 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7809 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7810 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7811 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7812 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
7813 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
7814 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
7815 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53, 0x68, 0x6f,
7816 0x77, 0x20, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
7817 0x72, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7818 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7819 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7820 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
7821 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
7822 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7823 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
7824 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
7825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7826 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7827 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7828 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x65,
7829 0x66, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
7830 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
7831 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7832 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7833 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7834 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7835 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7836 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x61, 0x74,
7837 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
7838 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7839 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7840 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7841 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7842 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7843 0x65, 0x3d, 0x22, 0x74, 0x6f, 0x70, 0x5f, 0x61,
7844 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32,
7845 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7846 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7847 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7848 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7849 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7850 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x74, 0x74,
7851 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
7852 0x68, 0x22, 0x3e, 0x33, 0x3c, 0x2f, 0x70, 0x72,
7853 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7854 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7855 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7856 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
7857 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7858 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
7859 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7860 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7861 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
7862 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7863 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
7864 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
7865 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7866 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7867 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7868 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
7869 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
7870 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7871 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7872 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7873 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7874 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
7875 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
7876 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7877 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7878 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7879 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7880 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7881 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
7882 0x6e, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72,
7883 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7884 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7885 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
7886 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7887 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
7888 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7889 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
7890 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
7891 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
7892 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
7893 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77,
7894 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x3e, 0x0a,
7895 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61,
7896 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69,
7897 0x64, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65, 0x73,
7898 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d, 0x22, 0x2d,
7899 0x36, 0x22, 0x3e, 0x62, 0x75, 0x74, 0x74, 0x6f,
7900 0x6e, 0x2d, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c,
7901 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
7902 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x3e,
7903 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7904 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77,
7905 0x69, 0x64, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65,
7906 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d, 0x22,
7907 0x2d, 0x35, 0x22, 0x3e, 0x62, 0x75, 0x74, 0x74,
7908 0x6f, 0x6e, 0x2d, 0x6f, 0x6b, 0x3c, 0x2f, 0x61,
7909 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69,
7910 0x64, 0x67, 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20,
7911 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69,
7912 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65,
7913 0x74, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f,
7914 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
7915 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
7916 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28,
7917 0x75, 0x75, 0x61, 0x79, 0x29, 0x72, 0x65, 0x6d,
7918 0x6f, 0x74, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77,
7919 0x65, 0x72, 0x2d, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
7920 0x63, 0x74, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00,
7921 0xd9, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7922 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
7923 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
7924 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
7925 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
7926 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
7927 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
7928 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
7929 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
7930 0x20, 0x33, 0x2e, 0x31, 0x38, 0x2e, 0x33, 0x20,
7931 0x2d, 0x2d, 0x3e, 0x0a, 0x3c, 0x69, 0x6e, 0x74,
7932 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a,
7933 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7934 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
7935 0x22, 0x47, 0x74, 0x6b, 0x57, 0x69, 0x6e, 0x64,
7936 0x6f, 0x77, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
7937 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2d, 0x76,
7938 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d, 0x63, 0x6f,
7939 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
7940 0x2d, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x22,
7941 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7942 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7943 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
7944 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
7945 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7946 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7947 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7948 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7949 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69,
7950 0x74, 0x6c, 0x65, 0x22, 0x20, 0x74, 0x72, 0x61,
7951 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
7952 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
7953 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69,
7954 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69,
7955 0x6c, 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7956 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7957 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
7958 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7959 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
7960 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
7961 0x74, 0x6b, 0x56, 0x42, 0x6f, 0x78, 0x22, 0x20,
7962 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x61, 0x69, 0x6e,
7963 0x2d, 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a, 0x20,
7964 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7965 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7966 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
7967 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
7968 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7969 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7970 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7971 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7972 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7973 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
7974 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
7975 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7976 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7977 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7978 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7979 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64,
7980 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68,
7981 0x22, 0x3e, 0x31, 0x30, 0x3c, 0x2f, 0x70, 0x72,
7982 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7983 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7984 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7985 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7986 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
7987 0x3e, 0x32, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7988 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7989 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7990 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
7991 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7992 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
7993 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
7994 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f, 0x78, 0x22,
7995 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f, 0x6e,
7996 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d,
7997 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x2d,
7998 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20,
7999 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8000 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8001 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8002 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
8003 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
8004 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8005 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8006 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8007 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8008 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
8009 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
8010 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
8011 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8012 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8013 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8014 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8015 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
8016 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e,
8017 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8018 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8019 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8020 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8021 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8022 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8023 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
8024 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
8025 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
8026 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x6e,
8027 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x61,
8028 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x2d, 0x6c,
8029 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20,
8030 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8031 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8032 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8033 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
8034 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
8035 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8036 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8037 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8038 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8039 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8040 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8041 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
8042 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
8043 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8044 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8045 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8046 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8047 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8048 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69,
8049 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
8050 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8051 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8052 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8053 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8054 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8055 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
8056 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
8057 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
8058 0x73, 0x22, 0x3e, 0x43, 0x6f, 0x6e, 0x6e, 0x65,
8059 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5f, 0x41,
8060 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x3c, 0x2f,
8061 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8062 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8063 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8064 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8065 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8066 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
8067 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
8068 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8069 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8070 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8071 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8072 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8073 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8074 0x22, 0x6d, 0x6e, 0x65, 0x6d, 0x6f, 0x6e, 0x69,
8075 0x63, 0x5f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
8076 0x22, 0x3e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
8077 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x61, 0x64, 0x64,
8078 0x72, 0x65, 0x73, 0x73, 0x2d, 0x65, 0x6e, 0x74,
8079 0x72, 0x79, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8080 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8081 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61,
8083 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
8084 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8085 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8086 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74,
8087 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20,
8088 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77, 0x65,
8089 0x69, 0x67, 0x68, 0x74, 0x22, 0x20, 0x76, 0x61,
8090 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x6c,
8091 0x64, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8092 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8093 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61,
8094 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
8095 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8097 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
8098 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8099 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8100 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
8101 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8102 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8103 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8104 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8105 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
8106 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
8107 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8108 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8109 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8110 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8111 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8112 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
8113 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8114 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8115 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8116 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8117 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8118 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8119 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
8120 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
8121 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8122 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8123 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8124 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
8125 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8126 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
8127 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
8128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8129 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
8130 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8131 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8132 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
8133 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
8134 0x47, 0x74, 0x6b, 0x45, 0x6e, 0x74, 0x72, 0x79,
8135 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f,
8136 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
8137 0x2d, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
8138 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3e,
8139 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8140 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8141 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8142 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8143 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
8144 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8145 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8146 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8147 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8148 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8149 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8150 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
8151 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72, 0x75,
8152 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8153 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8154 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8155 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
8156 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8157 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8158 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
8159 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8160 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8161 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8162 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8163 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
8164 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8165 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8166 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8167 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8168 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8169 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8170 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69,
8171 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
8172 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8173 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8174 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8175 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8176 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8177 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
8178 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c,
8179 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8180 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8181 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8182 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
8183 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8184 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8185 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8186 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8187 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
8188 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8189 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8190 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
8191 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
8192 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62,
8193 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
8194 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2d,
8195 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e, 0x0a,
8196 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8197 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8198 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8199 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8200 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
8201 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8202 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8203 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8204 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8205 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8206 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8207 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
8208 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
8209 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8210 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8211 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8212 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8213 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8214 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61, 0x6c,
8215 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
8216 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8217 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8218 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8219 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8220 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8221 0x3d, 0x22, 0x73, 0x65, 0x6e, 0x73, 0x69, 0x74,
8222 0x69, 0x76, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8223 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8224 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8225 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8226 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8227 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8228 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
8229 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
8230 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
8231 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
8232 0x46, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d,
8233 0x70, 0x6c, 0x65, 0x2c, 0x20, 0x73, 0x70, 0x69,
8234 0x63, 0x65, 0x3a, 0x2f, 0x2f, 0x66, 0x6f, 0x6f,
8235 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65,
8236 0x2e, 0x6f, 0x72, 0x67, 0x3a, 0x35, 0x39, 0x30,
8237 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8238 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8239 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8240 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
8241 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8242 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8243 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
8244 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8245 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8246 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8247 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8248 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
8249 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8250 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8251 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8252 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8253 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8254 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8255 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69,
8256 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
8257 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8258 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8259 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8260 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8261 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8262 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
8263 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x32, 0x3c,
8264 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8265 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8266 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8267 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
8268 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8269 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8270 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8271 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8272 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
8273 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8275 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
8276 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8277 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8278 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8279 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
8280 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8281 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8282 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8283 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8284 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8285 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8286 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
8287 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8288 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8289 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8290 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8291 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8292 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
8293 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
8294 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8295 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8296 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
8297 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
8298 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8299 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8300 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8301 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8302 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8303 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
8304 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
8305 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f,
8306 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72,
8307 0x65, 0x63, 0x65, 0x6e, 0x74, 0x2d, 0x63, 0x68,
8308 0x6f, 0x6f, 0x73, 0x65, 0x72, 0x2d, 0x62, 0x6f,
8309 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8310 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8311 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8312 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8313 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
8314 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8315 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8316 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8317 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8318 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8319 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
8320 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
8321 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
8322 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8323 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8324 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8325 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8326 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x70, 0x61,
8327 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36, 0x3c,
8328 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8329 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8330 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8331 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
8332 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8333 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
8334 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
8335 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c,
8336 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64,
8337 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74,
8338 0x2d, 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x72,
8339 0x2d, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e,
8340 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8341 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8342 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8343 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8344 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
8345 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8346 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8347 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8348 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8349 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8350 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8351 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
8352 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8353 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8354 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8355 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8356 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8357 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8358 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
8359 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
8360 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
8361 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
8362 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x63,
8363 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
8364 0x6e, 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8365 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8366 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8367 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8368 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8369 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61,
8370 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
8371 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8372 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8373 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8374 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72,
8375 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a,
8376 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8377 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8378 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69,
8379 0x62, 0x75, 0x74, 0x65, 0x20, 0x6e, 0x61, 0x6d,
8380 0x65, 0x3d, 0x22, 0x77, 0x65, 0x69, 0x67, 0x68,
8381 0x74, 0x22, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65,
8382 0x3d, 0x22, 0x62, 0x6f, 0x6c, 0x64, 0x22, 0x2f,
8383 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8384 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8385 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74, 0x72,
8386 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a,
8387 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8388 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
8389 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
8390 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8391 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8392 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
8393 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8394 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8395 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8396 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8397 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e,
8398 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
8399 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8400 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8401 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8402 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8403 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8404 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
8405 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8406 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8407 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8408 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8409 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8410 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
8411 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
8412 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8413 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8414 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8415 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
8416 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
8417 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8418 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
8419 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8420 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8421 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
8422 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8423 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
8424 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
8425 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
8426 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x68,
8427 0x6f, 0x6f, 0x73, 0x65, 0x72, 0x57, 0x69, 0x64,
8428 0x67, 0x65, 0x74, 0x22, 0x20, 0x69, 0x64, 0x3d,
8429 0x22, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x2d,
8430 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x72, 0x22,
8431 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8432 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8433 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8434 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8435 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
8436 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8437 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8438 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8439 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8440 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8441 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8442 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x69,
8443 0x6d, 0x69, 0x74, 0x22, 0x3e, 0x32, 0x30, 0x3c,
8444 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8445 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8446 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8447 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8448 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8449 0x65, 0x3d, 0x22, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
8450 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x22, 0x3e, 0x46,
8451 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8452 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8453 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8454 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8455 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8456 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8457 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x69, 0x63, 0x6f,
8458 0x6e, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
8459 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8460 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8461 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8462 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8463 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8464 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x6f, 0x72,
8465 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x3e,
8466 0x6d, 0x72, 0x75, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8467 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8468 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8469 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
8470 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
8471 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8472 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
8473 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
8474 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8475 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8476 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8477 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
8478 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54,
8479 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8480 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8481 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8482 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8483 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8484 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
8485 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
8486 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8487 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8488 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8489 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8490 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8491 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73,
8492 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31,
8493 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8494 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8496 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
8497 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8498 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8499 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
8500 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8501 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
8502 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
8503 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8504 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
8505 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8506 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8507 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8508 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78,
8509 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72,
8510 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8511 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8512 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8513 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8514 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8515 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
8516 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8517 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8518 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8519 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8520 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8521 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
8522 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x32, 0x3c,
8523 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8524 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8525 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
8526 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
8527 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8528 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8529 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8530 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8531 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8532 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
8533 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
8534 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x48, 0x42, 0x75,
8535 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78, 0x22,
8536 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
8537 0x74, 0x6f, 0x6e, 0x2d, 0x62, 0x6f, 0x78, 0x22,
8538 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8539 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8540 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8541 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
8542 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
8543 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8544 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8545 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8546 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8547 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8548 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
8549 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
8550 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8551 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8552 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8553 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8554 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8555 0x65, 0x3d, 0x22, 0x72, 0x65, 0x73, 0x69, 0x7a,
8556 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x3e,
8557 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74,
8558 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8559 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8560 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8561 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8562 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8563 0x22, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67,
8564 0x22, 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8565 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8566 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8567 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8568 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8569 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x6f, 0x75,
8570 0x74, 0x5f, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x22,
8571 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72,
8572 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8573 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8574 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
8575 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8577 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
8578 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
8579 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74,
8580 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
8581 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x2d, 0x62,
8582 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x3e, 0x0a,
8583 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8584 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8585 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8586 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8587 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
8588 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
8589 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
8590 0x22, 0x3e, 0x5f, 0x43, 0x61, 0x6e, 0x63, 0x65,
8591 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8592 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8593 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8594 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8595 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8596 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
8597 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
8598 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8599 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8600 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8601 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8602 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8603 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
8604 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
8605 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8606 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8607 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8608 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8609 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8610 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8611 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
8612 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
8613 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
8614 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8615 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8616 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8617 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8618 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8619 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
8620 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
8621 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8622 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8623 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8624 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8625 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
8626 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8627 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8628 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
8629 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8630 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8631 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8632 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8633 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
8634 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8635 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8636 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8637 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8638 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8639 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8640 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
8641 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8642 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8643 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8644 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8645 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8646 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8647 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
8648 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8649 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8650 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8651 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
8652 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
8653 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8654 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
8655 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8656 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8657 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8658 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8659 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8660 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
8661 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
8662 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
8663 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f, 0x6e,
8664 0x6e, 0x65, 0x63, 0x74, 0x2d, 0x62, 0x75, 0x74,
8665 0x74, 0x6f, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20,
8666 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8667 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8668 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8669 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
8670 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
8671 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
8672 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
8673 0x43, 0x5f, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
8674 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8675 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8676 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8677 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8678 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8679 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
8680 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
8681 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8682 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8683 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8684 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8685 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8686 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
8687 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
8688 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8689 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8690 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8691 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8692 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8693 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8694 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73,
8695 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
8696 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8697 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8698 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8699 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8700 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8701 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8702 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
8703 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
8704 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8705 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8706 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8707 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8708 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
8709 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8710 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8711 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
8712 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8713 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8714 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8715 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8716 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
8717 0x3e, 0x54, 0x72, 0x75, 0x65, 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, 0x20, 0x20, 0x20, 0x20, 0x20,
8721 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8722 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8723 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
8724 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8725 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8726 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8727 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8728 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8729 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
8730 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
8731 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8732 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8733 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8734 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
8735 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
8736 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8737 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
8738 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8739 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
8740 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
8741 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8742 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
8743 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8744 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8745 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8746 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8747 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e,
8748 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
8749 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8750 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8751 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8752 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8753 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c,
8754 0x6c, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
8755 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8756 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8757 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8758 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8759 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8760 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70,
8761 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f,
8762 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8763 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8764 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8765 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8766 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
8767 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
8768 0x33, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8769 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8770 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8771 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
8772 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8773 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
8774 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8775 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
8776 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
8777 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
8778 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
8779 0x63, 0x74, 0x3e, 0x0a, 0x3c, 0x2f, 0x69, 0x6e,
8780 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e,
8781 0x0a, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79,
8782 0x29, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
8783 0x65, 0x77, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67,
8784 0xc6, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8785 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
8786 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
8787 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x16,
8788 0x08, 0x06, 0x00, 0x00, 0x00, 0xc4, 0xb4, 0x6c,
8789 0x3b, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49,
8790 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64,
8791 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
8792 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d,
8793 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00,
8794 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f,
8795 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
8796 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63,
8797 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b,
8798 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x03, 0x43, 0x49,
8799 0x44, 0x41, 0x54, 0x38, 0x8d, 0xb5, 0x95, 0xc1,
8800 0x6b, 0x24, 0x45, 0x14, 0x87, 0xbf, 0xaa, 0xea,
8801 0x74, 0x4f, 0x27, 0x66, 0xb3, 0xba, 0x81, 0x8d,
8802 0x08, 0x26, 0x9b, 0x0d, 0x11, 0xf5, 0xec, 0xc5,
8803 0x9b, 0x2b, 0xd8, 0xac, 0xce, 0x45, 0x10, 0xfc,
8804 0x07, 0xbc, 0x08, 0x9e, 0x05, 0x6f, 0x82, 0x07,
8805 0x4f, 0xde, 0x05, 0xf1, 0xb6, 0xa0, 0xa2, 0x20,
8806 0xb9, 0x65, 0x8e, 0xae, 0x92, 0xa3, 0x2c, 0xac,
8807 0xac, 0xeb, 0x66, 0x10, 0x93, 0x5d, 0x4d, 0x82,
8808 0x66, 0x9c, 0x6c, 0x26, 0x55, 0xdd, 0x33, 0xfd,
8809 0xaa, 0x3c, 0x4c, 0xcf, 0x4c, 0xcf, 0x44, 0xbc,
8810 0x04, 0x1f, 0x3c, 0xba, 0xab, 0xa8, 0xfa, 0xea,
8811 0xf7, 0x5e, 0x3d, 0x5e, 0xa9, 0x2c, 0xcb, 0xf8,
8812 0x3f, 0x2c, 0x02, 0x68, 0x36, 0x9b, 0xef, 0x8b,
8813 0xc8, 0x47, 0x21, 0x84, 0xf8, 0x22, 0x30, 0xa5,
8814 0x94, 0xc4, 0x71, 0xfc, 0xe9, 0xd6, 0xd6, 0xd6,
8815 0x7b, 0x2a, 0xcb, 0x32, 0x9a, 0xcd, 0x66, 0xf7,
8816 0xe6, 0x1b, 0xaf, 0x2d, 0x2d, 0x2d, 0x2d, 0x5d,
8817 0x48, 0x65, 0xbf, 0xe8, 0xf3, 0xcd, 0xd7, 0xdf,
8818 0x0e, 0x1a, 0x8d, 0xc6, 0xe5, 0x08, 0x20, 0x84,
8819 0x90, 0xa4, 0x69, 0xca, 0x9b, 0x6f, 0x7d, 0xc9,
8820 0xfc, 0x52, 0x98, 0x5a, 0x1c, 0xa6, 0x87, 0x84,
8821 0x00, 0x8a, 0x30, 0xfe, 0xcf, 0x4f, 0x15, 0x5f,
8822 0x7d, 0xf1, 0x36, 0x71, 0xac, 0x89, 0x93, 0x18,
8823 0xa5, 0x94, 0xb7, 0xd6, 0xc6, 0xd1, 0xd4, 0xae,
8824 0xb9, 0x82, 0xab, 0xeb, 0x73, 0x28, 0xd4, 0x28,
8825 0x38, 0x94, 0x1a, 0x85, 0x39, 0x3b, 0x56, 0x10,
8826 0x60, 0xff, 0x41, 0x1f, 0xe7, 0x06, 0xb4, 0x77,
8827 0x7f, 0x65, 0x75, 0x75, 0x6d, 0x8c, 0x1a, 0x83,
8828 0x45, 0x3c, 0xa5, 0x80, 0x75, 0x25, 0x4a, 0x4d,
8829 0x00, 0xe7, 0xe0, 0x41, 0x4d, 0x1d, 0x52, 0xf4,
8830 0x05, 0x80, 0x17, 0x5e, 0x7c, 0x7e, 0x4a, 0x63,
8831 0x05, 0x0e, 0xc3, 0xb8, 0x82, 0xa2, 0x90, 0x59,
8832 0x95, 0xa1, 0x06, 0x03, 0xa5, 0x02, 0x83, 0xd2,
8833 0xd3, 0x7d, 0x7c, 0xc6, 0x71, 0xf7, 0x14, 0x39,
8834 0x5e, 0x40, 0xc4, 0xf3, 0xd3, 0xdd, 0x7b, 0xac,
8835 0xad, 0xcd, 0x28, 0x0e, 0x80, 0x27, 0x10, 0xb4,
8836 0xa6, 0x12, 0x30, 0x26, 0x4f, 0x94, 0x43, 0xd1,
8837 0x2f, 0x39, 0x3a, 0x3e, 0xc1, 0xba, 0x3e, 0x21,
8838 0x04, 0x40, 0x11, 0xeb, 0x08, 0xef, 0x85, 0xcd,
8839 0xe7, 0x36, 0x30, 0xc6, 0x4c, 0x83, 0x9d, 0x75,
8840 0x04, 0x1f, 0xf0, 0x41, 0x51, 0x08, 0xd3, 0x79,
8841 0xac, 0xec, 0x71, 0xcf, 0x71, 0xd2, 0xcb, 0x09,
8842 0x41, 0x13, 0xc5, 0x8d, 0xf1, 0xbc, 0x71, 0x11,
8843 0x22, 0xc2, 0xcf, 0xf7, 0x7e, 0x61, 0x7d, 0x7d,
8844 0x9d, 0x3c, 0xcf, 0xb1, 0xd6, 0x56, 0x60, 0xe7,
8845 0x08, 0xc1, 0x43, 0xd0, 0x0c, 0xbc, 0x22, 0xd4,
8846 0xf2, 0x2a, 0xe2, 0x39, 0xb5, 0x05, 0x22, 0x0a,
8847 0x33, 0x97, 0x32, 0x6b, 0x5a, 0x6b, 0x44, 0x84,
8848 0xeb, 0x1b, 0xd7, 0x48, 0x92, 0x04, 0xe7, 0x5c,
8849 0x4d, 0xb1, 0x73, 0x55, 0x2a, 0x0d, 0xfd, 0xa0,
8850 0xc7, 0x69, 0x2f, 0xc5, 0x33, 0x28, 0x41, 0x45,
8851 0x09, 0x51, 0x74, 0x8e, 0x39, 0x5c, 0x66, 0x3c,
8852 0x22, 0x25, 0xbb, 0x0f, 0xf6, 0xb9, 0xbe, 0xb1,
8853 0x81, 0xb5, 0x67, 0x14, 0x45, 0x7f, 0x08, 0xb6,
8854 0xd6, 0x0e, 0x2b, 0x53, 0x1b, 0x06, 0x4c, 0xf2,
8855 0x84, 0x81, 0xc8, 0xfc, 0x3b, 0x70, 0x64, 0xa5,
8856 0x29, 0x10, 0xf1, 0xac, 0x5e, 0x7b, 0x96, 0x46,
8857 0x23, 0xc1, 0xb9, 0x1c, 0xad, 0xf5, 0x10, 0x9c,
8858 0xe7, 0xf9, 0x90, 0x63, 0x34, 0x21, 0x9e, 0xff,
8859 0x6f, 0xd2, 0xac, 0x62, 0x5d, 0xe2, 0xbd, 0x20,
8860 0x52, 0x02, 0x0a, 0xeb, 0x2c, 0xe5, 0xa0, 0x9c,
8861 0x28, 0x06, 0xc5, 0xa5, 0x39, 0xc3, 0xdf, 0xfb,
8862 0xbd, 0x73, 0x9b, 0x1b, 0x0d, 0x43, 0x23, 0x31,
8863 0xe4, 0xb9, 0x90, 0x17, 0x93, 0xb2, 0x51, 0x40,
8864 0x2a, 0x81, 0x38, 0x01, 0x11, 0x41, 0x29, 0xc8,
8865 0x5d, 0x4e, 0xaf, 0xd7, 0x9b, 0x28, 0x56, 0x0a,
8866 0x3e, 0xf9, 0xf8, 0x25, 0xbc, 0x97, 0x19, 0xac,
8867 0x22, 0x5d, 0x98, 0x47, 0x1b, 0x4d, 0xf0, 0x1e,
8868 0x77, 0x66, 0x6b, 0xd8, 0xc9, 0xc7, 0xfb, 0x80,
8869 0x42, 0x55, 0x22, 0xab, 0xcb, 0x2b, 0xa5, 0x2c,
8870 0x3a, 0xc7, 0x9d, 0x46, 0x9a, 0xa6, 0x18, 0x7d,
8871 0xfe, 0x96, 0xca, 0xbe, 0x00, 0xc3, 0x03, 0xa3,
8872 0x28, 0x99, 0x52, 0x5c, 0xb7, 0x4e, 0xa7, 0x43,
8873 0x51, 0x14, 0x5a, 0x6b, 0xdd, 0x57, 0x59, 0x96,
8874 0x91, 0xa6, 0xe9, 0x07, 0x65, 0x59, 0x7e, 0x28,
8875 0x22, 0x17, 0x6e, 0x9b, 0x49, 0x92, 0x7c, 0x66,
8876 0xad, 0x7d, 0x57, 0x8d, 0x1a, 0x7d, 0xab, 0xd5,
8877 0x52, 0xc0, 0x1c, 0x90, 0xa6, 0x69, 0x7a, 0xe9,
8878 0xf5, 0xe6, 0xcd, 0xf6, 0x8d, 0x1b, 0xaf, 0xc4,
8879 0x9b, 0x9b, 0x9b, 0x18, 0x63, 0x08, 0x04, 0x08,
8880 0xc3, 0xba, 0xf5, 0xc1, 0xb3, 0xf7, 0xdb, 0x1e,
8881 0xdb, 0xdb, 0xdb, 0xf2, 0xe3, 0x9d, 0x3b, 0xaf,
8882 0xb6, 0xef, 0xb7, 0xdb, 0x80, 0x03, 0x2c, 0x50,
8883 0x64, 0x59, 0x16, 0xea, 0x71, 0x37, 0x80, 0x05,
8884 0x60, 0xc1, 0x39, 0xf7, 0xc4, 0xc1, 0xc1, 0xe1,
8885 0xe7, 0xdf, 0xdd, 0xbe, 0xfd, 0xce, 0xde, 0xc3,
8886 0x3d, 0xb3, 0xb2, 0xf2, 0xb4, 0x5e, 0xb9, 0xba,
8887 0x82, 0xd1, 0x86, 0xc3, 0xa3, 0x43, 0xfe, 0x38,
8888 0x38, 0x08, 0x8f, 0x1e, 0x3e, 0x92, 0xc3, 0x83,
8889 0xa3, 0x9d, 0xf6, 0xfd, 0xb6, 0x01, 0x96, 0x81,
8890 0x5e, 0x25, 0xac, 0x07, 0x9c, 0xd5, 0xc1, 0x53,
8891 0x9d, 0x77, 0xe7, 0x87, 0x9d, 0x5b, 0xcb, 0xcb,
8892 0xcb, 0xbb, 0x57, 0x96, 0xaf, 0xbc, 0xbc, 0xb8,
8893 0xb8, 0xb8, 0xf1, 0xe4, 0x53, 0x97, 0x9f, 0x31,
8894 0xda, 0x44, 0x9d, 0x4e, 0xe7, 0xaf, 0x93, 0x6e,
8895 0xf7, 0xf7, 0x6e, 0xb7, 0x7b, 0xf7, 0xe8, 0xe8,
8896 0xcf, 0xef, 0x81, 0xa2, 0xb6, 0x37, 0x00, 0x03,
8897 0x00, 0x55, 0x7f, 0xf3, 0x5a, 0xad, 0x56, 0x54,
8898 0x57, 0x0e, 0x24, 0x33, 0xe3, 0x08, 0xc8, 0x47,
8899 0x21, 0x57, 0xee, 0x80, 0xd3, 0x6a, 0x2e, 0xcf,
8900 0xb2, 0x4c, 0xce, 0x81, 0x6b, 0xb9, 0xae, 0xbb,
8901 0x01, 0x74, 0xe5, 0x0a, 0xf0, 0x8c, 0x1a, 0xe2,
8902 0xb0, 0x54, 0x02, 0xe0, 0xb3, 0x2c, 0x9b, 0x8a,
8903 0xf8, 0x1f, 0xe6, 0xf9, 0x95, 0x73, 0xdb, 0x78,
8904 0xbd, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
8905 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00,
8906 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
8907 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
8908 0x72, 0x2d, 0x67, 0x75, 0x65, 0x73, 0x74, 0x2d,
8909 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e,
8910 0x75, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8911 0x14, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8912 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
8913 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
8914 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
8915 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
8916 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
8917 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
8918 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
8919 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
8920 0x20, 0x33, 0x2e, 0x31, 0x36, 0x2e, 0x30, 0x20,
8921 0x6f, 0x6e, 0x20, 0x54, 0x68, 0x75, 0x20, 0x4a,
8922 0x61, 0x6e, 0x20, 0x31, 0x36, 0x20, 0x31, 0x36,
8923 0x3a, 0x31, 0x33, 0x3a, 0x33, 0x38, 0x20, 0x32,
8924 0x30, 0x31, 0x34, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
8925 0x3c, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
8926 0x63, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21,
8927 0x2d, 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72,
8928 0x66, 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71,
8929 0x75, 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74,
8930 0x6b, 0x2b, 0x20, 0x33, 0x2e, 0x30, 0x20, 0x2d,
8931 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62,
8932 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
8933 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44,
8934 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x20, 0x69,
8935 0x64, 0x3d, 0x22, 0x67, 0x75, 0x65, 0x73, 0x74,
8936 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x64,
8937 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x3e, 0x0a,
8938 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8939 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8940 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
8941 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
8942 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8943 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8944 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8945 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8946 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c,
8947 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
8948 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
8949 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x47, 0x75,
8950 0x65, 0x73, 0x74, 0x20, 0x44, 0x65, 0x74, 0x61,
8951 0x69, 0x6c, 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8952 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8953 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8954 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8955 0x65, 0x3d, 0x22, 0x72, 0x65, 0x73, 0x69, 0x7a,
8956 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
8957 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8958 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8959 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8960 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8961 0x3d, 0x22, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
8962 0x74, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22,
8963 0x3e, 0x34, 0x30, 0x30, 0x3c, 0x2f, 0x70, 0x72,
8964 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8965 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8966 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8967 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65,
8968 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64,
8969 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70,
8970 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8971 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69,
8972 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d,
8973 0x65, 0x3d, 0x22, 0x72, 0x65, 0x73, 0x70, 0x6f,
8974 0x6e, 0x73, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e,
8975 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69,
8976 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65,
8977 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
8978 0x5f, 0x67, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x64,
8979 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x5f, 0x72,
8980 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
8981 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
8982 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
8983 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
8984 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72,
8985 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c,
8986 0x64, 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x22,
8987 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8988 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
8989 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
8990 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69,
8991 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f,
8992 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x32, 0x22,
8993 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8994 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8995 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8996 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
8997 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8998 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8999 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9000 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9001 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9002 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f, 0x72,
9003 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f,
9004 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74, 0x69,
9005 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9006 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9007 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9008 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9009 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
9010 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e,
9011 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9012 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9013 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
9014 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
9015 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
9016 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
9017 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x22,
9018 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9019 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
9020 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
9021 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75,
9022 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78, 0x22,
9023 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61,
9024 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74, 0x69,
9025 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x32,
9026 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9027 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9028 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9029 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
9030 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
9031 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
9032 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9033 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9034 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9035 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9036 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
9037 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x74,
9038 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
9039 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9040 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9041 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9042 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9043 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9044 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
9045 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
9046 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
9047 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20,
9048 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74,
9049 0x6f, 0x6e, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
9050 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9051 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9052 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9053 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
9054 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
9055 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
9056 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
9057 0x5f, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x3c, 0x2f,
9058 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9059 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9060 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9061 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9062 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9063 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
9064 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9065 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9066 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9067 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9068 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9069 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9070 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
9071 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72,
9072 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9073 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9074 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9075 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9076 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9077 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x65,
9078 0x63, 0x65, 0x69, 0x76, 0x65, 0x73, 0x5f, 0x64,
9079 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22, 0x3e,
9080 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9081 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9083 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9084 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9085 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9086 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
9087 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
9088 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9089 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9090 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9091 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
9092 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
9093 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9094 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
9095 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
9096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9097 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9098 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9099 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
9100 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
9101 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9102 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9103 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9104 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9105 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9106 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9107 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
9108 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9109 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9110 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9111 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9112 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9113 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
9114 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
9115 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9116 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9117 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9118 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
9119 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
9120 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9121 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
9122 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9123 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
9124 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
9125 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9126 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
9127 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9129 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9130 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
9131 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
9132 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9133 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9134 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9135 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9136 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9137 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
9138 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
9139 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9140 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9141 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9142 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9143 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x61,
9144 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22,
9145 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72,
9146 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9147 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9148 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9149 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9150 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
9151 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
9152 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9153 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9154 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
9155 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
9156 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9157 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
9158 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9159 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
9160 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9161 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
9162 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
9163 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x54, 0x61, 0x62,
9164 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
9165 0x67, 0x72, 0x69, 0x64, 0x31, 0x22, 0x3e, 0x0a,
9166 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9167 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9168 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9169 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
9170 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
9171 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9172 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9173 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9174 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9175 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9176 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
9177 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
9178 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9179 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9180 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9181 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9182 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9183 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
9184 0x77, 0x69, 0x64, 0x74, 0x68, 0x22, 0x3e, 0x36,
9185 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9186 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9187 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9188 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9189 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9190 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x70, 0x61, 0x63,
9191 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36, 0x3c, 0x2f,
9192 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9193 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9194 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9195 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9196 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x6f,
9197 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x73, 0x70, 0x61,
9198 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36, 0x3c,
9199 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9200 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9201 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9202 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9203 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e,
9204 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x22, 0x3e, 0x32,
9205 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9206 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9207 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9208 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9209 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
9211 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
9212 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
9213 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
9214 0x64, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
9215 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9216 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9217 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9218 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9219 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
9220 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
9221 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9222 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9223 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9224 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9225 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9226 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
9227 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
9228 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
9229 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9230 0x0a, 0x20, 0x20, 0x20, 0x20, 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, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22,
9235 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9236 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9238 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9239 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9240 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
9241 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
9242 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
9243 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
9244 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x3c, 0x2f, 0x70,
9245 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9246 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9247 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9248 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
9249 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9250 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9251 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
9252 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9253 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9254 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9255 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9256 0x22, 0x78, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
9257 0x6e, 0x73, 0x22, 0x3e, 0x47, 0x54, 0x4b, 0x5f,
9258 0x53, 0x48, 0x52, 0x49, 0x4e, 0x4b, 0x20, 0x7c,
9259 0x20, 0x47, 0x54, 0x4b, 0x5f, 0x46, 0x49, 0x4c,
9260 0x4c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9261 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9262 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9263 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9264 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9265 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x79, 0x5f, 0x6f,
9266 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e,
9267 0x47, 0x54, 0x4b, 0x5f, 0x46, 0x49, 0x4c, 0x4c,
9268 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9269 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9270 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9271 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
9272 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9273 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9274 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
9275 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9276 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
9277 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
9278 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9279 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
9280 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
9281 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61,
9282 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d,
9283 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x32, 0x22,
9284 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9285 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9286 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9287 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9288 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
9289 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9290 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9291 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9292 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9293 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9294 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9295 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
9296 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
9297 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9298 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9299 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9300 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9301 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9302 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
9303 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x31,
9304 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9305 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9306 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9307 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9308 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9309 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
9310 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
9311 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
9312 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x47, 0x55,
9313 0x49, 0x44, 0x3a, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9314 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9315 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9316 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
9317 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
9318 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9319 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
9320 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
9321 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9322 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9323 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9324 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74,
9325 0x6f, 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
9326 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
9327 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9328 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9329 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9330 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9331 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9332 0x62, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61,
9333 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32,
9334 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9335 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9336 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9337 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9338 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9339 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x5f, 0x6f, 0x70,
9340 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x47,
9341 0x54, 0x4b, 0x5f, 0x53, 0x48, 0x52, 0x49, 0x4e,
9342 0x4b, 0x20, 0x7c, 0x20, 0x47, 0x54, 0x4b, 0x5f,
9343 0x46, 0x49, 0x4c, 0x4c, 0x3c, 0x2f, 0x70, 0x72,
9344 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9345 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9346 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9347 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9348 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9349 0x79, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
9350 0x73, 0x22, 0x3e, 0x47, 0x54, 0x4b, 0x5f, 0x46,
9351 0x49, 0x4c, 0x4c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9352 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9353 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9354 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
9355 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
9356 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9357 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
9358 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9359 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9360 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
9361 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9362 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9363 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
9364 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
9365 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
9366 0x69, 0x64, 0x3d, 0x22, 0x6e, 0x61, 0x6d, 0x65,
9367 0x76, 0x61, 0x6c, 0x75, 0x65, 0x6c, 0x61, 0x62,
9368 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9369 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9370 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9371 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9372 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
9373 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
9374 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9375 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9376 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9377 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9378 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9379 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
9380 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
9381 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
9382 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9383 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9384 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9385 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9386 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9387 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e,
9388 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9389 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9390 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9391 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9392 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9393 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
9394 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
9395 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
9396 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
9397 0x3e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3c, 0x2f,
9398 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9399 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9400 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9401 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9402 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9403 0x3d, 0x22, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
9404 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
9405 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9406 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9407 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9408 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
9409 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
9410 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9411 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
9412 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
9413 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9414 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9415 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9416 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x65,
9417 0x66, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
9418 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
9419 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9420 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9421 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9422 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9423 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9424 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x61, 0x74,
9425 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
9426 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9427 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9428 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9429 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9430 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9431 0x65, 0x3d, 0x22, 0x79, 0x5f, 0x6f, 0x70, 0x74,
9432 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x47, 0x54,
9433 0x4b, 0x5f, 0x46, 0x49, 0x4c, 0x4c, 0x3c, 0x2f,
9434 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9435 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9436 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9437 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
9438 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9439 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9440 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9441 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9442 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
9443 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9444 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9445 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9446 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9447 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65,
9448 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x67,
9449 0x75, 0x69, 0x64, 0x76, 0x61, 0x6c, 0x75, 0x65,
9450 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e, 0x0a,
9451 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9452 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9453 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9454 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9455 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
9456 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
9457 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9458 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9459 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9460 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9461 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9462 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
9463 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
9464 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9465 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9466 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9467 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9468 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9469 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61, 0x6c,
9470 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
9471 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9472 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9473 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9474 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9475 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9476 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
9477 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
9478 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
9479 0x65, 0x73, 0x22, 0x3e, 0x6c, 0x61, 0x62, 0x65,
9480 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9481 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9482 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9483 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9484 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9485 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x65, 0x6c,
9486 0x65, 0x63, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22,
9487 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
9488 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9489 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9490 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9491 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
9492 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9493 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9494 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
9495 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9497 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9498 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9499 0x22, 0x6c, 0x65, 0x66, 0x74, 0x5f, 0x61, 0x74,
9500 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x31, 0x3c,
9501 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9502 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9503 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9504 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9505 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9506 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67, 0x68, 0x74,
9507 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22,
9508 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9509 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9510 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9511 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9512 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9513 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
9514 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
9515 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9516 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9517 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9518 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9519 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9520 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
9521 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74,
9522 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
9523 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9524 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9525 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9526 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9527 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9528 0x65, 0x3d, 0x22, 0x79, 0x5f, 0x6f, 0x70, 0x74,
9529 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x47, 0x54,
9530 0x4b, 0x5f, 0x46, 0x49, 0x4c, 0x4c, 0x3c, 0x2f,
9531 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9532 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9533 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9534 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
9535 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9536 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9537 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9538 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9539 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
9540 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9541 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9542 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
9543 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9544 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9545 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9546 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
9547 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
9548 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9549 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9550 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9551 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9552 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9553 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
9554 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9555 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9556 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9557 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9558 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9559 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
9560 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
9561 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9562 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9563 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
9564 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
9565 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9566 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9567 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
9568 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
9569 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
9570 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9571 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
9572 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73,
9573 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9574 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d,
9575 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x20, 0x72,
9576 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d,
9577 0x22, 0x2d, 0x37, 0x22, 0x3e, 0x62, 0x75, 0x74,
9578 0x74, 0x6f, 0x6e, 0x31, 0x3c, 0x2f, 0x61, 0x63,
9579 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64,
9580 0x67, 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9581 0x20, 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f,
9582 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
9583 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
9584 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x3c,
9585 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
9586 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28, 0x75,
9587 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72, 0x74,
9588 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2e,
9589 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00,
9590 0x96, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9591 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
9592 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
9593 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
9594 0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
9595 0x61, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49,
9596 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64,
9597 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
9598 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d,
9599 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00,
9600 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f,
9601 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
9602 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63,
9603 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b,
9604 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x02, 0x13, 0x49,
9605 0x44, 0x41, 0x54, 0x38, 0x8d, 0xa5, 0x93, 0xcb,
9606 0x6a, 0x14, 0x41, 0x14, 0x86, 0xbf, 0x53, 0x55,
9607 0x73, 0x6d, 0x48, 0x32, 0x20, 0x06, 0x62, 0x12,
9608 0x23, 0x26, 0x0b, 0xb7, 0xde, 0x36, 0xba, 0x70,
9609 0x63, 0x06, 0x1d, 0xf0, 0x19, 0x7c, 0x04, 0x37,
9610 0x82, 0xb8, 0x51, 0x50, 0x04, 0xf1, 0x31, 0x7c,
9611 0x83, 0x6c, 0x5c, 0x08, 0x09, 0x11, 0x22, 0xe2,
9612 0xde, 0x60, 0xbc, 0x81, 0x26, 0x10, 0x83, 0x61,
9613 0x48, 0x9c, 0xe9, 0xea, 0xe9, 0x9e, 0xee, 0x3a,
9614 0x2e, 0x3a, 0x11, 0x13, 0x03, 0x41, 0x3c, 0x9b,
9615 0x2a, 0xaa, 0xea, 0xff, 0xcf, 0x77, 0xce, 0xa1,
9616 0xa4, 0xdd, 0x6e, 0xf3, 0x3f, 0xe1, 0x3a, 0x9d,
9617 0xce, 0x1d, 0x11, 0x79, 0xa8, 0xaa, 0xb5, 0x7f,
9618 0x11, 0x8a, 0x88, 0x57, 0xd5, 0xbb, 0x4e, 0x55,
9619 0x1f, 0xb7, 0x6f, 0x5c, 0x8f, 0x9a, 0x8d, 0x26,
9620 0x79, 0xae, 0xc7, 0x67, 0x74, 0x82, 0xb5, 0x86,
9621 0x6e, 0xb7, 0x5b, 0x5f, 0x5a, 0x7c, 0xf5, 0xc4,
9622 0xa9, 0x6a, 0x6d, 0x74, 0x74, 0x84, 0xf9, 0x9b,
9623 0xcf, 0x49, 0xe9, 0x03, 0xa0, 0x7a, 0x84, 0xd1,
9624 0xde, 0x51, 0x4d, 0x22, 0x5e, 0xbe, 0xb8, 0xcd,
9625 0xc8, 0xe8, 0x28, 0x40, 0xc3, 0xed, 0xdf, 0xa7,
9626 0xa1, 0xcf, 0x85, 0xab, 0x63, 0x88, 0xc8, 0x1e,
9627 0x22, 0x80, 0x94, 0xab, 0x00, 0x5a, 0xee, 0xdf,
9628 0x2c, 0x6f, 0xb3, 0xfa, 0xee, 0x3d, 0x53, 0x53,
9629 0x93, 0x25, 0x51, 0x9a, 0xa6, 0x80, 0xa0, 0xe2,
9630 0x88, 0xd3, 0x50, 0x0a, 0x14, 0x44, 0xe4, 0x80,
9631 0x49, 0x36, 0xcc, 0xd9, 0xee, 0xfe, 0x04, 0x1c,
9632 0x67, 0x67, 0x67, 0x31, 0x12, 0x4a, 0x03, 0xef,
9633 0x3d, 0x21, 0x14, 0x18, 0x63, 0x18, 0xe4, 0x52,
9634 0x66, 0x2b, 0x9b, 0x04, 0x94, 0xc2, 0xcd, 0x1f,
9635 0x3b, 0xc4, 0x3e, 0x05, 0xa0, 0x61, 0x5a, 0x7c,
9636 0x58, 0x5b, 0x63, 0x7a, 0x7a, 0x92, 0x24, 0x49,
9637 0x70, 0x49, 0x92, 0x50, 0x14, 0x01, 0x8c, 0x23,
9638 0xc9, 0xcb, 0x6c, 0x8a, 0x20, 0x40, 0x9c, 0xa4,
9639 0xec, 0xf4, 0x12, 0x54, 0x1d, 0x95, 0xfa, 0x5e,
9640 0xb5, 0x89, 0x65, 0x7a, 0xe6, 0x34, 0x15, 0x67,
9641 0xf0, 0xde, 0xe3, 0xe2, 0x38, 0x46, 0x83, 0x62,
9642 0x4c, 0x85, 0x41, 0x70, 0xfb, 0x00, 0x24, 0xe9,
9643 0x90, 0x6c, 0x68, 0x70, 0xb5, 0xe8, 0xe0, 0xf8,
9644 0xac, 0xe5, 0xf3, 0xc7, 0x4f, 0xcc, 0xcd, 0xcd,
9645 0xd2, 0xef, 0xf7, 0x4b, 0x02, 0x45, 0x11, 0x6b,
9646 0x49, 0x83, 0x03, 0x05, 0x45, 0x51, 0x6b, 0xa9,
9647 0xd8, 0x23, 0x86, 0x61, 0x87, 0x4c, 0x9c, 0x9a,
9648 0xc0, 0x18, 0xca, 0x12, 0xbc, 0xf7, 0x00, 0x18,
9649 0xe3, 0xb0, 0xd5, 0xe8, 0x6f, 0xc5, 0xa1, 0x18,
9650 0x9a, 0x3e, 0x45, 0x51, 0xa0, 0x08, 0x71, 0x1c,
9651 0xe3, 0x42, 0x28, 0xbb, 0xd9, 0x6a, 0x38, 0xb2,
9652 0xcd, 0xc1, 0xb1, 0x06, 0x51, 0xd5, 0x21, 0x46,
9653 0x31, 0x22, 0x25, 0x81, 0x73, 0xae, 0xb7, 0xfe,
9654 0x6d, 0xa3, 0xf5, 0xec, 0xd1, 0xf9, 0x63, 0xc5,
9655 0xbf, 0x29, 0xd2, 0x9c, 0xf5, 0xf5, 0x0d, 0x80,
9656 0x1d, 0xe9, 0x74, 0x3a, 0xb7, 0x6a, 0xb5, 0xda,
9657 0x03, 0x11, 0x8d, 0x40, 0x0c, 0x30, 0x53, 0xa9,
9658 0x38, 0x57, 0xa9, 0x56, 0xc5, 0x1a, 0x03, 0x40,
9659 0x11, 0x02, 0x59, 0x96, 0x69, 0x3e, 0xcc, 0x87,
9660 0xc0, 0x57, 0xd0, 0xa0, 0xca, 0xae, 0xf7, 0xc9,
9661 0x7d, 0x97, 0xe7, 0xf9, 0x42, 0x9e, 0xe7, 0x0b,
9662 0x00, 0xaa, 0x1a, 0xb5, 0x4e, 0x8c, 0xbd, 0x9d,
9663 0x6f, 0xb7, 0xcf, 0x5d, 0xba, 0x78, 0x99, 0xf1,
9664 0x93, 0xe3, 0xa8, 0x2a, 0x5b, 0x5b, 0xdf, 0x59,
9665 0x79, 0xbd, 0xa2, 0x4b, 0xcb, 0x4b, 0xab, 0x49,
9666 0x6f, 0x70, 0x25, 0xcb, 0x32, 0xbf, 0x4f, 0x23,
9667 0x87, 0xbf, 0xb3, 0x31, 0x66, 0xa4, 0xde, 0xac,
9668 0x3f, 0x6d, 0x46, 0xcd, 0x6b, 0xd6, 0x9a, 0x33,
9669 0x80, 0x16, 0xa1, 0xf8, 0x32, 0xf0, 0x83, 0xc5,
9670 0xde, 0x6e, 0xff, 0x9e, 0x88, 0xc4, 0x7f, 0xbe,
9671 0xff, 0x05, 0x77, 0x8f, 0xf2, 0x46, 0xb9, 0x93,
9672 0x0d, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
9673 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00,
9674 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
9675 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
9676 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00,
9677 0x9d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9678 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
9679 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
9680 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
9681 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
9682 0xf8, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
9683 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
9684 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
9685 0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
9686 0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
9687 0x00, 0x00, 0x03, 0xb6, 0x49, 0x44, 0x41, 0x54,
9688 0x48, 0xc7, 0xdd, 0xd5, 0xdb, 0x4f, 0xdb, 0x65,
9689 0x1c, 0xc7, 0x71, 0x74, 0xc6, 0x8d, 0xcd, 0x44,
9690 0x63, 0x98, 0x5c, 0x18, 0x5d, 0xe2, 0x58, 0x0a,
9691 0x23, 0xd9, 0xd4, 0xb5, 0x63, 0x94, 0x6e, 0x1c,
9692 0x5a, 0xe8, 0x0a, 0x6d, 0x29, 0x1d, 0x74, 0x1b,
9693 0xe3, 0xd0, 0xb1, 0xe2, 0x36, 0xed, 0x08, 0x32,
9694 0x56, 0xe2, 0x74, 0x01, 0x2e, 0x66, 0x4a, 0xd7,
9695 0x33, 0xac, 0x58, 0xb3, 0x18, 0x63, 0xa2, 0x71,
9696 0xd9, 0x3f, 0xa0, 0x76, 0x5d, 0xc1, 0x3b, 0xdd,
9697 0x3a, 0xb0, 0x60, 0x49, 0x47, 0x69, 0xcb, 0xa1,
9698 0x40, 0x66, 0x34, 0xbb, 0x6b, 0x41, 0xf4, 0xe3,
9699 0xb7, 0xed, 0x4f, 0xb6, 0xdf, 0x28, 0xd3, 0x85,
9700 0x78, 0xe3, 0x93, 0xbc, 0xd2, 0xd3, 0xd3, 0xe7,
9701 0xfd, 0x7b, 0x9e, 0x5f, 0xd2, 0x66, 0x64, 0xfc,
9702 0x6f, 0x46, 0x7f, 0x7f, 0xbf, 0xce, 0x6a, 0xb5,
9703 0x2e, 0x59, 0x2c, 0x16, 0x6c, 0x04, 0xad, 0xb1,
9704 0xe2, 0x70, 0x38, 0x06, 0xd2, 0x05, 0x1e, 0x04,
9705 0x43, 0x01, 0xfc, 0xf2, 0xeb, 0xe2, 0x86, 0x44,
9706 0xe7, 0x67, 0x60, 0xb3, 0xd9, 0x96, 0x9d, 0x4e,
9707 0xe7, 0x56, 0x56, 0xc0, 0x6e, 0xb7, 0xc7, 0xa2,
9708 0x0b, 0x33, 0x10, 0x94, 0x5a, 0x51, 0xa1, 0xb0,
9709 0xb0, 0x94, 0x57, 0xb3, 0x89, 0xe4, 0xf4, 0x28,
9710 0x37, 0x27, 0x89, 0x64, 0x66, 0x08, 0x4a, 0x2c,
9711 0x88, 0x2e, 0xcc, 0xaf, 0x46, 0x68, 0xad, 0x38,
9712 0xed, 0xe6, 0xa5, 0xf4, 0x81, 0x8a, 0x3e, 0x34,
9713 0x76, 0x98, 0xd1, 0xd4, 0x61, 0x61, 0x58, 0xd1,
9714 0x7c, 0x3e, 0x45, 0xdd, 0x99, 0x60, 0xc3, 0xc9,
9715 0x0b, 0x29, 0x2d, 0x3a, 0x3b, 0x5a, 0x2e, 0xd8,
9716 0x21, 0xaa, 0x36, 0x22, 0x18, 0x9a, 0xc6, 0xf0,
9717 0xf7, 0x1e, 0x44, 0xa6, 0xc3, 0xeb, 0x07, 0x66,
9718 0xe6, 0x22, 0x38, 0x20, 0xec, 0xc3, 0x91, 0xb3,
9719 0x06, 0xd4, 0xbe, 0x7b, 0x05, 0x75, 0xef, 0xfd,
9720 0xcd, 0x08, 0x95, 0x36, 0xe5, 0xe8, 0x39, 0xa2,
9721 0x35, 0xe1, 0xd8, 0xb9, 0x04, 0x33, 0x8e, 0xb7,
9722 0x99, 0x71, 0x50, 0xd2, 0x97, 0x0c, 0xfc, 0xc3,
9723 0x0e, 0x6c, 0xb1, 0x99, 0xd9, 0x30, 0x0e, 0x94,
9724 0x19, 0x20, 0x7d, 0xe7, 0x0a, 0x64, 0xa7, 0x53,
9725 0xe4, 0x67, 0x18, 0xa7, 0x8d, 0xa8, 0x3e, 0x93,
9726 0xa2, 0x38, 0x6b, 0x44, 0x55, 0xab, 0x01, 0x45,
9727 0x47, 0xbb, 0x91, 0x2b, 0xee, 0xc0, 0x2e, 0xee,
9728 0x25, 0x04, 0x26, 0xc3, 0xf0, 0x0c, 0xdd, 0x42,
9729 0x38, 0x12, 0x4a, 0x1f, 0xb0, 0x51, 0x20, 0x32,
9730 0x1b, 0x42, 0x81, 0xc8, 0x88, 0x8a, 0x53, 0x8f,
9731 0xd0, 0x98, 0x20, 0x6e, 0x7d, 0xa8, 0xa4, 0xb9,
9732 0x0f, 0x79, 0xd2, 0x8b, 0xd8, 0x21, 0xec, 0xc4,
9733 0xeb, 0x65, 0xe7, 0x93, 0x72, 0xf6, 0xf7, 0x62,
9734 0x22, 0x10, 0x44, 0xe2, 0x88, 0x17, 0xef, 0x47,
9735 0xd3, 0x07, 0xf4, 0x7a, 0x7d, 0x2c, 0x3c, 0x3d,
9736 0x05, 0x9e, 0xd0, 0x84, 0x62, 0x35, 0x2d, 0x74,
9737 0x32, 0xa5, 0xb4, 0xc5, 0xbc, 0x6a, 0x9f, 0xea,
9738 0x32, 0x72, 0x2a, 0x2f, 0x61, 0xa7, 0xe4, 0x23,
9739 0x16, 0x4e, 0xe1, 0x65, 0x8c, 0xfb, 0x03, 0xb8,
9740 0xe9, 0x76, 0x21, 0x14, 0x9e, 0x82, 0xc1, 0x60,
9741 0x88, 0xf7, 0xf4, 0xf4, 0xb0, 0x03, 0xdd, 0xdd,
9742 0xdd, 0xb1, 0x50, 0x64, 0x12, 0xbc, 0x32, 0x0b,
9743 0xf8, 0x4d, 0x56, 0x14, 0x36, 0xd9, 0xc0, 0x6f,
9744 0x4e, 0x29, 0x68, 0xb0, 0x60, 0xb7, 0x52, 0x0f,
9745 0x4e, 0xf5, 0xc7, 0x69, 0xe5, 0x15, 0xe9, 0xf1,
9746 0xd3, 0x98, 0x1f, 0xe1, 0xe9, 0x20, 0xe6, 0x17,
9747 0xe7, 0xd0, 0xdb, 0xdb, 0xbb, 0x36, 0xa0, 0xd3,
9748 0xe9, 0x62, 0xa1, 0xf0, 0x24, 0xb8, 0x42, 0x3b,
9749 0xb8, 0x8d, 0x03, 0xab, 0xde, 0xac, 0xb7, 0x23,
9750 0x5f, 0x65, 0x79, 0xa2, 0xdd, 0x87, 0x4c, 0xb8,
9751 0x3b, 0xea, 0xc3, 0x77, 0xae, 0x6f, 0x30, 0x15,
9752 0x0e, 0xa2, 0xab, 0x4b, 0x17, 0x6f, 0x6f, 0x6f,
9753 0x67, 0x07, 0xb4, 0x5a, 0x6d, 0x6c, 0x2a, 0x11,
9754 0x28, 0xbf, 0x8a, 0xbd, 0x8d, 0x9f, 0x3c, 0x95,
9755 0xfc, 0x52, 0x1b, 0x6e, 0x7b, 0x47, 0x11, 0x08,
9756 0xfa, 0xe9, 0x3e, 0xcc, 0xa2, 0xad, 0xad, 0x6d,
9757 0x6d, 0x40, 0xa3, 0xd1, 0x24, 0x03, 0x05, 0x87,
9758 0x07, 0xb1, 0xef, 0xd4, 0x17, 0x4f, 0x65, 0x8f,
9759 0x70, 0x00, 0x3f, 0xdc, 0xf6, 0xc2, 0x1f, 0xf0,
9760 0x51, 0x60, 0x0e, 0x9a, 0x56, 0x4d, 0x5c, 0xad,
9761 0x56, 0xb3, 0x03, 0xf5, 0xf5, 0xf5, 0xb1, 0xc4,
9762 0xf6, 0xca, 0x65, 0x9f, 0xd2, 0x2e, 0x1c, 0x6b,
9763 0x08, 0x64, 0x4e, 0x88, 0x6a, 0xaf, 0x41, 0x20,
9764 0x75, 0xb2, 0xde, 0xe7, 0x91, 0x82, 0x92, 0x7e,
9765 0x8c, 0xf8, 0xbc, 0x18, 0xf3, 0x8f, 0x24, 0xef,
9766 0x41, 0x43, 0x43, 0x43, 0x5c, 0xa1, 0x50, 0xb0,
9767 0x03, 0x4a, 0xa5, 0x92, 0x6e, 0x72, 0x10, 0xbe,
9768 0xf1, 0x11, 0x8c, 0xfa, 0xee, 0x3c, 0xc6, 0x8b,
9769 0xc0, 0xd4, 0x04, 0x26, 0x23, 0x01, 0xdc, 0x0b,
9770 0x4d, 0xd0, 0x0d, 0xf5, 0x32, 0xee, 0xa6, 0x8c,
9771 0x3f, 0xb4, 0xb0, 0x18, 0x05, 0xad, 0xb5, 0x36,
9772 0x20, 0xaf, 0x96, 0x3f, 0xb8, 0xe3, 0xfd, 0x11,
9773 0x3f, 0xfb, 0xc7, 0xd2, 0x9b, 0x18, 0x4f, 0xcb,
9774 0xff, 0x98, 0xc4, 0xdc, 0xaa, 0xaa, 0xaa, 0x65,
9775 0x99, 0x4c, 0xc6, 0xfe, 0xb1, 0xa3, 0xe2, 0x07,
9776 0x52, 0xa9, 0x74, 0x49, 0x22, 0x91, 0x60, 0x23,
9777 0x2a, 0x2b, 0x2b, 0x57, 0x6a, 0x6a, 0x6a, 0x06,
9778 0xd7, 0xfb, 0x5b, 0x78, 0x86, 0x3c, 0x4f, 0x5e,
9779 0xcc, 0xcc, 0xcc, 0x7c, 0xed, 0x48, 0x9d, 0x72,
9780 0xe9, 0xea, 0x60, 0x3f, 0x5c, 0xee, 0x6f, 0x71,
9781 0x6b, 0xe8, 0x26, 0xdc, 0x43, 0x2e, 0xb8, 0x3d,
9782 0x2e, 0x78, 0x86, 0xdd, 0xc9, 0xe7, 0x9f, 0x7d,
9783 0x7e, 0x0d, 0xaa, 0x63, 0xb5, 0x2b, 0x39, 0xb9,
9784 0x39, 0xc5, 0xf4, 0x9d, 0x57, 0xc9, 0xcb, 0x64,
9785 0x0b, 0xb3, 0x4e, 0xda, 0x91, 0x49, 0xb2, 0xc8,
9786 0x0e, 0x92, 0xcf, 0x17, 0xf0, 0x1d, 0xaa, 0xe3,
9787 0x75, 0xcb, 0xba, 0x8b, 0x9d, 0x7f, 0x98, 0xed,
9788 0x26, 0x7c, 0x75, 0xfd, 0x4b, 0x5c, 0xbf, 0xf1,
9789 0x35, 0x6c, 0x03, 0x56, 0x74, 0x7d, 0xd8, 0xf5,
9790 0xe7, 0x89, 0xa6, 0x13, 0xbf, 0x1f, 0x2a, 0x3e,
9791 0x38, 0x4c, 0x73, 0xcb, 0xc8, 0x5e, 0xb2, 0x93,
9792 0x64, 0x93, 0x6d, 0xeb, 0x05, 0xb6, 0x3c, 0x1a,
9793 0x20, 0xfc, 0xac, 0xac, 0xac, 0xf7, 0x39, 0xb9,
9794 0x9c, 0x1b, 0x5c, 0x1e, 0x77, 0xa4, 0x5c, 0x2c,
9795 0xba, 0x7f, 0x58, 0x22, 0xfe, 0x6d, 0x7f, 0x01,
9796 0xef, 0x1e, 0x87, 0xb3, 0xcb, 0x93, 0x9d, 0xbd,
9797 0xdd, 0x4e, 0x73, 0xea, 0x48, 0x11, 0xd9, 0xc3,
9798 0x04, 0x5e, 0x61, 0x4e, 0x61, 0xdd, 0xf1, 0x1c,
9799 0x79, 0x81, 0xb9, 0x92, 0x37, 0x48, 0x1e, 0x79,
9800 0x8b, 0x08, 0x88, 0x98, 0x54, 0x11, 0x21, 0x29,
9801 0x24, 0x6f, 0x33, 0x17, 0x92, 0x98, 0xb7, 0x9d,
9802 0xb9, 0xf2, 0x4d, 0x19, 0xff, 0x62, 0x24, 0xce,
9803 0xf0, 0x59, 0x66, 0x72, 0x22, 0xb8, 0x99, 0x39,
9804 0xbe, 0x6d, 0x4c, 0x7c, 0x2b, 0xf3, 0x7a, 0x33,
9805 0xf3, 0xf9, 0xa6, 0x27, 0x9d, 0xfb, 0x7f, 0x3a,
9806 0xfe, 0x02, 0x28, 0x79, 0x9c, 0x19, 0x37, 0x65,
9807 0x9c, 0x80, 0x00, 0x00, 0x00, 0x25, 0x74, 0x45,
9808 0x58, 0x74, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x63,
9809 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x32, 0x30,
9810 0x31, 0x31, 0x2d, 0x31, 0x32, 0x2d, 0x31, 0x31,
9811 0x54, 0x31, 0x38, 0x3a, 0x32, 0x31, 0x3a, 0x31,
9812 0x35, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0xbb,
9813 0x7c, 0x93, 0xb7, 0x00, 0x00, 0x00, 0x25, 0x74,
9814 0x45, 0x58, 0x74, 0x64, 0x61, 0x74, 0x65, 0x3a,
9815 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x00, 0x32,
9816 0x30, 0x30, 0x38, 0x2d, 0x30, 0x31, 0x2d, 0x30,
9817 0x33, 0x54, 0x31, 0x37, 0x3a, 0x30, 0x38, 0x3a,
9818 0x32, 0x30, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30,
9819 0x66, 0xb0, 0xbf, 0xaa, 0x00, 0x00, 0x00, 0x19,
9820 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74,
9821 0x77, 0x61, 0x72, 0x65, 0x00, 0x77, 0x77, 0x77,
9822 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70,
9823 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b, 0xee, 0x3c,
9824 0x1a, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e,
9825 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00, 0x28,
9826 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72,
9827 0x74, 0x2d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
9828 0x72, 0x2f, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
9829 0x32, 0x32, 0x78, 0x32, 0x32, 0x2f, 0x00, 0x00,
9830 0x13, 0x00, 0x00, 0x00, 0x32, 0x35, 0x36, 0x78,
9831 0x32, 0x35, 0x36, 0x2f, 0x10, 0x00, 0x00, 0x00
9832 } };
9833
9834 static GStaticResource static_resource = { virt_viewer_resource_data.data, sizeof (virt_viewer_resource_data.data), NULL, NULL, NULL };
9835 extern GResource *virt_viewer_get_resource (void);
9836 GResource *virt_viewer_get_resource (void)
9837 {
9838 return g_static_resource_get_resource (&static_resource);
9839 }
9840 /*
9841 If G_HAS_CONSTRUCTORS is true then the compiler support *both* constructors and
9842 destructors, in a sane way, including e.g. on library unload. If not you're on
9843 your own.
9844
9845 Some compilers need #pragma to handle this, which does not work with macros,
9846 so the way you need to use this is (for constructors):
9847
9848 #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA
9849 #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(my_constructor)
9850 #endif
9851 G_DEFINE_CONSTRUCTOR(my_constructor)
9852 static void my_constructor(void) {
9853 ...
9854 }
9855
9856 */
9857
9858 #ifndef __GTK_DOC_IGNORE__
9859
9860 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
9861
9862 #define G_HAS_CONSTRUCTORS 1
9863
9864 #define G_DEFINE_CONSTRUCTOR(_func) static void __attribute__((constructor)) _func (void);
9865 #define G_DEFINE_DESTRUCTOR(_func) static void __attribute__((destructor)) _func (void);
9866
9867 #elif defined (_MSC_VER) && (_MSC_VER >= 1500)
9868 /* Visual studio 2008 and later has _Pragma */
9869
9870 #define G_HAS_CONSTRUCTORS 1
9871
9872 /* We do some weird things to avoid the constructors being optimized
9873 * away on VS2015 if WholeProgramOptimization is enabled. First we
9874 * make a reference to the array from the wrapper to make sure its
9875 * references. Then we use a pragma to make sure the wrapper function
9876 * symbol is always included at the link stage. Also, the symbols
9877 * need to be extern (but not dllexport), even though they are not
9878 * really used from another object file.
9879 */
9880
9881 /* We need to account for differences between the mangling of symbols
9882 * for Win32 (x86) and x64 programs, as symbols on Win32 are prefixed
9883 * with an underscore but symbols on x64 are not.
9884 */
9885 #ifdef _WIN64
9886 #define G_MSVC_SYMBOL_PREFIX ""
9887 #else
9888 #define G_MSVC_SYMBOL_PREFIX "_"
9889 #endif
9890
9891 #define G_DEFINE_CONSTRUCTOR(_func) G_MSVC_CTOR (_func, G_MSVC_SYMBOL_PREFIX)
9892 #define G_DEFINE_DESTRUCTOR(_func) G_MSVC_DTOR (_func, G_MSVC_SYMBOL_PREFIX)
9893
9894 #define G_MSVC_CTOR(_func,_sym_prefix) \
9895 static void _func(void); \
9896 extern int (* _array ## _func)(void); \
9897 int _func ## _wrapper(void) { _func(); g_slist_find (NULL, _array ## _func); return 0; } \
9898 __pragma(comment(linker,"/include:" _sym_prefix # _func "_wrapper")) \
9899 __pragma(section(".CRT$XCU",read)) \
9900 __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _wrapper;
9901
9902 #define G_MSVC_DTOR(_func,_sym_prefix) \
9903 static void _func(void); \
9904 extern int (* _array ## _func)(void); \
9905 int _func ## _constructor(void) { atexit (_func); g_slist_find (NULL, _array ## _func); return 0; } \
9906 __pragma(comment(linker,"/include:" _sym_prefix # _func "_constructor")) \
9907 __pragma(section(".CRT$XCU",read)) \
9908 __declspec(allocate(".CRT$XCU")) int (* _array ## _func)(void) = _func ## _constructor;
9909
9910 #elif defined (_MSC_VER)
9911
9912 #define G_HAS_CONSTRUCTORS 1
9913
9914 /* Pre Visual studio 2008 must use #pragma section */
9915 #define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1
9916 #define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1
9917
9918 #define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \
9919 section(".CRT$XCU",read)
9920 #define G_DEFINE_CONSTRUCTOR(_func) \
9921 static void _func(void); \
9922 static int _func ## _wrapper(void) { _func(); return 0; } \
9923 __declspec(allocate(".CRT$XCU")) static int (*p)(void) = _func ## _wrapper;
9924
9925 #define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \
9926 section(".CRT$XCU",read)
9927 #define G_DEFINE_DESTRUCTOR(_func) \
9928 static void _func(void); \
9929 static int _func ## _constructor(void) { atexit (_func); return 0; } \
9930 __declspec(allocate(".CRT$XCU")) static int (* _array ## _func)(void) = _func ## _constructor;
9931
9932 #elif defined(__SUNPRO_C)
9933
9934 /* This is not tested, but i believe it should work, based on:
9935 * http://opensource.apple.com/source/OpenSSL098/OpenSSL098-35/src/fips/fips_premain.c
9936 */
9937
9938 #define G_HAS_CONSTRUCTORS 1
9939
9940 #define G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA 1
9941 #define G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA 1
9942
9943 #define G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(_func) \
9944 init(_func)
9945 #define G_DEFINE_CONSTRUCTOR(_func) \
9946 static void _func(void);
9947
9948 #define G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(_func) \
9949 fini(_func)
9950 #define G_DEFINE_DESTRUCTOR(_func) \
9951 static void _func(void);
9952
9953 #else
9954
9955 /* constructors not supported for this compiler */
9956
9957 #endif
9958
9959 #endif /* __GTK_DOC_IGNORE__ */
9960
9961 #ifdef G_HAS_CONSTRUCTORS
9962
9963 #ifdef G_DEFINE_CONSTRUCTOR_NEEDS_PRAGMA
9964 #pragma G_DEFINE_CONSTRUCTOR_PRAGMA_ARGS(resource_constructor)
9965 #endif
9966 G_DEFINE_CONSTRUCTOR(resource_constructor)
9967 #ifdef G_DEFINE_DESTRUCTOR_NEEDS_PRAGMA
9968 #pragma G_DEFINE_DESTRUCTOR_PRAGMA_ARGS(resource_destructor)
9969 #endif
9970 G_DEFINE_DESTRUCTOR(resource_destructor)
9971
9972 #else
9973 #warning "Constructor not supported on this compiler, linking in resources will not work"
9974 #endif
9975
9976 static void resource_constructor (void)
9977 {
9978 g_static_resource_init (&static_resource);
9979 }
9980
9981 static void resource_destructor (void)
9982 {
9983 g_static_resource_fini (&static_resource);
9984 }
0 #ifndef __RESOURCE_virt_viewer_H__
1 #define __RESOURCE_virt_viewer_H__
2
3 #include <gio/gio.h>
4
5 extern GResource *virt_viewer_get_resource (void);
6 #endif
2323
2424 #include <config.h>
2525
26 #include <spice-audio.h>
2726 #include <glib/gi18n.h>
2827
29 #include <spice-option.h>
30 #include <spice-util.h>
31 #include <spice-client.h>
28 #include <spice-client-gtk.h>
3229
3330 #include <usb-device-widget.h>
3431 #include "virt-viewer-file.h"
32 #include "virt-viewer-file-transfer-dialog.h"
3533 #include "virt-viewer-util.h"
3634 #include "virt-viewer-session-spice.h"
3735 #include "virt-viewer-display-spice.h"
3836 #include "virt-viewer-auth.h"
39 #include "virt-glib-compat.h"
40
41 #if !GLIB_CHECK_VERSION(2, 26, 0)
42 #include "gbinding.h"
43 #include "gbinding.c"
44 #endif
4537
4638 G_DEFINE_TYPE (VirtViewerSessionSpice, virt_viewer_session_spice, VIRT_VIEWER_TYPE_SESSION)
4739
5749 gboolean has_sw_smartcard_reader;
5850 guint pass_try;
5951 gboolean did_auto_conf;
52 VirtViewerFileTransferDialog *file_transfer_dialog;
53
6054 };
6155
6256 #define VIRT_VIEWER_SESSION_SPICE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_SESSION_SPICE, VirtViewerSessionSpicePrivate))
154148 spice->priv->audio = NULL;
155149
156150 g_clear_object(&spice->priv->main_window);
151 if (spice->priv->file_transfer_dialog) {
152 gtk_widget_destroy(GTK_WIDGET(spice->priv->file_transfer_dialog));
153 spice->priv->file_transfer_dialog = NULL;
154 }
157155
158156 G_OBJECT_CLASS(virt_viewer_session_spice_parent_class)->dispose(obj);
159157 }
230228 virt_viewer_signal_connect_object(self, "notify::share-folder",
231229 G_CALLBACK(update_share_folder), self,
232230 G_CONNECT_SWAPPED);
231
232 self->priv->file_transfer_dialog =
233 virt_viewer_file_transfer_dialog_new(self->priv->main_window);
233234
234235 G_OBJECT_CLASS(virt_viewer_session_spice_parent_class)->constructed(obj);
235236 }
585586 g_object_set(G_OBJECT(gtk), "auto-usbredir", enabled, NULL);
586587 }
587588
589 if (virt_viewer_file_is_set(file, "usb-filter")) {
590 gchar *filterstr = virt_viewer_file_get_usb_filter(file);
591 SpiceUsbDeviceManager *manager = spice_usb_device_manager_get(session,
592 NULL);
593 if (manager != NULL) {
594 g_object_set(manager, "auto-connect-filter", filterstr, NULL);
595 }
596 g_free(filterstr);
597 }
598
588599 if (virt_viewer_file_is_set(file, "secure-channels")) {
589600 gchar **channels = virt_viewer_file_get_secure_channels(file, NULL);
590601 g_object_set(G_OBJECT(session), "secure-channels", channels, NULL);
784795 /* Create the widgets */
785796 dialog = gtk_dialog_new_with_buttons(_("Select USB devices for redirection"), parent,
786797 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
787 GTK_STOCK_CLOSE, GTK_RESPONSE_ACCEPT,
798 _("_Close"), GTK_RESPONSE_ACCEPT,
788799 NULL);
789800 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
790801 gtk_container_set_border_width(GTK_CONTAINER(dialog), 12);
830841 destroy_display(gpointer data)
831842 {
832843 VirtViewerDisplay *display = VIRT_VIEWER_DISPLAY(data);
833 VirtViewerSession *session = virt_viewer_display_get_session(display);
834
844 VirtViewerSession *session;
845
846 g_return_if_fail (display != NULL);
847
848 session = virt_viewer_display_get_session(display);
835849 g_debug("Destroying spice display %p", display);
836850 virt_viewer_session_remove_display(session, display);
837851 g_object_unref(display);
880894 display = g_ptr_array_index(displays, i);
881895 if (display == NULL) {
882896 display = virt_viewer_display_spice_new(self, channel, i);
897 if (display == NULL)
898 continue;
899
883900 g_debug("creating spice display (#:%d)",
884901 virt_viewer_display_get_nth(VIRT_VIEWER_DISPLAY(display)));
885902 g_ptr_array_index(displays, i) = g_object_ref_sink(display);
919936 }
920937
921938 static void
939 on_new_file_transfer(SpiceMainChannel *channel G_GNUC_UNUSED,
940 SpiceFileTransferTask *task,
941 gpointer user_data)
942 {
943 VirtViewerSessionSpice *self = VIRT_VIEWER_SESSION_SPICE(user_data);
944 virt_viewer_file_transfer_dialog_add_task(self->priv->file_transfer_dialog,
945 task);
946 }
947
948 static void
922949 virt_viewer_session_spice_channel_new(SpiceSession *s,
923950 SpiceChannel *channel,
924951 VirtViewerSession *session)
950977
951978 virt_viewer_signal_connect_object(channel, "notify::agent-connected",
952979 G_CALLBACK(agent_connected_changed), self, 0);
980 virt_viewer_signal_connect_object(channel, "new-file-transfer",
981 G_CALLBACK(on_new_file_transfer), self, 0);
953982 }
954983
955984 if (SPICE_IS_DISPLAY_CHANNEL(channel)) {
2424 #define _VIRT_VIEWER_SESSION_SPICE_H
2525
2626 #include <glib-object.h>
27 #include <spice-widget.h>
28 #include <spice-audio.h>
27 #include <spice-client.h>
2928
3029 #include "virt-viewer-session.h"
3130
2323
2424 #include <config.h>
2525
26 /* gtk-vnc uses deprecated API, so disable warnings for this file */
27 #define GLIB_DISABLE_DEPRECATION_WARNINGS
28
2629 #include "virt-viewer-auth.h"
2730 #include "virt-viewer-session-vnc.h"
2831 #include "virt-viewer-display-vnc.h"
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (c) 2016 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: Cole Robinson <crobinso@redhat.com>
20 * Author: Fabiano Fidêncio <fidencio@redhat.com>
21 */
22
23 #include <config.h>
24
25 #include "virt-viewer-timed-revealer.h"
26
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
32 struct _VirtViewerTimedRevealerPrivate
33 {
34 gboolean fullscreen;
35 guint timeout_id;
36
37 GtkWidget *revealer;
38 };
39
40 static void
41 virt_viewer_timed_revealer_unregister_timeout(VirtViewerTimedRevealer *self)
42 {
43 VirtViewerTimedRevealerPrivate *priv = self->priv;
44
45 if (priv->timeout_id) {
46 g_source_remove(priv->timeout_id);
47 priv->timeout_id = 0;
48 }
49 }
50
51 static gboolean
52 schedule_unreveal_timeout_cb(VirtViewerTimedRevealer *self)
53 {
54 VirtViewerTimedRevealerPrivate *priv = self->priv;
55
56 gtk_revealer_set_reveal_child(GTK_REVEALER(priv->revealer), FALSE);
57 priv->timeout_id = 0;
58
59 return FALSE;
60 }
61
62 static void
63 virt_viewer_timed_revealer_schedule_unreveal_timeout(VirtViewerTimedRevealer *self,
64 guint timeout)
65 {
66 VirtViewerTimedRevealerPrivate *priv = self->priv;
67
68 if (priv->timeout_id != 0)
69 return;
70
71 priv->timeout_id = g_timeout_add(timeout,
72 (GSourceFunc)schedule_unreveal_timeout_cb,
73 self);
74 }
75
76 static void
77 virt_viewer_timed_revealer_grab_notify(VirtViewerTimedRevealer *self,
78 gboolean was_grabbed,
79 gpointer user_data G_GNUC_UNUSED)
80 {
81 if (was_grabbed)
82 virt_viewer_timed_revealer_schedule_unreveal_timeout(self, 1000);
83 }
84
85 static gboolean
86 virt_viewer_timed_revealer_enter_leave_notify(VirtViewerTimedRevealer *self,
87 GdkEventCrossing *event,
88 gpointer user_data G_GNUC_UNUSED)
89 {
90 VirtViewerTimedRevealerPrivate *priv = self->priv;
91 GdkDevice *device;
92 GtkAllocation allocation;
93 gint x, y;
94 gboolean entered;
95
96 if (!priv->fullscreen)
97 return FALSE;
98
99 device = gdk_event_get_device((GdkEvent *)event);
100
101 gdk_window_get_device_position(event->window, device, &x, &y, 0);
102 gtk_widget_get_allocation(GTK_WIDGET(self), &allocation);
103
104 entered = !!(x >= 0 && y >= 0 && x < allocation.width && y < allocation.height);
105
106 /*
107 * Pointer exited the toolbar, and toolbar is revealed. Schedule
108 * a timeout to close it, if one isn't already scheduled.
109 */
110 if (!entered && gtk_revealer_get_reveal_child(GTK_REVEALER(priv->revealer))) {
111 virt_viewer_timed_revealer_schedule_unreveal_timeout(self, 1000);
112 return FALSE;
113 }
114
115 virt_viewer_timed_revealer_unregister_timeout(self);
116 if (entered && !gtk_revealer_get_reveal_child(GTK_REVEALER(priv->revealer))) {
117 gtk_revealer_set_reveal_child(GTK_REVEALER(priv->revealer), TRUE);
118 }
119
120 return FALSE;
121 }
122
123 static void
124 virt_viewer_timed_revealer_init(VirtViewerTimedRevealer *self)
125 {
126 self->priv = VIRT_VIEWER_TIMED_REVEALER_GET_PRIVATE(self);
127 }
128
129 static void
130 virt_viewer_timed_revealer_dispose(GObject *object)
131 {
132 VirtViewerTimedRevealer *self = VIRT_VIEWER_TIMED_REVEALER(object);
133 VirtViewerTimedRevealerPrivate *priv = self->priv;
134
135 priv->revealer = NULL;
136
137 if (priv->timeout_id) {
138 g_source_remove(priv->timeout_id);
139 priv->timeout_id = 0;
140 }
141
142 G_OBJECT_CLASS(virt_viewer_timed_revealer_parent_class)->dispose(object);
143 }
144
145
146 static void
147 virt_viewer_timed_revealer_class_init(VirtViewerTimedRevealerClass *klass)
148 {
149 GObjectClass *object_class = G_OBJECT_CLASS(klass);
150
151 g_type_class_add_private (klass, sizeof (VirtViewerTimedRevealerPrivate));
152
153 object_class->dispose = virt_viewer_timed_revealer_dispose;
154 }
155
156 VirtViewerTimedRevealer *
157 virt_viewer_timed_revealer_new(GtkWidget *toolbar)
158 {
159 VirtViewerTimedRevealer *self;
160 VirtViewerTimedRevealerPrivate *priv;
161
162 self = g_object_new(VIRT_VIEWER_TYPE_TIMED_REVEALER, NULL);
163
164 priv = self->priv;
165
166 priv->fullscreen = FALSE;
167 priv->timeout_id = 0;
168
169 priv->revealer = gtk_revealer_new();
170 gtk_container_add(GTK_CONTAINER(priv->revealer), toolbar);
171
172 /*
173 * Adding the revealer to the eventbox seems to ensure the
174 * GtkEventBox always has 1 invisible pixel showing at the top of the
175 * screen, which we can use to grab the pointer event to show
176 * the hidden toolbar.
177 */
178
179 gtk_container_add(GTK_CONTAINER(self), priv->revealer);
180 gtk_widget_set_halign(GTK_WIDGET(self), GTK_ALIGN_CENTER);
181 gtk_widget_set_valign(GTK_WIDGET(self), GTK_ALIGN_START);
182 gtk_widget_show_all(GTK_WIDGET(self));
183
184 g_signal_connect(self,
185 "grab-notify",
186 G_CALLBACK(virt_viewer_timed_revealer_grab_notify),
187 NULL);
188 g_signal_connect(self,
189 "enter-notify-event",
190 G_CALLBACK(virt_viewer_timed_revealer_enter_leave_notify),
191 NULL);
192 g_signal_connect(self,
193 "leave-notify-event",
194 G_CALLBACK(virt_viewer_timed_revealer_enter_leave_notify),
195 NULL);
196
197 return self;
198 }
199
200 void
201 virt_viewer_timed_revealer_force_reveal(VirtViewerTimedRevealer *self,
202 gboolean fullscreen)
203 {
204 VirtViewerTimedRevealerPrivate *priv;
205
206 g_return_if_fail(VIRT_VIEWER_IS_TIMED_REVEALER(self));
207
208 priv = self->priv;
209
210 virt_viewer_timed_revealer_unregister_timeout(self);
211 priv->fullscreen = fullscreen;
212 gtk_revealer_set_reveal_child(GTK_REVEALER(priv->revealer), fullscreen);
213 virt_viewer_timed_revealer_schedule_unreveal_timeout(self, 2000);
214 }
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (c) 2016 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: Cole Robinson <crobinso@redhat.com>
20 * Author: Fabiano Fidêncio <fidencio@redhat.com>
21 */
22
23 #ifndef _VIRT_VIEWER_TIMED_REVEALER_H
24 #define _VIRT_VIEWER_TIMED_REVEALER_H
25
26 #include <glib-object.h>
27 #include <gtk/gtk.h>
28
29 G_BEGIN_DECLS
30
31 #define VIRT_VIEWER_TYPE_TIMED_REVEALER virt_viewer_timed_revealer_get_type()
32
33 #define VIRT_VIEWER_TIMED_REVEALER(obj) \
34 (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIRT_VIEWER_TYPE_TIMED_REVEALER, VirtViewerTimedRevealer))
35
36 #define VIRT_VIEWER_TIMED_REVEALER_CLASS(klass) \
37 (G_TYPE_CHECK_CLASS_CAST ((klass), VIRT_VIEWER_TYPE_TIMED_REVEALER, VirtViewerTimedRevealerClass))
38
39 #define VIRT_VIEWER_IS_TIMED_REVEALER(obj) \
40 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIRT_VIEWER_TYPE_TIMED_REVEALER))
41
42 #define VIRT_VIEWER_IS_TIMED_REVEALER_CLASS(klass) \
43 (G_TYPE_CHECK_CLASS_TYPE ((klass), VIRT_VIEWER_TYPE_TIMED_REVEALER))
44
45 #define VIRT_VIEWER_TIMED_REVEALER_GET_CLASS(obj) \
46 (G_TYPE_INSTANCE_GET_CLASS ((obj), VIRT_VIEWER_TYPE_TIMED_REVEALER, VirtViewerTimedRevealerClass))
47
48 typedef struct _VirtViewerTimedRevealerPrivate VirtViewerTimedRevealerPrivate;
49
50 typedef struct {
51 GtkEventBox parent;
52 VirtViewerTimedRevealerPrivate *priv;
53 } VirtViewerTimedRevealer;
54
55 typedef struct {
56 GtkEventBoxClass parent_class;
57 } VirtViewerTimedRevealerClass;
58
59 GType virt_viewer_timed_revealer_get_type (void);
60
61 VirtViewerTimedRevealer *
62 virt_viewer_timed_revealer_new(GtkWidget *toolbar);
63
64 void
65 virt_viewer_timed_revealer_force_reveal(VirtViewerTimedRevealer *self,
66 gboolean fullscreen);
67
68 G_END_DECLS
69
70 #endif /* _VIRT_VIEWER_TIMED_REVEALER_H */
4848
4949 GtkBuilder *virt_viewer_util_load_ui(const char *name)
5050 {
51 struct stat sb;
5251 GtkBuilder *builder;
53 GError *error = NULL;
54
55 builder = gtk_builder_new();
56 if (stat(name, &sb) >= 0) {
57 gtk_builder_add_from_file(builder, name, &error);
58 } else {
59 gchar *path = g_build_filename(PACKAGE_DATADIR, "ui", name, NULL);
60 gboolean success = (gtk_builder_add_from_file(builder, path, &error) != 0);
61 if (error) {
62 if (!(error->domain == G_FILE_ERROR && error->code == G_FILE_ERROR_NOENT))
63 g_warning("Failed to add ui file '%s': %s", path, error->message);
64 g_clear_error(&error);
65 }
66 g_free(path);
67
68 if (!success) {
69 const gchar * const * dirs = g_get_system_data_dirs();
70 g_return_val_if_fail(dirs != NULL, NULL);
71
72 while (dirs[0] != NULL) {
73 path = g_build_filename(dirs[0], PACKAGE, "ui", name, NULL);
74 if (gtk_builder_add_from_file(builder, path, NULL) != 0) {
75 g_free(path);
76 break;
77 }
78 g_free(path);
79 dirs++;
80 }
81 if (dirs[0] == NULL)
82 goto failed;
83 }
84 }
85
86 if (error) {
87 g_error("Cannot load UI description %s: %s", name,
88 error->message);
89 g_clear_error(&error);
90 goto failed;
91 }
92
52 gchar *resource = g_strdup_printf("%s/ui/%s",
53 VIRT_VIEWER_RESOURCE_PREFIX,
54 name);
55
56 builder = gtk_builder_new_from_resource(resource);
57
58 g_free(resource);
9359 return builder;
94 failed:
95 g_error("failed to find UI description file");
96 g_object_unref(builder);
97 return NULL;
9860 }
9961
10062 int
172134 whc_new(GObject *instance,
173135 GObject *observer)
174136 {
175 WeakHandlerCtx *ctx = g_slice_new0(WeakHandlerCtx);
137 WeakHandlerCtx *ctx = g_new0(WeakHandlerCtx, 1);
176138
177139 ctx->instance = instance;
178140 ctx->observer = observer;
183145 static void
184146 whc_free(WeakHandlerCtx *ctx)
185147 {
186 g_slice_free(WeakHandlerCtx, ctx);
148 g_free(ctx);
187149 }
188150
189151 static void observer_destroyed_cb(gpointer, GObject *);
289251 g_log_default_handler(log_domain, log_level, message, unused_data);
290252 }
291253
254 #ifdef G_OS_WIN32
255 static BOOL is_handle_valid(HANDLE h)
256 {
257 if (h == INVALID_HANDLE_VALUE || h == NULL)
258 return FALSE;
259
260 DWORD flags;
261 return GetHandleInformation(h, &flags);
262 }
263 #endif
264
292265 void virt_viewer_util_init(const char *appname)
293266 {
294267 #ifdef G_OS_WIN32
301274 */
302275 CreateMutexA(0, 0, "VirtViewerMutex");
303276
304 if (AttachConsole(ATTACH_PARENT_PROCESS) != 0) {
305 freopen("CONIN$", "r", stdin);
306 freopen("CONOUT$", "w", stdout);
307 freopen("CONOUT$", "w", stderr);
308 dup2(fileno(stdin), STDIN_FILENO);
309 dup2(fileno(stdout), STDOUT_FILENO);
310 dup2(fileno(stderr), STDERR_FILENO);
311 }
312 #endif
313
314 #if !GLIB_CHECK_VERSION(2,31,0)
315 g_thread_init(NULL);
277 /* Get redirection from parent */
278 BOOL out_valid = is_handle_valid(GetStdHandle(STD_OUTPUT_HANDLE));
279 BOOL err_valid = is_handle_valid(GetStdHandle(STD_ERROR_HANDLE));
280
281 /*
282 * If not all output are redirected try to redirect to parent console.
283 * If parent has no console (for instance as launched from GUI) just
284 * rely on default (no output).
285 */
286 if ((!out_valid || !err_valid) && AttachConsole(ATTACH_PARENT_PROCESS)) {
287 if (!out_valid) {
288 freopen("CONOUT$", "w", stdout);
289 dup2(fileno(stdout), STDOUT_FILENO);
290 }
291 if (!err_valid) {
292 freopen("CONOUT$", "w", stderr);
293 dup2(fileno(stderr), STDERR_FILENO);
294 }
295 }
316296 #endif
317297
318298 setlocale(LC_ALL, "");
540520 guint j = *(guint*)p2;
541521 GdkRectangle *m1 = g_hash_table_lookup(displays, GINT_TO_POINTER(i));
542522 GdkRectangle *m2 = g_hash_table_lookup(displays, GINT_TO_POINTER(j));
523 g_return_val_if_fail(m1 != NULL && m2 != NULL, 0);
543524 diff = m1->x - m2->x;
544525 if (diff == 0)
545526 diff = m1->y - m2->y;
566547 guint max_id = 0;
567548 guint ndisplays = 0;
568549 GHashTableIter iter;
569 gpointer key, value;
550 gpointer key;
570551
571552 g_return_if_fail(displays != NULL);
572553
579560 sorted_displays = g_new0(guint, ndisplays);
580561
581562 g_hash_table_iter_init(&iter, displays);
582 while (g_hash_table_iter_next(&iter, &key, &value))
563 while (g_hash_table_iter_next(&iter, &key, NULL))
583564 sorted_displays[GPOINTER_TO_INT(key)] = GPOINTER_TO_INT(key);
584565
585566 g_qsort_with_data(sorted_displays, ndisplays, sizeof(guint), displays_cmp, displays);
590571 guint nth = sorted_displays[i];
591572 g_assert(nth < ndisplays);
592573 GdkRectangle *rect = g_hash_table_lookup(displays, GINT_TO_POINTER(nth));
574 g_return_if_fail(rect != NULL);
593575 rect->x = x;
594576 rect->y = 0;
595577 x += rect->width;
614596 gint xmin = G_MAXINT;
615597 gint ymin = G_MAXINT;
616598 GHashTableIter iter;
617 gpointer key, value;
599 gpointer value;
618600
619601 if (g_hash_table_size(displays) == 0)
620602 return;
621603
622604 g_hash_table_iter_init(&iter, displays);
623 while (g_hash_table_iter_next(&iter, &key, &value)) {
605 while (g_hash_table_iter_next(&iter, NULL, &value)) {
624606 GdkRectangle *display = value;
607 g_return_if_fail(display != NULL);
625608 if (display->width > 0 && display->height > 0) {
626609 xmin = MIN(xmin, display->x);
627610 ymin = MIN(ymin, display->y);
632615 if (xmin > 0 || ymin > 0) {
633616 g_debug("%s: Shifting all monitors by (%i, %i)", G_STRFUNC, xmin, ymin);
634617 g_hash_table_iter_init(&iter, displays);
635 while (g_hash_table_iter_next(&iter, &key, &value)) {
618 while (g_hash_table_iter_next(&iter, NULL, &value)) {
636619 GdkRectangle *display = value;
637620 if (display->width > 0 && display->height > 0) {
638621 display->x -= xmin;
642625 }
643626 }
644627
628 /**
629 * virt_viewer_parse_monitor_mappings:
630 * @mappings: (array zero-terminated=1) values for the "monitor-mapping" key
631 * @nmappings: the size of @mappings
632 * @nmonitors: the count of client's monitors
633 *
634 * Parses and validates monitor mappings values to return a hash table
635 * containing the mapping from guest display ids to client monitors ids.
636 *
637 * Returns: (transfer full) a #GHashTable containing mapping from guest display
638 * ids to client monitor ids or %NULL if the mapping is invalid.
639 */
640 GHashTable*
641 virt_viewer_parse_monitor_mappings(gchar **mappings, const gsize nmappings, const gint nmonitors)
642 {
643 GHashTable *displaymap = g_hash_table_new(g_direct_hash, g_direct_equal);
644 GHashTable *monitormap = g_hash_table_new(g_direct_hash, g_direct_equal);
645 gint i, max_display_id = 0;
646 gchar **tokens = NULL;
647
648 if (nmappings == 0) {
649 g_warning("Empty monitor-mapping configuration");
650 goto configerror;
651 }
652
653 for (i = 0; i < nmappings; i++) {
654 gchar *endptr = NULL;
655 gint display = 0, monitor = 0;
656
657 tokens = g_strsplit(mappings[i], ":", 2);
658 if (g_strv_length(tokens) != 2) {
659 g_warning("Invalid monitor-mapping configuration: '%s'. "
660 "Expected format is '<DISPLAY-ID>:<MONITOR-ID>'",
661 mappings[i]);
662 g_strfreev(tokens);
663 goto configerror;
664 }
665
666 display = strtol(tokens[0], &endptr, 10);
667 if ((endptr && *endptr != '\0') || display < 1) {
668 g_warning("Invalid monitor-mapping configuration: display id is invalid: %s %p='%s'", tokens[0], endptr, endptr);
669 g_strfreev(tokens);
670 goto configerror;
671 }
672 monitor = strtol(tokens[1], &endptr, 10);
673 if ((endptr && *endptr != '\0') || monitor < 1) {
674 g_warning("Invalid monitor-mapping configuration: monitor id '%s' is invalid", tokens[1]);
675 g_strfreev(tokens);
676 goto configerror;
677 }
678 g_strfreev(tokens);
679
680 if (monitor > nmonitors) {
681 g_warning("Invalid monitor-mapping configuration: monitor #%i for display #%i does not exist", monitor, display);
682 goto configerror;
683 }
684
685 /* config file format is 1-based, not 0-based */
686 display--;
687 monitor--;
688
689 if (g_hash_table_lookup_extended(displaymap, GINT_TO_POINTER(display), NULL, NULL) ||
690 g_hash_table_lookup_extended(monitormap, GINT_TO_POINTER(monitor), NULL, NULL)) {
691 g_warning("Invalid monitor-mapping configuration: a display or monitor id was specified twice");
692 goto configerror;
693 }
694 g_debug("Fullscreen config: mapping guest display %i to monitor %i", display, monitor);
695 g_hash_table_insert(displaymap, GINT_TO_POINTER(display), GINT_TO_POINTER(monitor));
696 g_hash_table_insert(monitormap, GINT_TO_POINTER(monitor), GINT_TO_POINTER(display));
697 max_display_id = MAX(display, max_display_id);
698 }
699
700 for (i = 0; i < max_display_id; i++) {
701 if (!g_hash_table_lookup_extended(displaymap, GINT_TO_POINTER(i), NULL, NULL)) {
702 g_warning("Invalid monitor-mapping configuration: display #%d was not specified", i+1);
703 goto configerror;
704 }
705 }
706
707 g_hash_table_unref(monitormap);
708 return displaymap;
709
710 configerror:
711 g_hash_table_unref(monitormap);
712 g_hash_table_unref(displaymap);
713 return NULL;
714 }
645715
646716 /*
647717 * Local variables:
2929
3030 enum {
3131 VIRT_VIEWER_ERROR_FAILED,
32 VIRT_VIEWER_ERROR_CANCELLED,
32 VIRT_VIEWER_ERROR_CANCELLED
3333 };
3434
3535 #define VIRT_VIEWER_ERROR virt_viewer_error_quark ()
36 #define VIRT_VIEWER_RESOURCE_PREFIX "/org/virt-manager/virt-viewer"
3637
3738 GQuark virt_viewer_error_quark(void);
3839
5960 void virt_viewer_align_monitors_linear(GHashTable *displays);
6061 void virt_viewer_shift_monitors_to_origin(GHashTable *displays);
6162
63 /* monitor mapping */
64 GHashTable* virt_viewer_parse_monitor_mappings(gchar **mappings,
65 const gsize nmappings,
66 const gint nmonitors);
6267 #endif
6368
6469 /*
6464 return NULL;
6565 }
6666
67 vm_connection = virt_viewer_util_load_ui("virt-viewer-vm-connection.xml");
67 vm_connection = virt_viewer_util_load_ui("virt-viewer-vm-connection.ui");
6868 g_return_val_if_fail(vm_connection != NULL, NULL);
6969
7070 dialog = GTK_WIDGET(gtk_builder_get_object(vm_connection, "vm-connection-dialog"));
+0
-117
src/virt-viewer-vm-connection.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <!-- Generated with glade 3.16.1 -->
2 <interface>
3 <object class="GtkDialog" id="vm-connection-dialog">
4 <property name="can_focus">False</property>
5 <property name="border_width">5</property>
6 <property name="title" translatable="yes">Choose a virtual machine</property>
7 <property name="modal">True</property>
8 <property name="window_position">center-on-parent</property>
9 <property name="default_height">200</property>
10 <property name="destroy_with_parent">True</property>
11 <property name="type_hint">dialog</property>
12 <child internal-child="vbox">
13 <object class="GtkBox" id="dialog-vbox1">
14 <property name="can_focus">False</property>
15 <property name="orientation">vertical</property>
16 <property name="spacing">6</property>
17 <child internal-child="action_area">
18 <object class="GtkButtonBox" id="dialog-action_area1">
19 <property name="can_focus">False</property>
20 <property name="layout_style">end</property>
21 <child>
22 <object class="GtkButton" id="button-cancel">
23 <property name="label">gtk-cancel</property>
24 <property name="visible">True</property>
25 <property name="can_focus">True</property>
26 <property name="receives_default">True</property>
27 <property name="use_stock">True</property>
28 </object>
29 <packing>
30 <property name="expand">False</property>
31 <property name="fill">True</property>
32 <property name="position">0</property>
33 </packing>
34 </child>
35 <child>
36 <object class="GtkButton" id="button-connect">
37 <property name="label">gtk-connect</property>
38 <property name="visible">True</property>
39 <property name="can_focus">True</property>
40 <property name="can_default">True</property>
41 <property name="has_default">True</property>
42 <property name="receives_default">True</property>
43 <property name="use_stock">True</property>
44 </object>
45 <packing>
46 <property name="expand">False</property>
47 <property name="fill">True</property>
48 <property name="position">1</property>
49 </packing>
50 </child>
51 </object>
52 <packing>
53 <property name="expand">False</property>
54 <property name="fill">True</property>
55 <property name="pack_type">end</property>
56 <property name="position">0</property>
57 </packing>
58 </child>
59 <child>
60 <object class="GtkTreeView" id="treeview">
61 <property name="visible">True</property>
62 <property name="can_focus">True</property>
63 <property name="headers_visible">False</property>
64 <property name="search_column">0</property>
65 <property name="enable_grid_lines">horizontal</property>
66 <child internal-child="selection">
67 <object class="GtkTreeSelection" id="treeview-selection"/>
68 </child>
69 <child>
70 <object class="GtkTreeViewColumn" id="treeviewcolumn1">
71 <property name="title" translatable="yes">Name</property>
72 <child>
73 <object class="GtkCellRendererText" id="cellrenderertext1"/>
74 <attributes>
75 <attribute name="text">0</attribute>
76 </attributes>
77 </child>
78 </object>
79 </child>
80 </object>
81 <packing>
82 <property name="expand">True</property>
83 <property name="fill">True</property>
84 <property name="pack_type">end</property>
85 <property name="position">1</property>
86 </packing>
87 </child>
88 <child>
89 <object class="GtkLabel" id="label">
90 <property name="visible">True</property>
91 <property name="can_focus">False</property>
92 <property name="xalign">0</property>
93 <property name="yalign">0</property>
94 <property name="xpad">4</property>
95 <property name="label" translatable="yes">Available virtual machines</property>
96 <property name="ellipsize">end</property>
97 <property name="width_chars">26</property>
98 <attributes>
99 <attribute name="weight" value="bold"/>
100 </attributes>
101 </object>
102 <packing>
103 <property name="expand">False</property>
104 <property name="fill">True</property>
105 <property name="pack_type">end</property>
106 <property name="position">2</property>
107 </packing>
108 </child>
109 </object>
110 </child>
111 <action-widgets>
112 <action-widget response="-6">button-cancel</action-widget>
113 <action-widget response="-3">button-connect</action-widget>
114 </action-widgets>
115 </object>
116 </interface>
3535 #include <glib/gi18n.h>
3636 #include <math.h>
3737
38 #include "virt-gtk-compat.h"
3938 #include "virt-viewer-window.h"
4039 #include "virt-viewer-display.h"
4140 #include "virt-viewer-session.h"
4241 #include "virt-viewer-app.h"
4342 #include "virt-viewer-util.h"
44 #include "view/autoDrawer.h"
43 #include "virt-viewer-timed-revealer.h"
44
45 #define ZOOM_STEP 10
4546
4647 /* Signal handlers for main window (move in a VirtViewerMainWindow?) */
4748 void virt_viewer_window_menu_view_zoom_out(GtkWidget *menu, VirtViewerWindow *self);
8990
9091 GtkBuilder *builder;
9192 GtkWidget *window;
92 GtkWidget *layout;
9393 GtkWidget *toolbar;
9494 GtkWidget *toolbar_usb_device_selection;
9595 GtkWidget *toolbar_send_key;
9696 GtkAccelGroup *accel_group;
9797 VirtViewerNotebook *notebook;
9898 VirtViewerDisplay *display;
99 VirtViewerTimedRevealer *revealer;
99100
100101 gboolean accel_enabled;
101102 GValue accel_setting;
186187 priv->builder = NULL;
187188 }
188189
190 priv->revealer = NULL;
191
189192 for (it = priv->accel_list ; it != NULL ; it = it->next) {
190193 g_object_unref(G_OBJECT(it->data));
191194 }
196199 priv->subtitle = NULL;
197200
198201 g_value_unset(&priv->accel_setting);
199 g_clear_object(&priv->toolbar);
202 priv->toolbar = NULL;
200203
201204 G_OBJECT_CLASS (virt_viewer_window_parent_class)->dispose (object);
202205 }
293296 {
294297 VirtViewerWindowPrivate *priv;
295298 GtkWidget *vbox;
296 GdkColor color;
297299 GSList *accels;
298300
299301 self->priv = GET_PRIVATE(self);
303305 g_value_init(&priv->accel_setting, G_TYPE_STRING);
304306
305307 priv->notebook = virt_viewer_notebook_new();
306 priv->builder = virt_viewer_util_load_ui("virt-viewer.xml");
308 gtk_widget_show(GTK_WIDGET(priv->notebook));
309
310 priv->builder = virt_viewer_util_load_ui("virt-viewer.ui");
307311
308312 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-send")), FALSE);
309313 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-view-zoom")), FALSE);
333337 vbox = GTK_WIDGET(gtk_builder_get_object(priv->builder, "viewer-box"));
334338 virt_viewer_window_toolbar_setup(self);
335339
336 gtk_box_pack_end(GTK_BOX(vbox), priv->layout, TRUE, TRUE, 0);
337 gdk_color_parse("black", &color);
338 gtk_widget_modify_bg(priv->layout, GTK_STATE_NORMAL, &color);
340 gtk_box_pack_end(GTK_BOX(vbox), GTK_WIDGET(priv->notebook), TRUE, TRUE, 0);
339341
340342 priv->window = GTK_WIDGET(gtk_builder_get_object(priv->builder, "viewer"));
341343 gtk_window_add_accel_group(GTK_WINDOW(priv->window), priv->accel_group);
342344
343345 virt_viewer_window_update_title(self);
344346 gtk_window_set_resizable(GTK_WINDOW(priv->window), TRUE);
345 #if GTK_CHECK_VERSION(3, 0, 0)
346347 gtk_window_set_has_resize_grip(GTK_WINDOW(priv->window), FALSE);
347 #endif
348348 priv->accel_enabled = TRUE;
349349
350350 accels = gtk_accel_groups_from_object(G_OBJECT(priv->window));
373373 GtkAllocation allocation;
374374 guint width, height;
375375
376 g_return_val_if_fail(self->priv->display != NULL, NORMAL_ZOOM_LEVEL);
377
376378 gtk_widget_get_allocation(GTK_WIDGET(self->priv->display), &allocation);
377379 virt_viewer_display_get_desktop_size(self->priv->display, &width, &height);
378380
407409 virt_viewer_window_queue_resize(VirtViewerWindow *self)
408410 {
409411 VirtViewerWindowPrivate *priv = self->priv;
410 #if GTK_CHECK_VERSION(3, 0, 0)
411412 GtkRequisition nat;
412413
413414 gtk_window_set_default_size(GTK_WINDOW(priv->window), -1, -1);
414 gtk_widget_get_preferred_size(GTK_WIDGET(priv->window), NULL, &nat);
415 gtk_widget_get_preferred_size(priv->window, NULL, &nat);
415416 gtk_window_resize(GTK_WINDOW(priv->window), nat.width, nat.height);
416 #else
417 gtk_window_resize(GTK_WINDOW(priv->window), 1, 1);
418 #endif
419417 }
420418
421419 static void
431429 gdk_screen_get_monitor_geometry(gdk_screen_get_default(), n, &mon);
432430 gtk_window_move(GTK_WINDOW(priv->window), mon.x, mon.y);
433431
434 gtk_widget_set_size_request(GTK_WIDGET(priv->window),
432 gtk_widget_set_size_request(priv->window,
435433 mon.width,
436434 mon.height);
437435 }
476474 virt_viewer_display_set_monitor(priv->display, -1);
477475 virt_viewer_display_set_fullscreen(priv->display, FALSE);
478476 }
479 ViewAutoDrawer_SetActive(VIEW_AUTODRAWER(priv->layout), FALSE);
477 virt_viewer_timed_revealer_force_reveal(priv->revealer, FALSE);
480478 gtk_widget_show(menu);
481479 gtk_widget_hide(priv->toolbar);
482 gtk_widget_set_size_request(GTK_WIDGET(priv->window), -1, -1);
480 gtk_widget_set_size_request(priv->window, -1, -1);
483481 gtk_window_unfullscreen(GTK_WINDOW(priv->window));
484482
485483 }
513511 virt_viewer_window_menu_fullscreen_set_active(self, TRUE);
514512 gtk_widget_hide(menu);
515513 gtk_widget_show(priv->toolbar);
516 ViewAutoDrawer_SetActive(VIEW_AUTODRAWER(priv->layout), TRUE);
517 ViewAutoDrawer_Close(VIEW_AUTODRAWER(priv->layout));
514 virt_viewer_timed_revealer_force_reveal(priv->revealer, TRUE);
518515
519516 if (priv->display) {
520517 virt_viewer_display_set_monitor(priv->display, monitor);
533530 };
534531
535532 static const struct keyComboDef keyCombos[] = {
536 { { GDK_Control_L, GDK_Alt_L, GDK_Delete, GDK_VoidSymbol }, N_("Ctrl+Alt+_Del"), "<virt-viewer>/send/secure-attention"},
537 { { GDK_Control_L, GDK_Alt_L, GDK_BackSpace, GDK_VoidSymbol }, N_("Ctrl+Alt+_Backspace"), NULL},
538 { { GDK_VoidSymbol }, "" , NULL},
539 { { GDK_Control_L, GDK_Alt_L, GDK_F1, GDK_VoidSymbol }, N_("Ctrl+Alt+F_1"), NULL},
540 { { GDK_Control_L, GDK_Alt_L, GDK_F2, GDK_VoidSymbol }, N_("Ctrl+Alt+F_2"), NULL},
541 { { GDK_Control_L, GDK_Alt_L, GDK_F3, GDK_VoidSymbol }, N_("Ctrl+Alt+F_3"), NULL},
542 { { GDK_Control_L, GDK_Alt_L, GDK_F4, GDK_VoidSymbol }, N_("Ctrl+Alt+F_4"), NULL},
543 { { GDK_Control_L, GDK_Alt_L, GDK_F5, GDK_VoidSymbol }, N_("Ctrl+Alt+F_5"), NULL},
544 { { GDK_Control_L, GDK_Alt_L, GDK_F6, GDK_VoidSymbol }, N_("Ctrl+Alt+F_6"), NULL},
545 { { GDK_Control_L, GDK_Alt_L, GDK_F7, GDK_VoidSymbol }, N_("Ctrl+Alt+F_7"), NULL},
546 { { GDK_Control_L, GDK_Alt_L, GDK_F8, GDK_VoidSymbol }, N_("Ctrl+Alt+F_8"), NULL},
547 { { GDK_Control_L, GDK_Alt_L, GDK_F9, GDK_VoidSymbol }, N_("Ctrl+Alt+F_9"), NULL},
548 { { GDK_Control_L, GDK_Alt_L, GDK_F10, GDK_VoidSymbol }, N_("Ctrl+Alt+F1_0"), NULL},
549 { { GDK_Control_L, GDK_Alt_L, GDK_F11, GDK_VoidSymbol }, N_("Ctrl+Alt+F11"), NULL},
550 { { GDK_Control_L, GDK_Alt_L, GDK_F12, GDK_VoidSymbol }, N_("Ctrl+Alt+F12"), NULL},
551 { { GDK_VoidSymbol }, "" , NULL},
552 { { GDK_Print, GDK_VoidSymbol }, "_PrintScreen", NULL},
533 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_Delete, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+_Del"), "<virt-viewer>/send/secure-attention"},
534 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_BackSpace, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+_Backspace"), NULL},
535 { { GDK_KEY_VoidSymbol }, "" , NULL},
536 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F1, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_1"), NULL},
537 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F2, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_2"), NULL},
538 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F3, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_3"), NULL},
539 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F4, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_4"), NULL},
540 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F5, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_5"), NULL},
541 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F6, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_6"), NULL},
542 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F7, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_7"), NULL},
543 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F8, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_8"), NULL},
544 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F9, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F_9"), NULL},
545 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F10, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F1_0"), NULL},
546 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F11, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F11"), NULL},
547 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F12, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F12"), NULL},
548 { { GDK_KEY_VoidSymbol }, "" , NULL},
549 { { GDK_KEY_Print, GDK_KEY_VoidSymbol }, "_PrintScreen", NULL},
553550 };
554551
555552 static guint
557554 {
558555 guint i;
559556
560 for (i = 0; keys[i] != GDK_VoidSymbol; )
557 for (i = 0; keys[i] != GDK_KEY_VoidSymbol; )
561558 i++;
562559
563560 return i;
583580 {
584581 GtkWidget *item;
585582
586 if (keys == NULL || keys[0] == GDK_VoidSymbol) {
583 if (keys == NULL || keys[0] == GDK_KEY_VoidSymbol) {
587584 item = gtk_separator_menu_item_new();
588585 } else {
589586 item = gtk_menu_item_new_with_mnemonic(label);
603600 static guint*
604601 accel_key_to_keys(const GtkAccelKey *key)
605602 {
606 guint val;
607 GArray *a = g_array_new(FALSE, FALSE, sizeof(guint));
603 guint i;
604 guint *val, *keys;
605 const struct {
606 const guint mask;
607 const guint key;
608 } modifiers[] = {
609 {GDK_SHIFT_MASK, GDK_KEY_Shift_L},
610 {GDK_CONTROL_MASK, GDK_KEY_Control_L},
611 {GDK_MOD1_MASK, GDK_KEY_Alt_L},
612 };
608613
609614 g_warn_if_fail((key->accel_mods &
610615 ~(GDK_SHIFT_MASK | GDK_CONTROL_MASK | GDK_MOD1_MASK)) == 0);
611616
617 keys = val = g_new(guint, 5); /* up to 3 modifiers, key and the stop symbol */
612618 /* first, send the modifiers */
613 if (key->accel_mods & GDK_SHIFT_MASK) {
614 val = GDK_Shift_L;
615 g_array_append_val(a, val);
616 }
617
618 if (key->accel_mods & GDK_CONTROL_MASK) {
619 val = GDK_Control_L;
620 g_array_append_val(a, val);
621 }
622
623 if (key->accel_mods & GDK_MOD1_MASK) {
624 val = GDK_Alt_L;
625 g_array_append_val(a, val);
619 for (i = 0; i < G_N_ELEMENTS(modifiers); i++) {
620 if (key->accel_mods & modifiers[i].mask)
621 *val++ = modifiers[i].key;
626622 }
627623
628624 /* only after, the non-modifier key (ctrl-t, not t-ctrl) */
629 val = key->accel_key;
630 g_array_append_val(a, val);
631
632 val = GDK_VoidSymbol;
633 g_array_append_val(a, val);
634
635 return (guint*)g_array_free(a, FALSE);
625 *val++ = key->accel_key;
626 /* stop symbol */
627 *val = GDK_KEY_VoidSymbol;
628
629 return keys;
636630 }
637631
638632 struct accelCbData
656650
657651 if (!g_str_has_prefix(accel_path, "<virt-viewer>"))
658652 return;
659 if (accel_key == GDK_VoidSymbol || accel_key == 0)
653 if (accel_key == GDK_KEY_VoidSymbol || accel_key == 0)
660654 return;
661655
662656 guint *keys = accel_key_to_keys(&key);
819813 VirtViewerWindow *self)
820814 {
821815 GtkMenu *menu = virt_viewer_window_get_keycombo_menu(self);
822 gtk_menu_attach_to_widget(menu, GTK_WIDGET(self->priv->window), NULL);
816 gtk_menu_attach_to_widget(menu, self->priv->window, NULL);
823817 g_object_ref_sink(menu);
824818 gtk_menu_popup(menu, NULL, NULL, keycombo_menu_location, self,
825819 0, gtk_get_current_event_time());
920914 dialog = gtk_file_chooser_dialog_new("Save screenshot",
921915 NULL,
922916 GTK_FILE_CHOOSER_ACTION_SAVE,
923 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
924 GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
917 _("_Cancel"), GTK_RESPONSE_CANCEL,
918 _("_Save"), GTK_RESPONSE_ACCEPT,
925919 NULL);
926920 gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER (dialog), TRUE);
927921 gtk_window_set_transient_for(GTK_WINDOW(dialog),
968962 virt_viewer_window_menu_preferences_cb(GtkWidget *menu G_GNUC_UNUSED,
969963 VirtViewerWindow *self)
970964 {
971 virt_viewer_app_show_preferences(self->priv->app, GTK_WIDGET(self->priv->window));
965 virt_viewer_app_show_preferences(self->priv->app, self->priv->window);
972966 }
973967
974968 G_MODULE_EXPORT void
983977 virt_viewer_window_menu_help_guest_details(GtkWidget *menu G_GNUC_UNUSED,
984978 VirtViewerWindow *self)
985979 {
986 GtkBuilder *ui = virt_viewer_util_load_ui("virt-viewer-guest-details.xml");
980 GtkBuilder *ui = virt_viewer_util_load_ui("virt-viewer-guest-details.ui");
987981 char *name = NULL;
988982 char *uuid = NULL;
989983
10291023 virt_viewer_window_menu_help_about(GtkWidget *menu G_GNUC_UNUSED,
10301024 VirtViewerWindow *self)
10311025 {
1032 GtkBuilder *about = virt_viewer_util_load_ui("virt-viewer-about.xml");
1033
1034 GtkWidget *dialog = GTK_WIDGET(gtk_builder_get_object(about, "about"));
1026 GtkBuilder *about;
1027 GtkWidget *dialog;
1028 GdkPixbuf *icon;
1029
1030 about = virt_viewer_util_load_ui("virt-viewer-about.ui");
1031
1032 dialog = GTK_WIDGET(gtk_builder_get_object(about, "about"));
1033
10351034 gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION BUILDID);
1035
1036 icon = gdk_pixbuf_new_from_resource(VIRT_VIEWER_RESOURCE_PREFIX"/icons/48x48/virt-viewer.png", NULL);
1037 if (icon != NULL) {
1038 gtk_about_dialog_set_logo(GTK_ABOUT_DIALOG(dialog), icon);
1039 g_object_unref(icon);
1040 } else {
1041 gtk_about_dialog_set_logo_icon_name(GTK_ABOUT_DIALOG(dialog), "virt-viewer");
1042 }
10361043
10371044 gtk_window_set_transient_for(GTK_WINDOW(dialog),
10381045 GTK_WINDOW(self->priv->window));
10491056 virt_viewer_window_toolbar_setup(VirtViewerWindow *self)
10501057 {
10511058 GtkWidget *button;
1059 GtkWidget *overlay;
10521060 VirtViewerWindowPrivate *priv = self->priv;
10531061
1054 priv->toolbar = g_object_ref(gtk_toolbar_new());
1062 priv->toolbar = gtk_toolbar_new();
10551063 gtk_toolbar_set_show_arrow(GTK_TOOLBAR(priv->toolbar), FALSE);
10561064 gtk_widget_set_no_show_all(priv->toolbar, TRUE);
10571065 gtk_toolbar_set_style(GTK_TOOLBAR(priv->toolbar), GTK_TOOLBAR_BOTH_HORIZ);
10581066
10591067 /* Close connection */
1060 button = GTK_WIDGET(gtk_tool_button_new_from_stock(GTK_STOCK_CLOSE));
1068 button = GTK_WIDGET(gtk_tool_button_new(NULL, NULL));
1069 gtk_tool_button_set_icon_name(GTK_TOOL_BUTTON(button), "window-close");
10611070 gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(button), _("Disconnect"));
1062 gtk_widget_show(GTK_WIDGET(button));
1071 gtk_widget_show(button);
10631072 gtk_toolbar_insert(GTK_TOOLBAR(priv->toolbar), GTK_TOOL_ITEM (button), 0);
10641073 g_signal_connect(button, "clicked", G_CALLBACK(virt_viewer_window_menu_file_quit), self);
10651074
10661075 /* USB Device selection */
1067 button = gtk_image_new_from_icon_name("virt-viewer-usb",
1068 GTK_ICON_SIZE_INVALID);
1076 button = gtk_image_new_from_resource(VIRT_VIEWER_RESOURCE_PREFIX"/icons/24x24/virt-viewer-usb.png");
10691077 button = GTK_WIDGET(gtk_tool_button_new(button, NULL));
10701078 gtk_tool_button_set_label(GTK_TOOL_BUTTON(button), _("USB device selection"));
10711079 gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(button), _("USB device selection"));
10781086 button = GTK_WIDGET(gtk_tool_button_new(NULL, NULL));
10791087 gtk_tool_button_set_icon_name(GTK_TOOL_BUTTON(button), "preferences-desktop-keyboard-shortcuts");
10801088 gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(button), _("Send key combination"));
1081 gtk_widget_show(GTK_WIDGET(button));
1089 gtk_widget_show(button);
10821090 gtk_toolbar_insert(GTK_TOOLBAR(priv->toolbar), GTK_TOOL_ITEM(button), 0);
10831091 g_signal_connect(button, "clicked", G_CALLBACK(virt_viewer_window_toolbar_send_key), self);
10841092 gtk_widget_set_sensitive(button, FALSE);
10851093 priv->toolbar_send_key = button;
10861094
10871095 /* Leave fullscreen */
1088 button = GTK_WIDGET(gtk_tool_button_new_from_stock(GTK_STOCK_LEAVE_FULLSCREEN));
1096 button = GTK_WIDGET(gtk_tool_button_new(NULL, NULL));
1097 gtk_tool_button_set_icon_name(GTK_TOOL_BUTTON(button), "view-restore");
10891098 gtk_tool_button_set_label(GTK_TOOL_BUTTON(button), _("Leave fullscreen"));
10901099 gtk_tool_item_set_tooltip_text(GTK_TOOL_ITEM(button), _("Leave fullscreen"));
10911100 gtk_tool_item_set_is_important(GTK_TOOL_ITEM(button), TRUE);
1092 gtk_widget_show(GTK_WIDGET(button));
1101 gtk_widget_show(button);
10931102 gtk_toolbar_insert(GTK_TOOLBAR(priv->toolbar), GTK_TOOL_ITEM(button), 0);
10941103 g_signal_connect(button, "clicked", G_CALLBACK(virt_viewer_window_toolbar_leave_fullscreen), self);
10951104
1096 priv->layout = ViewAutoDrawer_New();
1097
1098 ViewAutoDrawer_SetActive(VIEW_AUTODRAWER(priv->layout), FALSE);
1099 ViewOvBox_SetOver(VIEW_OV_BOX(priv->layout), priv->toolbar);
1100 ViewOvBox_SetUnder(VIEW_OV_BOX(priv->layout), GTK_WIDGET(priv->notebook));
1101 ViewAutoDrawer_SetOffset(VIEW_AUTODRAWER(priv->layout), -1);
1102 ViewAutoDrawer_SetFill(VIEW_AUTODRAWER(priv->layout), FALSE);
1103 ViewAutoDrawer_SetOverlapPixels(VIEW_AUTODRAWER(priv->layout), 1);
1104 ViewAutoDrawer_SetNoOverlapPixels(VIEW_AUTODRAWER(priv->layout), 0);
1105 gtk_widget_show(priv->layout);
1105 priv->revealer = virt_viewer_timed_revealer_new(priv->toolbar);
1106 overlay = GTK_WIDGET(gtk_builder_get_object(priv->builder, "viewer-overlay"));
1107 gtk_overlay_add_overlay(GTK_OVERLAY(overlay), GTK_WIDGET(priv->revealer));
11061108 }
11071109
11081110 VirtViewerNotebook*
11601162
11611163 if (priv->grabbed) {
11621164 gchar *label;
1163 GtkAccelKey key = { 0 };
1165 GtkAccelKey key = {0, 0, 0};
11641166
11651167 if (virt_viewer_app_get_enable_accel(priv->app))
11661168 gtk_accel_map_lookup_entry("<virt-viewer>/view/release-cursor", &key);
13401342 g_return_if_fail(VIRT_VIEWER_IS_WINDOW(self));
13411343 priv = self->priv;
13421344
1343 ViewOvBox_SetOver(VIEW_OV_BOX(priv->layout), gtk_drawing_area_new());
1344 ViewAutoDrawer_SetActive(VIEW_AUTODRAWER(priv->layout), FALSE);
1345 ViewAutoDrawer_SetOverlapPixels(VIEW_AUTODRAWER(priv->layout), 0);
1345 virt_viewer_timed_revealer_force_reveal(priv->revealer, FALSE);
13461346
13471347 /* You probably also want X11 Option "DontVTSwitch" "true" */
13481348 /* and perhaps more distro/desktop-specific options */
14761476 GtkWidget *top_menu;
14771477
14781478 top_menu = GTK_WIDGET(gtk_builder_get_object(virt_viewer_window_get_builder(self), "top-menu"));
1479 #if !GTK_CHECK_VERSION(3, 0, 0)
1480 gtk_widget_get_child_requisition(top_menu, &req);
1481 #else
14821479 gtk_widget_get_preferred_size(top_menu, &req, NULL);
1483 #endif
14841480 /* minimal dimensions of the window are the maximum of dimensions of the top-menu
14851481 * and minimal dimension of the display
14861482 */
3232 #define MIN_ZOOM_LEVEL 10
3333 #define MAX_ZOOM_LEVEL 400
3434 #define NORMAL_ZOOM_LEVEL 100
35 #define ZOOM_STEP 10
3635
3736 #define VIRT_VIEWER_TYPE_WINDOW virt_viewer_window_get_type()
3837
3131 #include <string.h>
3232 #include <unistd.h>
3333 #include <locale.h>
34 #include <gio/gio.h>
3435 #include <glib/gprintf.h>
3536 #include <glib/gi18n.h>
3637
3738 #include <libvirt/libvirt.h>
3839 #include <libvirt/virterror.h>
40 #include <libvirt-glib/libvirt-glib.h>
3941 #include <libxml/xpath.h>
4042 #include <libxml/uri.h>
4143
4547
4648 #include "virt-viewer.h"
4749 #include "virt-viewer-app.h"
48 #include "virt-viewer-events.h"
4950 #include "virt-viewer-vm-connection.h"
5051 #include "virt-viewer-auth.h"
52 #include "virt-viewer-util.h"
5153
5254 struct _VirtViewerPrivate {
5355 char *uri;
7274 static void virt_viewer_dispose (GObject *object);
7375 static int virt_viewer_connect(VirtViewerApp *app, GError **error);
7476
77 static gchar **opt_args = NULL;
78 static gchar *opt_uri = NULL;
79 static gboolean opt_direct = FALSE;
80 static gboolean opt_attach = FALSE;
81 static gboolean opt_waitvm = FALSE;
82 static gboolean opt_reconnect = FALSE;
83
84 static void
85 virt_viewer_add_option_entries(VirtViewerApp *self, GOptionContext *context, GOptionGroup *group)
86 {
87 static const GOptionEntry options[] = {
88 { "direct", 'd', 0, G_OPTION_ARG_NONE, &opt_direct,
89 N_("Direct connection with no automatic tunnels"), NULL },
90 { "attach", 'a', 0, G_OPTION_ARG_NONE, &opt_attach,
91 N_("Attach to the local display using libvirt"), NULL },
92 { "connect", 'c', 0, G_OPTION_ARG_STRING, &opt_uri,
93 N_("Connect to hypervisor"), "URI"},
94 { "wait", 'w', 0, G_OPTION_ARG_NONE, &opt_waitvm,
95 N_("Wait for domain to start"), NULL },
96 { "reconnect", 'r', 0, G_OPTION_ARG_NONE, &opt_reconnect,
97 N_("Reconnect to domain upon restart"), NULL },
98 { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_STRING_ARRAY, &opt_args,
99 NULL, "-- DOMAIN-NAME|ID|UUID" },
100 { NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL }
101 };
102
103 VIRT_VIEWER_APP_CLASS(virt_viewer_parent_class)->add_option_entries(self, context, group);
104 g_option_context_set_summary(context, _("Virtual machine graphical console"));
105 g_option_group_add_entries(group, options);
106 }
107
108 static gboolean
109 virt_viewer_local_command_line (GApplication *gapp,
110 gchar ***args,
111 int *status)
112 {
113 gboolean ret = FALSE;
114 VirtViewer *self = VIRT_VIEWER(gapp);
115 VirtViewerApp *app = VIRT_VIEWER_APP(gapp);
116
117 ret = G_APPLICATION_CLASS(virt_viewer_parent_class)->local_command_line(gapp, args, status);
118 if (ret)
119 goto end;
120
121 if (opt_args) {
122 if (g_strv_length(opt_args) != 1) {
123 g_printerr(_("\nUsage: %s [OPTIONS] [DOMAIN-NAME|ID|UUID]\n\n"), PACKAGE);
124 ret = TRUE;
125 *status = 1;
126 goto end;
127 }
128
129 self->priv->domkey = g_strdup(opt_args[0]);
130 }
131
132
133 if (opt_waitvm) {
134 if (!self->priv->domkey) {
135 g_printerr(_("\nNo DOMAIN-NAME|ID|UUID was specified for '--wait'\n\n"));
136 ret = TRUE;
137 *status = 1;
138 goto end;
139 }
140
141 self->priv->waitvm = TRUE;
142 }
143
144 virt_viewer_app_set_direct(app, opt_direct);
145 virt_viewer_app_set_attach(app, opt_attach);
146 self->priv->reconnect = opt_reconnect;
147 self->priv->uri = g_strdup(opt_uri);
148
149 end:
150 if (ret && *status)
151 g_printerr(_("Run '%s --help' to see a full list of available command line options\n"), g_get_prgname());
152
153 g_strfreev(opt_args);
154 g_free(opt_uri);
155 return ret;
156 }
157
75158 static void
76159 virt_viewer_class_init (VirtViewerClass *klass)
77160 {
78161 GObjectClass *object_class = G_OBJECT_CLASS (klass);
79162 VirtViewerAppClass *app_class = VIRT_VIEWER_APP_CLASS (klass);
163 GApplicationClass *g_app_class = G_APPLICATION_CLASS(klass);
80164
81165 g_type_class_add_private (klass, sizeof (VirtViewerPrivate));
82166
86170 app_class->deactivated = virt_viewer_deactivated;
87171 app_class->open_connection = virt_viewer_open_connection;
88172 app_class->start = virt_viewer_start;
173 app_class->add_option_entries = virt_viewer_add_option_entries;
174
175 g_app_class->local_command_line = virt_viewer_local_command_line;
89176 }
90177
91178 static void
105192
106193 if (!virt_viewer_app_is_active(app) &&
107194 !virt_viewer_app_initial_connect(app, NULL))
108 gtk_main_quit();
195 g_application_quit(G_APPLICATION(app));
109196
110197 if (virt_viewer_app_is_active(app)) {
111198 self->priv->reconnect_poll = 0;
9641051 static gboolean
9651052 virt_viewer_start(VirtViewerApp *app, GError **error)
9661053 {
967 virt_viewer_events_register();
1054 gvir_event_register();
9681055
9691056 virSetErrorFunc(NULL, virt_viewer_error_func);
9701057
9751062 }
9761063
9771064 VirtViewer *
978 virt_viewer_new(const char *uri,
979 const char *name,
980 gboolean direct,
981 gboolean attach,
982 gboolean waitvm,
983 gboolean reconnect)
984 {
985 VirtViewer *self;
986 VirtViewerApp *app;
987 VirtViewerPrivate *priv;
988
989 self = g_object_new(VIRT_VIEWER_TYPE,
990 "guest-name", name,
1065 virt_viewer_new(void)
1066 {
1067 return g_object_new(VIRT_VIEWER_TYPE,
1068 "application-id", "org.virt-manager.virt-viewer",
1069 "flags", G_APPLICATION_NON_UNIQUE,
9911070 NULL);
992 app = VIRT_VIEWER_APP(self);
993 priv = self->priv;
994
995 virt_viewer_app_set_direct(app, direct);
996 virt_viewer_app_set_attach(app, attach);
997
998 /* should probably be properties instead */
999 priv->uri = g_strdup(uri);
1000 priv->domkey = g_strdup(name);
1001 priv->waitvm = waitvm;
1002 priv->reconnect = reconnect;
1003
1004 return self;
10051071 }
10061072
10071073 /*
4747
4848 GType virt_viewer_get_type (void);
4949
50 VirtViewer *
51 virt_viewer_new(const char *uri,
52 const char *name,
53 gboolean direct,
54 gboolean attach,
55 gboolean waitvm,
56 gboolean reconnect);
50 VirtViewer *virt_viewer_new (void);
5751
5852 G_END_DECLS
5953
88 BEGIN
99 VALUE "CompanyName", "virt-manager.org"
1010 VALUE "FileDescription", "VirtViewer desktop client"
11 VALUE "FileVersion", "3.1"
12 VALUE "InternalName", "virt-viewer 3.1"
11 VALUE "FileVersion", "4.0"
12 VALUE "InternalName", "virt-viewer 4.0"
1313 VALUE "LegalCopyright", "Copyright (C) 2007-2013 Red Hat, Inc."
1414 VALUE "OriginalFilename", "virt-viewer.exe"
1515 VALUE "ProductName", "VirtViewer"
16 VALUE "ProductVersion", "3.1"
16 VALUE "ProductVersion", "4.0"
1717 END
1818 END
1919
+0
-261
src/virt-viewer.xml less more
0 <?xml version="1.0" encoding="UTF-8"?>
1 <interface>
2 <!-- interface-requires gtk+ 2.6 -->
3 <object class="GtkAccelGroup" id="accelgroup"/>
4 <object class="GtkWindow" id="viewer">
5 <property name="can_focus">False</property>
6 <property name="default_width">1024</property>
7 <property name="default_height">768</property>
8 <signal name="delete-event" handler="virt_viewer_window_delete" swapped="no"/>
9 <child>
10 <object class="GtkVBox" id="viewer-box">
11 <property name="visible">True</property>
12 <property name="can_focus">False</property>
13 <child>
14 <object class="GtkMenuBar" id="top-menu">
15 <property name="visible">True</property>
16 <property name="can_focus">False</property>
17 <child>
18 <object class="GtkMenuItem" id="menu-file">
19 <property name="visible">True</property>
20 <property name="can_focus">False</property>
21 <property name="use_action_appearance">False</property>
22 <property name="label" translatable="yes">_File</property>
23 <property name="use_underline">True</property>
24 <child type="submenu">
25 <object class="GtkMenu" id="menu1">
26 <property name="visible">True</property>
27 <property name="can_focus">False</property>
28 <property name="accel_group">accelgroup</property>
29 <child>
30 <object class="GtkMenuItem" id="menu-file-screenshot">
31 <property name="visible">True</property>
32 <property name="can_focus">False</property>
33 <property name="use_action_appearance">False</property>
34 <property name="label" translatable="yes">Screenshot</property>
35 <property name="use_underline">True</property>
36 <signal name="activate" handler="virt_viewer_window_menu_file_screenshot" swapped="no"/>
37 </object>
38 </child>
39 <child>
40 <object class="GtkMenuItem" id="menu-file-usb-device-selection">
41 <property name="visible">True</property>
42 <property name="sensitive">False</property>
43 <property name="can_focus">False</property>
44 <property name="use_action_appearance">False</property>
45 <property name="label" translatable="yes">USB device selection</property>
46 <property name="use_underline">True</property>
47 <signal name="activate" handler="virt_viewer_window_menu_file_usb_device_selection" swapped="no"/>
48 </object>
49 </child>
50 <child>
51 <object class="GtkMenuItem" id="menu-file-smartcard-insert">
52 <property name="can_focus">False</property>
53 <property name="use_action_appearance">False</property>
54 <property name="accel_path">&lt;virt-viewer&gt;/file/smartcard-insert</property>
55 <property name="label" translatable="yes">Smartcard insertion</property>
56 <property name="use_underline">True</property>
57 <signal name="activate" handler="virt_viewer_window_menu_file_smartcard_insert" swapped="no"/>
58 </object>
59 </child>
60 <child>
61 <object class="GtkMenuItem" id="menu-file-smartcard-remove">
62 <property name="can_focus">False</property>
63 <property name="use_action_appearance">False</property>
64 <property name="accel_path">&lt;virt-viewer&gt;/file/smartcard-remove</property>
65 <property name="label" translatable="yes">Smartcard removal</property>
66 <property name="use_underline">True</property>
67 <signal name="activate" handler="virt_viewer_window_menu_file_smartcard_remove" swapped="no"/>
68 </object>
69 </child>
70 <child>
71 <object class="GtkMenuItem" id="menu-preferences">
72 <property name="visible">True</property>
73 <property name="can_focus">False</property>
74 <property name="label" translatable="yes">Preferences</property>
75 <property name="use_underline">True</property>
76 <signal name="activate" handler="virt_viewer_window_menu_preferences_cb" swapped="no"/>
77 </object>
78 </child>
79 <child>
80 <object class="GtkSeparatorMenuItem" id="separatormenuitem1">
81 <property name="visible">True</property>
82 <property name="can_focus">False</property>
83 </object>
84 </child>
85 <child>
86 <object class="GtkImageMenuItem" id="imagemenuitem5">
87 <property name="label">gtk-quit</property>
88 <property name="visible">True</property>
89 <property name="can_focus">False</property>
90 <property name="use_action_appearance">False</property>
91 <property name="use_underline">True</property>
92 <property name="use_stock">True</property>
93 <accelerator key="q" signal="activate" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
94 <signal name="activate" handler="virt_viewer_window_menu_file_quit" swapped="no"/>
95 </object>
96 </child>
97 </object>
98 </child>
99 </object>
100 </child>
101 <child>
102 <object class="GtkMenuItem" id="menu-view">
103 <property name="visible">True</property>
104 <property name="can_focus">False</property>
105 <property name="use_action_appearance">False</property>
106 <property name="label" translatable="yes">_View</property>
107 <property name="use_underline">True</property>
108 <child type="submenu">
109 <object class="GtkMenu" id="menu2">
110 <property name="visible">True</property>
111 <property name="can_focus">False</property>
112 <property name="accel_group">accelgroup</property>
113 <child>
114 <object class="GtkCheckMenuItem" id="menu-view-fullscreen">
115 <property name="visible">True</property>
116 <property name="can_focus">False</property>
117 <property name="use_action_appearance">False</property>
118 <property name="accel_path">&lt;virt-viewer&gt;/view/toggle-fullscreen</property>
119 <property name="label" translatable="yes">Full screen</property>
120 <property name="use_underline">True</property>
121 <signal name="toggled" handler="virt_viewer_window_menu_view_fullscreen" swapped="no"/>
122 </object>
123 </child>
124 <child>
125 <object class="GtkMenuItem" id="menu-view-zoom">
126 <property name="visible">True</property>
127 <property name="can_focus">False</property>
128 <property name="use_action_appearance">False</property>
129 <property name="label" translatable="yes">_Zoom</property>
130 <property name="use_underline">True</property>
131 <child type="submenu">
132 <object class="GtkMenu" id="menu4">
133 <property name="visible">True</property>
134 <property name="can_focus">False</property>
135 <property name="accel_group">accelgroup</property>
136 <child>
137 <object class="GtkImageMenuItem" id="menu-view-zoom-in">
138 <property name="accel_path">&lt;virt-viewer&gt;/view/zoom-in</property>
139 <property name="label">gtk-zoom-in</property>
140 <property name="visible">True</property>
141 <property name="can_focus">False</property>
142 <property name="use_action_appearance">False</property>
143 <property name="use_underline">True</property>
144 <property name="use_stock">True</property>
145 <signal name="activate" handler="virt_viewer_window_menu_view_zoom_in" swapped="no"/>
146 </object>
147 </child>
148 <child>
149 <object class="GtkImageMenuItem" id="menu-view-zoom-out">
150 <property name="accel_path">&lt;virt-viewer&gt;/view/zoom-out</property>
151 <property name="label">gtk-zoom-out</property>
152 <property name="visible">True</property>
153 <property name="can_focus">False</property>
154 <property name="use_action_appearance">False</property>
155 <property name="use_underline">True</property>
156 <property name="use_stock">True</property>
157 <signal name="activate" handler="virt_viewer_window_menu_view_zoom_out" swapped="no"/>
158 </object>
159 </child>
160 <child>
161 <object class="GtkSeparatorMenuItem" id="separatormenuitem4">
162 <property name="visible">True</property>
163 <property name="can_focus">False</property>
164 </object>
165 </child>
166 <child>
167 <object class="GtkImageMenuItem" id="menu-view-zoom-reset">
168 <property name="accel_path">&lt;virt-viewer&gt;/view/zoom-reset</property>
169 <property name="label">gtk-zoom-100</property>
170 <property name="visible">True</property>
171 <property name="can_focus">False</property>
172 <property name="use_action_appearance">False</property>
173 <property name="use_underline">True</property>
174 <property name="use_stock">True</property>
175 <signal name="activate" handler="virt_viewer_window_menu_view_zoom_reset" swapped="no"/>
176 </object>
177 </child>
178 </object>
179 </child>
180 </object>
181 </child>
182 <child>
183 <object class="GtkMenuItem" id="menu-displays">
184 <property name="visible">True</property>
185 <property name="can_focus">False</property>
186 <property name="use_action_appearance">False</property>
187 <property name="label" translatable="yes">Displays</property>
188 <property name="use_underline">True</property>
189 </object>
190 </child>
191 <child>
192 <object class="GtkMenuItem" id="menu-view-release-cursor">
193 <property name="can_focus">False</property>
194 <property name="use_action_appearance">False</property>
195 <property name="accel_path">&lt;virt-viewer&gt;/view/release-cursor</property>
196 <property name="label" translatable="yes">Release cursor</property>
197 <property name="use_underline">True</property>
198 <signal name="activate" handler="virt_viewer_window_menu_view_release_cursor" swapped="no"/>
199 </object>
200 </child>
201 </object>
202 </child>
203 </object>
204 </child>
205 <child>
206 <object class="GtkMenuItem" id="menu-send">
207 <property name="visible">True</property>
208 <property name="can_focus">False</property>
209 <property name="use_action_appearance">False</property>
210 <property name="label" translatable="yes">_Send key</property>
211 <property name="use_underline">True</property>
212 </object>
213 </child>
214 <child>
215 <object class="GtkMenuItem" id="menu-help">
216 <property name="visible">True</property>
217 <property name="can_focus">False</property>
218 <property name="use_action_appearance">False</property>
219 <property name="label" translatable="yes">_Help</property>
220 <property name="use_underline">True</property>
221 <child type="submenu">
222 <object class="GtkMenu" id="menu3">
223 <property name="visible">True</property>
224 <property name="can_focus">False</property>
225 <child>
226 <object class="GtkMenuItem" id="menu-help-guest-details">
227 <property name="visible">True</property>
228 <property name="can_focus">False</property>
229 <property name="use_action_appearance">False</property>
230 <property name="label" translatable="yes">_Guest Details</property>
231 <property name="use_underline">True</property>
232 <signal name="activate" handler="virt_viewer_window_menu_help_guest_details" swapped="no"/>
233 </object>
234 </child>
235 <child>
236 <object class="GtkImageMenuItem" id="imagemenuitem10">
237 <property name="label">gtk-about</property>
238 <property name="visible">True</property>
239 <property name="can_focus">False</property>
240 <property name="use_action_appearance">False</property>
241 <property name="use_underline">True</property>
242 <property name="use_stock">True</property>
243 <signal name="activate" handler="virt_viewer_window_menu_help_about" swapped="no"/>
244 </object>
245 </child>
246 </object>
247 </child>
248 </object>
249 </child>
250 </object>
251 <packing>
252 <property name="expand">False</property>
253 <property name="fill">True</property>
254 <property name="position">0</property>
255 </packing>
256 </child>
257 </object>
258 </child>
259 </object>
260 </interface>
0 NULL =
1
2 AM_CPPFLAGS = \
3 -DLOCALE_DIR=\""$(datadir)/locale"\" \
4 -DG_LOG_DOMAIN=\"virt-viewer\" \
5 -I$(top_builddir)/src/ \
6 -I$(top_srcdir)/src/ \
7 -I$(top_srcdir)/tests/ \
8 $(GLIB2_CFLAGS) \
9 $(GTK_CFLAGS) \
10 $(WARN_CFLAGS) \
11 $(NULL)
12
13 LDADD= \
14 $(top_builddir)/src/libvirt-viewer-util.la \
15 $(GLIB2_LIBS) \
16 $(GTK_LIBS) \
17 $(LIBXML2_LIBS) \
18 $(NULL)
19
20 TESTS = test-version-compare test-monitor-mapping test-hotkeys test-monitor-alignment
21 check_PROGRAMS = $(TESTS)
22 test_version_compare_SOURCES = \
23 test-version-compare.c \
24 $(NULL)
25
26 test_monitor_mapping_SOURCES = \
27 test-monitor-mapping.c \
28 $(NULL)
29
30 test_hotkeys_SOURCES = \
31 test-hotkeys.c \
32 $(NULL)
33
34 test_hotkeys_LDADD = \
35 $(top_builddir)/src/libvirt-viewer.la \
36 $(LDADD) \
37 $(NULL)
38
39 test_monitor_alignment_SOURCES = \
40 test-monitor-alignment.c \
41 $(NULL)
42
43 if OS_WIN32
44 TESTS += redirect-test
45 redirect_test_SOURCES = redirect-test.c
46 redirect_test_LDFLAGS = -Wl,--subsystem,windows
47 redirect_test_CPPFLAGS = $(GLIB2_CFLAGS)
48 endif
49
50 -include $(top_srcdir)/git.mk
0 # Makefile.in generated by automake 1.15 from Makefile.am.
1 # @configure_input@
2
3 # Copyright (C) 1994-2014 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 TESTS = test-version-compare$(EXEEXT) test-monitor-mapping$(EXEEXT) \
90 test-hotkeys$(EXEEXT) test-monitor-alignment$(EXEEXT) \
91 $(am__EXEEXT_1)
92 check_PROGRAMS = $(am__EXEEXT_2)
93 @OS_WIN32_TRUE@am__append_1 = redirect-test
94 subdir = tests
95 ACLOCAL_M4 = $(top_srcdir)/aclocal.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)/acinclude.m4 $(top_srcdir)/configure.ac
100 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
101 $(ACLOCAL_M4)
102 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
103 mkinstalldirs = $(install_sh) -d
104 CONFIG_HEADER = $(top_builddir)/config.h
105 CONFIG_CLEAN_FILES =
106 CONFIG_CLEAN_VPATH_FILES =
107 @OS_WIN32_TRUE@am__EXEEXT_1 = redirect-test$(EXEEXT)
108 am__EXEEXT_2 = test-version-compare$(EXEEXT) \
109 test-monitor-mapping$(EXEEXT) test-hotkeys$(EXEEXT) \
110 test-monitor-alignment$(EXEEXT) $(am__EXEEXT_1)
111 am__redirect_test_SOURCES_DIST = redirect-test.c
112 @OS_WIN32_TRUE@am_redirect_test_OBJECTS = \
113 @OS_WIN32_TRUE@ redirect_test-redirect-test.$(OBJEXT)
114 redirect_test_OBJECTS = $(am_redirect_test_OBJECTS)
115 redirect_test_LDADD = $(LDADD)
116 am__DEPENDENCIES_1 =
117 redirect_test_DEPENDENCIES = \
118 $(top_builddir)/src/libvirt-viewer-util.la \
119 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
120 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
121 AM_V_lt = $(am__v_lt_@AM_V@)
122 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
123 am__v_lt_0 = --silent
124 am__v_lt_1 =
125 redirect_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
126 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
127 $(redirect_test_LDFLAGS) $(LDFLAGS) -o $@
128 am__objects_1 =
129 am_test_hotkeys_OBJECTS = test-hotkeys.$(OBJEXT) $(am__objects_1)
130 test_hotkeys_OBJECTS = $(am_test_hotkeys_OBJECTS)
131 am__DEPENDENCIES_2 = $(top_builddir)/src/libvirt-viewer-util.la \
132 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
133 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
134 test_hotkeys_DEPENDENCIES = $(top_builddir)/src/libvirt-viewer.la \
135 $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1)
136 am_test_monitor_alignment_OBJECTS = test-monitor-alignment.$(OBJEXT) \
137 $(am__objects_1)
138 test_monitor_alignment_OBJECTS = $(am_test_monitor_alignment_OBJECTS)
139 test_monitor_alignment_LDADD = $(LDADD)
140 test_monitor_alignment_DEPENDENCIES = \
141 $(top_builddir)/src/libvirt-viewer-util.la \
142 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
143 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
144 am_test_monitor_mapping_OBJECTS = test-monitor-mapping.$(OBJEXT) \
145 $(am__objects_1)
146 test_monitor_mapping_OBJECTS = $(am_test_monitor_mapping_OBJECTS)
147 test_monitor_mapping_LDADD = $(LDADD)
148 test_monitor_mapping_DEPENDENCIES = \
149 $(top_builddir)/src/libvirt-viewer-util.la \
150 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
151 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
152 am_test_version_compare_OBJECTS = test-version-compare.$(OBJEXT) \
153 $(am__objects_1)
154 test_version_compare_OBJECTS = $(am_test_version_compare_OBJECTS)
155 test_version_compare_LDADD = $(LDADD)
156 test_version_compare_DEPENDENCIES = \
157 $(top_builddir)/src/libvirt-viewer-util.la \
158 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
159 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
160 AM_V_P = $(am__v_P_@AM_V@)
161 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
162 am__v_P_0 = false
163 am__v_P_1 = :
164 AM_V_GEN = $(am__v_GEN_@AM_V@)
165 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
166 am__v_GEN_0 = @echo " GEN " $@;
167 am__v_GEN_1 =
168 AM_V_at = $(am__v_at_@AM_V@)
169 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
170 am__v_at_0 = @
171 am__v_at_1 =
172 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
173 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
174 am__depfiles_maybe = depfiles
175 am__mv = mv -f
176 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
177 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
178 LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
179 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
180 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
181 $(AM_CFLAGS) $(CFLAGS)
182 AM_V_CC = $(am__v_CC_@AM_V@)
183 am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
184 am__v_CC_0 = @echo " CC " $@;
185 am__v_CC_1 =
186 CCLD = $(CC)
187 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
188 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
189 $(AM_LDFLAGS) $(LDFLAGS) -o $@
190 AM_V_CCLD = $(am__v_CCLD_@AM_V@)
191 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
192 am__v_CCLD_0 = @echo " CCLD " $@;
193 am__v_CCLD_1 =
194 SOURCES = $(redirect_test_SOURCES) $(test_hotkeys_SOURCES) \
195 $(test_monitor_alignment_SOURCES) \
196 $(test_monitor_mapping_SOURCES) \
197 $(test_version_compare_SOURCES)
198 DIST_SOURCES = $(am__redirect_test_SOURCES_DIST) \
199 $(test_hotkeys_SOURCES) $(test_monitor_alignment_SOURCES) \
200 $(test_monitor_mapping_SOURCES) \
201 $(test_version_compare_SOURCES)
202 am__can_run_installinfo = \
203 case $$AM_UPDATE_INFO_DIR in \
204 n|no|NO) false;; \
205 *) (install-info --version) >/dev/null 2>&1;; \
206 esac
207 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
208 # Read a list of newline-separated strings from the standard input,
209 # and print each of them once, without duplicates. Input order is
210 # *not* preserved.
211 am__uniquify_input = $(AWK) '\
212 BEGIN { nonempty = 0; } \
213 { items[$$0] = 1; nonempty = 1; } \
214 END { if (nonempty) { for (i in items) print i; }; } \
215 '
216 # Make sure the list of sources is unique. This is necessary because,
217 # e.g., the same source file might be shared among _SOURCES variables
218 # for different programs/libraries.
219 am__define_uniq_tagged_files = \
220 list='$(am__tagged_files)'; \
221 unique=`for i in $$list; do \
222 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
223 done | $(am__uniquify_input)`
224 ETAGS = etags
225 CTAGS = ctags
226 am__tty_colors_dummy = \
227 mgn= red= grn= lgn= blu= brg= std=; \
228 am__color_tests=no
229 am__tty_colors = { \
230 $(am__tty_colors_dummy); \
231 if test "X$(AM_COLOR_TESTS)" = Xno; then \
232 am__color_tests=no; \
233 elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
234 am__color_tests=yes; \
235 elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
236 am__color_tests=yes; \
237 fi; \
238 if test $$am__color_tests = yes; then \
239 red=''; \
240 grn=''; \
241 lgn=''; \
242 blu=''; \
243 mgn=''; \
244 brg=''; \
245 std=''; \
246 fi; \
247 }
248 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
249 am__vpath_adj = case $$p in \
250 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
251 *) f=$$p;; \
252 esac;
253 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
254 am__install_max = 40
255 am__nobase_strip_setup = \
256 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
257 am__nobase_strip = \
258 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
259 am__nobase_list = $(am__nobase_strip_setup); \
260 for p in $$list; do echo "$$p $$p"; done | \
261 sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
262 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
263 if (++n[$$2] == $(am__install_max)) \
264 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
265 END { for (dir in files) print dir, files[dir] }'
266 am__base_list = \
267 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
268 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
269 am__uninstall_files_from_dir = { \
270 test -z "$$files" \
271 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
272 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
273 $(am__cd) "$$dir" && rm -f $$files; }; \
274 }
275 am__recheck_rx = ^[ ]*:recheck:[ ]*
276 am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
277 am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
278 # A command that, given a newline-separated list of test names on the
279 # standard input, print the name of the tests that are to be re-run
280 # upon "make recheck".
281 am__list_recheck_tests = $(AWK) '{ \
282 recheck = 1; \
283 while ((rc = (getline line < ($$0 ".trs"))) != 0) \
284 { \
285 if (rc < 0) \
286 { \
287 if ((getline line2 < ($$0 ".log")) < 0) \
288 recheck = 0; \
289 break; \
290 } \
291 else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
292 { \
293 recheck = 0; \
294 break; \
295 } \
296 else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
297 { \
298 break; \
299 } \
300 }; \
301 if (recheck) \
302 print $$0; \
303 close ($$0 ".trs"); \
304 close ($$0 ".log"); \
305 }'
306 # A command that, given a newline-separated list of test names on the
307 # standard input, create the global log from their .trs and .log files.
308 am__create_global_log = $(AWK) ' \
309 function fatal(msg) \
310 { \
311 print "fatal: making $@: " msg | "cat >&2"; \
312 exit 1; \
313 } \
314 function rst_section(header) \
315 { \
316 print header; \
317 len = length(header); \
318 for (i = 1; i <= len; i = i + 1) \
319 printf "="; \
320 printf "\n\n"; \
321 } \
322 { \
323 copy_in_global_log = 1; \
324 global_test_result = "RUN"; \
325 while ((rc = (getline line < ($$0 ".trs"))) != 0) \
326 { \
327 if (rc < 0) \
328 fatal("failed to read from " $$0 ".trs"); \
329 if (line ~ /$(am__global_test_result_rx)/) \
330 { \
331 sub("$(am__global_test_result_rx)", "", line); \
332 sub("[ ]*$$", "", line); \
333 global_test_result = line; \
334 } \
335 else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
336 copy_in_global_log = 0; \
337 }; \
338 if (copy_in_global_log) \
339 { \
340 rst_section(global_test_result ": " $$0); \
341 while ((rc = (getline line < ($$0 ".log"))) != 0) \
342 { \
343 if (rc < 0) \
344 fatal("failed to read from " $$0 ".log"); \
345 print line; \
346 }; \
347 printf "\n"; \
348 }; \
349 close ($$0 ".trs"); \
350 close ($$0 ".log"); \
351 }'
352 # Restructured Text title.
353 am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
354 # Solaris 10 'make', and several other traditional 'make' implementations,
355 # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
356 # by disabling -e (using the XSI extension "set +e") if it's set.
357 am__sh_e_setup = case $$- in *e*) set +e;; esac
358 # Default flags passed to test drivers.
359 am__common_driver_flags = \
360 --color-tests "$$am__color_tests" \
361 --enable-hard-errors "$$am__enable_hard_errors" \
362 --expect-failure "$$am__expect_failure"
363 # To be inserted before the command running the test. Creates the
364 # directory for the log if needed. Stores in $dir the directory
365 # containing $f, in $tst the test, in $log the log. Executes the
366 # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
367 # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
368 # will run the test scripts (or their associated LOG_COMPILER, if
369 # thy have one).
370 am__check_pre = \
371 $(am__sh_e_setup); \
372 $(am__vpath_adj_setup) $(am__vpath_adj) \
373 $(am__tty_colors); \
374 srcdir=$(srcdir); export srcdir; \
375 case "$@" in \
376 */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
377 *) am__odir=.;; \
378 esac; \
379 test "x$$am__odir" = x"." || test -d "$$am__odir" \
380 || $(MKDIR_P) "$$am__odir" || exit $$?; \
381 if test -f "./$$f"; then dir=./; \
382 elif test -f "$$f"; then dir=; \
383 else dir="$(srcdir)/"; fi; \
384 tst=$$dir$$f; log='$@'; \
385 if test -n '$(DISABLE_HARD_ERRORS)'; then \
386 am__enable_hard_errors=no; \
387 else \
388 am__enable_hard_errors=yes; \
389 fi; \
390 case " $(XFAIL_TESTS) " in \
391 *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
392 am__expect_failure=yes;; \
393 *) \
394 am__expect_failure=no;; \
395 esac; \
396 $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
397 # A shell command to get the names of the tests scripts with any registered
398 # extension removed (i.e., equivalently, the names of the test logs, with
399 # the '.log' extension removed). The result is saved in the shell variable
400 # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
401 # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
402 # since that might cause problem with VPATH rewrites for suffix-less tests.
403 # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
404 am__set_TESTS_bases = \
405 bases='$(TEST_LOGS)'; \
406 bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
407 bases=`echo $$bases`
408 RECHECK_LOGS = $(TEST_LOGS)
409 AM_RECURSIVE_TARGETS = check recheck
410 TEST_SUITE_LOG = test-suite.log
411 TEST_EXTENSIONS = @EXEEXT@ .test
412 LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
413 LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
414 am__set_b = \
415 case '$@' in \
416 */*) \
417 case '$*' in \
418 */*) b='$*';; \
419 *) b=`echo '$@' | sed 's/\.log$$//'`; \
420 esac;; \
421 *) \
422 b='$*';; \
423 esac
424 am__test_logs1 = $(TESTS:=.log)
425 am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
426 TEST_LOGS = $(am__test_logs2:.test.log=.log)
427 TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
428 TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
429 $(TEST_LOG_FLAGS)
430 am__DIST_COMMON = $(srcdir)/Makefile.in \
431 $(top_srcdir)/build-aux/depcomp \
432 $(top_srcdir)/build-aux/test-driver
433 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
434 ACLOCAL = @ACLOCAL@
435 ALL_LINGUAS = @ALL_LINGUAS@
436 AMTAR = @AMTAR@
437 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
438 AR = @AR@
439 AUTOCONF = @AUTOCONF@
440 AUTOHEADER = @AUTOHEADER@
441 AUTOMAKE = @AUTOMAKE@
442 AWK = @AWK@
443 BUILDID = @BUILDID@
444 CATALOGS = @CATALOGS@
445 CATOBJEXT = @CATOBJEXT@
446 CC = @CC@
447 CCDEPMODE = @CCDEPMODE@
448 CFLAGS = @CFLAGS@
449 CPP = @CPP@
450 CPPFLAGS = @CPPFLAGS@
451 CYGPATH_W = @CYGPATH_W@
452 DATADIRNAME = @DATADIRNAME@
453 DEFS = @DEFS@
454 DEPDIR = @DEPDIR@
455 DLLTOOL = @DLLTOOL@
456 DSYMUTIL = @DSYMUTIL@
457 DUMPBIN = @DUMPBIN@
458 ECHO_C = @ECHO_C@
459 ECHO_N = @ECHO_N@
460 ECHO_T = @ECHO_T@
461 EGREP = @EGREP@
462 EXEEXT = @EXEEXT@
463 FGREP = @FGREP@
464 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
465 GLIB2_CFLAGS = @GLIB2_CFLAGS@
466 GLIB2_LIBS = @GLIB2_LIBS@
467 GLIB2_REQUIRED = @GLIB2_REQUIRED@
468 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
469 GLIB_MKENUMS = @GLIB_MKENUMS@
470 GMOFILES = @GMOFILES@
471 GMSGFMT = @GMSGFMT@
472 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
473 GREP = @GREP@
474 GTK_CFLAGS = @GTK_CFLAGS@
475 GTK_LIBS = @GTK_LIBS@
476 GTK_REQUIRED = @GTK_REQUIRED@
477 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
478 GTK_VNC_LIBS = @GTK_VNC_LIBS@
479 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
480 ICOTOOL = @ICOTOOL@
481 INSTALL = @INSTALL@
482 INSTALL_DATA = @INSTALL_DATA@
483 INSTALL_PROGRAM = @INSTALL_PROGRAM@
484 INSTALL_SCRIPT = @INSTALL_SCRIPT@
485 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
486 INSTOBJEXT = @INSTOBJEXT@
487 INTLLIBS = @INTLLIBS@
488 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
489 INTLTOOL_MERGE = @INTLTOOL_MERGE@
490 INTLTOOL_PERL = @INTLTOOL_PERL@
491 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
492 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
493 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
494 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
495 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
496 LD = @LD@
497 LDFLAGS = @LDFLAGS@
498 LIBOBJS = @LIBOBJS@
499 LIBS = @LIBS@
500 LIBTOOL = @LIBTOOL@
501 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
502 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
503 LIBVIRT_LIBS = @LIBVIRT_LIBS@
504 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
505 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
506 LIBXML2_LIBS = @LIBXML2_LIBS@
507 LIBXML2_REQUIRED = @LIBXML2_REQUIRED@
508 LIPO = @LIPO@
509 LN_S = @LN_S@
510 LTLIBOBJS = @LTLIBOBJS@
511 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
512 MAKEINFO = @MAKEINFO@
513 MANIFEST_TOOL = @MANIFEST_TOOL@
514 MKDIR_P = @MKDIR_P@
515 MKINSTALLDIRS = @MKINSTALLDIRS@
516 MSGFMT = @MSGFMT@
517 MSGFMT_OPTS = @MSGFMT_OPTS@
518 MSGMERGE = @MSGMERGE@
519 NM = @NM@
520 NMEDIT = @NMEDIT@
521 OBJDUMP = @OBJDUMP@
522 OBJEXT = @OBJEXT@
523 OTOOL = @OTOOL@
524 OTOOL64 = @OTOOL64@
525 OVIRT_CFLAGS = @OVIRT_CFLAGS@
526 OVIRT_LIBS = @OVIRT_LIBS@
527 PACKAGE = @PACKAGE@
528 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
529 PACKAGE_NAME = @PACKAGE_NAME@
530 PACKAGE_STRING = @PACKAGE_STRING@
531 PACKAGE_TARNAME = @PACKAGE_TARNAME@
532 PACKAGE_URL = @PACKAGE_URL@
533 PACKAGE_VERSION = @PACKAGE_VERSION@
534 PATH_SEPARATOR = @PATH_SEPARATOR@
535 PKG_CONFIG = @PKG_CONFIG@
536 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
537 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
538 POFILES = @POFILES@
539 POSUB = @POSUB@
540 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
541 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
542 RANLIB = @RANLIB@
543 SED = @SED@
544 SET_MAKE = @SET_MAKE@
545 SHELL = @SHELL@
546 SPICE_CONTROLLER_CFLAGS = @SPICE_CONTROLLER_CFLAGS@
547 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
548 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
549 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
550 SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@
551 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
552 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
553 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
554 STRIP = @STRIP@
555 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
556 USE_NLS = @USE_NLS@
557 VERSION = @VERSION@
558 WARN_CFLAGS = @WARN_CFLAGS@
559 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
560 WINDRES = @WINDRES@
561 WIXL_ARCH = @WIXL_ARCH@
562 XGETTEXT = @XGETTEXT@
563 abs_builddir = @abs_builddir@
564 abs_srcdir = @abs_srcdir@
565 abs_top_builddir = @abs_top_builddir@
566 abs_top_srcdir = @abs_top_srcdir@
567 ac_ct_AR = @ac_ct_AR@
568 ac_ct_CC = @ac_ct_CC@
569 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
570 am__include = @am__include@
571 am__leading_dot = @am__leading_dot@
572 am__quote = @am__quote@
573 am__tar = @am__tar@
574 am__untar = @am__untar@
575 bindir = @bindir@
576 build = @build@
577 build_alias = @build_alias@
578 build_cpu = @build_cpu@
579 build_os = @build_os@
580 build_vendor = @build_vendor@
581 builddir = @builddir@
582 datadir = @datadir@
583 datarootdir = @datarootdir@
584 docdir = @docdir@
585 dvidir = @dvidir@
586 exec_prefix = @exec_prefix@
587 host = @host@
588 host_alias = @host_alias@
589 host_cpu = @host_cpu@
590 host_os = @host_os@
591 host_vendor = @host_vendor@
592 htmldir = @htmldir@
593 includedir = @includedir@
594 infodir = @infodir@
595 install_sh = @install_sh@
596 intltool__v_merge_options_ = @intltool__v_merge_options_@
597 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
598 libdir = @libdir@
599 libexecdir = @libexecdir@
600 localedir = @localedir@
601 localstatedir = @localstatedir@
602 mandir = @mandir@
603 mkdir_p = @mkdir_p@
604 oldincludedir = @oldincludedir@
605 pdfdir = @pdfdir@
606 prefix = @prefix@
607 program_transform_name = @program_transform_name@
608 psdir = @psdir@
609 sbindir = @sbindir@
610 sharedstatedir = @sharedstatedir@
611 srcdir = @srcdir@
612 sysconfdir = @sysconfdir@
613 target_alias = @target_alias@
614 top_build_prefix = @top_build_prefix@
615 top_builddir = @top_builddir@
616 top_srcdir = @top_srcdir@
617 NULL =
618 AM_CPPFLAGS = \
619 -DLOCALE_DIR=\""$(datadir)/locale"\" \
620 -DG_LOG_DOMAIN=\"virt-viewer\" \
621 -I$(top_builddir)/src/ \
622 -I$(top_srcdir)/src/ \
623 -I$(top_srcdir)/tests/ \
624 $(GLIB2_CFLAGS) \
625 $(GTK_CFLAGS) \
626 $(WARN_CFLAGS) \
627 $(NULL)
628
629 LDADD = \
630 $(top_builddir)/src/libvirt-viewer-util.la \
631 $(GLIB2_LIBS) \
632 $(GTK_LIBS) \
633 $(LIBXML2_LIBS) \
634 $(NULL)
635
636 test_version_compare_SOURCES = \
637 test-version-compare.c \
638 $(NULL)
639
640 test_monitor_mapping_SOURCES = \
641 test-monitor-mapping.c \
642 $(NULL)
643
644 test_hotkeys_SOURCES = \
645 test-hotkeys.c \
646 $(NULL)
647
648 test_hotkeys_LDADD = \
649 $(top_builddir)/src/libvirt-viewer.la \
650 $(LDADD) \
651 $(NULL)
652
653 test_monitor_alignment_SOURCES = \
654 test-monitor-alignment.c \
655 $(NULL)
656
657 @OS_WIN32_TRUE@redirect_test_SOURCES = redirect-test.c
658 @OS_WIN32_TRUE@redirect_test_LDFLAGS = -Wl,--subsystem,windows
659 @OS_WIN32_TRUE@redirect_test_CPPFLAGS = $(GLIB2_CFLAGS)
660 all: all-am
661
662 .SUFFIXES:
663 .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
664 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
665 @for dep in $?; do \
666 case '$(am__configure_deps)' in \
667 *$$dep*) \
668 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
669 && { if test -f $@; then exit 0; else break; fi; }; \
670 exit 1;; \
671 esac; \
672 done; \
673 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \
674 $(am__cd) $(top_srcdir) && \
675 $(AUTOMAKE) --gnu tests/Makefile
676 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
677 @case '$?' in \
678 *config.status*) \
679 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
680 *) \
681 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
682 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
683 esac;
684
685 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
686 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
687
688 $(top_srcdir)/configure: $(am__configure_deps)
689 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
690 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
691 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
692 $(am__aclocal_m4_deps):
693
694 clean-checkPROGRAMS:
695 @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
696 echo " rm -f" $$list; \
697 rm -f $$list || exit $$?; \
698 test -n "$(EXEEXT)" || exit 0; \
699 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
700 echo " rm -f" $$list; \
701 rm -f $$list
702
703 redirect-test$(EXEEXT): $(redirect_test_OBJECTS) $(redirect_test_DEPENDENCIES) $(EXTRA_redirect_test_DEPENDENCIES)
704 @rm -f redirect-test$(EXEEXT)
705 $(AM_V_CCLD)$(redirect_test_LINK) $(redirect_test_OBJECTS) $(redirect_test_LDADD) $(LIBS)
706
707 test-hotkeys$(EXEEXT): $(test_hotkeys_OBJECTS) $(test_hotkeys_DEPENDENCIES) $(EXTRA_test_hotkeys_DEPENDENCIES)
708 @rm -f test-hotkeys$(EXEEXT)
709 $(AM_V_CCLD)$(LINK) $(test_hotkeys_OBJECTS) $(test_hotkeys_LDADD) $(LIBS)
710
711 test-monitor-alignment$(EXEEXT): $(test_monitor_alignment_OBJECTS) $(test_monitor_alignment_DEPENDENCIES) $(EXTRA_test_monitor_alignment_DEPENDENCIES)
712 @rm -f test-monitor-alignment$(EXEEXT)
713 $(AM_V_CCLD)$(LINK) $(test_monitor_alignment_OBJECTS) $(test_monitor_alignment_LDADD) $(LIBS)
714
715 test-monitor-mapping$(EXEEXT): $(test_monitor_mapping_OBJECTS) $(test_monitor_mapping_DEPENDENCIES) $(EXTRA_test_monitor_mapping_DEPENDENCIES)
716 @rm -f test-monitor-mapping$(EXEEXT)
717 $(AM_V_CCLD)$(LINK) $(test_monitor_mapping_OBJECTS) $(test_monitor_mapping_LDADD) $(LIBS)
718
719 test-version-compare$(EXEEXT): $(test_version_compare_OBJECTS) $(test_version_compare_DEPENDENCIES) $(EXTRA_test_version_compare_DEPENDENCIES)
720 @rm -f test-version-compare$(EXEEXT)
721 $(AM_V_CCLD)$(LINK) $(test_version_compare_OBJECTS) $(test_version_compare_LDADD) $(LIBS)
722
723 mostlyclean-compile:
724 -rm -f *.$(OBJEXT)
725
726 distclean-compile:
727 -rm -f *.tab.c
728
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@
734
735 .c.o:
736 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
737 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
738 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
739 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
740 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
741 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
742
743 .c.obj:
744 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
745 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
746 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
747 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
748 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
749 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
750
751 .c.lo:
752 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
753 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
754 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
755 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
756 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
757 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
758
759 redirect_test-redirect-test.o: redirect-test.c
760 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(redirect_test_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT redirect_test-redirect-test.o -MD -MP -MF $(DEPDIR)/redirect_test-redirect-test.Tpo -c -o redirect_test-redirect-test.o `test -f 'redirect-test.c' || echo '$(srcdir)/'`redirect-test.c
761 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/redirect_test-redirect-test.Tpo $(DEPDIR)/redirect_test-redirect-test.Po
762 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='redirect-test.c' object='redirect_test-redirect-test.o' libtool=no @AMDEPBACKSLASH@
763 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
764 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(redirect_test_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o redirect_test-redirect-test.o `test -f 'redirect-test.c' || echo '$(srcdir)/'`redirect-test.c
765
766 redirect_test-redirect-test.obj: redirect-test.c
767 @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(redirect_test_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT redirect_test-redirect-test.obj -MD -MP -MF $(DEPDIR)/redirect_test-redirect-test.Tpo -c -o redirect_test-redirect-test.obj `if test -f 'redirect-test.c'; then $(CYGPATH_W) 'redirect-test.c'; else $(CYGPATH_W) '$(srcdir)/redirect-test.c'; fi`
768 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/redirect_test-redirect-test.Tpo $(DEPDIR)/redirect_test-redirect-test.Po
769 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='redirect-test.c' object='redirect_test-redirect-test.obj' libtool=no @AMDEPBACKSLASH@
770 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
771 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(redirect_test_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o redirect_test-redirect-test.obj `if test -f 'redirect-test.c'; then $(CYGPATH_W) 'redirect-test.c'; else $(CYGPATH_W) '$(srcdir)/redirect-test.c'; fi`
772
773 mostlyclean-libtool:
774 -rm -f *.lo
775
776 clean-libtool:
777 -rm -rf .libs _libs
778
779 ID: $(am__tagged_files)
780 $(am__define_uniq_tagged_files); mkid -fID $$unique
781 tags: tags-am
782 TAGS: tags
783
784 tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
785 set x; \
786 here=`pwd`; \
787 $(am__define_uniq_tagged_files); \
788 shift; \
789 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
790 test -n "$$unique" || unique=$$empty_fix; \
791 if test $$# -gt 0; then \
792 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
793 "$$@" $$unique; \
794 else \
795 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
796 $$unique; \
797 fi; \
798 fi
799 ctags: ctags-am
800
801 CTAGS: ctags
802 ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
803 $(am__define_uniq_tagged_files); \
804 test -z "$(CTAGS_ARGS)$$unique" \
805 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
806 $$unique
807
808 GTAGS:
809 here=`$(am__cd) $(top_builddir) && pwd` \
810 && $(am__cd) $(top_srcdir) \
811 && gtags -i $(GTAGS_ARGS) "$$here"
812 cscopelist: cscopelist-am
813
814 cscopelist-am: $(am__tagged_files)
815 list='$(am__tagged_files)'; \
816 case "$(srcdir)" in \
817 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
818 *) sdir=$(subdir)/$(srcdir) ;; \
819 esac; \
820 for i in $$list; do \
821 if test -f "$$i"; then \
822 echo "$(subdir)/$$i"; \
823 else \
824 echo "$$sdir/$$i"; \
825 fi; \
826 done >> $(top_builddir)/cscope.files
827
828 distclean-tags:
829 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
830
831 # Recover from deleted '.trs' file; this should ensure that
832 # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
833 # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
834 # to avoid problems with "make -n".
835 .log.trs:
836 rm -f $< $@
837 $(MAKE) $(AM_MAKEFLAGS) $<
838
839 # Leading 'am--fnord' is there to ensure the list of targets does not
840 # expand to empty, as could happen e.g. with make check TESTS=''.
841 am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
842 am--force-recheck:
843 @:
844
845 $(TEST_SUITE_LOG): $(TEST_LOGS)
846 @$(am__set_TESTS_bases); \
847 am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
848 redo_bases=`for i in $$bases; do \
849 am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
850 done`; \
851 if test -n "$$redo_bases"; then \
852 redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
853 redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
854 if $(am__make_dryrun); then :; else \
855 rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
856 fi; \
857 fi; \
858 if test -n "$$am__remaking_logs"; then \
859 echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
860 "recursion detected" >&2; \
861 elif test -n "$$redo_logs"; then \
862 am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
863 fi; \
864 if $(am__make_dryrun); then :; else \
865 st=0; \
866 errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
867 for i in $$redo_bases; do \
868 test -f $$i.trs && test -r $$i.trs \
869 || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
870 test -f $$i.log && test -r $$i.log \
871 || { echo "$$errmsg $$i.log" >&2; st=1; }; \
872 done; \
873 test $$st -eq 0 || exit 1; \
874 fi
875 @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
876 ws='[ ]'; \
877 results=`for b in $$bases; do echo $$b.trs; done`; \
878 test -n "$$results" || results=/dev/null; \
879 all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
880 pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
881 fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
882 skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
883 xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
884 xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
885 error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
886 if test `expr $$fail + $$xpass + $$error` -eq 0; then \
887 success=true; \
888 else \
889 success=false; \
890 fi; \
891 br='==================='; br=$$br$$br$$br$$br; \
892 result_count () \
893 { \
894 if test x"$$1" = x"--maybe-color"; then \
895 maybe_colorize=yes; \
896 elif test x"$$1" = x"--no-color"; then \
897 maybe_colorize=no; \
898 else \
899 echo "$@: invalid 'result_count' usage" >&2; exit 4; \
900 fi; \
901 shift; \
902 desc=$$1 count=$$2; \
903 if test $$maybe_colorize = yes && test $$count -gt 0; then \
904 color_start=$$3 color_end=$$std; \
905 else \
906 color_start= color_end=; \
907 fi; \
908 echo "$${color_start}# $$desc $$count$${color_end}"; \
909 }; \
910 create_testsuite_report () \
911 { \
912 result_count $$1 "TOTAL:" $$all "$$brg"; \
913 result_count $$1 "PASS: " $$pass "$$grn"; \
914 result_count $$1 "SKIP: " $$skip "$$blu"; \
915 result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
916 result_count $$1 "FAIL: " $$fail "$$red"; \
917 result_count $$1 "XPASS:" $$xpass "$$red"; \
918 result_count $$1 "ERROR:" $$error "$$mgn"; \
919 }; \
920 { \
921 echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
922 $(am__rst_title); \
923 create_testsuite_report --no-color; \
924 echo; \
925 echo ".. contents:: :depth: 2"; \
926 echo; \
927 for b in $$bases; do echo $$b; done \
928 | $(am__create_global_log); \
929 } >$(TEST_SUITE_LOG).tmp || exit 1; \
930 mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
931 if $$success; then \
932 col="$$grn"; \
933 else \
934 col="$$red"; \
935 test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
936 fi; \
937 echo "$${col}$$br$${std}"; \
938 echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
939 echo "$${col}$$br$${std}"; \
940 create_testsuite_report --maybe-color; \
941 echo "$$col$$br$$std"; \
942 if $$success; then :; else \
943 echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
944 if test -n "$(PACKAGE_BUGREPORT)"; then \
945 echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
946 fi; \
947 echo "$$col$$br$$std"; \
948 fi; \
949 $$success || exit 1
950
951 check-TESTS:
952 @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
953 @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
954 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
955 @set +e; $(am__set_TESTS_bases); \
956 log_list=`for i in $$bases; do echo $$i.log; done`; \
957 trs_list=`for i in $$bases; do echo $$i.trs; done`; \
958 log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
959 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
960 exit $$?;
961 recheck: all $(check_PROGRAMS)
962 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
963 @set +e; $(am__set_TESTS_bases); \
964 bases=`for i in $$bases; do echo $$i; done \
965 | $(am__list_recheck_tests)` || exit 1; \
966 log_list=`for i in $$bases; do echo $$i.log; done`; \
967 log_list=`echo $$log_list`; \
968 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
969 am__force_recheck=am--force-recheck \
970 TEST_LOGS="$$log_list"; \
971 exit $$?
972 test-version-compare.log: test-version-compare$(EXEEXT)
973 @p='test-version-compare$(EXEEXT)'; \
974 b='test-version-compare'; \
975 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
976 --log-file $$b.log --trs-file $$b.trs \
977 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
978 "$$tst" $(AM_TESTS_FD_REDIRECT)
979 test-monitor-mapping.log: test-monitor-mapping$(EXEEXT)
980 @p='test-monitor-mapping$(EXEEXT)'; \
981 b='test-monitor-mapping'; \
982 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
983 --log-file $$b.log --trs-file $$b.trs \
984 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
985 "$$tst" $(AM_TESTS_FD_REDIRECT)
986 test-hotkeys.log: test-hotkeys$(EXEEXT)
987 @p='test-hotkeys$(EXEEXT)'; \
988 b='test-hotkeys'; \
989 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
990 --log-file $$b.log --trs-file $$b.trs \
991 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
992 "$$tst" $(AM_TESTS_FD_REDIRECT)
993 test-monitor-alignment.log: test-monitor-alignment$(EXEEXT)
994 @p='test-monitor-alignment$(EXEEXT)'; \
995 b='test-monitor-alignment'; \
996 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
997 --log-file $$b.log --trs-file $$b.trs \
998 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
999 "$$tst" $(AM_TESTS_FD_REDIRECT)
1000 redirect-test.log: redirect-test$(EXEEXT)
1001 @p='redirect-test$(EXEEXT)'; \
1002 b='redirect-test'; \
1003 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1004 --log-file $$b.log --trs-file $$b.trs \
1005 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1006 "$$tst" $(AM_TESTS_FD_REDIRECT)
1007 .test.log:
1008 @p='$<'; \
1009 $(am__set_b); \
1010 $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1011 --log-file $$b.log --trs-file $$b.trs \
1012 $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1013 "$$tst" $(AM_TESTS_FD_REDIRECT)
1014 @am__EXEEXT_TRUE@.test$(EXEEXT).log:
1015 @am__EXEEXT_TRUE@ @p='$<'; \
1016 @am__EXEEXT_TRUE@ $(am__set_b); \
1017 @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1018 @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
1019 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1020 @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
1021
1022 distdir: $(DISTFILES)
1023 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1024 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1025 list='$(DISTFILES)'; \
1026 dist_files=`for file in $$list; do echo $$file; done | \
1027 sed -e "s|^$$srcdirstrip/||;t" \
1028 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1029 case $$dist_files in \
1030 */*) $(MKDIR_P) `echo "$$dist_files" | \
1031 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1032 sort -u` ;; \
1033 esac; \
1034 for file in $$dist_files; do \
1035 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1036 if test -d $$d/$$file; then \
1037 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1038 if test -d "$(distdir)/$$file"; then \
1039 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1040 fi; \
1041 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1042 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1043 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1044 fi; \
1045 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1046 else \
1047 test -f "$(distdir)/$$file" \
1048 || cp -p $$d/$$file "$(distdir)/$$file" \
1049 || exit 1; \
1050 fi; \
1051 done
1052 check-am: all-am
1053 $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
1054 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
1055 check: check-am
1056 all-am: Makefile
1057 installdirs:
1058 install: install-am
1059 install-exec: install-exec-am
1060 install-data: install-data-am
1061 uninstall: uninstall-am
1062
1063 install-am: all-am
1064 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1065
1066 installcheck: installcheck-am
1067 install-strip:
1068 if test -z '$(STRIP)'; then \
1069 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1070 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1071 install; \
1072 else \
1073 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1074 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1075 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1076 fi
1077 mostlyclean-generic:
1078 -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
1079 -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
1080 -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1081
1082 clean-generic:
1083
1084 distclean-generic:
1085 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1086 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1087
1088 maintainer-clean-generic:
1089 @echo "This command is intended for maintainers to use"
1090 @echo "it deletes files that may require special tools to rebuild."
1091 clean: clean-am
1092
1093 clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
1094 mostlyclean-am
1095
1096 distclean: distclean-am
1097 -rm -rf ./$(DEPDIR)
1098 -rm -f Makefile
1099 distclean-am: clean-am distclean-compile distclean-generic \
1100 distclean-tags
1101
1102 dvi: dvi-am
1103
1104 dvi-am:
1105
1106 html: html-am
1107
1108 html-am:
1109
1110 info: info-am
1111
1112 info-am:
1113
1114 install-data-am:
1115
1116 install-dvi: install-dvi-am
1117
1118 install-dvi-am:
1119
1120 install-exec-am:
1121
1122 install-html: install-html-am
1123
1124 install-html-am:
1125
1126 install-info: install-info-am
1127
1128 install-info-am:
1129
1130 install-man:
1131
1132 install-pdf: install-pdf-am
1133
1134 install-pdf-am:
1135
1136 install-ps: install-ps-am
1137
1138 install-ps-am:
1139
1140 installcheck-am:
1141
1142 maintainer-clean: maintainer-clean-am
1143 -rm -rf ./$(DEPDIR)
1144 -rm -f Makefile
1145 maintainer-clean-am: distclean-am maintainer-clean-generic
1146
1147 mostlyclean: mostlyclean-am
1148
1149 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1150 mostlyclean-libtool
1151
1152 pdf: pdf-am
1153
1154 pdf-am:
1155
1156 ps: ps-am
1157
1158 ps-am:
1159
1160 uninstall-am:
1161
1162 .MAKE: check-am install-am install-strip
1163
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 \
1174 maintainer-clean-generic mostlyclean mostlyclean-compile \
1175 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1176 recheck tags tags-am uninstall uninstall-am
1177
1178 .PRECIOUS: Makefile
1179
1180
1181 -include $(top_srcdir)/git.mk
1182
1183 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1184 # Otherwise a system limit (for SysV at least) may be exceeded.
1185 .NOEXPORT:
0 /*
1 * Copyright (C) 2016 Red Hat, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
18 /* This small program test redirection inside Remote Viewer
19 */
20
21 #include <config.h>
22
23 /* force assert to be compiler, on Windows are usually disabled */
24 #undef NDEBUG
25 #undef DEBUG
26 #define DEBUG 1
27
28 #include <windows.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <assert.h>
32 #include <io.h>
33 #include <glib.h>
34
35 static BOOL has_console = FALSE;
36 static HANDLE h_console = INVALID_HANDLE_VALUE;
37 static FILE *log_f = NULL;
38 static int num_test = 0;
39
40 static int
41 has_inherit(HANDLE h)
42 {
43 DWORD flags;
44 if (GetHandleInformation(h, &flags))
45 return flags & HANDLE_FLAG_INHERIT;
46 return 0;
47 }
48
49 static BOOL is_handle_valid(HANDLE h)
50 {
51 if (h == INVALID_HANDLE_VALUE || h == NULL)
52 return FALSE;
53
54 DWORD flags;
55 return GetHandleInformation(h, &flags);
56 }
57
58 static int
59 called_test(int argc G_GNUC_UNUSED, char **argv)
60 {
61 STARTUPINFO si;
62 memset(&si, 0, sizeof(si));
63 si.cb = sizeof(si);
64 si.dwFlags = STARTF_USESTDHANDLES;
65 GetStartupInfo(&si);
66 fprintf(log_f, "handles %p %p - %p %p %d %d\n", si.hStdOutput, si.hStdError,
67 GetStdHandle(STD_OUTPUT_HANDLE), GetStdHandle(STD_ERROR_HANDLE),
68 has_inherit(GetStdHandle(STD_OUTPUT_HANDLE)), has_inherit(GetStdHandle(STD_ERROR_HANDLE)));
69
70 /* Get redirection from parent */
71 BOOL out_valid = is_handle_valid(GetStdHandle(STD_OUTPUT_HANDLE));
72 BOOL err_valid = is_handle_valid(GetStdHandle(STD_ERROR_HANDLE));
73
74 /*
75 * If not all output are redirected try to redirect to parent console.
76 * If parent has no console (for instance as launched from GUI) just
77 * rely on default (no output).
78 */
79 if ((!out_valid || !err_valid) && AttachConsole(ATTACH_PARENT_PROCESS)) {
80 fprintf(log_f, "attached\n");
81 if (!out_valid) {
82 freopen("CONOUT$", "w", stdout);
83 dup2(fileno(stdout), STDOUT_FILENO);
84 }
85 if (!err_valid) {
86 freopen("CONOUT$", "w", stderr);
87 dup2(fileno(stderr), STDERR_FILENO);
88 }
89 }
90
91 printf("stdout %s line\n", argv[0]);
92 fflush(stdout);
93 fprintf(stderr, "stderr %s line\n", argv[0]);
94 fflush(stderr);
95 return 0;
96 }
97
98 static enum {
99 METHOD_CREATEPROCESS,
100 METHOD_STDHANDLE
101 } redir_method = METHOD_CREATEPROCESS;
102
103 static void
104 exec(HANDLE redir_out, HANDLE redir_err)
105 {
106 char program[MAX_PATH+128];
107 GetModuleFileName(NULL, program+1, MAX_PATH);
108 program[0] = '\"';
109 sprintf(strchr(program, 0) , "\" %d", num_test);
110
111 HANDLE old_out = GetStdHandle(STD_OUTPUT_HANDLE);
112 HANDLE old_err = GetStdHandle(STD_ERROR_HANDLE);
113
114 BOOL inherit = FALSE;
115 STARTUPINFO si;
116 memset(&si, 0, sizeof(si));
117 si.cb = sizeof(si);
118 si.dwFlags = 0;
119 si.hStdOutput = si.hStdError = si.hStdInput = INVALID_HANDLE_VALUE;
120 if (redir_out != INVALID_HANDLE_VALUE || redir_err != INVALID_HANDLE_VALUE) {
121 if (redir_method == METHOD_CREATEPROCESS)
122 si.dwFlags |= STARTF_USESTDHANDLES;
123 inherit = TRUE;
124 if (redir_out != INVALID_HANDLE_VALUE) {
125 SetHandleInformation(redir_out, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT);
126 if (redir_method == METHOD_CREATEPROCESS) {
127 si.hStdOutput = redir_out;
128 } else {
129 SetStdHandle(STD_OUTPUT_HANDLE, redir_out);
130 }
131 }
132 if (redir_err != INVALID_HANDLE_VALUE) {
133 SetHandleInformation(redir_err, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT);
134 if (redir_method == METHOD_CREATEPROCESS) {
135 si.hStdError = redir_err;
136 } else {
137 SetStdHandle(STD_ERROR_HANDLE, redir_err);
138 }
139 }
140 }
141
142 fprintf(log_f, "handles %p %p - %p %p %d %d\n", si.hStdOutput, si.hStdError,
143 GetStdHandle(STD_OUTPUT_HANDLE), GetStdHandle(STD_ERROR_HANDLE),
144 has_inherit(GetStdHandle(STD_OUTPUT_HANDLE)), has_inherit(GetStdHandle(STD_ERROR_HANDLE)));
145
146 fprintf(log_f, "sub command ---->\n");
147 fclose(log_f);
148 log_f = NULL;
149
150 PROCESS_INFORMATION pi = { 0, };
151 assert(CreateProcess(NULL, program, NULL, NULL, inherit, 0, NULL, NULL, &si, &pi));
152 CloseHandle(pi.hThread);
153 WaitForSingleObject(pi.hProcess, INFINITE);
154 CloseHandle(pi.hProcess);
155
156 log_f = fopen("log.txt", "a");
157 assert(log_f);
158 setbuf(log_f, NULL);
159 fprintf(log_f, "<---- sub command\n");
160
161 SetStdHandle(STD_OUTPUT_HANDLE, old_out);
162 SetStdHandle(STD_ERROR_HANDLE, old_err);
163 }
164
165 // simple dirty function to read first line in a file
166 static char *
167 read_file(const char *fn)
168 {
169 FILE *f = fopen(fn, "r");
170 assert(f);
171
172 // dirty but fast
173 static char buf[1024];
174
175 memset(buf, 0, sizeof(buf));
176 if (!fgets(buf, sizeof(buf), f))
177 memset(buf, 0, sizeof(buf));
178
179 fclose(f);
180 return buf;
181 }
182
183 static char *
184 read_console(void)
185 {
186 CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
187 assert(GetConsoleScreenBufferInfo(h_console, &csbiInfo));
188
189 fprintf(log_f, "size %d %d\n", csbiInfo.dwSize.X, csbiInfo.dwSize.Y);
190 fprintf(log_f, "win %d %d %d %d\n", csbiInfo.srWindow.Left, csbiInfo.srWindow.Top, csbiInfo.srWindow.Right, csbiInfo.srWindow.Bottom);
191
192 COORD size;
193 size.Y = csbiInfo.srWindow.Bottom + 1;
194 size.X = csbiInfo.srWindow.Right + 1;
195
196 COORD coord = { 0, 0 };
197
198 CHAR_INFO *buf = calloc(size.Y * size.X, sizeof(CHAR_INFO));
199 assert(buf);
200
201 SMALL_RECT rect;
202 rect.Top = 0;
203 rect.Left = 0;
204 rect.Bottom = size.Y - 1;
205 rect.Right = size.X - 1;
206
207 // read console content
208 assert(ReadConsoleOutput(h_console, buf, size, coord, &rect));
209
210 // convert to just text
211 unsigned n;
212 char *char_buf = (char *) buf;
213 for (n = 0; n < size.X * size.Y; ++n)
214 char_buf[n] = buf[n].Char.AsciiChar;
215 char_buf[n] = 0;
216
217 // remove additional spaces
218 char *p;
219 while ((p=strstr(char_buf, " ")) != NULL)
220 memmove(p, p+1, strlen(p));
221
222 return char_buf;
223 }
224
225 static void
226 check(BOOL redir_out, BOOL redir_err)
227 {
228 ++num_test;
229 fprintf(log_f, "check method %d console %d redir_out %d redir_err %d\n",
230 (int) redir_method, has_console, redir_out, redir_err);
231
232 char stdout_line[64], stderr_line[64];
233
234 sprintf(stdout_line, "stdout %d line", num_test);
235 sprintf(stderr_line, "stderr %d line", num_test);
236
237 DeleteFile("stdout.txt");
238 DeleteFile("stderr.txt");
239
240 HANDLE out = CreateFile("stdout.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
241 assert(out != INVALID_HANDLE_VALUE);
242 HANDLE err = CreateFile("stderr.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
243 assert(err != INVALID_HANDLE_VALUE);
244
245 exec(redir_out ? out : INVALID_HANDLE_VALUE,
246 redir_err ? err : INVALID_HANDLE_VALUE);
247
248 CloseHandle(out);
249 CloseHandle(err);
250
251 // check file output
252 if (redir_out) {
253 char *data = read_file("stdout.txt");
254 assert(strstr(data, stdout_line) != NULL);
255 }
256 if (redir_err) {
257 char *data = read_file("stderr.txt");
258 assert(strstr(data, stderr_line) != NULL);
259 }
260
261 DeleteFile("stdout.txt");
262 DeleteFile("stderr.txt");
263
264 // check console output
265 if (!has_console)
266 return;
267
268 char *data = read_console();
269 fprintf(log_f, "\nconsole: %s\nstdout expected: %s\nstderr expected: %s\n", data, stdout_line, stderr_line);
270 if (!redir_out)
271 assert(strstr(data, stdout_line) != NULL);
272
273 if (!redir_err)
274 assert(strstr(data, stderr_line) != NULL);
275 free(data);
276 }
277
278 static void
279 all_checks(void)
280 {
281 check(TRUE, FALSE);
282 check(FALSE, TRUE);
283 check(TRUE, TRUE);
284
285 assert(AllocConsole());
286 has_console = TRUE;
287 h_console = GetStdHandle(STD_OUTPUT_HANDLE);
288 fprintf(log_f, "got console handles %p %p\n", h_console, GetStdHandle(STD_ERROR_HANDLE));
289
290 check(FALSE, FALSE);
291 check(TRUE, FALSE);
292 check(FALSE, TRUE);
293 check(TRUE, TRUE);
294
295 assert(FreeConsole());
296 has_console = FALSE;
297 h_console = INVALID_HANDLE_VALUE;
298 }
299
300 int WINAPI WinMain(HINSTANCE hInstance G_GNUC_UNUSED, HINSTANCE hPrevInstance G_GNUC_UNUSED,
301 LPSTR lpCmdLine, int nShowCmd G_GNUC_UNUSED)
302 {
303 static const char cmd_seps[] = " \t\r\n\v";
304
305 char *argv[10], *p;
306 int argc = 0;
307
308 // parse arguments
309 for (p = strtok(lpCmdLine, cmd_seps); p && argc < 10; p = strtok(NULL, cmd_seps))
310 argv[argc++] = p;
311 argv[argc] = NULL;
312
313 log_f = fopen("log.txt", argc >= 1 ? "a" : "w");
314 assert(log_f);
315 setbuf(log_f, NULL);
316
317 fprintf(log_f, "argc %d argv[0] %s \n", argc, argv[0]);
318
319 if (argc >= 1) {
320 return called_test(argc, argv);
321 }
322
323 // main program, call ourself with different arguments and settings
324 redir_method = METHOD_CREATEPROCESS;
325 all_checks();
326
327 redir_method = METHOD_STDHANDLE;
328 all_checks();
329
330 fprintf(log_f, "everything ok\n");
331
332 fclose(log_f);
333 return 0;
334 }
0 /* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
1 /*
2 * Virt Viewer: A virtual machine console viewer
3 *
4 * Copyright (C) 2016 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <config.h>
22 #include <glib.h>
23 #include <glib-object.h>
24 #include <gtk/gtk.h>
25
26 #include "virt-viewer-app.h"
27
28 G_BEGIN_DECLS
29
30 #define VIRT_VIEWER_TEST_TYPE virt_viewer_test_get_type()
31 #define VIRT_VIEWER_TEST(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIRT_VIEWER_TEST_TYPE, VirtViewerTest))
32 #define VIRT_VIEWER_TEST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIRT_VIEWER_TEST_TYPE, VirtViewerTestClass))
33 #define VIRT_VIEWER_TEST_IS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIRT_VIEWER_TEST_TYPE))
34 #define VIRT_VIEWER_TEST_IS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIRT_VIEWER_TEST_TYPE))
35 #define VIRT_VIEWER_TEST_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VIRT_VIEWER_TEST_TYPE, VirtViewerTestClass))
36
37 typedef struct {
38 VirtViewerApp parent;
39 } VirtViewerTest;
40
41 typedef struct {
42 VirtViewerAppClass parent_class;
43 } VirtViewerTestClass;
44
45 GType virt_viewer_test_get_type (void);
46
47 G_DEFINE_TYPE (VirtViewerTest, virt_viewer_test, VIRT_VIEWER_TYPE_APP)
48
49 VirtViewerTest *virt_viewer_test_new (void);
50
51 G_END_DECLS
52
53 static void
54 virt_viewer_test_class_init (VirtViewerTestClass *klass G_GNUC_UNUSED)
55 {
56 }
57
58 static void
59 virt_viewer_test_init(VirtViewerTest *self G_GNUC_UNUSED)
60 {
61 }
62
63 static void
64 test_hotkeys_good(void)
65 {
66 const gchar *hotkeys[] = {
67 "toggle-fullscreen=shift+f11",
68 "release-cursor=shift+f12,secure-attention=ctrl+shift+b",
69 "smartcard-insert=shift+I,smartcard-remove=shift+R",
70 };
71
72 guint i;
73
74 VirtViewerTest *viewer = g_object_new(VIRT_VIEWER_TEST_TYPE, NULL);
75 VirtViewerApp *app = VIRT_VIEWER_APP(viewer);
76 for (i = 0; i < G_N_ELEMENTS(hotkeys); i++) {
77 virt_viewer_app_set_hotkeys(app, hotkeys[i]);
78 }
79 g_object_unref(viewer);
80 }
81
82 static void
83 test_hotkeys_bad(void)
84 {
85 const struct {
86 const gchar *hotkey_str;
87 const GLogLevelFlags log_level;
88 const gchar *message;
89 } hotkeys[] = {
90 {
91 "no_value",
92 G_LOG_LEVEL_WARNING,
93 "missing value for key 'no_value'"
94 },{
95 "smartcard-insert=",
96 G_LOG_LEVEL_WARNING,
97 "missing value for key 'smartcard-insert'"
98 },{
99 "toggle-fullscreen=A,unknown_command=B",
100 G_LOG_LEVEL_WARNING,
101 "Unknown hotkey command unknown_command"
102 },{
103 "secure-attention=value",
104 G_LOG_LEVEL_WARNING,
105 "Invalid value 'value' for key 'secure-attention'"
106 },
107 };
108
109 guint i;
110
111 VirtViewerTest *viewer = g_object_new(VIRT_VIEWER_TEST_TYPE, NULL);
112 VirtViewerApp *app = VIRT_VIEWER_APP(viewer);
113 for (i = 0; i < G_N_ELEMENTS(hotkeys); i++) {
114 g_test_expect_message(G_LOG_DOMAIN, hotkeys[i].log_level, hotkeys[i].message);
115 virt_viewer_app_set_hotkeys(app, hotkeys[i].hotkey_str);
116 g_test_assert_expected_messages();
117 }
118 g_object_unref(viewer);
119 }
120
121 int main(int argc, char* argv[])
122 {
123 gtk_init_check(&argc, &argv);
124 g_test_init(&argc, &argv, NULL);
125
126 g_test_add_func("/virt-viewer/good-hotkeys", test_hotkeys_good);
127 g_test_add_func("/virt-viewer/bad-hotkeys", test_hotkeys_bad);
128
129 return g_test_run();
130 }
0 /* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
1 /*
2 * Virt Viewer: A virtual machine console viewer
3 *
4 * Copyright (C) 2016 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111NULL307 USA
19 */
20
21 #include <config.h>
22 #include <glib.h>
23 #include <gdk/gdk.h>
24
25 #include <virt-viewer-util.h>
26
27 /* GLIB_CHECK_VERSION(2, 40, 0) */
28 #ifndef g_assert_nonnull
29 #define g_assert_nonnull g_assert
30 #endif
31
32 gboolean doDebug = FALSE;
33
34 #define MAX_DISPLAYS 4
35
36 typedef struct test_case {
37 const guint display_cnt;
38 const GdkRectangle *displays_in[MAX_DISPLAYS];
39 const GdkRectangle *displays_out[MAX_DISPLAYS];
40 const GLogLevelFlags log_level;
41 const gchar *messages[3];
42 } TestCase;
43
44 typedef void (*MonitorAlignFunc) (GHashTable *);
45
46 static void
47 test_monitor_align(MonitorAlignFunc monitor_align, const TestCase *test_cases, const guint cases)
48 {
49 guint i;
50
51 for (i = 0; i < cases; i++) {
52 GdkRectangle *displays_in[MAX_DISPLAYS];
53 guint j;
54 GHashTable *displays = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, g_free);
55 g_assert_nonnull(displays);
56 for (j = 0; j < test_cases[i].display_cnt; j++) {
57 if (test_cases[i].displays_in[j] != NULL) {
58 GdkRectangle *monitor = g_new(GdkRectangle, 1);
59 *monitor = *test_cases[i].displays_in[j];
60 displays_in[j] = monitor;
61 } else {
62 displays_in[j] = NULL;
63 }
64 g_hash_table_insert(displays, GUINT_TO_POINTER(j), displays_in[j]);
65 }
66 for (j = 0; j < G_N_ELEMENTS(test_cases[i].messages) && test_cases[i].messages[j]; j++) {
67 g_test_expect_message(NULL, test_cases[i].log_level, test_cases[i].messages[j]);
68 }
69 monitor_align(displays);
70 g_test_assert_expected_messages();
71 for (j = 0; j < test_cases[i].display_cnt; j++) {
72 if (displays_in[j] == NULL) {
73 g_assert_null(test_cases[i].displays_out[j]);
74 continue;
75 }
76 g_assert_cmpint(displays_in[j]->x, ==, test_cases[i].displays_out[j]->x);
77 g_assert_cmpint(displays_in[j]->y, ==, test_cases[i].displays_out[j]->y);
78 g_assert_cmpint(displays_in[j]->width, ==, test_cases[i].displays_out[j]->width);
79 g_assert_cmpint(displays_in[j]->height, ==, test_cases[i].displays_out[j]->height);
80 }
81 g_hash_table_unref(displays);
82 }
83 }
84
85 static void
86 test_monitor_shift(void)
87 {
88 const GdkRectangle rects[] = {
89 {4240, 0, 1280, 1024},
90 {0, 0, 1280, 1024},
91 {100, 1000, 1024, 768},
92 {420, 680, 1024, 768},
93 {320, 320, 1024, 768},
94 {0, 1000, 1024, 768},
95 {4140, 0, 1280, 1024},
96 {220, 320, 1024, 768},
97 {320, 680, 1024, 768},
98 };
99 const TestCase test_cases[] = {
100 {
101 0, {NULL}, {NULL}, 0, {NULL}
102 },{
103 1,
104 {NULL},
105 {NULL},
106 G_LOG_LEVEL_CRITICAL,
107 {"*assertion 'display != NULL' failed"}
108 },{
109 2,
110 {NULL, &rects[0]},
111 {NULL, &rects[0]},
112 G_LOG_LEVEL_CRITICAL,
113 {"*assertion 'display != NULL' failed"}
114 },{
115 2,
116 {&rects[2], NULL},
117 {&rects[2], NULL},
118 G_LOG_LEVEL_CRITICAL,
119 {"*assertion 'display != NULL' failed"}
120 },{
121 2,
122 {&rects[0], &rects[0]},
123 {&rects[1], &rects[1]},
124 0,
125 {NULL}
126 },{
127 2,
128 {&rects[0], &rects[1]},
129 {&rects[0], &rects[1]},
130 0,
131 {NULL}
132 },{
133 4,
134 {&rects[0], &rects[2], &rects[4], &rects[3]},
135 {&rects[6], &rects[5], &rects[7], &rects[8]},
136 0,
137 {NULL}
138 },
139 };
140
141 test_monitor_align(virt_viewer_shift_monitors_to_origin, test_cases, G_N_ELEMENTS(test_cases));
142 }
143
144 static void
145 test_monitor_align_linear(void)
146 {
147 const GdkRectangle rects[] = {
148 {0, 0, 1280, 1024},
149 {100, 1000, 1024, 768},
150 {1280, 0, 1024, 768},
151 {0, 0, 1024, 768},
152 {3328, 0, 1024, 768},
153 {1024, 0, 1280, 1024},
154 {2304, 0, 1024, 768},
155 };
156 const TestCase test_cases[] = {
157 {
158 0, {NULL}, {NULL}, 0, {NULL}
159 },{
160 1,
161 {NULL},
162 {NULL},
163 G_LOG_LEVEL_CRITICAL,
164 {"*assertion 'rect != NULL' failed"}
165 },{
166 2,
167 {NULL, &rects[1]},
168 {NULL, &rects[1]},
169 G_LOG_LEVEL_CRITICAL,
170 {
171 "*displays_cmp: assertion 'm1 != NULL && m2 != NULL' failed",
172 "*assertion 'rect != NULL' failed"
173 }
174 },{
175 3,
176 {&rects[1], NULL, &rects[0]},
177 {&rects[3], NULL, &rects[0]},
178 G_LOG_LEVEL_CRITICAL,
179 {
180 "*displays_cmp: assertion 'm1 != NULL && m2 != NULL' failed",
181 "*displays_cmp: assertion 'm1 != NULL && m2 != NULL' failed",
182 "*assertion 'rect != NULL' failed"
183 }
184 },{
185 2,
186 {&rects[0], &rects[1]},
187 {&rects[0], &rects[2]},
188 0,
189 {NULL}
190 },{
191 2,
192 {&rects[1], &rects[0]},
193 {&rects[2], &rects[0]},
194 0,
195 {NULL}
196 },{
197 4,
198 {&rects[2], &rects[3], &rects[0], &rects[1]},
199 {&rects[4], &rects[3], &rects[5], &rects[6]},
200 0,
201 {NULL}
202 },
203 };
204
205 test_monitor_align(virt_viewer_align_monitors_linear, test_cases, G_N_ELEMENTS(test_cases));
206 }
207
208 int main(int argc, char* argv[])
209 {
210 gtk_init_check(&argc, &argv);
211 g_test_init(&argc, &argv, NULL);
212
213 g_test_add_func("/virt-viewer-util/monitor-shift", test_monitor_shift);
214 g_test_add_func("/virt-viewer-util/monitor-align-linear", test_monitor_align_linear);
215
216 return g_test_run();
217 }
0 /* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
1 /*
2 * Virt Viewer: A virtual machine console viewer
3 *
4 * Copyright (C) 2016 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <config.h>
22 #include <glib.h>
23 #include <virt-viewer-util.h>
24
25 gboolean doDebug = FALSE;
26
27 /**
28 * is_valid_monitor_mapping:
29 * @mapping: a value for the "monitor-mapping" key
30 *
31 * Tests the validity of the settings file for the "monitor-mapping" key:
32 * [test-monitor-mapping]
33 * monitor-mapping=@mapping
34 *
35 * Returns: %TRUE if the mapping is valid
36 */
37 static gboolean
38 is_valid_monitor_mapping(const gchar *mapping)
39 {
40 GKeyFile *key_file;
41 gboolean valid;
42 const gint nmonitors = 4;
43 const gchar *group_name = "test-monitor-mapping";
44 const gchar *key = "monitor-mapping";
45 const gchar *key_data_fmt = "[%s]\n%s=%s\n";
46 gchar *key_data = g_strdup_printf(key_data_fmt, group_name, key, mapping);
47
48 key_file = g_key_file_new();
49 valid = g_key_file_load_from_data(key_file, key_data, -1, G_KEY_FILE_NONE, NULL);
50 if (valid) {
51 gsize nmappings;
52 gchar **mappings = g_key_file_get_string_list(key_file, group_name, key, &nmappings, NULL);
53 GHashTable *map = virt_viewer_parse_monitor_mappings(mappings, nmappings, nmonitors);
54
55 valid = (map != NULL);
56
57 g_strfreev(mappings);
58 g_clear_pointer(&map, g_hash_table_unref);
59 }
60
61 g_key_file_free(key_file);
62 g_free(key_data);
63 return valid;
64 }
65
66 int main(void)
67 {
68 /* valid monitor mappings */
69 g_assert_true(is_valid_monitor_mapping("1:1"));
70 g_assert_true(is_valid_monitor_mapping("1:1;2:2"));
71 g_assert_true(is_valid_monitor_mapping("1:1;2:2;3:3;"));
72 g_assert_true(is_valid_monitor_mapping("1:2;2:1;3:3;4:4"));
73 g_assert_true(is_valid_monitor_mapping("4:1;3:2;2:3;1:4"));
74
75 /* invalid monitors mappings */
76 /* zero ids */
77 g_assert_false(is_valid_monitor_mapping("0:0"));
78 /* negative guest display id */
79 g_assert_false(is_valid_monitor_mapping("-1:1"));
80 /* negative client monitor id */
81 g_assert_false(is_valid_monitor_mapping("1:-1"));
82 /* negative guest display & client monitor id */
83 g_assert_false(is_valid_monitor_mapping("-1:-1"));
84 /* high guest display id */
85 g_assert_false(is_valid_monitor_mapping("100:1"));
86 /* high client monitor id */
87 g_assert_false(is_valid_monitor_mapping("1:100"));
88 /* missing guest display id */
89 g_assert_false(is_valid_monitor_mapping("1:1;3:3"));
90 /* guest display id used twice */
91 g_assert_false(is_valid_monitor_mapping("1:1;1:2"));
92 /* client monitor id used twice */
93 g_assert_false(is_valid_monitor_mapping("1:1;2:1"));
94 /* floating point guest display id */
95 g_assert_false(is_valid_monitor_mapping("1.111:1"));
96 /* floating point client monitor id */
97 g_assert_false(is_valid_monitor_mapping("1:1.111"));
98 /* empty mapping */
99 g_assert_false(is_valid_monitor_mapping(""));
100 g_assert_false(is_valid_monitor_mapping(";"));
101 /* missing guest display id */
102 g_assert_false(is_valid_monitor_mapping(":1"));
103 /* missing client monitor id */
104 g_assert_false(is_valid_monitor_mapping("1:"));
105 /* missing guest display & client monitor id */
106 g_assert_false(is_valid_monitor_mapping(":"));
107 /*missing colon */
108 g_assert_false(is_valid_monitor_mapping("11"));
109 /*missing semicolon */
110 g_assert_false(is_valid_monitor_mapping("1:12:2"));
111 /* strings */
112 g_assert_false(is_valid_monitor_mapping("1:a"));
113 g_assert_false(is_valid_monitor_mapping("a:1"));
114 g_assert_false(is_valid_monitor_mapping("a:a"));
115 g_assert_false(is_valid_monitor_mapping("monitor mapping"));
116
117 return 0;
118 }
0 /* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
1 /*
2 * Virt Viewer: A virtual machine console viewer
3 *
4 * Copyright (C) 2015 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <config.h>
22 #include <glib.h>
23 #include <virt-viewer-util.h>
24
25 gboolean doDebug = FALSE;
26
27 int main(void)
28 {
29 g_assert(virt_viewer_compare_buildid("1-1", "1-1") == 0);
30 g_assert(virt_viewer_compare_buildid("1-1", "1-1.1") < 0);
31 g_assert(virt_viewer_compare_buildid("1-1", "1-2") < 0);
32 g_assert(virt_viewer_compare_buildid("1-3", "1-2") > 0);
33 g_assert(virt_viewer_compare_buildid("2-3", "1-2") > 0);
34 g_assert(virt_viewer_compare_buildid("2-3", "3-2") < 0);
35 g_assert(virt_viewer_compare_buildid("2-3", "3-4") < 0);
36 g_assert(virt_viewer_compare_buildid("4-3", "3-4") > 0);
37
38 g_assert(virt_viewer_compare_buildid("4.0-", "3-4") > 0);
39 g_assert(virt_viewer_compare_buildid("4.0-", "3.4-4") > 0);
40 g_assert(virt_viewer_compare_buildid(".0-", "3.4-4") < 0);
41 g_assert(virt_viewer_compare_buildid("4-", "3-4") > 0);
42 g_assert(virt_viewer_compare_buildid("4-3", "3-") > 0);
43 g_assert(virt_viewer_compare_buildid("-3", "3-4") < 0);
44 g_assert(virt_viewer_compare_buildid("4-3", "-4") > 0);
45 g_assert(virt_viewer_compare_buildid("-3", "-4") < 0);
46 g_assert(virt_viewer_compare_buildid("4", "3-4") > 0);
47 g_assert(virt_viewer_compare_buildid("4-3", "3") > 0);
48 g_assert(virt_viewer_compare_buildid("3", "3-4") < 0);
49 g_assert(virt_viewer_compare_buildid("4-3", "4") > 0);
50 g_assert(virt_viewer_compare_buildid("-3", "-4") < 0);
51
52 /* These trigger runtime warnings */
53 g_assert(virt_viewer_compare_buildid("-3", "-") > 0);
54 g_assert(virt_viewer_compare_buildid("", "-") == 0);
55 g_assert(virt_viewer_compare_buildid("", "") == 0);
56 g_assert(virt_viewer_compare_buildid("", NULL) == 0);
57 g_assert(virt_viewer_compare_buildid(NULL, NULL) == 0);
58
59 return 0;
60 }
33 # (or provide a command-line override) if they backport any patches that
44 # touch configure.ac or Makefile.am.
55 %{!?enable_autotools:%define enable_autotools 0}
6
7 %define with_gtk3 0
8 %if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
9 %define with_gtk3 1
10 %endif
116
127 %define with_spice 0
138 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
2015 %endif
2116
2217 Name: virt-viewer
23 Version: 3.1
18 Version: 4.0
2419 Release: 1%{?dist}%{?extra_release}
2520 Summary: Virtual Machine Viewer
2621 Group: Applications/System
4136 BuildRequires: libtool
4237 %endif
4338
44 BuildRequires: glib2-devel >= 2.22.0
45 %if %{with_gtk3}
46 BuildRequires: gtk3-devel >= 3.0
47 %else
48 BuildRequires: gtk2-devel >= 2.18.0
49 %endif
50 BuildRequires: libvirt-devel >= 0.10.0
51 BuildRequires: libxml2-devel >= 2.6.0
52 %if %{with_gtk3}
53 BuildRequires: gtk-vnc2-devel >= 0.4.0
54 %else
55 BuildRequires: gtk-vnc-devel >= 0.3.8
56 %endif
39 BuildRequires: pkgconfig(glib-2.0) >= 2.38
40 BuildRequires: pkgconfig(gtk+-3.0) >= 3.10
41 BuildRequires: pkgconfig(libvirt) >= 0.10.0
42 BuildRequires: pkgconfig(libvirt-glib-1.0) >= 0.1.8
43 BuildRequires: pkgconfig(libxml-2.0) >= 2.6.0
44 BuildRequires: pkgconfig(gtk-vnc-2.0) >= 0.4.0
5745 %if %{with_spice}
58 %if %{with_gtk3}
59 BuildRequires: spice-gtk3-devel >= 0.30
60 %else
61 BuildRequires: spice-gtk-devel >= 0.30
62 %endif
63 BuildRequires: spice-protocol >= 0.12.7
46 BuildRequires: pkgconfig(spice-client-gtk-3.0) >= 0.31
47 BuildRequires: pkgconfig(spice-protocol) >= 0.12.7
6448 %endif
6549 BuildRequires: /usr/bin/pod2man
6650 BuildRequires: intltool
6751 %if %{with_govirt}
68 BuildRequires: libgovirt-devel >= 0.3.2
52 BuildRequires: pkgconfig(govirt-1.0) >= 0.3.2
6953 %endif
7054
7155 %if 0%{?fedora} >= 20
9175 %define spice_arg --with-spice-gtk
9276 %else
9377 %define spice_arg --without-spice-gtk
94 %endif
95
96 %if %{with_gtk3}
97 %define gtk_arg --with-gtk=3.0
98 %else
99 %define gtk_arg --with-gtk=2.0
10078 %endif
10179
10280 %if %{with_govirt}
143121 %doc README COPYING AUTHORS ChangeLog NEWS
144122 %{_bindir}/%{name}
145123 %{_bindir}/remote-viewer
146 %dir %{_datadir}/%{name}
147 %dir %{_datadir}/%{name}/ui/
148 %{_datadir}/%{name}/ui/virt-viewer.xml
149 %{_datadir}/%{name}/ui/virt-viewer-auth.xml
150 %{_datadir}/%{name}/ui/virt-viewer-about.xml
151 %{_datadir}/%{name}/ui/virt-viewer-guest-details.xml
152 %{_datadir}/%{name}/ui/virt-viewer-vm-connection.xml
153 %{_datadir}/%{name}/ui/virt-viewer-preferences.xml
154 %{_datadir}/%{name}/ui/remote-viewer-connect.xml
155124 %{_datadir}/icons/hicolor/*/apps/*
156125 %{_datadir}/icons/hicolor/*/devices/*
157126 %{_datadir}/applications/remote-viewer.desktop
127 %{_datadir}/appdata/remote-viewer.appdata.xml
158128 %{_datadir}/mime/packages/virt-viewer-mime.xml
159129 %ghost %{_libexecdir}/spice-xpi-client
160130 %{_libexecdir}/spice-xpi-client-remote-viewer
33 # (or provide a command-line override) if they backport any patches that
44 # touch configure.ac or Makefile.am.
55 %{!?enable_autotools:%define enable_autotools 0}
6
7 %define with_gtk3 0
8 %if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
9 %define with_gtk3 1
10 %endif
116
127 %define with_spice 0
138 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
4136 BuildRequires: libtool
4237 %endif
4338
44 BuildRequires: glib2-devel >= @GLIB2_REQUIRED@
45 %if %{with_gtk3}
46 BuildRequires: gtk3-devel >= @GTK3_REQUIRED@
47 %else
48 BuildRequires: gtk2-devel >= @GTK2_REQUIRED@
49 %endif
50 BuildRequires: libvirt-devel >= @LIBVIRT_REQUIRED@
51 BuildRequires: libxml2-devel >= @LIBXML2_REQUIRED@
52 %if %{with_gtk3}
53 BuildRequires: gtk-vnc2-devel >= @GTK_VNC2_REQUIRED@
54 %else
55 BuildRequires: gtk-vnc-devel >= @GTK_VNC1_REQUIRED@
56 %endif
39 BuildRequires: pkgconfig(glib-2.0) >= @GLIB2_REQUIRED@
40 BuildRequires: pkgconfig(gtk+-3.0) >= @GTK_REQUIRED@
41 BuildRequires: pkgconfig(libvirt) >= @LIBVIRT_REQUIRED@
42 BuildRequires: pkgconfig(libvirt-glib-1.0) >= @LIBVIRT_GLIB_REQUIRED@
43 BuildRequires: pkgconfig(libxml-2.0) >= @LIBXML2_REQUIRED@
44 BuildRequires: pkgconfig(gtk-vnc-2.0) >= @GTK_VNC_REQUIRED@
5745 %if %{with_spice}
58 %if %{with_gtk3}
59 BuildRequires: spice-gtk3-devel >= @SPICE_GTK_REQUIRED@
60 %else
61 BuildRequires: spice-gtk-devel >= @SPICE_GTK_REQUIRED@
62 %endif
63 BuildRequires: spice-protocol >= @SPICE_PROTOCOL_REQUIRED@
46 BuildRequires: pkgconfig(spice-client-gtk-3.0) >= @SPICE_GTK_REQUIRED@
47 BuildRequires: pkgconfig(spice-protocol) >= @SPICE_PROTOCOL_REQUIRED@
6448 %endif
6549 BuildRequires: /usr/bin/pod2man
6650 BuildRequires: intltool
6751 %if %{with_govirt}
68 BuildRequires: libgovirt-devel >= @GOVIRT_REQUIRED@
52 BuildRequires: pkgconfig(govirt-1.0) >= @GOVIRT_REQUIRED@
6953 %endif
7054
7155 %if 0%{?fedora} >= 20
9175 %define spice_arg --with-spice-gtk
9276 %else
9377 %define spice_arg --without-spice-gtk
94 %endif
95
96 %if %{with_gtk3}
97 %define gtk_arg --with-gtk=3.0
98 %else
99 %define gtk_arg --with-gtk=2.0
10078 %endif
10179
10280 %if %{with_govirt}
143121 %doc README COPYING AUTHORS ChangeLog NEWS
144122 %{_bindir}/%{name}
145123 %{_bindir}/remote-viewer
146 %dir %{_datadir}/%{name}
147 %dir %{_datadir}/%{name}/ui/
148 %{_datadir}/%{name}/ui/virt-viewer.xml
149 %{_datadir}/%{name}/ui/virt-viewer-auth.xml
150 %{_datadir}/%{name}/ui/virt-viewer-about.xml
151 %{_datadir}/%{name}/ui/virt-viewer-guest-details.xml
152 %{_datadir}/%{name}/ui/virt-viewer-vm-connection.xml
153 %{_datadir}/%{name}/ui/virt-viewer-preferences.xml
154 %{_datadir}/%{name}/ui/remote-viewer-connect.xml
155124 %{_datadir}/icons/hicolor/*/apps/*
156125 %{_datadir}/icons/hicolor/*/devices/*
157126 %{_datadir}/applications/remote-viewer.desktop
127 %{_datadir}/appdata/remote-viewer.appdata.xml
158128 %{_datadir}/mime/packages/virt-viewer-mime.xml
159129 %ghost %{_libexecdir}/spice-xpi-client
160130 %{_libexecdir}/spice-xpi-client-remote-viewer