Codebase list virt-viewer / e7ae231
Imported Upstream version 0.5.2 Laurent Léonard 11 years ago
70 changed file(s) with 9035 addition(s) and 3538 deletion(s). Raw diff Collapse all Expand all
00 Virt Viewer Authors
11 ===================
22
3 The Virt Viewer application is written by
3 The Virt Viewer application is maintained by
44
5 Daniel P. Berrange <berrange@redhat.com>
5 Daniel P. Berrange <berrange@redhat.com> (Original author)
6 Christophe Fergeau <cfergeau@redhat.com>
7 Marc-André Lureau <marcandre.lureau@redhat.com>
8 Hans de Goede <hdegoede@redhat.com>
69
710 With additional patches from:
811
1316 Hans de Goede <hdegoede@redhat.com>
1417 Hiroyuki Kaguchi <fj7025cf@aa.jp.fujitsu.com>
1518 Jiri Denemark <Jiri.Denemark@gmail.com>
16 Marc-André Lureau <marcandre.lureau@redhat.com>
1719 Pavel Raiskup <praiskup@redhat.com>
1820 Richard W.M. Jones <rjones@redhat.com>
1921 Ronnie Sahlberg <ronniesahlberg@gmail.com>
6163 <ypoyarko@fedoraproject.org>
6264 <yurchor@fedoraproject.org>
6365 <zoltanh721@fedoraproject.org>
66 ...and more...
67
68 For full translation credits see the header of the individual
69 files in the po/ directory.
6470
6571 -- End
0 2012-03-09 Daniel P. Berrange <berrange@redhat.com>
1
2 Update NEWS for 0.5.2 release
3
4 Import newer translations from transifex
5
6 Fix libvirt/SPICE min versions
7 We require libvirt >= 0.9.7 to get virDomainOpenGraphics
8
9 We require spice-gtk >= 0.11 to get the fix for dealing with
10 authentication over an SSH tunnel
11
12 We requires spice-protocol >= 0.10.1 to get a constant
13 required by USB redirection
14
15 2012-03-08 Marc-André Lureau <marcandre.lureau@gmail.com>
16
17 Add a send-key menu in fullscreen
18
19 2012-03-07 Marc-André Lureau <marcandre.lureau@gmail.com>
20
21 build: fix autogen message
22 When running ./autogen.sh on a pristine git checkout, I got:
23
24 libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
25 libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
26 You should add the contents of '/usr/share/aclocal/intltool.m4' to 'aclocal.m4'.
27
28 2012-03-07 Hans de Goede <hdegoede@redhat.com>
29
30 virt-viewer-window: Don't try to resize non visible windows
31 Trying to resize not visible windows leads to the following being printed
32 to the console:
33 Gdk-CRITICAL **: IA__gdk_window_get_origin: assertion `GDK_IS_WINDOW (window)'
34
35 This gets triggered by the gdk_screen_get_monitor_geometry() call in
36 virt_viewer_window_resize()
37
38 virt-viewer-window: Add show / hide utility functions
39
40 virt-viewer-window: Move checks before resize to virt_viewer_window_resize
41
42 virt-viewer-window: Remove useless tests for priv->window != NULL
43 priv->window gets set on init and never unset, so there is no need to check
44 for it.
45
46 2012-03-07 Daniel P. Berrange <berrange@redhat.com>
47
48 Update AUTHORS file
49
50 Refresh translations
51
52 2012-03-06 Hans de Goede <hdegoede@redhat.com>
53
54 virt-viewer-window: Add a USB device selection to the fullscreen menu (v2)
55 Note this button only gets shown on USB redir capable virtual machines.
56
57 Changes in v2:
58 -Use gtk_widget_set_visible for simpler code
59
60 window: Call virt_viewer_app_quit instead of gtk_main_quit
61 When quiting from the fullscreen menu call virt_viewer_app_quit instead of
62 gtk_main_quit so that the session gets properly disconnected before quiting.
63
64 virt_viewer_app_quit: Cleanly close the connection before quiting
65 Even though the previous patches in this series ensure that the session
66 gets properly finalized, we still need to wait for the disconnect signal,
67 as spice-glib uses co-routines which need some time to cleanly close the
68 connection / session.
69
70 session-spice: Delay the disconnected signal till all channels are closed
71 Before this patch session-spice would emit the disconnected signal as soon
72 as the main channel is closed, but other channels may still be open at
73 that time and raising the disconnected signal usally leads to the app class
74 calling gtk_main_quit, at which point the other channels never get properly
75 finalized (as there co-routines still hold a reference to them).
76
77 This is esp. bad for usbredir channels as these re-attach the kernel driver
78 for redirected devices when finalized. So exiting without properly finalizing
79 them leads to the formerly redirected devices not being usuable until the
80 driver is manually reloaded or the device is unplugged and re-plugged
81 (the kernel does not automatically re-bind kernel drivers when userspace
82 closes a usbfs node).
83
84 This patch fixes this by delaying the emitting of the disconnect signal
85 until the last channel has been destroyed.
86
87 virt-viewer-app: unref the session on dispose
88 With this patch combined with the previous patches in this series, the
89 VirtViewerSession (finally) gets properly finalized on exit.
90
91 virt-viewer-display: Use a borrowed reference to session
92 Before this patch there was a cyclic reference between VirtViewerSesion and
93 VirtViewerDisplay, since all VirtViewerDisplays are created / destroyed by
94 VirtViewerSession it is safe to assume that lifetime of VirtViewerSession >=
95 VirtViewerDisplay, so VirtViewerDisplay can take a borrowed reference
96 breaking the circle, and allowing proper cleanup on exit.
97
98 Note that there is no g_object_unref removed from virt-viewer-display, this
99 because there is no finalize / dispose and before this patch
100 VirtViewerDisplay never unref-ed the reference it hold to the session.
101
102 virt-viewer-window: Use a borrowed reference to app
103 Before this patch there was a cyclic reference between VirtViewerApp and
104 VirtViewerWindow, since all VirtViewerWindows are created / destroyed by
105 VirtViewerApp it is safe to assume that lifetime of VirtViewerApp >=
106 VirtViewerWindow, so VirtViewerWindow can take a borrowed reference
107 breaking the circle, and allowing proper cleanup on exit.
108
109 virt-viewer-app: main_window is part of our windows hashtable
110 This means that:
111 1) There is no need to explictly set its title separately
112 2) It is unref-ed when we do g_hash_table_unref(priv->windows), so it
113 should not be unref-ed separately otherwise it is unref-ed twice!
114
115 Notice that 2 was never a problem because of circular references
116 between VirtViewerApp and VirtViewerWindow, but once the follow
117 up patch to this one breaks the circle 2 becomes an issue.
118
119 session-spice: dispose should chain up to dispose not finalize!!
120
121 usbredir: Gnome HIG-ify USB device selection dialog
122 These changes match the changes already made to the spice-gtk
123 usb device selection widget to match the spacing advised by the Gnome HIG.
124
125 usbredir: Shrink the usb device selection dialog when devices are unplugged
126
127 2012-03-05 Christophe Fergeau <cfergeau@redhat.com>
128
129 Don't attempt to translate ""
130 The empty string has a magic meaning for gettext, it's used to
131 store a translation header with all kind of information about the
132 po file. This is not something we want to use as a window title, so
133 change to _("") to "" when we want an empty string.
134
135 Fix path to spice-controller.h
136
137 2012-03-01 Daniel P. Berrange <berrange@redhat.com>
138
139 Remove trailing blank line
140
141 2012-03-01 Marc-André Lureau <marcandre.lureau@gmail.com>
142
143 fix make distcheck
144
145 Prepare for release 0.5.2
146
147 update .mailmap
148
149 2012-03-01 Marc-Andre Lureau <marcandre.lureau@redhat.com>
150
151 remote-viewer: support spice foreign menu
152
153 2012-03-01 Marc-André Lureau <marcandre.lureau@gmail.com>
154
155 Add property app:has-focus
156
157 Fix compilation with gtk 2.18
158
159 spice: fix connecting via ssh to a password-protected server
160 spice_session_connect() will attempt to connect directly to the
161 server, we need to continue calling spice_session_open_fd() for ssh
162 tunnel to work.
163
164 spice: fix double unref of main channel
165 When doing unref() on a channel, channel-destroy signal may be emitted
166 during object dispose time, and it will attempt to unref() the channel
167 again likely leading to a crash.
168
169 It may be that spice-gtk should have a different/simpler object
170 life-cycle model, but it's also a good assumption to not take strong
171 references on the channels, but just keep a weak reference as the
172 session is really the channel life-cycle manager.
173
174 https://bugzilla.redhat.com/show_bug.cgi?id=797082
175
176 2012-02-27 Daniel P. Berrange <berrange@redhat.com>
177
178 Import translations
179
180 2012-02-23 Marc-André Lureau <marcandre.lureau@gmail.com>
181
182 nsis: set HKCU "Software\spice-space.org\spicex\client"
183 With recent RHEV portal plugin, the Spice client is chosen according
184 to this key.
185
186 2012-02-22 Marc-André Lureau <marcandre.lureau@gmail.com>
187
188 remote-viewer: add smartcard controller message
189
190 spice: teach customizable key bindings with controller
191 Tested with RHEVM 3.0 instance with custom bindings for fullscreen &
192 ungrab.
193
194 Small code simplification
195
196 Use the accelgroup to define key bindings
197 With accelgroups, we can redefine the keybindings
198
199 Add hidden menu smartcard remove/insert and release-cursor
200
201 Add virt_viewer_app_get_session()
202
203 spice: implement smartcard-{insert,remove} virtual methods
204
205 Add smartcard-{insert,remove} and release-cursor virtual methods
206
207 Do not disable accelgroup if accels are enabled
208
209 Add VirtViewerApp:enable-accel property
210
211 Require an accel group for full-screen menu
212 Bump Gtk depedency to 2.18, since we already use symbols from it.
213
0214 2012-02-17 Daniel P. Berrange <berrange@redhat.com>
1215
2216 Prepare for release 0.5.1
4040 COPYING ChangeLog INSTALL NEWS compile config.guess config.sub \
4141 depcomp install-sh ltmain.sh missing
4242 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
43 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
44 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
45 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
46 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
43 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
44 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
45 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
46 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
47 $(top_srcdir)/configure.ac
4748 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4849 $(ACLOCAL_M4)
4950 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
218219 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
219220 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
220221 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
222 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
223 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
221224 STRIP = @STRIP@
222225 USE_NLS = @USE_NLS@
223226 VERSION = @VERSION@
00 Virt Viewer News
11 ================
2
3 0.5.2: Mar 09, 2012
4 -------------------
5
6 - Require libvirt >= 0.9.7, spice-gtk >= 0.11, spice-protocol >= 0.10.1
7 - Import newer translations from transifex
8 - remote-viewer learned Spice controller customizable key bindings,
9 smartcard property, and foreign menu
10 - Fix Spice crash on re-connection
11 - Fix connecting via ssh to a password-protected server
12 - Add a sendkey menu in fullscreen mode
13 - Add USB device selection in fullscreen mode
14 - Misc reference leak / crash bugs fixed
215
316 0.5.1: Feb 17, 2012
417 -------------------
1818
1919 http://gtk-vnc.sourceforge.net/
2020
21 Virt Viewer uses the SPICE-GTK (>= 0.9) widget to provide a
21 Virt Viewer uses the SPICE-GTK (>= 0.11) widget to provide a
2222 display of the SPICE protocol, which is available from:
2323
2424 http://spice-space.org/page/Spice-Gtk
455455 fi])
456456
457457
458
459 dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
460 # serial 40 IT_PROG_INTLTOOL
461 AC_DEFUN([IT_PROG_INTLTOOL], [
462 AC_PREREQ([2.50])dnl
463 AC_REQUIRE([AM_NLS])dnl
464
465 case "$am__api_version" in
466 1.[01234])
467 AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
468 ;;
469 *)
470 ;;
471 esac
472
473 if test -n "$1"; then
474 AC_MSG_CHECKING([for intltool >= $1])
475
476 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
477 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
478 [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
479 ]
480 AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
481 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
482 AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
483 fi
484
485 AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
486 AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
487 AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
488 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
489 AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
490 fi
491
492 INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
493 INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
494 INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
495 INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
496 INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
497 INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
498 INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
499 INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
500 INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
501 INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
502 INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
503 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@'
504 INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
505 INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
506 INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
507 INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
508 INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
509 INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
510 INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
511
512 _IT_SUBST(INTLTOOL_DESKTOP_RULE)
513 _IT_SUBST(INTLTOOL_DIRECTORY_RULE)
514 _IT_SUBST(INTLTOOL_KEYS_RULE)
515 _IT_SUBST(INTLTOOL_PROP_RULE)
516 _IT_SUBST(INTLTOOL_OAF_RULE)
517 _IT_SUBST(INTLTOOL_PONG_RULE)
518 _IT_SUBST(INTLTOOL_SERVER_RULE)
519 _IT_SUBST(INTLTOOL_SHEET_RULE)
520 _IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
521 _IT_SUBST(INTLTOOL_UI_RULE)
522 _IT_SUBST(INTLTOOL_XAM_RULE)
523 _IT_SUBST(INTLTOOL_KBD_RULE)
524 _IT_SUBST(INTLTOOL_XML_RULE)
525 _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
526 _IT_SUBST(INTLTOOL_CAVES_RULE)
527 _IT_SUBST(INTLTOOL_SCHEMAS_RULE)
528 _IT_SUBST(INTLTOOL_THEME_RULE)
529 _IT_SUBST(INTLTOOL_SERVICE_RULE)
530 _IT_SUBST(INTLTOOL_POLICY_RULE)
531
532 # Check the gettext tools to make sure they are GNU
533 AC_PATH_PROG(XGETTEXT, xgettext)
534 AC_PATH_PROG(MSGMERGE, msgmerge)
535 AC_PATH_PROG(MSGFMT, msgfmt)
536 AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
537 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
538 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
539 fi
540 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
541 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
542 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
543 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
544 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
545 fi
546
547 AC_PATH_PROG(INTLTOOL_PERL, perl)
548 if test -z "$INTLTOOL_PERL"; then
549 AC_MSG_ERROR([perl not found])
550 fi
551 AC_MSG_CHECKING([for perl >= 5.8.1])
552 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
553 if test $? -ne 0; then
554 AC_MSG_ERROR([perl 5.8.1 is required for intltool])
555 else
556 IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
557 AC_MSG_RESULT([$IT_PERL_VERSION])
558 fi
559 if test "x$2" != "xno-xml"; then
560 AC_MSG_CHECKING([for XML::Parser])
561 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
562 AC_MSG_RESULT([ok])
563 else
564 AC_MSG_ERROR([XML::Parser perl module is required for intltool])
565 fi
566 fi
567
568 # Substitute ALL_LINGUAS so we can use it in po/Makefile
569 AC_SUBST(ALL_LINGUAS)
570
571 # Set DATADIRNAME correctly if it is not set yet
572 # (copied from glib-gettext.m4)
573 if test -z "$DATADIRNAME"; then
574 AC_LINK_IFELSE(
575 [AC_LANG_PROGRAM([[]],
576 [[extern int _nl_msg_cat_cntr;
577 return _nl_msg_cat_cntr]])],
578 [DATADIRNAME=share],
579 [case $host in
580 *-*-solaris*)
581 dnl On Solaris, if bind_textdomain_codeset is in libc,
582 dnl GNU format message catalog is always supported,
583 dnl since both are added to the libc all together.
584 dnl Hence, we'd like to go with DATADIRNAME=share
585 dnl in this case.
586 AC_CHECK_FUNC(bind_textdomain_codeset,
587 [DATADIRNAME=share], [DATADIRNAME=lib])
588 ;;
589 *)
590 [DATADIRNAME=lib]
591 ;;
592 esac])
593 fi
594 AC_SUBST(DATADIRNAME)
595
596 IT_PO_SUBDIR([po])
597
598 ])
599
600
601 # IT_PO_SUBDIR(DIRNAME)
602 # ---------------------
603 # All po subdirs have to be declared with this macro; the subdir "po" is
604 # declared by IT_PROG_INTLTOOL.
605 #
606 AC_DEFUN([IT_PO_SUBDIR],
607 [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
608 dnl
609 dnl The following CONFIG_COMMANDS should be executed at the very end
610 dnl of config.status.
611 AC_CONFIG_COMMANDS_PRE([
612 AC_CONFIG_COMMANDS([$1/stamp-it], [
613 if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
614 AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
615 fi
616 rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
617 >"$1/stamp-it.tmp"
618 [sed '/^#/d
619 s/^[[].*] *//
620 /^[ ]*$/d
621 '"s|^| $ac_top_srcdir/|" \
622 "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
623 ]
624 [sed '/^POTFILES =/,/[^\\]$/ {
625 /^POTFILES =/!d
626 r $1/POTFILES
627 }
628 ' "$1/Makefile.in" >"$1/Makefile"]
629 rm -f "$1/Makefile.tmp"
630 mv "$1/stamp-it.tmp" "$1/stamp-it"
631 ])
632 ])dnl
633 ])
634
635 # _IT_SUBST(VARIABLE)
636 # -------------------
637 # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
638 #
639 AC_DEFUN([_IT_SUBST],
640 [
641 AC_SUBST([$1])
642 m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
643 ]
644 )
645
646 # deprecated macros
647 AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
648 # A hint is needed for aclocal from Automake <= 1.9.4:
649 # AC_DEFUN([AC_PROG_INTLTOOL], ...)
650
651
652458 # nls.m4 serial 5 (gettext-0.18)
653459 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation,
654460 dnl Inc.
18441650 AC_SUBST([am__untar])
18451651 ]) # _AM_PROG_TAR
18461652
1653 m4_include([m4/intltool.m4])
18471654 m4_include([m4/libtool.m4])
18481655 m4_include([m4/ltoptions.m4])
18491656 m4_include([m4/ltsugar.m4])
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.68 for virt-viewer 0.5.1.
2 # Generated by GNU Autoconf 2.68 for virt-viewer 0.5.2.
33 #
44 #
55 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
566566 # Identity of this package.
567567 PACKAGE_NAME='virt-viewer'
568568 PACKAGE_TARNAME='virt-viewer'
569 PACKAGE_VERSION='0.5.1'
570 PACKAGE_STRING='virt-viewer 0.5.1'
569 PACKAGE_VERSION='0.5.2'
570 PACKAGE_STRING='virt-viewer 0.5.2'
571571 PACKAGE_BUGREPORT=''
572572 PACKAGE_URL=''
573573
623623 NSPR_CFLAGS
624624 HAVE_SPICE_GTK_FALSE
625625 HAVE_SPICE_GTK_TRUE
626 SPICE_PROTOCOL_LIBS
627 SPICE_PROTOCOL_CFLAGS
626628 SPICE_CONTROLLER_LIBS
627629 SPICE_CONTROLLER_CFLAGS
628630 SPICE_GTK_LIBS
850852 SPICE_GTK_LIBS
851853 SPICE_CONTROLLER_CFLAGS
852854 SPICE_CONTROLLER_LIBS
855 SPICE_PROTOCOL_CFLAGS
856 SPICE_PROTOCOL_LIBS
853857 NSPR_CFLAGS
854858 NSPR_LIBS
855859 FIREFOX_PLUGIN_CFLAGS
13981402 # Omit some internal or obsolete options to make the list less imposing.
13991403 # This message is too long to be a string in the A/UX 3.1 sh.
14001404 cat <<_ACEOF
1401 \`configure' configures virt-viewer 0.5.1 to adapt to many kinds of systems.
1405 \`configure' configures virt-viewer 0.5.2 to adapt to many kinds of systems.
14021406
14031407 Usage: $0 [OPTION]... [VAR=VALUE]...
14041408
14681472
14691473 if test -n "$ac_init_help"; then
14701474 case $ac_init_help in
1471 short | recursive ) echo "Configuration of virt-viewer 0.5.1:";;
1475 short | recursive ) echo "Configuration of virt-viewer 0.5.2:";;
14721476 esac
14731477 cat <<\_ACEOF
14741478
15441548 C compiler flags for SPICE_CONTROLLER, overriding pkg-config
15451549 SPICE_CONTROLLER_LIBS
15461550 linker flags for SPICE_CONTROLLER, overriding pkg-config
1551 SPICE_PROTOCOL_CFLAGS
1552 C compiler flags for SPICE_PROTOCOL, overriding pkg-config
1553 SPICE_PROTOCOL_LIBS
1554 linker flags for SPICE_PROTOCOL, overriding pkg-config
15471555 NSPR_CFLAGS C compiler flags for NSPR, overriding pkg-config
15481556 NSPR_LIBS linker flags for NSPR, overriding pkg-config
15491557 FIREFOX_PLUGIN_CFLAGS
16211629 test -n "$ac_init_help" && exit $ac_status
16221630 if $ac_init_version; then
16231631 cat <<\_ACEOF
1624 virt-viewer configure 0.5.1
1632 virt-viewer configure 0.5.2
16251633 generated by GNU Autoconf 2.68
16261634
16271635 Copyright (C) 2010 Free Software Foundation, Inc.
19861994 This file contains any messages produced by compilers while
19871995 running configure, to aid debugging if configure makes a mistake.
19881996
1989 It was created by virt-viewer $as_me 0.5.1, which was
1997 It was created by virt-viewer $as_me 0.5.2, which was
19901998 generated by GNU Autoconf 2.68. Invocation command line was
19911999
19922000 $ $0 $@
23352343
23362344
23372345
2346
23382347 ac_config_headers="$ac_config_headers config.h"
23392348
23402349 am__api_version='1.11'
28042813
28052814 # Define the identity of the package.
28062815 PACKAGE='virt-viewer'
2807 VERSION='0.5.1'
2816 VERSION='0.5.2'
28082817
28092818
28102819 cat >>confdefs.h <<_ACEOF
29332942
29342943 GMODULE2_REQUIRED=2.12.0
29352944 LIBXML2_REQUIRED="2.6.0"
2936 LIBVIRT_REQUIRED="0.6.0"
2937 GTK2_REQUIRED="2.12.0"
2945 LIBVIRT_REQUIRED="0.9.7"
2946 GTK2_REQUIRED="2.18.0"
29382947 GTK3_REQUIRED="3.0"
29392948 GTK_VNC1_REQUIRED="0.3.8"
29402949 GTK_VNC2_REQUIRED="0.4.0"
2941 SPICE_GTK_REQUIRED="0.9"
2950 SPICE_GTK_REQUIRED="0.11"
2951 SPICE_PROTOCOL_REQUIRED="0.10.1"
29422952
29432953 ac_ext=c
29442954 ac_cpp='$CPP $CPPFLAGS'
1372113731
1372213732 fi
1372313733
13734 pkg_failed=no
13735 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SPICE_PROTOCOL" >&5
13736 $as_echo_n "checking for SPICE_PROTOCOL... " >&6; }
13737
13738 if test -n "$SPICE_PROTOCOL_CFLAGS"; then
13739 pkg_cv_SPICE_PROTOCOL_CFLAGS="$SPICE_PROTOCOL_CFLAGS"
13740 elif test -n "$PKG_CONFIG"; then
13741 if test -n "$PKG_CONFIG" && \
13742 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5
13743 ($PKG_CONFIG --exists --print-errors "spice-protocol >= $SPICE_PROTOCOL_REQUIRED") 2>&5
13744 ac_status=$?
13745 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13746 test $ac_status = 0; }; then
13747 pkg_cv_SPICE_PROTOCOL_CFLAGS=`$PKG_CONFIG --cflags "spice-protocol >= $SPICE_PROTOCOL_REQUIRED" 2>/dev/null`
13748 else
13749 pkg_failed=yes
13750 fi
13751 else
13752 pkg_failed=untried
13753 fi
13754 if test -n "$SPICE_PROTOCOL_LIBS"; then
13755 pkg_cv_SPICE_PROTOCOL_LIBS="$SPICE_PROTOCOL_LIBS"
13756 elif test -n "$PKG_CONFIG"; then
13757 if test -n "$PKG_CONFIG" && \
13758 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"spice-protocol >= \$SPICE_PROTOCOL_REQUIRED\""; } >&5
13759 ($PKG_CONFIG --exists --print-errors "spice-protocol >= $SPICE_PROTOCOL_REQUIRED") 2>&5
13760 ac_status=$?
13761 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13762 test $ac_status = 0; }; then
13763 pkg_cv_SPICE_PROTOCOL_LIBS=`$PKG_CONFIG --libs "spice-protocol >= $SPICE_PROTOCOL_REQUIRED" 2>/dev/null`
13764 else
13765 pkg_failed=yes
13766 fi
13767 else
13768 pkg_failed=untried
13769 fi
13770
13771
13772
13773 if test $pkg_failed = yes; then
13774 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13775 $as_echo "no" >&6; }
13776
13777 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
13778 _pkg_short_errors_supported=yes
13779 else
13780 _pkg_short_errors_supported=no
13781 fi
13782 if test $_pkg_short_errors_supported = yes; then
13783 SPICE_PROTOCOL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "spice-protocol >= $SPICE_PROTOCOL_REQUIRED" 2>&1`
13784 else
13785 SPICE_PROTOCOL_PKG_ERRORS=`$PKG_CONFIG --print-errors "spice-protocol >= $SPICE_PROTOCOL_REQUIRED" 2>&1`
13786 fi
13787 # Put the nasty error message in config.log where it belongs
13788 echo "$SPICE_PROTOCOL_PKG_ERRORS" >&5
13789
13790 as_fn_error $? "Package requirements (spice-protocol >= $SPICE_PROTOCOL_REQUIRED) were not met:
13791
13792 $SPICE_PROTOCOL_PKG_ERRORS
13793
13794 Consider adjusting the PKG_CONFIG_PATH environment variable if you
13795 installed software in a non-standard prefix.
13796
13797 Alternatively, you may set the environment variables SPICE_PROTOCOL_CFLAGS
13798 and SPICE_PROTOCOL_LIBS to avoid the need to call pkg-config.
13799 See the pkg-config man page for more details." "$LINENO" 5
13800
13801 elif test $pkg_failed = untried; then
13802 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13803 $as_echo "no" >&6; }
13804 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
13805 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
13806 as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
13807 is in your PATH or set the PKG_CONFIG environment variable to the full
13808 path to pkg-config.
13809
13810 Alternatively, you may set the environment variables SPICE_PROTOCOL_CFLAGS
13811 and SPICE_PROTOCOL_LIBS to avoid the need to call pkg-config.
13812 See the pkg-config man page for more details.
13813
13814 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
13815 See \`config.log' for more details" "$LINENO" 5; }
13816
13817 else
13818 SPICE_PROTOCOL_CFLAGS=$pkg_cv_SPICE_PROTOCOL_CFLAGS
13819 SPICE_PROTOCOL_LIBS=$pkg_cv_SPICE_PROTOCOL_LIBS
13820 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
13821 $as_echo "yes" >&6; }
13822
13823 fi
13824
1372413825 $as_echo "#define HAVE_SPICE_GTK 1" >>confdefs.h
1372513826
1372613827 else
1470014801 # report actual input values of CONFIG_FILES etc. instead of their
1470114802 # values after options handling.
1470214803 ac_log="
14703 This file was extended by virt-viewer $as_me 0.5.1, which was
14804 This file was extended by virt-viewer $as_me 0.5.2, which was
1470414805 generated by GNU Autoconf 2.68. Invocation command line was
1470514806
1470614807 CONFIG_FILES = $CONFIG_FILES
1477014871 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1477114872 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1477214873 ac_cs_version="\\
14773 virt-viewer config.status 0.5.1
14874 virt-viewer config.status 0.5.2
1477414875 configured by $0, generated by GNU Autoconf 2.68,
1477514876 with options \\"\$ac_cs_config\\"
1477614877
00
1 AC_INIT(virt-viewer, 0.5.1)
1 AC_INIT(virt-viewer, 0.5.2)
22 AC_CONFIG_SRCDIR(src/virt-viewer-main.c)
3 AC_CONFIG_MACRO_DIR([m4])
34 AM_CONFIG_HEADER(config.h)
45 dnl Make automake keep quiet about wildcards & other GNUmake-isms
56 AM_INIT_AUTOMAKE([-Wno-portability])
1112
1213 GMODULE2_REQUIRED=2.12.0
1314 LIBXML2_REQUIRED="2.6.0"
14 LIBVIRT_REQUIRED="0.6.0"
15 GTK2_REQUIRED="2.12.0"
15 LIBVIRT_REQUIRED="0.9.7"
16 GTK2_REQUIRED="2.18.0"
1617 GTK3_REQUIRED="3.0"
1718 GTK_VNC1_REQUIRED="0.3.8"
1819 GTK_VNC2_REQUIRED="0.4.0"
19 SPICE_GTK_REQUIRED="0.9"
20 SPICE_GTK_REQUIRED="0.11"
21 SPICE_PROTOCOL_REQUIRED="0.10.1"
2022
2123 AC_PROG_CC
2224 AM_PROG_CC_C_O
128130
129131 AS_IF([test "x$have_spice_gtk" = "xyes"],
130132 [PKG_CHECK_MODULES(SPICE_CONTROLLER, [spice-controller])]
133 [PKG_CHECK_MODULES(SPICE_PROTOCOL, [spice-protocol >= $SPICE_PROTOCOL_REQUIRED])]
131134 [AC_DEFINE([HAVE_SPICE_GTK], 1, [Have spice-gtk?])],
132135 [AS_IF([test "x$with_spice_gtk" = "xyes"],
133136 [AC_MSG_ERROR([spice-gtk requested but not found])
3636 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
3737 $(srcdir)/virt-viewer.nsis.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
162163 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
163164 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
164165 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
166 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
167 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
165168 STRIP = @STRIP@
166169 USE_NLS = @USE_NLS@
167170 VERSION = @VERSION@
152152 nsExec::ExecToLog '$0 /C bin\pango-querymodules.exe > etc\pango\pango.modules'
153153 nsExec::ExecToLog 'echo gtk-theme-name = "MS-Windows" > etc\gtk-2.0\gtkrc'
154154
155 WriteRegStr HKCU "Software\spice-space.org\spicex" "client" "$INSTDIR\bin\remote-viewer.exe --spice-controller"
156
155157 SectionEnd
156158
157159 Section "Start Menu Shortcuts"
169171 # Delete /rebootok "$SMPROGRAMS\virt-viewer\virt-viewer.exe.lnk"
170172 Delete /rebootok "$SMPROGRAMS\virt-viewer\Uninstall virt-viewer.lnk"
171173 RMDir "$SMPROGRAMS\virt-viewer"
174
175 DeleteRegKey HKCU "Software\spice-space.org\spicex\client"
172176
173177 RMDir /r "$INSTDIR\lib\pango"
174178
3636 subdir = icons/16x16
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
185186 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
186187 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
187188 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
189 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
190 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
188191 STRIP = @STRIP@
189192 USE_NLS = @USE_NLS@
190193 VERSION = @VERSION@
3636 subdir = icons/22x22
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
185186 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
186187 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
187188 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
189 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
190 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
188191 STRIP = @STRIP@
189192 USE_NLS = @USE_NLS@
190193 VERSION = @VERSION@
3636 subdir = icons/24x24
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
185186 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
186187 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
187188 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
189 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
190 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
188191 STRIP = @STRIP@
189192 USE_NLS = @USE_NLS@
190193 VERSION = @VERSION@
3636 subdir = icons/256x256
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
185186 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
186187 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
187188 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
189 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
190 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
188191 STRIP = @STRIP@
189192 USE_NLS = @USE_NLS@
190193 VERSION = @VERSION@
3636 subdir = icons/32x32
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
185186 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
186187 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
187188 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
189 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
190 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
188191 STRIP = @STRIP@
189192 USE_NLS = @USE_NLS@
190193 VERSION = @VERSION@
3636 subdir = icons/48x48
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
185186 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
186187 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
187188 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
189 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
190 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
188191 STRIP = @STRIP@
189192 USE_NLS = @USE_NLS@
190193 VERSION = @VERSION@
3535 subdir = icons
3636 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3737 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
38 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
39 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
40 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
41 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
38 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
39 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
40 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
41 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
42 $(top_srcdir)/configure.ac
4243 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4344 $(ACLOCAL_M4)
4445 mkinstalldirs = $(install_sh) -d
201202 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
202203 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
203204 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
205 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
206 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
204207 STRIP = @STRIP@
205208 USE_NLS = @USE_NLS@
206209 VERSION = @VERSION@
80498049 elif test -n "$runpath_var"; then
80508050 case "$perm_rpath " in
80518051 *" $libdir "*) ;;
8052 *) func_apped perm_rpath " $libdir" ;;
8052 *) func_append perm_rpath " $libdir" ;;
80538053 esac
80548054 fi
80558055 done
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 40 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 if test -n "$1"; then
39 AC_MSG_CHECKING([for intltool >= $1])
40
41 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
42 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
43 [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
44 ]
45 AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
46 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
47 AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
48 fi
49
50 AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
51 AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
52 AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
53 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
54 AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
55 fi
56
57 INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
58 INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
59 INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
60 INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
61 INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
62 INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
63 INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
64 INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
65 INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
66 INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
67 INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
68 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@'
69 INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
70 INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
71 INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
72 INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
73 INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
74 INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
75 INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
76
77 _IT_SUBST(INTLTOOL_DESKTOP_RULE)
78 _IT_SUBST(INTLTOOL_DIRECTORY_RULE)
79 _IT_SUBST(INTLTOOL_KEYS_RULE)
80 _IT_SUBST(INTLTOOL_PROP_RULE)
81 _IT_SUBST(INTLTOOL_OAF_RULE)
82 _IT_SUBST(INTLTOOL_PONG_RULE)
83 _IT_SUBST(INTLTOOL_SERVER_RULE)
84 _IT_SUBST(INTLTOOL_SHEET_RULE)
85 _IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
86 _IT_SUBST(INTLTOOL_UI_RULE)
87 _IT_SUBST(INTLTOOL_XAM_RULE)
88 _IT_SUBST(INTLTOOL_KBD_RULE)
89 _IT_SUBST(INTLTOOL_XML_RULE)
90 _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
91 _IT_SUBST(INTLTOOL_CAVES_RULE)
92 _IT_SUBST(INTLTOOL_SCHEMAS_RULE)
93 _IT_SUBST(INTLTOOL_THEME_RULE)
94 _IT_SUBST(INTLTOOL_SERVICE_RULE)
95 _IT_SUBST(INTLTOOL_POLICY_RULE)
96
97 # Check the gettext tools to make sure they are GNU
98 AC_PATH_PROG(XGETTEXT, xgettext)
99 AC_PATH_PROG(MSGMERGE, msgmerge)
100 AC_PATH_PROG(MSGFMT, msgfmt)
101 AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
102 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
103 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
104 fi
105 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
106 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
107 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
108 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
109 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
110 fi
111
112 AC_PATH_PROG(INTLTOOL_PERL, perl)
113 if test -z "$INTLTOOL_PERL"; then
114 AC_MSG_ERROR([perl not found])
115 fi
116 AC_MSG_CHECKING([for perl >= 5.8.1])
117 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
118 if test $? -ne 0; then
119 AC_MSG_ERROR([perl 5.8.1 is required for intltool])
120 else
121 IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
122 AC_MSG_RESULT([$IT_PERL_VERSION])
123 fi
124 if test "x$2" != "xno-xml"; then
125 AC_MSG_CHECKING([for XML::Parser])
126 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
127 AC_MSG_RESULT([ok])
128 else
129 AC_MSG_ERROR([XML::Parser perl module is required for intltool])
130 fi
131 fi
132
133 # Substitute ALL_LINGUAS so we can use it in po/Makefile
134 AC_SUBST(ALL_LINGUAS)
135
136 # Set DATADIRNAME correctly if it is not set yet
137 # (copied from glib-gettext.m4)
138 if test -z "$DATADIRNAME"; then
139 AC_LINK_IFELSE(
140 [AC_LANG_PROGRAM([[]],
141 [[extern int _nl_msg_cat_cntr;
142 return _nl_msg_cat_cntr]])],
143 [DATADIRNAME=share],
144 [case $host in
145 *-*-solaris*)
146 dnl On Solaris, if bind_textdomain_codeset is in libc,
147 dnl GNU format message catalog is always supported,
148 dnl since both are added to the libc all together.
149 dnl Hence, we'd like to go with DATADIRNAME=share
150 dnl in this case.
151 AC_CHECK_FUNC(bind_textdomain_codeset,
152 [DATADIRNAME=share], [DATADIRNAME=lib])
153 ;;
154 *)
155 [DATADIRNAME=lib]
156 ;;
157 esac])
158 fi
159 AC_SUBST(DATADIRNAME)
160
161 IT_PO_SUBDIR([po])
162
163 ])
164
165
166 # IT_PO_SUBDIR(DIRNAME)
167 # ---------------------
168 # All po subdirs have to be declared with this macro; the subdir "po" is
169 # declared by IT_PROG_INTLTOOL.
170 #
171 AC_DEFUN([IT_PO_SUBDIR],
172 [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
173 dnl
174 dnl The following CONFIG_COMMANDS should be executed at the very end
175 dnl of config.status.
176 AC_CONFIG_COMMANDS_PRE([
177 AC_CONFIG_COMMANDS([$1/stamp-it], [
178 if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
179 AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
180 fi
181 rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
182 >"$1/stamp-it.tmp"
183 [sed '/^#/d
184 s/^[[].*] *//
185 /^[ ]*$/d
186 '"s|^| $ac_top_srcdir/|" \
187 "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
188 ]
189 [sed '/^POTFILES =/,/[^\\]$/ {
190 /^POTFILES =/!d
191 r $1/POTFILES
192 }
193 ' "$1/Makefile.in" >"$1/Makefile"]
194 rm -f "$1/Makefile.tmp"
195 mv "$1/stamp-it.tmp" "$1/stamp-it"
196 ])
197 ])dnl
198 ])
199
200 # _IT_SUBST(VARIABLE)
201 # -------------------
202 # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
203 #
204 AC_DEFUN([_IT_SUBST],
205 [
206 AC_SUBST([$1])
207 m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
208 ]
209 )
210
211 # deprecated macros
212 AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
213 # A hint is needed for aclocal from Automake <= 1.9.4:
214 # AC_DEFUN([AC_PROG_INTLTOOL], ...)
215
3535 subdir = man
3636 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3737 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
38 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
39 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
40 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
41 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
38 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
39 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
40 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
41 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
42 $(top_srcdir)/configure.ac
4243 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4344 $(ACLOCAL_M4)
4445 mkinstalldirs = $(install_sh) -d
186187 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
187188 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
188189 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
190 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
191 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
189192 STRIP = @STRIP@
190193 USE_NLS = @USE_NLS@
191194 VERSION = @VERSION@
2525 %else
2626 BuildRequires: mingw32-gtk2 >= 2.12.0
2727 %endif
28 BuildRequires: mingw32-libvirt >= 0.6.0
28 BuildRequires: mingw32-libvirt >= 0.9.7
2929 BuildRequires: mingw32-libxml2
3030 %if %{with_gtk3}
3131 BuildRequires: mingw32-gtk-vnc >= 0.4.3
3636 subdir = plugin
3737 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
3838 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
41 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
42 $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
39 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
40 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
41 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
42 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
43 $(top_srcdir)/configure.ac
4344 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
4445 $(ACLOCAL_M4)
4546 mkinstalldirs = $(install_sh) -d
238239 SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@
239240 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
240241 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
242 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
243 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
241244 STRIP = @STRIP@
242245 USE_NLS = @USE_NLS@
243246 VERSION = @VERSION@
00 as
1 bg
12 bn_IN
3 cs
24 de
35 es
46 fr
57 gu
8 he
69 hi
710 hu
811 it
1114 ko
1215 ml
1316 mr
17 nl
1418 or
1519 pa
1620 pl
1721 pt_BR
22 pt
1823 ru
1924 ta
2025 te
26 tr
2127 uk
2228 zh_CN
2329 zh_TW
+207
-152
po/as.po less more
33 #
44 # Translators:
55 # Amitakhya Phukan <aphukan@redhat.com>, 2010.
6 # Nilamdyuti Goswami <ngoswami@redhat.com>, 2012.
67 msgid ""
78 msgstr ""
89 "Project-Id-Version: virt-viewer\n"
910 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2012-02-14 17:56+0000\n"
11 "PO-Revision-Date: 2012-02-14 17:57+0000\n"
12 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
11 "POT-Creation-Date: 2012-03-07 10:17+0000\n"
12 "PO-Revision-Date: 2012-02-29 07:16+0000\n"
13 "Last-Translator: ngoswami <ngoswami@redhat.com>\n"
1314 "Language-Team: Assamese (http://www.transifex.net/projects/p/fedora/language/as/)\n"
1415 "MIME-Version: 1.0\n"
1516 "Content-Type: text/plain; charset=UTF-8\n"
1718 "Language: as\n"
1819 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
1920
21 #: ../src/gbinding.c:637
22 msgid "Source"
23 msgstr "উৎস"
24
25 #: ../src/gbinding.c:638
26 msgid "The source of the binding"
27 msgstr "বন্ধনৰ উৎস"
28
29 #: ../src/gbinding.c:652
30 msgid "Target"
31 msgstr "লক্ষ্য"
32
33 #: ../src/gbinding.c:653
34 msgid "The target of the binding"
35 msgstr "বন্ধনৰ লক্ষ্য"
36
37 #: ../src/gbinding.c:668
38 msgid "Source Property"
39 msgstr "উৎস সম্পত্তি"
40
41 #: ../src/gbinding.c:669
42 msgid "The property on the source to bind"
43 msgstr "বান্ধিব লগিয়া উৎসৰ সম্পত্তি"
44
45 #: ../src/gbinding.c:684
46 msgid "Target Property"
47 msgstr "লক্ষ্য সম্পত্তি"
48
49 #: ../src/gbinding.c:685
50 msgid "The property on the target to bind"
51 msgstr "বান্ধিব লগিয়া লক্ষ্যৰ সম্পত্তি"
52
53 #: ../src/gbinding.c:699
54 msgid "Flags"
55 msgstr "ফ্লেগসমূহ"
56
57 #: ../src/gbinding.c:700
58 msgid "The binding flags"
59 msgstr "বন্ধনী ফ্লেগসমূহ"
60
2061 #: ../src/remote-viewer-main.c:42
2162 #, c-format
2263 msgid "remote-viewer version %s\n"
23 msgstr ""
64 msgstr "দুৰৱৰ্তী-দৰ্শক সংস্কৰণ %s\n"
2465
2566 #: ../src/remote-viewer-main.c:63 ../src/virt-viewer-main.c:60
2667 msgid "Run '"
2869
2970 #: ../src/remote-viewer-main.c:66 ../src/virt-viewer-main.c:63
3071 msgid "Display version information"
31 msgstr ""
72 msgstr "সংস্কৰণ তথ্য প্ৰদৰ্শন কৰক"
3273
3374 #: ../src/remote-viewer-main.c:68 ../src/virt-viewer-main.c:65
3475 msgid "Display verbose information"
35 msgstr ""
76 msgstr "ভাৰভৌচ তথ্য প্ৰদৰ্শন কৰক"
3677
3778 #: ../src/remote-viewer-main.c:70 ../src/virt-viewer-main.c:67
3879 msgid "Direct connection with no automatic tunnels"
39 msgstr ""
80 msgstr "কোনো স্বচালিত টানেল নহোৱাকৈ প্ৰত্যক্ষ সংযোগ"
4081
4182 #: ../src/remote-viewer-main.c:72 ../src/virt-viewer-main.c:77
4283 msgid "Zoom level of window, in percentage"
43 msgstr ""
84 msgstr "উইন্ডোৰ জুম স্তৰ, শতাংশত"
4485
4586 #: ../src/remote-viewer-main.c:74 ../src/virt-viewer-main.c:79
4687 msgid "Display debugging information"
47 msgstr ""
88 msgstr "ডিবাগ তথ্য প্ৰদৰ্শন কৰক"
4889
4990 #: ../src/remote-viewer-main.c:76 ../src/virt-viewer-main.c:81
5091 msgid "Open in full screen mode"
51 msgstr ""
92 msgstr "পূৰ্ণ পৰ্দা অৱস্থাত খোলক"
5293
5394 #: ../src/remote-viewer-main.c:79
5495 msgid "Open connection using Spice controller communication"
55 msgstr ""
96 msgstr "Spice নিয়ন্ত্ৰক সংযোগ ব্যৱহাৰ কৰি সংযোগ খোলক"
5697
5798 #. Setup command line options
5899 #: ../src/remote-viewer-main.c:92
59100 msgid "- Remote viewer client"
60 msgstr ""
101 msgstr "- দূৰৱৰ্তী দৰ্শক ক্লাএন্ট"
61102
62103 #: ../src/remote-viewer-main.c:117
63104 #, c-format
67108 "\n"
68109 "%s\n"
69110 "\n"
70 msgstr ""
111 msgstr "\nব্যৱহাৰ: %s [OPTIONS] URI\n\n%s\n\n"
71112
72113 #: ../src/remote-viewer-main.c:122 ../src/virt-viewer-main.c:121
73114 #, c-format
74115 msgid "Zoom level must be within 10-200\n"
75 msgstr ""
76
77 #: ../src/remote-viewer.c:185 ../src/remote-viewer.c:482
116 msgstr "জুম স্তৰ ১০-২০০ ৰ মাজত হব লাগিব\n"
117
118 #: ../src/remote-viewer.c:210 ../src/remote-viewer.c:742
78119 msgid "Failed to initiate connection"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:198
120 msgstr "সংযোগ আৰম্ভ কৰিবলে ব্যৰ্থ"
121
122 #: ../src/remote-viewer.c:223
82123 msgid "Display disabled by controller"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:398
124 msgstr "প্ৰদৰ্শন নিয়ন্ত্ৰক দ্বাৰা অসামৰ্থবান কৰা হৈছে"
125
126 #: ../src/remote-viewer.c:654
86127 #, c-format
87128 msgid "Controller connection failed: %s"
88 msgstr ""
89
90 #: ../src/remote-viewer.c:452
129 msgstr "নিয়ন্ত্ৰক সংযোগ ব্যৰ্থ হল: %s"
130
131 #: ../src/remote-viewer.c:708
91132 msgid "Couldn't create a Spice session"
92 msgstr ""
93
94 #: ../src/remote-viewer.c:462
133 msgstr "এটা Spice অধিবেশন সৃষ্টি কৰিব পৰা নগল"
134
135 #: ../src/remote-viewer.c:722
95136 msgid "Setting up Spice session..."
96 msgstr ""
97
98 #: ../src/remote-viewer.c:472
137 msgstr "Spice অধিবেশন সংহতি কৰা হৈ আছে..."
138
139 #: ../src/remote-viewer.c:732
99140 msgid "Cannot determine the connection type from URI"
100 msgstr ""
101
102 #: ../src/remote-viewer.c:477
141 msgstr "URI ৰ পৰা সংযোগ ধৰণ নিৰ্ধাৰণ কৰিব পৰা নগল"
142
143 #: ../src/remote-viewer.c:737
103144 #, c-format
104145 msgid "Couldn't create a session for this type: %s"
105 msgstr ""
146 msgstr "এই ধৰণৰ বাবে এটা অধিবেশন সৃষ্টি কৰিব পৰা নগল: %s"
106147
107148 #. * Local variables:
108149 #. * c-indent-level: 4
112153 #.
113154 #: ../src/virt-viewer-about.xml.h:1
114155 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
115 msgstr ""
156 msgstr "GTK-VNC, SPICE-GTK আৰু libvirt ৰ সৈতে নিৰ্মাণ কৰা এটা দূৰৱৰ্তী ডেস্কটপ ক্লাএন্ট"
116157
117158 #: ../src/virt-viewer-about.xml.h:2
118159 msgid "About Glade"
119 msgstr ""
160 msgstr "Glade ৰ বিষয়ে"
120161
121162 #: ../src/virt-viewer-about.xml.h:3
122163 msgid ""
123164 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
124165 "Copyright (C) 2007-2012 Red Hat, Inc."
125 msgstr ""
166 msgstr "স্বত্বাধিকাৰ (C) ২০০৭-২০১২ ডেনিয়েল পি. বিৰেইঞ্জ\nস্বত্বাধিকাৰ (C) ২০০৭-২০১২ Red Hat, Inc."
126167
127168 #: ../src/virt-viewer-about.xml.h:5
128169 msgid "The Fedora Translation Team"
129 msgstr ""
170 msgstr "Fedora অনুবাদ দল"
130171
131172 #: ../src/virt-viewer-about.xml.h:6
132173 msgid ""
143184 "You should have received a copy of the GNU General Public License\n"
144185 "along with this program; if not, write to the Free Software\n"
145186 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
146 msgstr ""
187 msgstr "এই প্ৰগ্ৰামটো এটা বিনামুলিয়া চফ্টওৱেৰ; আপুনি Free Software Foundation -ৰ দ্বাৰা প্ৰকাশিত GNU General Public License -ৰ চুক্তিসমূহৰ অন্তৰ্গত ইয়াক পুনৰ বিলাব পাৰিব অথবা সলনি কৰিব পাৰিব; হৈতো লাইচেঞ্চৰ সংস্কৰণ ২, অথবা (আপুনাৰ বিকল্পত) যিকোনো পৰৱৰ্তী সংস্কৰণ।\n\nএই প্ৰগ্ৰামটো এইটো আশাত বিলোৱা হৈছে যে ই ব্যৱহাৰযোগ্য হ'ব, কিন্তু কোনো ওৱাৰেন্টি নথকাকৈ; ব্যৱসায়ীক অথবা কোনো এটা বিশেষ কাৰণৰ যোগ্যতাৰ বাবে বুজুৱা ওৱাৰেন্টি নথকাকৈ। অধিক যানিবলৈ GNU General Public License চাওক।\n\nআপুনি হৈতো ইতিমধ্যে এই প্ৰগ্ৰামৰ সৈতে GNU General Public License -ৰ কপি এটা পাইছে; যদি নাই, Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA লে লিখক\n"
147188
148189 #: ../src/virt-viewer-about.xml.h:20
149190 msgid "virt-manager.org"
150 msgstr ""
151
152 #: ../src/virt-viewer-app.c:259
191 msgstr "virt-manager.org"
192
193 #: ../src/virt-viewer-app.c:272
153194 msgid "This is the last visible display. Do you want to quit?"
154 msgstr ""
155
156 #: ../src/virt-viewer-app.c:573
195 msgstr "এইটো শেষ দৃশ্যমান প্ৰদৰ্শন। আপুনি প্ৰস্থান কৰিব বিচাৰে নে?"
196
197 #: ../src/virt-viewer-app.c:613
157198 #, c-format
158199 msgid "Waiting for display %d..."
159 msgstr ""
160
161 #: ../src/virt-viewer-app.c:655
200 msgstr "প্ৰদৰ্শন %d ৰ বাবে অপেক্ষা কৰা হৈ আছে..."
201
202 #: ../src/virt-viewer-app.c:695
162203 #, c-format
163204 msgid "Unknown graphic type for the guest %s"
164 msgstr ""
165
166 #: ../src/virt-viewer-app.c:730
205 msgstr "অতিথি %s ৰ বাবে অজ্ঞাত গ্ৰাফিক ধৰণ"
206
207 #: ../src/virt-viewer-app.c:770
167208 msgid "Connect to ssh failed."
168 msgstr ""
169
170 #: ../src/virt-viewer-app.c:732
209 msgstr "ssh লে সংযোগ ব্যৰ্থ হল।"
210
211 #: ../src/virt-viewer-app.c:772
171212 msgid "Can't connect to channel, SSH only supported."
172 msgstr ""
173
174 #: ../src/virt-viewer-app.c:744
213 msgstr "চেনেলে সংযোগ কৰিব নোৱাৰি, কেৱল SSH সমৰ্থিত।"
214
215 #: ../src/virt-viewer-app.c:784
175216 msgid "Connect to channel unsupported."
176 msgstr ""
177
178 #: ../src/virt-viewer-app.c:824
217 msgstr "চেনেললে সংযোগ অসমৰ্থিত।"
218
219 #: ../src/virt-viewer-app.c:864
179220 msgid "Connecting to graphic server"
180 msgstr ""
181
182 #: ../src/virt-viewer-app.c:954
221 msgstr "গ্ৰাফিক চাৰ্ভাৰলে সংযোগ কৰা হৈ আছে"
222
223 #: ../src/virt-viewer-app.c:994
183224 msgid "Guest domain has shutdown"
184 msgstr ""
185
186 #: ../src/virt-viewer-app.c:1004
225 msgstr "অতিথি ডমেইন বন্ধ হল"
226
227 #: ../src/virt-viewer-app.c:1044
187228 msgid "Connected to graphic server"
188 msgstr ""
189
190 #: ../src/virt-viewer-app.c:1027
229 msgstr "গ্ৰাফিক চাৰ্ভাৰলে সংযোগিত"
230
231 #: ../src/virt-viewer-app.c:1070
191232 #, c-format
192233 msgid "Unable to connect to the graphic server %s"
193 msgstr ""
194
195 #: ../src/virt-viewer-app.c:1056
234 msgstr "গ্ৰাফিক চাৰ্ভাৰ %s লে সংযোগ কৰিবলে অক্ষম"
235
236 #: ../src/virt-viewer-app.c:1099
196237 #, c-format
197238 msgid ""
198239 "Unable to authenticate with remote desktop server at %s: %s\n"
199240 "Retry connection again?"
200 msgstr ""
201
202 #: ../src/virt-viewer-app.c:1076
241 msgstr "%s ত দূৰৱৰ্তী ডেস্কটপ চাৰ্ভাৰৰ সৈতে প্ৰমাণীত কৰিবলে অক্ষম: %s\nসংযোগ পুনৰ চেষ্টা কৰিব নে?"
242
243 #: ../src/virt-viewer-app.c:1119
203244 #, c-format
204245 msgid "Unable to authenticate with remote desktop server: %s"
205 msgstr ""
206
207 #: ../src/virt-viewer-app.c:1084
246 msgstr "দূৰৱৰ্তী ডেস্কটপ চাৰ্ভাৰৰ সৈতে প্ৰমাণিত কৰিবলে অক্ষম: %s"
247
248 #: ../src/virt-viewer-app.c:1127
208249 #, c-format
209250 msgid "USB redirection error: %s"
210 msgstr ""
251 msgstr "USB পুনৰনিৰ্দেশ ত্ৰুটি: %s"
211252
212253 #. * Local variables:
213254 #. * c-indent-level: 4
217258 #.
218259 #: ../src/virt-viewer-auth.xml.h:1
219260 msgid "Authentication required"
220 msgstr ""
261 msgstr "প্ৰমাণীকৰণৰ প্ৰয়োজন"
221262
222263 #: ../src/virt-viewer-auth.xml.h:2
223264 msgid "Password:"
224 msgstr ""
265 msgstr "পাছৱাৰ্ড:"
225266
226267 #: ../src/virt-viewer-auth.xml.h:3
227268 msgid "Username:"
228 msgstr ""
269 msgstr "ব্যৱহাৰকাৰীৰ নাম:"
229270
230271 #: ../src/virt-viewer-auth.xml.h:4
231272 msgid "label"
232 msgstr ""
273 msgstr "লেবেল"
233274
234275 #: ../src/virt-viewer-main.c:38
235276 #, c-format
238279
239280 #: ../src/virt-viewer-main.c:69
240281 msgid "Attach to the local display using libvirt"
241 msgstr ""
282 msgstr "libvirt ব্যৱহাৰ কৰি স্থানীয় প্ৰদৰ্শনলে সংলঘ্ন কৰক"
242283
243284 #: ../src/virt-viewer-main.c:71
244285 msgid "Connect to hypervisor"
245 msgstr ""
286 msgstr "হাইপাৰভাইছৰলে সংযোগ কৰক"
246287
247288 #: ../src/virt-viewer-main.c:73
248289 msgid "Wait for domain to start"
249 msgstr ""
290 msgstr "ডমেইন আৰম্ভ হবলে অপেক্ষা কৰক"
250291
251292 #: ../src/virt-viewer-main.c:75
252293 msgid "Reconnect to domain upon restart"
253 msgstr ""
294 msgstr "পুনৰাম্ভ হওতে ডমেইনলে পুনৰসংযোগ কৰক"
254295
255296 #: ../src/virt-viewer-main.c:92
256297 msgid "Virt Viewer"
257 msgstr ""
298 msgstr "Virt দৰ্শক"
258299
259300 #. Setup command line options
260301 #: ../src/virt-viewer-main.c:95
271312 "\n"
272313 msgstr "\nব্যৱহাৰপদ্ধতি: %s [OPTIONS] DOMAIN-NAME|ID|UUID\n\n%s\n\n"
273314
274 #: ../src/virt-viewer-session-spice.c:347
315 #. Create the widgets
316 #: ../src/virt-viewer-session-spice.c:370
275317 msgid "Select USB devices for redirection"
276 msgstr ""
318 msgstr "পুনৰনিৰ্দেশৰ বাবে USB ডিভাইচসমূহ বাছক"
277319
278320 #: ../src/virt-viewer-session-vnc.c:140
279321 #, c-format
280322 msgid "Unsupported authentication type %d"
281 msgstr ""
282
283 #: ../src/virt-viewer-window.c:774
323 msgstr "অসমৰ্থিত প্ৰমাণীকৰণ ধৰণ %d"
324
325 #: ../src/virt-viewer-window.c:804
284326 msgid "Disconnect"
285 msgstr ""
286
287 #: ../src/virt-viewer-window.c:781 ../src/virt-viewer-window.c:782
327 msgstr "বিচ্ছিন্ন কৰক"
328
329 #: ../src/virt-viewer-window.c:811 ../src/virt-viewer-window.c:812
330 #: ../src/virt-viewer.xml.h:22
331 msgid "USB device selection"
332 msgstr "USB ডিভাইছ নিৰ্বাচন"
333
334 #: ../src/virt-viewer-window.c:819 ../src/virt-viewer-window.c:820
288335 msgid "Leave fullscreen"
289 msgstr ""
290
291 #: ../src/virt-viewer-window.c:854
336 msgstr "পূৰ্ণপৰ্দা ত্যাগ কৰক"
337
338 #: ../src/virt-viewer-window.c:892
292339 msgid "(Press Ctrl+Alt to release pointer)"
293 msgstr ""
340 msgstr "(পোইন্টাৰ এৰিবলে Ctrl+Alt টিপক)"
294341
295342 #. translators:
296343 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> -
298345 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt
299346 #. Viewer"
300347 #.
301 #: ../src/virt-viewer-window.c:863
348 #: ../src/virt-viewer-window.c:901
302349 #, c-format
303350 msgid "%s%s%s - %s"
304 msgstr ""
351 msgstr "%s%s%s - %s"
305352
306353 #. translators: <space>
307 #: ../src/virt-viewer-window.c:867
354 #: ../src/virt-viewer-window.c:905
308355 msgid " "
309 msgstr ""
356 msgstr " "
310357
311358 #: ../src/virt-viewer.c:144
312359 msgid "Waiting for guest domain to re-start"
313 msgstr ""
360 msgstr "অতিথি ডমেইন পুনৰাম্ভ হোৱাৰ বাবে অপেক্ষা কৰা হৈ আছে"
314361
315362 #: ../src/virt-viewer.c:308
316363 #, c-format
317364 msgid "Cannot determine the graphic type for the guest %s"
318 msgstr ""
365 msgstr "অতিথি %s ৰ বাবে গ্ৰাফিক ধৰণ নিৰ্ধাৰণ কৰিব নোৱাৰি"
319366
320367 #: ../src/virt-viewer.c:321
321368 #, c-format
322369 msgid "Cannot determine the graphic address for the guest %s"
323 msgstr ""
370 msgstr "অতিথি %s ৰ বাবে গ্ৰাফিক ঠিকনা নিৰ্ধাৰণ কৰিব নোৱাৰি"
324371
325372 #: ../src/virt-viewer.c:344
326373 #, c-format
327374 msgid "Cannot determine the host for the guest %s"
328 msgstr ""
375 msgstr "অতিথি %s ৰ বাবে হস্ট নিৰ্ধাৰণ কৰিব নোৱাৰি"
329376
330377 #: ../src/virt-viewer.c:474
331378 msgid "Finding guest domain"
332 msgstr ""
379 msgstr "অতিথি ডমেইন বিচৰা"
333380
334381 #: ../src/virt-viewer.c:478
335382 msgid "Waiting for guest domain to be created"
336 msgstr ""
383 msgstr "অতিথি ডমেইন সৃষ্টি হোৱালে অপেক্ষা কৰা হৈ আছে"
337384
338385 #: ../src/virt-viewer.c:483
339386 #, c-format
342389
343390 #: ../src/virt-viewer.c:490
344391 msgid "Checking guest domain status"
345 msgstr ""
392 msgstr "অতিথি ডমেইন অৱস্থা নীৰিক্ষণ কৰা"
346393
347394 #: ../src/virt-viewer.c:497
348395 msgid "Waiting for guest domain to start"
349 msgstr ""
396 msgstr "অতিথি ডমেইন আৰম্ভ হোৱালে অপেক্ষা কৰা হৈ আছে"
350397
351398 #: ../src/virt-viewer.c:504
352399 msgid "Waiting for guest domain to start server"
353 msgstr ""
400 msgstr "অতিথি ডমেইন দ্বাৰা চাৰ্ভাৰ আৰম্ভ কৰিবলে অপেক্ষা কৰা হৈ আছে"
354401
355402 #: ../src/virt-viewer.c:624
356403 #, c-format
369416 #.
370417 #: ../src/virt-viewer.xml.h:1
371418 msgid "Automatically resize"
372 msgstr ""
419 msgstr "স্বচালিতভাৱে পুনৰআকাৰ দিয়ক"
373420
374421 #: ../src/virt-viewer.xml.h:2
375422 msgid "Ctrl+Alt+F11"
376 msgstr ""
423 msgstr "Ctrl+Alt+F11"
377424
378425 #: ../src/virt-viewer.xml.h:3
379426 msgid "Ctrl+Alt+F12"
380 msgstr ""
427 msgstr "Ctrl+Alt+F12"
381428
382429 #: ../src/virt-viewer.xml.h:4
383430 msgid "Ctrl+Alt+F1_0"
384 msgstr ""
431 msgstr "Ctrl+Alt+F1_0"
385432
386433 #: ../src/virt-viewer.xml.h:5
387434 msgid "Ctrl+Alt+F_1"
388 msgstr ""
435 msgstr "Ctrl+Alt+F_1"
389436
390437 #: ../src/virt-viewer.xml.h:6
391438 msgid "Ctrl+Alt+F_2"
392 msgstr ""
439 msgstr "Ctrl+Alt+F_2"
393440
394441 #: ../src/virt-viewer.xml.h:7
395442 msgid "Ctrl+Alt+F_3"
396 msgstr ""
443 msgstr "Ctrl+Alt+F_3"
397444
398445 #: ../src/virt-viewer.xml.h:8
399446 msgid "Ctrl+Alt+F_4"
400 msgstr ""
447 msgstr "Ctrl+Alt+F_4"
401448
402449 #: ../src/virt-viewer.xml.h:9
403450 msgid "Ctrl+Alt+F_5"
404 msgstr ""
451 msgstr "Ctrl+Alt+F_5"
405452
406453 #: ../src/virt-viewer.xml.h:10
407454 msgid "Ctrl+Alt+F_6"
408 msgstr ""
455 msgstr "Ctrl+Alt+F_6"
409456
410457 #: ../src/virt-viewer.xml.h:11
411458 msgid "Ctrl+Alt+F_7"
412 msgstr ""
459 msgstr "Ctrl+Alt+F_7"
413460
414461 #: ../src/virt-viewer.xml.h:12
415462 msgid "Ctrl+Alt+F_8"
416 msgstr ""
463 msgstr "Ctrl+Alt+F_8"
417464
418465 #: ../src/virt-viewer.xml.h:13
419466 msgid "Ctrl+Alt+F_9"
420 msgstr ""
467 msgstr "Ctrl+Alt+F_9"
421468
422469 #: ../src/virt-viewer.xml.h:14
423470 msgid "Ctrl+Alt+_Backspace"
424 msgstr ""
471 msgstr "Ctrl+Alt+_Backspace"
425472
426473 #: ../src/virt-viewer.xml.h:15
427474 msgid "Ctrl+Alt+_Del"
428 msgstr ""
475 msgstr "Ctrl+Alt+_Del"
429476
430477 #: ../src/virt-viewer.xml.h:16
431478 msgid "Displays"
432 msgstr ""
479 msgstr "প্ৰদৰ্শনসমূহ"
433480
434481 #: ../src/virt-viewer.xml.h:17
435482 msgid "Full screen"
436 msgstr ""
483 msgstr "সম্পূৰ্ণ পৰ্দা"
437484
438485 #: ../src/virt-viewer.xml.h:18
486 msgid "Release cursor"
487 msgstr "উন্মোচন কাৰ্চাৰ"
488
489 #: ../src/virt-viewer.xml.h:19
439490 msgid "Screenshot"
440 msgstr ""
441
442 #: ../src/virt-viewer.xml.h:19
443 msgid "USB device selection"
444 msgstr ""
491 msgstr "স্ক্ৰিনশ্বট"
445492
446493 #: ../src/virt-viewer.xml.h:20
494 msgid "Smartcard insertion"
495 msgstr "স্মাৰ্টকাৰ্ড সোমোৱা"
496
497 #: ../src/virt-viewer.xml.h:21
498 msgid "Smartcard removal"
499 msgstr "স্মাৰ্টকাৰ্ড আতৰোৱা"
500
501 #: ../src/virt-viewer.xml.h:23
447502 msgid "_File"
448 msgstr ""
449
450 #: ../src/virt-viewer.xml.h:21
503 msgstr "নথিপত্ৰ (_F)"
504
505 #: ../src/virt-viewer.xml.h:24
451506 msgid "_Help"
452 msgstr ""
453
454 #: ../src/virt-viewer.xml.h:22
507 msgstr "সহায় (_H)"
508
509 #: ../src/virt-viewer.xml.h:25
455510 msgid "_PrintScreen"
456 msgstr ""
457
458 #: ../src/virt-viewer.xml.h:23
511 msgstr "প্ৰিন্টস্ক্ৰিন (_P)"
512
513 #: ../src/virt-viewer.xml.h:26
459514 msgid "_Send key"
460 msgstr ""
461
462 #: ../src/virt-viewer.xml.h:24
515 msgstr "কি পঠাওক (_S)"
516
517 #: ../src/virt-viewer.xml.h:27
463518 msgid "_View"
464 msgstr ""
465
466 #: ../src/virt-viewer.xml.h:25
519 msgstr "দৰ্শন কৰক (_V)"
520
521 #: ../src/virt-viewer.xml.h:28
467522 msgid "_Zoom"
468 msgstr ""
523 msgstr "জুম কৰক (_Z)"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Valentin Laskov <laskov@festa.bg>, 2012.
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: virt-viewer\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2012-03-07 10:17+0000\n"
11 "PO-Revision-Date: 2012-02-28 16:07+0000\n"
12 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
13 "Language-Team: Bulgarian <trans-bg@lists.fedoraproject.org>\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: bg\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
19
20 #: ../src/gbinding.c:637
21 msgid "Source"
22 msgstr ""
23
24 #: ../src/gbinding.c:638
25 msgid "The source of the binding"
26 msgstr ""
27
28 #: ../src/gbinding.c:652
29 msgid "Target"
30 msgstr ""
31
32 #: ../src/gbinding.c:653
33 msgid "The target of the binding"
34 msgstr ""
35
36 #: ../src/gbinding.c:668
37 msgid "Source Property"
38 msgstr ""
39
40 #: ../src/gbinding.c:669
41 msgid "The property on the source to bind"
42 msgstr ""
43
44 #: ../src/gbinding.c:684
45 msgid "Target Property"
46 msgstr ""
47
48 #: ../src/gbinding.c:685
49 msgid "The property on the target to bind"
50 msgstr ""
51
52 #: ../src/gbinding.c:699
53 msgid "Flags"
54 msgstr ""
55
56 #: ../src/gbinding.c:700
57 msgid "The binding flags"
58 msgstr ""
59
60 #: ../src/remote-viewer-main.c:42
61 #, c-format
62 msgid "remote-viewer version %s\n"
63 msgstr "remote-viewer версия %s\n"
64
65 #: ../src/remote-viewer-main.c:63 ../src/virt-viewer-main.c:60
66 msgid "Run '"
67 msgstr "Стартиране '"
68
69 #: ../src/remote-viewer-main.c:66 ../src/virt-viewer-main.c:63
70 msgid "Display version information"
71 msgstr "Показва информация за версията"
72
73 #: ../src/remote-viewer-main.c:68 ../src/virt-viewer-main.c:65
74 msgid "Display verbose information"
75 msgstr "Показва по-подробна информация"
76
77 #: ../src/remote-viewer-main.c:70 ../src/virt-viewer-main.c:67
78 msgid "Direct connection with no automatic tunnels"
79 msgstr "Директна връзка без автоматични тунели"
80
81 #: ../src/remote-viewer-main.c:72 ../src/virt-viewer-main.c:77
82 msgid "Zoom level of window, in percentage"
83 msgstr "Размер на прозореца в проценти"
84
85 #: ../src/remote-viewer-main.c:74 ../src/virt-viewer-main.c:79
86 msgid "Display debugging information"
87 msgstr "Показва информация за отстраняване на грешки"
88
89 #: ../src/remote-viewer-main.c:76 ../src/virt-viewer-main.c:81
90 msgid "Open in full screen mode"
91 msgstr "Отвори в режим на Цял екран"
92
93 #: ../src/remote-viewer-main.c:79
94 msgid "Open connection using Spice controller communication"
95 msgstr "Отвори връзка чрез комуникационния контролер Spice"
96
97 #. Setup command line options
98 #: ../src/remote-viewer-main.c:92
99 msgid "- Remote viewer client"
100 msgstr "- Клиент за отдалечено наблюдение"
101
102 #: ../src/remote-viewer-main.c:117
103 #, c-format
104 msgid ""
105 "\n"
106 "Usage: %s [OPTIONS] URI\n"
107 "\n"
108 "%s\n"
109 "\n"
110 msgstr "\nУпотреба: %s [OPTIONS] URI\n\n%s\n\n"
111
112 #: ../src/remote-viewer-main.c:122 ../src/virt-viewer-main.c:121
113 #, c-format
114 msgid "Zoom level must be within 10-200\n"
115 msgstr "Размерът трябва да е в рамките 10-200\n"
116
117 #: ../src/remote-viewer.c:210 ../src/remote-viewer.c:742
118 msgid "Failed to initiate connection"
119 msgstr "Неуспешно инициализиране на връзка"
120
121 #: ../src/remote-viewer.c:223
122 msgid "Display disabled by controller"
123 msgstr "Дисплеят е забранен от контролера"
124
125 #: ../src/remote-viewer.c:654
126 #, c-format
127 msgid "Controller connection failed: %s"
128 msgstr "Връзката на контролера пропадна: %s"
129
130 #: ../src/remote-viewer.c:708
131 msgid "Couldn't create a Spice session"
132 msgstr "Не мога да създам Spice сесия"
133
134 #: ../src/remote-viewer.c:722
135 msgid "Setting up Spice session..."
136 msgstr "Създаване на Spice сесия..."
137
138 #: ../src/remote-viewer.c:732
139 msgid "Cannot determine the connection type from URI"
140 msgstr "От това URI не може да се определи типа на връзката"
141
142 #: ../src/remote-viewer.c:737
143 #, c-format
144 msgid "Couldn't create a session for this type: %s"
145 msgstr "Не може да се създаде сесия от този тип: %s"
146
147 #. * Local variables:
148 #. * c-indent-level: 4
149 #. * c-basic-offset: 4
150 #. * indent-tabs-mode: nil
151 #. * End:
152 #.
153 #: ../src/virt-viewer-about.xml.h:1
154 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
155 msgstr "Отдалечен десктоп клиент, създаден с GTK-VNC, SPICE-GTK и libvirt"
156
157 #: ../src/virt-viewer-about.xml.h:2
158 msgid "About Glade"
159 msgstr "Относно Glade"
160
161 #: ../src/virt-viewer-about.xml.h:3
162 msgid ""
163 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
164 "Copyright (C) 2007-2012 Red Hat, Inc."
165 msgstr "Copyright (C) 2007-2012 Daniel P. Berrange\nCopyright (C) 2007-2012 Red Hat, Inc."
166
167 #: ../src/virt-viewer-about.xml.h:5
168 msgid "The Fedora Translation Team"
169 msgstr "The Fedora Translation Team\nВалентин Ласков, 2012"
170
171 #: ../src/virt-viewer-about.xml.h:6
172 msgid ""
173 "This program is free software; you can redistribute it and/or modify\n"
174 "it under the terms of the GNU General Public License as published by\n"
175 "the Free Software Foundation; either version 2 of the License, or\n"
176 "(at your option) any later version.\n"
177 "\n"
178 "This program is distributed in the hope that it will be useful,\n"
179 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
180 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
181 "GNU General Public License for more details.\n"
182 "\n"
183 "You should have received a copy of the GNU General Public License\n"
184 "along with this program; if not, write to the Free Software\n"
185 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
186 msgstr "Тази програма е свободен софтуер; Вие можете да я разпространявате\nи/или променяте под условията на GNU General Public License, както е публикуван от\nFree Software Foundation; версия 2 на лиценза, или по (ваше усмотрение),\nкоято и да е по-късна версия.\n\nТази програма се разпространява с надеждата, че ще бъде полезна,\nно БЕЗ КАКВАТО И ДА Е ГАРАНЦИЯ; без дори косвена гаранция за\nПРОДАВАЕМОСТ или ПРИГОДНОСТ ЗА ОПРЕДЕЛЕНА ЦЕЛ. Вижте\nGNU General Public License за повече подробности.\n\nВие би трябвало да сте получили копие на GNU General Public License\nзаедно с тази програма; ако не, пишете на Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
187
188 #: ../src/virt-viewer-about.xml.h:20
189 msgid "virt-manager.org"
190 msgstr "virt-manager.org"
191
192 #: ../src/virt-viewer-app.c:272
193 msgid "This is the last visible display. Do you want to quit?"
194 msgstr "Това е последният видим екран. Искате ли да излезете?"
195
196 #: ../src/virt-viewer-app.c:613
197 #, c-format
198 msgid "Waiting for display %d..."
199 msgstr "Изчаквам за да покажа %d..."
200
201 #: ../src/virt-viewer-app.c:695
202 #, c-format
203 msgid "Unknown graphic type for the guest %s"
204 msgstr "Неизвестен тип графика за госта %s"
205
206 #: ../src/virt-viewer-app.c:770
207 msgid "Connect to ssh failed."
208 msgstr "Връзката към ssh пропадна."
209
210 #: ../src/virt-viewer-app.c:772
211 msgid "Can't connect to channel, SSH only supported."
212 msgstr "Не мога да се свържа към канала, поддържа се само SSH."
213
214 #: ../src/virt-viewer-app.c:784
215 msgid "Connect to channel unsupported."
216 msgstr "Свързване към канал не се поддържа."
217
218 #: ../src/virt-viewer-app.c:864
219 msgid "Connecting to graphic server"
220 msgstr "Свързване към графичен сървър"
221
222 #: ../src/virt-viewer-app.c:994
223 msgid "Guest domain has shutdown"
224 msgstr "Виртуализиращата среда на госта беше спряна"
225
226 #: ../src/virt-viewer-app.c:1044
227 msgid "Connected to graphic server"
228 msgstr "Свързан към графичен сървър"
229
230 #: ../src/virt-viewer-app.c:1070
231 #, c-format
232 msgid "Unable to connect to the graphic server %s"
233 msgstr "Невъзможно е да се свържа с графичния сървър %s"
234
235 #: ../src/virt-viewer-app.c:1099
236 #, c-format
237 msgid ""
238 "Unable to authenticate with remote desktop server at %s: %s\n"
239 "Retry connection again?"
240 msgstr "Невъзможно е удостоверяването пред отдалечения десктоп сървър на %s: %s\nДа опитам ли свързването отново?"
241
242 #: ../src/virt-viewer-app.c:1119
243 #, c-format
244 msgid "Unable to authenticate with remote desktop server: %s"
245 msgstr "Невъзможно е удостоверяването пред отдалечения десктоп сървър: %s"
246
247 #: ../src/virt-viewer-app.c:1127
248 #, c-format
249 msgid "USB redirection error: %s"
250 msgstr "Грешка при USB пренасочването: %s"
251
252 #. * Local variables:
253 #. * c-indent-level: 4
254 #. * c-basic-offset: 4
255 #. * indent-tabs-mode: nil
256 #. * End:
257 #.
258 #: ../src/virt-viewer-auth.xml.h:1
259 msgid "Authentication required"
260 msgstr "Изисква се удостоверяване"
261
262 #: ../src/virt-viewer-auth.xml.h:2
263 msgid "Password:"
264 msgstr "Парола:"
265
266 #: ../src/virt-viewer-auth.xml.h:3
267 msgid "Username:"
268 msgstr "Потребител:"
269
270 #: ../src/virt-viewer-auth.xml.h:4
271 msgid "label"
272 msgstr "етикет"
273
274 #: ../src/virt-viewer-main.c:38
275 #, c-format
276 msgid "%s version %s\n"
277 msgstr "%s версия %s\n"
278
279 #: ../src/virt-viewer-main.c:69
280 msgid "Attach to the local display using libvirt"
281 msgstr "Прилагане към локалния дисплей посредством libvirt"
282
283 #: ../src/virt-viewer-main.c:71
284 msgid "Connect to hypervisor"
285 msgstr "Свързване към хипервайзор"
286
287 #: ../src/virt-viewer-main.c:73
288 msgid "Wait for domain to start"
289 msgstr "Изчаквам стартирането на виртуализиращата среда"
290
291 #: ../src/virt-viewer-main.c:75
292 msgid "Reconnect to domain upon restart"
293 msgstr "Повторно включване към виртуализиращата среда при рестартиране"
294
295 #: ../src/virt-viewer-main.c:92
296 msgid "Virt Viewer"
297 msgstr "Вирт наблюдател"
298
299 #. Setup command line options
300 #: ../src/virt-viewer-main.c:95
301 msgid "- Virtual machine graphical console"
302 msgstr "- Графична конзола на виртуална машина"
303
304 #: ../src/virt-viewer-main.c:116
305 #, c-format
306 msgid ""
307 "\n"
308 "Usage: %s [OPTIONS] DOMAIN-NAME|ID|UUID\n"
309 "\n"
310 "%s\n"
311 "\n"
312 msgstr "\nУпотреба: %s [OPTIONS] DOMAIN-NAME|ID|UUID\n\n%s\n\n"
313
314 #. Create the widgets
315 #: ../src/virt-viewer-session-spice.c:370
316 msgid "Select USB devices for redirection"
317 msgstr "Изберете USB устройства за пренасочване"
318
319 #: ../src/virt-viewer-session-vnc.c:140
320 #, c-format
321 msgid "Unsupported authentication type %d"
322 msgstr "Не се поддържа удостоверяване тип %d"
323
324 #: ../src/virt-viewer-window.c:804
325 msgid "Disconnect"
326 msgstr "Изключване"
327
328 #: ../src/virt-viewer-window.c:811 ../src/virt-viewer-window.c:812
329 #: ../src/virt-viewer.xml.h:22
330 msgid "USB device selection"
331 msgstr "Избор на USB устройства"
332
333 #: ../src/virt-viewer-window.c:819 ../src/virt-viewer-window.c:820
334 msgid "Leave fullscreen"
335 msgstr "Изход от Цял екран"
336
337 #: ../src/virt-viewer-window.c:892
338 msgid "(Press Ctrl+Alt to release pointer)"
339 msgstr "(Натиснете Ctrl+Alt за освобождаване на показалеца)"
340
341 #. translators:
342 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> -
343 #. <appname>"
344 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt
345 #. Viewer"
346 #.
347 #: ../src/virt-viewer-window.c:901
348 #, c-format
349 msgid "%s%s%s - %s"
350 msgstr "%s%s%s - %s"
351
352 #. translators: <space>
353 #: ../src/virt-viewer-window.c:905
354 msgid " "
355 msgstr " "
356
357 #: ../src/virt-viewer.c:144
358 msgid "Waiting for guest domain to re-start"
359 msgstr "Изчакване виртуализиращата среда на госта да се рестартира"
360
361 #: ../src/virt-viewer.c:308
362 #, c-format
363 msgid "Cannot determine the graphic type for the guest %s"
364 msgstr "Не мога да определя графичния тип за госта %s"
365
366 #: ../src/virt-viewer.c:321
367 #, c-format
368 msgid "Cannot determine the graphic address for the guest %s"
369 msgstr "Не мога да определя графичния адрес за госта %s"
370
371 #: ../src/virt-viewer.c:344
372 #, c-format
373 msgid "Cannot determine the host for the guest %s"
374 msgstr "Не мога да определя хоста за госта %s"
375
376 #: ../src/virt-viewer.c:474
377 msgid "Finding guest domain"
378 msgstr "Търсене на виртуализиращата среда на госта"
379
380 #: ../src/virt-viewer.c:478
381 msgid "Waiting for guest domain to be created"
382 msgstr "Изчакване виртуализиращата среда да бъде създадена"
383
384 #: ../src/virt-viewer.c:483
385 #, c-format
386 msgid "Cannot find guest domain %s"
387 msgstr "Не мога да намеря виртуализиращата среда на госта %s"
388
389 #: ../src/virt-viewer.c:490
390 msgid "Checking guest domain status"
391 msgstr "Проверка състоянието на виртуализиращата среда"
392
393 #: ../src/virt-viewer.c:497
394 msgid "Waiting for guest domain to start"
395 msgstr "Изчакване виртуализиращата среда на госта да бъде стартирана"
396
397 #: ../src/virt-viewer.c:504
398 msgid "Waiting for guest domain to start server"
399 msgstr "Изчакване виртуализиращата среда на госта да стартира сървър"
400
401 #: ../src/virt-viewer.c:624
402 #, c-format
403 msgid "Unable to connect to libvirt with URI %s"
404 msgstr "Не е възможна връзка към libvirt с URI %s"
405
406 #: ../src/virt-viewer.c:625
407 msgid "[none]"
408 msgstr "[нищо]"
409
410 #. * Local variables:
411 #. * c-indent-level: 4
412 #. * c-basic-offset: 4
413 #. * indent-tabs-mode: nil
414 #. * End:
415 #.
416 #: ../src/virt-viewer.xml.h:1
417 msgid "Automatically resize"
418 msgstr "Автоматично мащабиране"
419
420 #: ../src/virt-viewer.xml.h:2
421 msgid "Ctrl+Alt+F11"
422 msgstr "Ctrl+Alt+F11"
423
424 #: ../src/virt-viewer.xml.h:3
425 msgid "Ctrl+Alt+F12"
426 msgstr "Ctrl+Alt+F12"
427
428 #: ../src/virt-viewer.xml.h:4
429 msgid "Ctrl+Alt+F1_0"
430 msgstr "Ctrl+Alt+F1_0"
431
432 #: ../src/virt-viewer.xml.h:5
433 msgid "Ctrl+Alt+F_1"
434 msgstr "Ctrl+Alt+F_1"
435
436 #: ../src/virt-viewer.xml.h:6
437 msgid "Ctrl+Alt+F_2"
438 msgstr "Ctrl+Alt+F_2"
439
440 #: ../src/virt-viewer.xml.h:7
441 msgid "Ctrl+Alt+F_3"
442 msgstr "Ctrl+Alt+F_3"
443
444 #: ../src/virt-viewer.xml.h:8
445 msgid "Ctrl+Alt+F_4"
446 msgstr "Ctrl+Alt+F_4"
447
448 #: ../src/virt-viewer.xml.h:9
449 msgid "Ctrl+Alt+F_5"
450 msgstr "Ctrl+Alt+F_5"
451
452 #: ../src/virt-viewer.xml.h:10
453 msgid "Ctrl+Alt+F_6"
454 msgstr "Ctrl+Alt+F_6"
455
456 #: ../src/virt-viewer.xml.h:11
457 msgid "Ctrl+Alt+F_7"
458 msgstr "Ctrl+Alt+F_7"
459
460 #: ../src/virt-viewer.xml.h:12
461 msgid "Ctrl+Alt+F_8"
462 msgstr "Ctrl+Alt+F_8"
463
464 #: ../src/virt-viewer.xml.h:13
465 msgid "Ctrl+Alt+F_9"
466 msgstr "Ctrl+Alt+F_9"
467
468 #: ../src/virt-viewer.xml.h:14
469 msgid "Ctrl+Alt+_Backspace"
470 msgstr "Ctrl+Alt+_Backspace"
471
472 #: ../src/virt-viewer.xml.h:15
473 msgid "Ctrl+Alt+_Del"
474 msgstr "Ctrl+Alt+_Del"
475
476 #: ../src/virt-viewer.xml.h:16
477 msgid "Displays"
478 msgstr "Екрани"
479
480 #: ../src/virt-viewer.xml.h:17
481 msgid "Full screen"
482 msgstr "Цял екран"
483
484 #: ../src/virt-viewer.xml.h:18
485 msgid "Release cursor"
486 msgstr ""
487
488 #: ../src/virt-viewer.xml.h:19
489 msgid "Screenshot"
490 msgstr "Снимка на екрана"
491
492 #: ../src/virt-viewer.xml.h:20
493 msgid "Smartcard insertion"
494 msgstr ""
495
496 #: ../src/virt-viewer.xml.h:21
497 msgid "Smartcard removal"
498 msgstr ""
499
500 #: ../src/virt-viewer.xml.h:23
501 msgid "_File"
502 msgstr "_Файл"
503
504 #: ../src/virt-viewer.xml.h:24
505 msgid "_Help"
506 msgstr "_Помощ"
507
508 #: ../src/virt-viewer.xml.h:25
509 msgid "_PrintScreen"
510 msgstr "Отпечатай _екрана"
511
512 #: ../src/virt-viewer.xml.h:26
513 msgid "_Send key"
514 msgstr "Изпрати _клавиш"
515
516 #: ../src/virt-viewer.xml.h:27
517 msgid "_View"
518 msgstr "_Изглед"
519
520 #: ../src/virt-viewer.xml.h:28
521 msgid "_Zoom"
522 msgstr "_Мащабиране"
33 #
44 # Translators:
55 # Runa Bhattacharjee <runab@redhat.com>, 2010.
6 # <runabh@gmail.com>, 2012.
67 msgid ""
78 msgstr ""
89 "Project-Id-Version: virt-viewer\n"
910 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2012-02-14 17:56+0000\n"
11 "PO-Revision-Date: 2012-02-14 17:57+0000\n"
12 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
11 "POT-Creation-Date: 2012-03-07 10:17+0000\n"
12 "PO-Revision-Date: 2012-03-07 11:06+0000\n"
13 "Last-Translator: runa <runabh@gmail.com>\n"
1314 "Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
1415 "MIME-Version: 1.0\n"
1516 "Content-Type: text/plain; charset=UTF-8\n"
1718 "Language: bn_IN\n"
1819 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
1920
21 #: ../src/gbinding.c:637
22 msgid "Source"
23 msgstr "উৎস"
24
25 #: ../src/gbinding.c:638
26 msgid "The source of the binding"
27 msgstr "বাইন্ডিংয়ের উৎস"
28
29 #: ../src/gbinding.c:652
30 msgid "Target"
31 msgstr "উদ্দিষ্ট"
32
33 #: ../src/gbinding.c:653
34 msgid "The target of the binding"
35 msgstr "বাইন্ডিংয়ের উদ্দিষ্টবস্তু"
36
37 #: ../src/gbinding.c:668
38 msgid "Source Property"
39 msgstr "উৎসের বস্তু"
40
41 #: ../src/gbinding.c:669
42 msgid "The property on the source to bind"
43 msgstr "উৎসের মধ্যে বাইন্ড করার জন্য চিহ্নিত বস্তু"
44
45 #: ../src/gbinding.c:684
46 msgid "Target Property"
47 msgstr "উদ্দিষ্টের বস্তু"
48
49 #: ../src/gbinding.c:685
50 msgid "The property on the target to bind"
51 msgstr "উদ্দিষ্টের মধ্যে বাইন্ড করার জন্য চিহ্নিত বস্তু"
52
53 #: ../src/gbinding.c:699
54 msgid "Flags"
55 msgstr "ফ্ল্যাগ"
56
57 #: ../src/gbinding.c:700
58 msgid "The binding flags"
59 msgstr "বাইন্ড করতে ব্যবহৃত ফ্ল্যাগ"
60
2061 #: ../src/remote-viewer-main.c:42
2162 #, c-format
2263 msgid "remote-viewer version %s\n"
23 msgstr ""
64 msgstr "remote-viewer সংস্করণ %s\n"
2465
2566 #: ../src/remote-viewer-main.c:63 ../src/virt-viewer-main.c:60
2667 msgid "Run '"
2869
2970 #: ../src/remote-viewer-main.c:66 ../src/virt-viewer-main.c:63
3071 msgid "Display version information"
31 msgstr ""
72 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
3273
3374 #: ../src/remote-viewer-main.c:68 ../src/virt-viewer-main.c:65
3475 msgid "Display verbose information"
35 msgstr ""
76 msgstr "ভার্বোস তথ্য প্রদর্শন করা হবে"
3677
3778 #: ../src/remote-viewer-main.c:70 ../src/virt-viewer-main.c:67
3879 msgid "Direct connection with no automatic tunnels"
39 msgstr ""
80 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
4081
4182 #: ../src/remote-viewer-main.c:72 ../src/virt-viewer-main.c:77
4283 msgid "Zoom level of window, in percentage"
43 msgstr ""
84 msgstr "উইন্ডোর প্রদর্শনের মাপ, শতাংশে ব্যক্ত"
4485
4586 #: ../src/remote-viewer-main.c:74 ../src/virt-viewer-main.c:79
4687 msgid "Display debugging information"
47 msgstr ""
88 msgstr "ডিবাগ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
4889
4990 #: ../src/remote-viewer-main.c:76 ../src/virt-viewer-main.c:81
5091 msgid "Open in full screen mode"
51 msgstr ""
92 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন করা হবে"
5293
5394 #: ../src/remote-viewer-main.c:79
5495 msgid "Open connection using Spice controller communication"
55 msgstr ""
96 msgstr "Spice কন্ট্রোলারের যোগাব্যবস্থার মাধ্যমে সংযোগ আরম্ভ করা হবে"
5697
5798 #. Setup command line options
5899 #: ../src/remote-viewer-main.c:92
59100 msgid "- Remote viewer client"
60 msgstr ""
101 msgstr "- দূরবর্তী প্রদর্শনব্যবস্থার ক্লায়েন্ট"
61102
62103 #: ../src/remote-viewer-main.c:117
63104 #, c-format
67108 "\n"
68109 "%s\n"
69110 "\n"
70 msgstr ""
111 msgstr "\nব্যবহারপ্রণালী: %s [OPTIONS] URI\n\n%s\n\n"
71112
72113 #: ../src/remote-viewer-main.c:122 ../src/virt-viewer-main.c:121
73114 #, c-format
74115 msgid "Zoom level must be within 10-200\n"
75 msgstr ""
76
77 #: ../src/remote-viewer.c:185 ../src/remote-viewer.c:482
116 msgstr "প্রদর্শনের মাত্রা ১০-২০০-র মধ্যে হওয়া আবশ্যক\n"
117
118 #: ../src/remote-viewer.c:210 ../src/remote-viewer.c:742
78119 msgid "Failed to initiate connection"
79 msgstr ""
80
81 #: ../src/remote-viewer.c:198
120 msgstr "সংযোগ আরম্ভ করতে ব্যর্থ"
121
122 #: ../src/remote-viewer.c:223
82123 msgid "Display disabled by controller"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:398
124 msgstr "কন্ট্রোলার দ্বারা প্রদর্শন নিষ্ক্রিয় করা হয়েছে"
125
126 #: ../src/remote-viewer.c:654
86127 #, c-format
87128 msgid "Controller connection failed: %s"
88 msgstr ""
89
90 #: ../src/remote-viewer.c:452
129 msgstr "কন্ট্রোলারের সংযোগ স্থাপন করতে ব্যর্থ: %s"
130
131 #: ../src/remote-viewer.c:708
91132 msgid "Couldn't create a Spice session"
92 msgstr ""
93
94 #: ../src/remote-viewer.c:462
133 msgstr "একটি Spice সেশান প্রস্তুত করতে ব্যর্থ"
134
135 #: ../src/remote-viewer.c:722
95136 msgid "Setting up Spice session..."
96 msgstr ""
97
98 #: ../src/remote-viewer.c:472
137 msgstr "Spice-র সেশান প্রস্তুত করা হচ্ছে..."
138
139 #: ../src/remote-viewer.c:732
99140 msgid "Cannot determine the connection type from URI"
100 msgstr ""
101
102 #: ../src/remote-viewer.c:477
141 msgstr "URI থেকে সংযোগের ধরন নির্ধারণ করা সম্ভব নয়"
142
143 #: ../src/remote-viewer.c:737
103144 #, c-format
104145 msgid "Couldn't create a session for this type: %s"
105 msgstr ""
146 msgstr "এই ধরনের জন্য সেশান প্রস্তুত করা যায়নি: %s"
106147
107148 #. * Local variables:
108149 #. * c-indent-level: 4
112153 #.
113154 #: ../src/virt-viewer-about.xml.h:1
114155 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
115 msgstr ""
156 msgstr "GTK-VNC, SPICE-GTK ও libvirt সহযোগে নির্মিত একটি দূরবর্তী ডেস্কটপ"
116157
117158 #: ../src/virt-viewer-about.xml.h:2
118159 msgid "About Glade"
119 msgstr ""
160 msgstr "Glade পরিচিতি"
120161
121162 #: ../src/virt-viewer-about.xml.h:3
122163 msgid ""
123164 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
124165 "Copyright (C) 2007-2012 Red Hat, Inc."
125 msgstr ""
166 msgstr "স্বত্বাধিকার (C) ২০০৭-২০১২ ড্যানিয়েল পি. বেরাঞ্জ\nস্বত্বাধিকার (C) ২০০৭-২০১২ Red Hat, Inc."
126167
127168 #: ../src/virt-viewer-about.xml.h:5
128169 msgid "The Fedora Translation Team"
129 msgstr ""
170 msgstr "Fedora-র অনুবাদকদের দল"
130171
131172 #: ../src/virt-viewer-about.xml.h:6
132173 msgid ""
143184 "You should have received a copy of the GNU General Public License\n"
144185 "along with this program; if not, write to the Free Software\n"
145186 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
146 msgstr ""
187 msgstr "এটি একটি মুক্ত সফ্টওয়্যার; Free Software Foundation দ্বারা প্রকাশিত GNU General Public License-র শর্তানুযায়ী এটি বিতরণ ও পরিবর্তন করা যাবে; লাইসেন্সের সংস্করণ ২ অথবা (আপনার সুবিধানুযায়ী) ঊর্ধ্বতন কোনো সংস্করণের অধীন।\n\nএই প্রোগ্রামটি বিতরণ করার মূল উদ্দেশ্য যে ব্যবহারকারীরা এর দ্বারা উপকৃত হবেন, কিন্তু \nএটির জন্য কোনো সুস্পষ্ট ওয়ারেন্টি উপস্থিত নেই; বাণিজ্যিক ও কোনো সুনির্দিষ্ট কর্ম সাধনের \nজন্য অন্তর্নিহীত ওয়ারেন্টিও অনুপস্থিত। অধিক জানতে GNU General Public License পড়ুন।\n\nএই প্রোগ্রামের সাথে GNU General Public License-র একটি প্রতিলিপি উপলব্ধ হওয়া উচিত; \nনা থাকলে নিম্নলিখিত ঠিকানায় লিখে তা সংগ্রহ করুন Free Software Foundation, Inc., \n59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
147188
148189 #: ../src/virt-viewer-about.xml.h:20
149190 msgid "virt-manager.org"
150 msgstr ""
151
152 #: ../src/virt-viewer-app.c:259
191 msgstr "virt-manager.org"
192
193 #: ../src/virt-viewer-app.c:272
153194 msgid "This is the last visible display. Do you want to quit?"
154 msgstr ""
155
156 #: ../src/virt-viewer-app.c:573
195 msgstr "এটি সর্বশেষ দৃশ্যমান প্রদর্শন। আপনি কি প্রস্থান করতে ইচ্ছুক?"
196
197 #: ../src/virt-viewer-app.c:613
157198 #, c-format
158199 msgid "Waiting for display %d..."
159 msgstr ""
160
161 #: ../src/virt-viewer-app.c:655
200 msgstr "%d প্রদর্শনের জন্য অপেক্ষা করা হচ্ছে..."
201
202 #: ../src/virt-viewer-app.c:695
162203 #, c-format
163204 msgid "Unknown graphic type for the guest %s"
164 msgstr ""
165
166 #: ../src/virt-viewer-app.c:730
205 msgstr "%s গেস্ট মেশিনের জন্য অজানা ধরনের গ্রাফিক"
206
207 #: ../src/virt-viewer-app.c:770
167208 msgid "Connect to ssh failed."
168 msgstr ""
169
170 #: ../src/virt-viewer-app.c:732
209 msgstr "ssh-র সাথে সংযোগ করতে ব্যর্থ।"
210
211 #: ../src/virt-viewer-app.c:772
171212 msgid "Can't connect to channel, SSH only supported."
172 msgstr ""
173
174 #: ../src/virt-viewer-app.c:744
213 msgstr "চ্যানেলের সাথে সংযোগ করা যায়নি, শুধুমাত্র SSH সমর্থিত হবে।"
214
215 #: ../src/virt-viewer-app.c:784
175216 msgid "Connect to channel unsupported."
176 msgstr ""
177
178 #: ../src/virt-viewer-app.c:824
217 msgstr "সমর্থন বিনা চ্যানেলের সাথে সংযোগ করা হবে।"
218
219 #: ../src/virt-viewer-app.c:864
179220 msgid "Connecting to graphic server"
180 msgstr ""
181
182 #: ../src/virt-viewer-app.c:954
221 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হচ্ছে"
222
223 #: ../src/virt-viewer-app.c:994
183224 msgid "Guest domain has shutdown"
184 msgstr ""
185
186 #: ../src/virt-viewer-app.c:1004
225 msgstr "গেস্ট ডোমেইন বন্ধ হয়েছে"
226
227 #: ../src/virt-viewer-app.c:1044
187228 msgid "Connected to graphic server"
188 msgstr ""
189
190 #: ../src/virt-viewer-app.c:1027
229 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হয়েছে"
230
231 #: ../src/virt-viewer-app.c:1070
191232 #, c-format
192233 msgid "Unable to connect to the graphic server %s"
193 msgstr ""
194
195 #: ../src/virt-viewer-app.c:1056
234 msgstr "%s গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ"
235
236 #: ../src/virt-viewer-app.c:1099
196237 #, c-format
197238 msgid ""
198239 "Unable to authenticate with remote desktop server at %s: %s\n"
199240 "Retry connection again?"
200 msgstr ""
201
202 #: ../src/virt-viewer-app.c:1076
241 msgstr "%s-এ উপস্থিত দূরবর্তী ডেস্কটপ সার্ভারে অনুমোদন করতে ব্যর্থ: %s\nপুনরায় সংযোগের প্রচেষ্টা করা হবে কি?"
242
243 #: ../src/virt-viewer-app.c:1119
203244 #, c-format
204245 msgid "Unable to authenticate with remote desktop server: %s"
205 msgstr ""
206
207 #: ../src/virt-viewer-app.c:1084
246 msgstr "দূরবর্তী ডেস্কটপ সার্ভারের সাথে অনুমোদন করতে ব্যর্থ: %s"
247
248 #: ../src/virt-viewer-app.c:1127
208249 #, c-format
209250 msgid "USB redirection error: %s"
210 msgstr ""
251 msgstr "USB পুনর্নির্দেশে সমস্যা: %s"
211252
212253 #. * Local variables:
213254 #. * c-indent-level: 4
217258 #.
218259 #: ../src/virt-viewer-auth.xml.h:1
219260 msgid "Authentication required"
220 msgstr ""
261 msgstr "অনুমোদন প্রয়োজন"
221262
222263 #: ../src/virt-viewer-auth.xml.h:2
223264 msgid "Password:"
224 msgstr ""
265 msgstr "পাসওয়ার্ড:"
225266
226267 #: ../src/virt-viewer-auth.xml.h:3
227268 msgid "Username:"
228 msgstr ""
269 msgstr "ব্যবহারকারীর নাম:"
229270
230271 #: ../src/virt-viewer-auth.xml.h:4
231272 msgid "label"
232 msgstr ""
273 msgstr "label"
233274
234275 #: ../src/virt-viewer-main.c:38
235276 #, c-format
238279
239280 #: ../src/virt-viewer-main.c:69
240281 msgid "Attach to the local display using libvirt"
241 msgstr ""
282 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
242283
243284 #: ../src/virt-viewer-main.c:71
244285 msgid "Connect to hypervisor"
245 msgstr ""
286 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
246287
247288 #: ../src/virt-viewer-main.c:73
248289 msgid "Wait for domain to start"
249 msgstr ""
290 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
250291
251292 #: ../src/virt-viewer-main.c:75
252293 msgid "Reconnect to domain upon restart"
253 msgstr ""
294 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
254295
255296 #: ../src/virt-viewer-main.c:92
256297 msgid "Virt Viewer"
257 msgstr ""
298 msgstr "Virt Viewer"
258299
259300 #. Setup command line options
260301 #: ../src/virt-viewer-main.c:95
271312 "\n"
272313 msgstr "\nব্যবহার পদ্ধতি: %s [OPTIONS] DOMAIN-NAME|ID|UUID\n\n%s\n\n"
273314
274 #: ../src/virt-viewer-session-spice.c:347
315 #. Create the widgets
316 #: ../src/virt-viewer-session-spice.c:370
275317 msgid "Select USB devices for redirection"
276 msgstr ""
318 msgstr "পুনর্নির্দেশের জন্য USB ডিভাইস নির্বাচন করুন"
277319
278320 #: ../src/virt-viewer-session-vnc.c:140
279321 #, c-format
280322 msgid "Unsupported authentication type %d"
281 msgstr ""
282
283 #: ../src/virt-viewer-window.c:774
323 msgstr "%d ধরনের অনুমোদন সমর্থিত নয়"
324
325 #: ../src/virt-viewer-window.c:804
284326 msgid "Disconnect"
285 msgstr ""
286
287 #: ../src/virt-viewer-window.c:781 ../src/virt-viewer-window.c:782
327 msgstr "সংযোগ বিচ্ছেদ করুন"
328
329 #: ../src/virt-viewer-window.c:811 ../src/virt-viewer-window.c:812
330 #: ../src/virt-viewer.xml.h:22
331 msgid "USB device selection"
332 msgstr "USB ডিভাইস নির্বাচন"
333
334 #: ../src/virt-viewer-window.c:819 ../src/virt-viewer-window.c:820
288335 msgid "Leave fullscreen"
289 msgstr ""
290
291 #: ../src/virt-viewer-window.c:854
336 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন থেকে প্রস্থান"
337
338 #: ../src/virt-viewer-window.c:892
292339 msgid "(Press Ctrl+Alt to release pointer)"
293 msgstr ""
340 msgstr "(পয়েন্টার মুক্ত করার জন্য Ctrl+Alt টিপুন)"
294341
295342 #. translators:
296343 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> -
298345 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt
299346 #. Viewer"
300347 #.
301 #: ../src/virt-viewer-window.c:863
348 #: ../src/virt-viewer-window.c:901
302349 #, c-format
303350 msgid "%s%s%s - %s"
304 msgstr ""
351 msgstr "%s%s%s - %s"
305352
306353 #. translators: <space>
307 #: ../src/virt-viewer-window.c:867
354 #: ../src/virt-viewer-window.c:905
308355 msgid " "
309 msgstr ""
356 msgstr " "
310357
311358 #: ../src/virt-viewer.c:144
312359 msgid "Waiting for guest domain to re-start"
313 msgstr ""
360 msgstr "গেস্ট ডোমেইন পুনরায় আরম্ভের অপেক্ষা করা হচ্ছে"
314361
315362 #: ../src/virt-viewer.c:308
316363 #, c-format
317364 msgid "Cannot determine the graphic type for the guest %s"
318 msgstr ""
365 msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিকের ধরন নির্ধারণ করা সম্ভব নয়"
319366
320367 #: ../src/virt-viewer.c:321
321368 #, c-format
322369 msgid "Cannot determine the graphic address for the guest %s"
323 msgstr ""
370 msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিক ঠিকানা নির্ধারণ করা সম্ভব নয়"
324371
325372 #: ../src/virt-viewer.c:344
326373 #, c-format
327374 msgid "Cannot determine the host for the guest %s"
328 msgstr ""
375 msgstr "%s গেস্ট মেশিনের জন্য হোস্ট নির্ধারণ করা সম্ভব নয়"
329376
330377 #: ../src/virt-viewer.c:474
331378 msgid "Finding guest domain"
332 msgstr ""
379 msgstr "গেস্ট ডোমেইন সন্ধান করা হচ্ছে"
333380
334381 #: ../src/virt-viewer.c:478
335382 msgid "Waiting for guest domain to be created"
336 msgstr ""
383 msgstr "গেস্ট ডোমেইন প্রস্তুতির অপেক্ষা করা হচ্ছে"
337384
338385 #: ../src/virt-viewer.c:483
339386 #, c-format
342389
343390 #: ../src/virt-viewer.c:490
344391 msgid "Checking guest domain status"
345 msgstr ""
392 msgstr "গেস্ট ডোমেইনের অবস্থা পরীক্ষা করতে ব্যর্থ"
346393
347394 #: ../src/virt-viewer.c:497
348395 msgid "Waiting for guest domain to start"
349 msgstr ""
396 msgstr "গেস্ট ডোমেইন আরম্ভের অপেক্ষা করা হচ্ছে"
350397
351398 #: ../src/virt-viewer.c:504
352399 msgid "Waiting for guest domain to start server"
353 msgstr ""
400 msgstr "গেস্ট ডোমেইন দ্বারা সার্ভার আরম্ভের অপেক্ষা করা হচ্ছে"
354401
355402 #: ../src/virt-viewer.c:624
356403 #, c-format
369416 #.
370417 #: ../src/virt-viewer.xml.h:1
371418 msgid "Automatically resize"
372 msgstr ""
419 msgstr "স্বয়ংক্রিয়ভাবে মাপ পরিবর্তন করুন"
373420
374421 #: ../src/virt-viewer.xml.h:2
375422 msgid "Ctrl+Alt+F11"
376 msgstr ""
423 msgstr "Ctrl+Alt+F11"
377424
378425 #: ../src/virt-viewer.xml.h:3
379426 msgid "Ctrl+Alt+F12"
380 msgstr ""
427 msgstr "Ctrl+Alt+F12"
381428
382429 #: ../src/virt-viewer.xml.h:4
383430 msgid "Ctrl+Alt+F1_0"
384 msgstr ""
431 msgstr "Ctrl+Alt+F1_0"
385432
386433 #: ../src/virt-viewer.xml.h:5
387434 msgid "Ctrl+Alt+F_1"
388 msgstr ""
435 msgstr "Ctrl+Alt+F_1"
389436
390437 #: ../src/virt-viewer.xml.h:6
391438 msgid "Ctrl+Alt+F_2"
392 msgstr ""
439 msgstr "Ctrl+Alt+F_2"
393440
394441 #: ../src/virt-viewer.xml.h:7
395442 msgid "Ctrl+Alt+F_3"
396 msgstr ""
443 msgstr "Ctrl+Alt+F_3"
397444
398445 #: ../src/virt-viewer.xml.h:8
399446 msgid "Ctrl+Alt+F_4"
400 msgstr ""
447 msgstr "Ctrl+Alt+F_4"
401448
402449 #: ../src/virt-viewer.xml.h:9
403450 msgid "Ctrl+Alt+F_5"
404 msgstr ""
451 msgstr "Ctrl+Alt+F_5"
405452
406453 #: ../src/virt-viewer.xml.h:10
407454 msgid "Ctrl+Alt+F_6"
408 msgstr ""
455 msgstr "Ctrl+Alt+F_6"
409456
410457 #: ../src/virt-viewer.xml.h:11
411458 msgid "Ctrl+Alt+F_7"
412 msgstr ""
459 msgstr "Ctrl+Alt+F_7"
413460
414461 #: ../src/virt-viewer.xml.h:12
415462 msgid "Ctrl+Alt+F_8"
416 msgstr ""
463 msgstr "Ctrl+Alt+F_8"
417464
418465 #: ../src/virt-viewer.xml.h:13
419466 msgid "Ctrl+Alt+F_9"
420 msgstr ""
467 msgstr "Ctrl+Alt+F_9"
421468
422469 #: ../src/virt-viewer.xml.h:14
423470 msgid "Ctrl+Alt+_Backspace"
424 msgstr ""
471 msgstr "Ctrl+Alt+_Backspace"
425472
426473 #: ../src/virt-viewer.xml.h:15
427474 msgid "Ctrl+Alt+_Del"
428 msgstr ""
475 msgstr "Ctrl+Alt+_Del"
429476
430477 #: ../src/virt-viewer.xml.h:16
431478 msgid "Displays"
432 msgstr ""
479 msgstr "প্রদর্শনক্ষেত্র"
433480
434481 #: ../src/virt-viewer.xml.h:17
435482 msgid "Full screen"
436 msgstr ""
483 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন"
437484
438485 #: ../src/virt-viewer.xml.h:18
486 msgid "Release cursor"
487 msgstr "কার্সার মুক্ত করা হবে"
488
489 #: ../src/virt-viewer.xml.h:19
439490 msgid "Screenshot"
440 msgstr ""
441
442 #: ../src/virt-viewer.xml.h:19
443 msgid "USB device selection"
444 msgstr ""
491 msgstr "স্ক্রিন-শট"
445492
446493 #: ../src/virt-viewer.xml.h:20
494 msgid "Smartcard insertion"
495 msgstr "স্মার্ট-কার্ড অন্তর্ভুক্তি"
496
497 #: ../src/virt-viewer.xml.h:21
498 msgid "Smartcard removal"
499 msgstr "স্মার্ট-কার্ড অপসারণ"
500
501 #: ../src/virt-viewer.xml.h:23
447502 msgid "_File"
448 msgstr ""
449
450 #: ../src/virt-viewer.xml.h:21
503 msgstr "ফাইল (_F)"
504
505 #: ../src/virt-viewer.xml.h:24
451506 msgid "_Help"
452 msgstr ""
453
454 #: ../src/virt-viewer.xml.h:22
507 msgstr "সহায়তা (_H)"
508
509 #: ../src/virt-viewer.xml.h:25
455510 msgid "_PrintScreen"
456 msgstr ""
457
458 #: ../src/virt-viewer.xml.h:23
511 msgstr "_PrintScreen"
512
513 #: ../src/virt-viewer.xml.h:26
459514 msgid "_Send key"
460 msgstr ""
461
462 #: ../src/virt-viewer.xml.h:24
515 msgstr "কি পাঠিয়ে দিন (_S)"
516
517 #: ../src/virt-viewer.xml.h:27
463518 msgid "_View"
464 msgstr ""
465
466 #: ../src/virt-viewer.xml.h:25
519 msgstr "প্রদর্শন (_V)"
520
521 #: ../src/virt-viewer.xml.h:28
467522 msgid "_Zoom"
468 msgstr ""
523 msgstr "প্রদর্শনের নাম (_Z)"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: virt-viewer\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2012-03-07 10:17+0000\n"
10 "PO-Revision-Date: 2012-02-28 16:07+0000\n"
11 "Last-Translator: Daniel Berrange <dan-transifex@berrange.com>\n"
12 "Language-Team: Czech (http://www.transifex.net/projects/p/fedora/language/cs/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: cs\n"
17 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
18
19 #: ../src/gbinding.c:637
20 msgid "Source"
21 msgstr ""
22
23 #: ../src/gbinding.c:638
24 msgid "The source of the binding"
25 msgstr ""
26
27 #: ../src/gbinding.c:652
28 msgid "Target"
29 msgstr ""
30
31 #: ../src/gbinding.c:653
32 msgid "The target of the binding"
33 msgstr ""
34
35 #: ../src/gbinding.c:668
36 msgid "Source Property"
37 msgstr ""
38
39 #: ../src/gbinding.c:669
40 msgid "The property on the source to bind"
41 msgstr ""
42
43 #: ../src/gbinding.c:684
44 msgid "Target Property"
45 msgstr ""
46
47 #: ../src/gbinding.c:685
48 msgid "The property on the target to bind"
49 msgstr ""
50
51 #: ../src/gbinding.c:699
52 msgid "Flags"
53 msgstr ""
54
55 #: ../src/gbinding.c:700
56 msgid "The binding flags"
57 msgstr ""
58
59 #: ../src/remote-viewer-main.c:42
60 #, c-format
61 msgid "remote-viewer version %s\n"
62 msgstr ""
63
64 #: ../src/remote-viewer-main.c:63 ../src/virt-viewer-main.c:60
65 msgid "Run '"
66 msgstr ""
67
68 #: ../src/remote-viewer-main.c:66 ../src/virt-viewer-main.c:63
69 msgid "Display version information"
70 msgstr ""
71
72 #: ../src/remote-viewer-main.c:68 ../src/virt-viewer-main.c:65
73 msgid "Display verbose information"
74 msgstr ""
75
76 #: ../src/remote-viewer-main.c:70 ../src/virt-viewer-main.c:67
77 msgid "Direct connection with no automatic tunnels"
78 msgstr ""
79
80 #: ../src/remote-viewer-main.c:72 ../src/virt-viewer-main.c:77
81 msgid "Zoom level of window, in percentage"
82 msgstr ""
83
84 #: ../src/remote-viewer-main.c:74 ../src/virt-viewer-main.c:79
85 msgid "Display debugging information"
86 msgstr ""
87
88 #: ../src/remote-viewer-main.c:76 ../src/virt-viewer-main.c:81
89 msgid "Open in full screen mode"
90 msgstr ""
91
92 #: ../src/remote-viewer-main.c:79
93 msgid "Open connection using Spice controller communication"
94 msgstr ""
95
96 #. Setup command line options
97 #: ../src/remote-viewer-main.c:92
98 msgid "- Remote viewer client"
99 msgstr ""
100
101 #: ../src/remote-viewer-main.c:117
102 #, c-format
103 msgid ""
104 "\n"
105 "Usage: %s [OPTIONS] URI\n"
106 "\n"
107 "%s\n"
108 "\n"
109 msgstr ""
110
111 #: ../src/remote-viewer-main.c:122 ../src/virt-viewer-main.c:121
112 #, c-format
113 msgid "Zoom level must be within 10-200\n"
114 msgstr ""
115
116 #: ../src/remote-viewer.c:210 ../src/remote-viewer.c:742