Imported Upstream version 0.5.2
Laurent Léonard
11 years ago
0 | 0 | Virt Viewer Authors |
1 | 1 | =================== |
2 | 2 | |
3 | The Virt Viewer application is written by | |
3 | The Virt Viewer application is maintained by | |
4 | 4 | |
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> | |
6 | 9 | |
7 | 10 | With additional patches from: |
8 | 11 | |
13 | 16 | Hans de Goede <hdegoede@redhat.com> |
14 | 17 | Hiroyuki Kaguchi <fj7025cf@aa.jp.fujitsu.com> |
15 | 18 | Jiri Denemark <Jiri.Denemark@gmail.com> |
16 | Marc-André Lureau <marcandre.lureau@redhat.com> | |
17 | 19 | Pavel Raiskup <praiskup@redhat.com> |
18 | 20 | Richard W.M. Jones <rjones@redhat.com> |
19 | 21 | Ronnie Sahlberg <ronniesahlberg@gmail.com> |
61 | 63 | <ypoyarko@fedoraproject.org> |
62 | 64 | <yurchor@fedoraproject.org> |
63 | 65 | <zoltanh721@fedoraproject.org> |
66 | ...and more... | |
67 | ||
68 | For full translation credits see the header of the individual | |
69 | files in the po/ directory. | |
64 | 70 | |
65 | 71 | -- 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 | ||
0 | 214 | 2012-02-17 Daniel P. Berrange <berrange@redhat.com> |
1 | 215 | |
2 | 216 | Prepare for release 0.5.1 |
40 | 40 | COPYING ChangeLog INSTALL NEWS compile config.guess config.sub \ |
41 | 41 | depcomp install-sh ltmain.sh missing |
42 | 42 | 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 | |
47 | 48 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
48 | 49 | $(ACLOCAL_M4) |
49 | 50 | am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ |
218 | 219 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
219 | 220 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
220 | 221 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
222 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
223 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
221 | 224 | STRIP = @STRIP@ |
222 | 225 | USE_NLS = @USE_NLS@ |
223 | 226 | VERSION = @VERSION@ |
0 | 0 | Virt Viewer News |
1 | 1 | ================ |
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 | |
2 | 15 | |
3 | 16 | 0.5.1: Feb 17, 2012 |
4 | 17 | ------------------- |
18 | 18 | |
19 | 19 | http://gtk-vnc.sourceforge.net/ |
20 | 20 | |
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 | |
22 | 22 | display of the SPICE protocol, which is available from: |
23 | 23 | |
24 | 24 | http://spice-space.org/page/Spice-Gtk |
455 | 455 | fi]) |
456 | 456 | |
457 | 457 | |
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 | ||
652 | 458 | # nls.m4 serial 5 (gettext-0.18) |
653 | 459 | dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation, |
654 | 460 | dnl Inc. |
1844 | 1650 | AC_SUBST([am__untar]) |
1845 | 1651 | ]) # _AM_PROG_TAR |
1846 | 1652 | |
1653 | m4_include([m4/intltool.m4]) | |
1847 | 1654 | m4_include([m4/libtool.m4]) |
1848 | 1655 | m4_include([m4/ltoptions.m4]) |
1849 | 1656 | m4_include([m4/ltsugar.m4]) |
0 | 0 | #! /bin/sh |
1 | 1 | # 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. | |
3 | 3 | # |
4 | 4 | # |
5 | 5 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
566 | 566 | # Identity of this package. |
567 | 567 | PACKAGE_NAME='virt-viewer' |
568 | 568 | 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' | |
571 | 571 | PACKAGE_BUGREPORT='' |
572 | 572 | PACKAGE_URL='' |
573 | 573 | |
623 | 623 | NSPR_CFLAGS |
624 | 624 | HAVE_SPICE_GTK_FALSE |
625 | 625 | HAVE_SPICE_GTK_TRUE |
626 | SPICE_PROTOCOL_LIBS | |
627 | SPICE_PROTOCOL_CFLAGS | |
626 | 628 | SPICE_CONTROLLER_LIBS |
627 | 629 | SPICE_CONTROLLER_CFLAGS |
628 | 630 | SPICE_GTK_LIBS |
850 | 852 | SPICE_GTK_LIBS |
851 | 853 | SPICE_CONTROLLER_CFLAGS |
852 | 854 | SPICE_CONTROLLER_LIBS |
855 | SPICE_PROTOCOL_CFLAGS | |
856 | SPICE_PROTOCOL_LIBS | |
853 | 857 | NSPR_CFLAGS |
854 | 858 | NSPR_LIBS |
855 | 859 | FIREFOX_PLUGIN_CFLAGS |
1398 | 1402 | # Omit some internal or obsolete options to make the list less imposing. |
1399 | 1403 | # This message is too long to be a string in the A/UX 3.1 sh. |
1400 | 1404 | 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. | |
1402 | 1406 | |
1403 | 1407 | Usage: $0 [OPTION]... [VAR=VALUE]... |
1404 | 1408 | |
1468 | 1472 | |
1469 | 1473 | if test -n "$ac_init_help"; then |
1470 | 1474 | 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:";; | |
1472 | 1476 | esac |
1473 | 1477 | cat <<\_ACEOF |
1474 | 1478 | |
1544 | 1548 | C compiler flags for SPICE_CONTROLLER, overriding pkg-config |
1545 | 1549 | SPICE_CONTROLLER_LIBS |
1546 | 1550 | 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 | |
1547 | 1555 | NSPR_CFLAGS C compiler flags for NSPR, overriding pkg-config |
1548 | 1556 | NSPR_LIBS linker flags for NSPR, overriding pkg-config |
1549 | 1557 | FIREFOX_PLUGIN_CFLAGS |
1621 | 1629 | test -n "$ac_init_help" && exit $ac_status |
1622 | 1630 | if $ac_init_version; then |
1623 | 1631 | cat <<\_ACEOF |
1624 | virt-viewer configure 0.5.1 | |
1632 | virt-viewer configure 0.5.2 | |
1625 | 1633 | generated by GNU Autoconf 2.68 |
1626 | 1634 | |
1627 | 1635 | Copyright (C) 2010 Free Software Foundation, Inc. |
1986 | 1994 | This file contains any messages produced by compilers while |
1987 | 1995 | running configure, to aid debugging if configure makes a mistake. |
1988 | 1996 | |
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 | |
1990 | 1998 | generated by GNU Autoconf 2.68. Invocation command line was |
1991 | 1999 | |
1992 | 2000 | $ $0 $@ |
2335 | 2343 | |
2336 | 2344 | |
2337 | 2345 | |
2346 | ||
2338 | 2347 | ac_config_headers="$ac_config_headers config.h" |
2339 | 2348 | |
2340 | 2349 | am__api_version='1.11' |
2804 | 2813 | |
2805 | 2814 | # Define the identity of the package. |
2806 | 2815 | PACKAGE='virt-viewer' |
2807 | VERSION='0.5.1' | |
2816 | VERSION='0.5.2' | |
2808 | 2817 | |
2809 | 2818 | |
2810 | 2819 | cat >>confdefs.h <<_ACEOF |
2933 | 2942 | |
2934 | 2943 | GMODULE2_REQUIRED=2.12.0 |
2935 | 2944 | 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" | |
2938 | 2947 | GTK3_REQUIRED="3.0" |
2939 | 2948 | GTK_VNC1_REQUIRED="0.3.8" |
2940 | 2949 | 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" | |
2942 | 2952 | |
2943 | 2953 | ac_ext=c |
2944 | 2954 | ac_cpp='$CPP $CPPFLAGS' |
13721 | 13731 | |
13722 | 13732 | fi |
13723 | 13733 | |
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 | ||
13724 | 13825 | $as_echo "#define HAVE_SPICE_GTK 1" >>confdefs.h |
13725 | 13826 | |
13726 | 13827 | else |
14700 | 14801 | # report actual input values of CONFIG_FILES etc. instead of their |
14701 | 14802 | # values after options handling. |
14702 | 14803 | 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 | |
14704 | 14805 | generated by GNU Autoconf 2.68. Invocation command line was |
14705 | 14806 | |
14706 | 14807 | CONFIG_FILES = $CONFIG_FILES |
14770 | 14871 | cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 |
14771 | 14872 | ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" |
14772 | 14873 | ac_cs_version="\\ |
14773 | virt-viewer config.status 0.5.1 | |
14874 | virt-viewer config.status 0.5.2 | |
14774 | 14875 | configured by $0, generated by GNU Autoconf 2.68, |
14775 | 14876 | with options \\"\$ac_cs_config\\" |
14776 | 14877 |
0 | 0 | |
1 | AC_INIT(virt-viewer, 0.5.1) | |
1 | AC_INIT(virt-viewer, 0.5.2) | |
2 | 2 | AC_CONFIG_SRCDIR(src/virt-viewer-main.c) |
3 | AC_CONFIG_MACRO_DIR([m4]) | |
3 | 4 | AM_CONFIG_HEADER(config.h) |
4 | 5 | dnl Make automake keep quiet about wildcards & other GNUmake-isms |
5 | 6 | AM_INIT_AUTOMAKE([-Wno-portability]) |
11 | 12 | |
12 | 13 | GMODULE2_REQUIRED=2.12.0 |
13 | 14 | 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" | |
16 | 17 | GTK3_REQUIRED="3.0" |
17 | 18 | GTK_VNC1_REQUIRED="0.3.8" |
18 | 19 | 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" | |
20 | 22 | |
21 | 23 | AC_PROG_CC |
22 | 24 | AM_PROG_CC_C_O |
128 | 130 | |
129 | 131 | AS_IF([test "x$have_spice_gtk" = "xyes"], |
130 | 132 | [PKG_CHECK_MODULES(SPICE_CONTROLLER, [spice-controller])] |
133 | [PKG_CHECK_MODULES(SPICE_PROTOCOL, [spice-protocol >= $SPICE_PROTOCOL_REQUIRED])] | |
131 | 134 | [AC_DEFINE([HAVE_SPICE_GTK], 1, [Have spice-gtk?])], |
132 | 135 | [AS_IF([test "x$with_spice_gtk" = "xyes"], |
133 | 136 | [AC_MSG_ERROR([spice-gtk requested but not found]) |
36 | 36 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ |
37 | 37 | $(srcdir)/virt-viewer.nsis.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
162 | 163 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
163 | 164 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
164 | 165 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
166 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
167 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
165 | 168 | STRIP = @STRIP@ |
166 | 169 | USE_NLS = @USE_NLS@ |
167 | 170 | VERSION = @VERSION@ |
152 | 152 | nsExec::ExecToLog '$0 /C bin\pango-querymodules.exe > etc\pango\pango.modules' |
153 | 153 | nsExec::ExecToLog 'echo gtk-theme-name = "MS-Windows" > etc\gtk-2.0\gtkrc' |
154 | 154 | |
155 | WriteRegStr HKCU "Software\spice-space.org\spicex" "client" "$INSTDIR\bin\remote-viewer.exe --spice-controller" | |
156 | ||
155 | 157 | SectionEnd |
156 | 158 | |
157 | 159 | Section "Start Menu Shortcuts" |
169 | 171 | # Delete /rebootok "$SMPROGRAMS\virt-viewer\virt-viewer.exe.lnk" |
170 | 172 | Delete /rebootok "$SMPROGRAMS\virt-viewer\Uninstall virt-viewer.lnk" |
171 | 173 | RMDir "$SMPROGRAMS\virt-viewer" |
174 | ||
175 | DeleteRegKey HKCU "Software\spice-space.org\spicex\client" | |
172 | 176 | |
173 | 177 | RMDir /r "$INSTDIR\lib\pango" |
174 | 178 |
36 | 36 | subdir = icons/16x16 |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
185 | 186 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
186 | 187 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
187 | 188 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
189 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
190 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
188 | 191 | STRIP = @STRIP@ |
189 | 192 | USE_NLS = @USE_NLS@ |
190 | 193 | VERSION = @VERSION@ |
36 | 36 | subdir = icons/22x22 |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
185 | 186 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
186 | 187 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
187 | 188 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
189 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
190 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
188 | 191 | STRIP = @STRIP@ |
189 | 192 | USE_NLS = @USE_NLS@ |
190 | 193 | VERSION = @VERSION@ |
36 | 36 | subdir = icons/24x24 |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
185 | 186 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
186 | 187 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
187 | 188 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
189 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
190 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
188 | 191 | STRIP = @STRIP@ |
189 | 192 | USE_NLS = @USE_NLS@ |
190 | 193 | VERSION = @VERSION@ |
36 | 36 | subdir = icons/256x256 |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
185 | 186 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
186 | 187 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
187 | 188 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
189 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
190 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
188 | 191 | STRIP = @STRIP@ |
189 | 192 | USE_NLS = @USE_NLS@ |
190 | 193 | VERSION = @VERSION@ |
36 | 36 | subdir = icons/32x32 |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
185 | 186 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
186 | 187 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
187 | 188 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
189 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
190 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
188 | 191 | STRIP = @STRIP@ |
189 | 192 | USE_NLS = @USE_NLS@ |
190 | 193 | VERSION = @VERSION@ |
36 | 36 | subdir = icons/48x48 |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
185 | 186 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
186 | 187 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
187 | 188 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
189 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
190 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
188 | 191 | STRIP = @STRIP@ |
189 | 192 | USE_NLS = @USE_NLS@ |
190 | 193 | VERSION = @VERSION@ |
35 | 35 | subdir = icons |
36 | 36 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
37 | 37 | 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 | |
42 | 43 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
43 | 44 | $(ACLOCAL_M4) |
44 | 45 | mkinstalldirs = $(install_sh) -d |
201 | 202 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
202 | 203 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
203 | 204 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
205 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
206 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
204 | 207 | STRIP = @STRIP@ |
205 | 208 | USE_NLS = @USE_NLS@ |
206 | 209 | VERSION = @VERSION@ |
8049 | 8049 | elif test -n "$runpath_var"; then |
8050 | 8050 | case "$perm_rpath " in |
8051 | 8051 | *" $libdir "*) ;; |
8052 | *) func_apped perm_rpath " $libdir" ;; | |
8052 | *) func_append perm_rpath " $libdir" ;; | |
8053 | 8053 | esac |
8054 | 8054 | fi |
8055 | 8055 | 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 |
35 | 35 | subdir = man |
36 | 36 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
37 | 37 | 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 | |
42 | 43 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
43 | 44 | $(ACLOCAL_M4) |
44 | 45 | mkinstalldirs = $(install_sh) -d |
186 | 187 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
187 | 188 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
188 | 189 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
190 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
191 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
189 | 192 | STRIP = @STRIP@ |
190 | 193 | USE_NLS = @USE_NLS@ |
191 | 194 | VERSION = @VERSION@ |
25 | 25 | %else |
26 | 26 | BuildRequires: mingw32-gtk2 >= 2.12.0 |
27 | 27 | %endif |
28 | BuildRequires: mingw32-libvirt >= 0.6.0 | |
28 | BuildRequires: mingw32-libvirt >= 0.9.7 | |
29 | 29 | BuildRequires: mingw32-libxml2 |
30 | 30 | %if %{with_gtk3} |
31 | 31 | BuildRequires: mingw32-gtk-vnc >= 0.4.3 |
36 | 36 | subdir = plugin |
37 | 37 | DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in |
38 | 38 | 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 | |
43 | 44 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ |
44 | 45 | $(ACLOCAL_M4) |
45 | 46 | mkinstalldirs = $(install_sh) -d |
238 | 239 | SPICE_CONTROLLER_LIBS = @SPICE_CONTROLLER_LIBS@ |
239 | 240 | SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@ |
240 | 241 | SPICE_GTK_LIBS = @SPICE_GTK_LIBS@ |
242 | SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@ | |
243 | SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@ | |
241 | 244 | STRIP = @STRIP@ |
242 | 245 | USE_NLS = @USE_NLS@ |
243 | 246 | VERSION = @VERSION@ |
0 | 0 | as |
1 | bg | |
1 | 2 | bn_IN |
3 | cs | |
2 | 4 | de |
3 | 5 | es |
4 | 6 | fr |
5 | 7 | gu |
8 | he | |
6 | 9 | hi |
7 | 10 | hu |
8 | 11 | it |
11 | 14 | ko |
12 | 15 | ml |
13 | 16 | mr |
17 | nl | |
14 | 18 | or |
15 | 19 | pa |
16 | 20 | pl |
17 | 21 | pt_BR |
22 | pt | |
18 | 23 | ru |
19 | 24 | ta |
20 | 25 | te |
26 | tr | |
21 | 27 | uk |
22 | 28 | zh_CN |
23 | 29 | zh_TW |
3 | 3 | # |
4 | 4 | # Translators: |
5 | 5 | # Amitakhya Phukan <aphukan@redhat.com>, 2010. |
6 | # Nilamdyuti Goswami <ngoswami@redhat.com>, 2012. | |
6 | 7 | msgid "" |
7 | 8 | msgstr "" |
8 | 9 | "Project-Id-Version: virt-viewer\n" |
9 | 10 | "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" | |
13 | 14 | "Language-Team: Assamese (http://www.transifex.net/projects/p/fedora/language/as/)\n" |
14 | 15 | "MIME-Version: 1.0\n" |
15 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
17 | 18 | "Language: as\n" |
18 | 19 | "Plural-Forms: nplurals=2; plural=(n != 1)\n" |
19 | 20 | |
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 | ||
20 | 61 | #: ../src/remote-viewer-main.c:42 |
21 | 62 | #, c-format |
22 | 63 | msgid "remote-viewer version %s\n" |
23 | msgstr "" | |
64 | msgstr "দুৰৱৰ্তী-দৰ্শক সংস্কৰণ %s\n" | |
24 | 65 | |
25 | 66 | #: ../src/remote-viewer-main.c:63 ../src/virt-viewer-main.c:60 |
26 | 67 | msgid "Run '" |
28 | 69 | |
29 | 70 | #: ../src/remote-viewer-main.c:66 ../src/virt-viewer-main.c:63 |
30 | 71 | msgid "Display version information" |
31 | msgstr "" | |
72 | msgstr "সংস্কৰণ তথ্য প্ৰদৰ্শন কৰক" | |
32 | 73 | |
33 | 74 | #: ../src/remote-viewer-main.c:68 ../src/virt-viewer-main.c:65 |
34 | 75 | msgid "Display verbose information" |
35 | msgstr "" | |
76 | msgstr "ভাৰভৌচ তথ্য প্ৰদৰ্শন কৰক" | |
36 | 77 | |
37 | 78 | #: ../src/remote-viewer-main.c:70 ../src/virt-viewer-main.c:67 |
38 | 79 | msgid "Direct connection with no automatic tunnels" |
39 | msgstr "" | |
80 | msgstr "কোনো স্বচালিত টানেল নহোৱাকৈ প্ৰত্যক্ষ সংযোগ" | |
40 | 81 | |
41 | 82 | #: ../src/remote-viewer-main.c:72 ../src/virt-viewer-main.c:77 |
42 | 83 | msgid "Zoom level of window, in percentage" |
43 | msgstr "" | |
84 | msgstr "উইন্ডোৰ জুম স্তৰ, শতাংশত" | |
44 | 85 | |
45 | 86 | #: ../src/remote-viewer-main.c:74 ../src/virt-viewer-main.c:79 |
46 | 87 | msgid "Display debugging information" |
47 | msgstr "" | |
88 | msgstr "ডিবাগ তথ্য প্ৰদৰ্শন কৰক" | |
48 | 89 | |
49 | 90 | #: ../src/remote-viewer-main.c:76 ../src/virt-viewer-main.c:81 |
50 | 91 | msgid "Open in full screen mode" |
51 | msgstr "" | |
92 | msgstr "পূৰ্ণ পৰ্দা অৱস্থাত খোলক" | |
52 | 93 | |
53 | 94 | #: ../src/remote-viewer-main.c:79 |
54 | 95 | msgid "Open connection using Spice controller communication" |
55 | msgstr "" | |
96 | msgstr "Spice নিয়ন্ত্ৰক সংযোগ ব্যৱহাৰ কৰি সংযোগ খোলক" | |
56 | 97 | |
57 | 98 | #. Setup command line options |
58 | 99 | #: ../src/remote-viewer-main.c:92 |
59 | 100 | msgid "- Remote viewer client" |
60 | msgstr "" | |
101 | msgstr "- দূৰৱৰ্তী দৰ্শক ক্লাএন্ট" | |
61 | 102 | |
62 | 103 | #: ../src/remote-viewer-main.c:117 |
63 | 104 | #, c-format |
67 | 108 | "\n" |
68 | 109 | "%s\n" |
69 | 110 | "\n" |
70 | msgstr "" | |
111 | msgstr "\nব্যৱহাৰ: %s [OPTIONS] URI\n\n%s\n\n" | |
71 | 112 | |
72 | 113 | #: ../src/remote-viewer-main.c:122 ../src/virt-viewer-main.c:121 |
73 | 114 | #, c-format |
74 | 115 | 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 | |
78 | 119 | msgid "Failed to initiate connection" |
79 | msgstr "" | |
80 | ||
81 | #: ../src/remote-viewer.c:198 | |
120 | msgstr "সংযোগ আৰম্ভ কৰিবলে ব্যৰ্থ" | |
121 | ||
122 | #: ../src/remote-viewer.c:223 | |
82 | 123 | msgid "Display disabled by controller" |
83 | msgstr "" | |
84 | ||
85 | #: ../src/remote-viewer.c:398 | |
124 | msgstr "প্ৰদৰ্শন নিয়ন্ত্ৰক দ্বাৰা অসামৰ্থবান কৰা হৈছে" | |
125 | ||
126 | #: ../src/remote-viewer.c:654 | |
86 | 127 | #, c-format |
87 | 128 | msgid "Controller connection failed: %s" |
88 | msgstr "" | |
89 | ||
90 | #: ../src/remote-viewer.c:452 | |
129 | msgstr "নিয়ন্ত্ৰক সংযোগ ব্যৰ্থ হল: %s" | |
130 | ||
131 | #: ../src/remote-viewer.c:708 | |
91 | 132 | 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 | |
95 | 136 | msgid "Setting up Spice session..." |
96 | msgstr "" | |
97 | ||
98 | #: ../src/remote-viewer.c:472 | |
137 | msgstr "Spice অধিবেশন সংহতি কৰা হৈ আছে..." | |
138 | ||
139 | #: ../src/remote-viewer.c:732 | |
99 | 140 | 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 | |
103 | 144 | #, c-format |
104 | 145 | msgid "Couldn't create a session for this type: %s" |
105 | msgstr "" | |
146 | msgstr "এই ধৰণৰ বাবে এটা অধিবেশন সৃষ্টি কৰিব পৰা নগল: %s" | |
106 | 147 | |
107 | 148 | #. * Local variables: |
108 | 149 | #. * c-indent-level: 4 |
112 | 153 | #. |
113 | 154 | #: ../src/virt-viewer-about.xml.h:1 |
114 | 155 | msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt" |
115 | msgstr "" | |
156 | msgstr "GTK-VNC, SPICE-GTK আৰু libvirt ৰ সৈতে নিৰ্মাণ কৰা এটা দূৰৱৰ্তী ডেস্কটপ ক্লাএন্ট" | |
116 | 157 | |
117 | 158 | #: ../src/virt-viewer-about.xml.h:2 |
118 | 159 | msgid "About Glade" |
119 | msgstr "" | |
160 | msgstr "Glade ৰ বিষয়ে" | |
120 | 161 | |
121 | 162 | #: ../src/virt-viewer-about.xml.h:3 |
122 | 163 | msgid "" |
123 | 164 | "Copyright (C) 2007-2012 Daniel P. Berrange\n" |
124 | 165 | "Copyright (C) 2007-2012 Red Hat, Inc." |
125 | msgstr "" | |
166 | msgstr "স্বত্বাধিকাৰ (C) ২০০৭-২০১২ ডেনিয়েল পি. বিৰেইঞ্জ\nস্বত্বাধিকাৰ (C) ২০০৭-২০১২ Red Hat, Inc." | |
126 | 167 | |
127 | 168 | #: ../src/virt-viewer-about.xml.h:5 |
128 | 169 | msgid "The Fedora Translation Team" |
129 | msgstr "" | |
170 | msgstr "Fedora অনুবাদ দল" | |
130 | 171 | |
131 | 172 | #: ../src/virt-viewer-about.xml.h:6 |
132 | 173 | msgid "" |
143 | 184 | "You should have received a copy of the GNU General Public License\n" |
144 | 185 | "along with this program; if not, write to the Free Software\n" |
145 | 186 | "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" | |
147 | 188 | |
148 | 189 | #: ../src/virt-viewer-about.xml.h:20 |
149 | 190 | 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 | |
153 | 194 | 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 | |
157 | 198 | #, c-format |
158 | 199 | 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 | |
162 | 203 | #, c-format |
163 | 204 | 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 | |
167 | 208 | 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 | |
171 | 212 | 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 | |
175 | 216 | 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 | |
179 | 220 | 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 | |
183 | 224 | 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 | |
187 | 228 | 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 | |
191 | 232 | #, c-format |
192 | 233 | 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 | |
196 | 237 | #, c-format |
197 | 238 | msgid "" |
198 | 239 | "Unable to authenticate with remote desktop server at %s: %s\n" |
199 | 240 | "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 | |
203 | 244 | #, c-format |
204 | 245 | 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 | |
208 | 249 | #, c-format |
209 | 250 | msgid "USB redirection error: %s" |
210 | msgstr "" | |
251 | msgstr "USB পুনৰনিৰ্দেশ ত্ৰুটি: %s" | |
211 | 252 | |
212 | 253 | #. * Local variables: |
213 | 254 | #. * c-indent-level: 4 |
217 | 258 | #. |
218 | 259 | #: ../src/virt-viewer-auth.xml.h:1 |
219 | 260 | msgid "Authentication required" |
220 | msgstr "" | |
261 | msgstr "প্ৰমাণীকৰণৰ প্ৰয়োজন" | |
221 | 262 | |
222 | 263 | #: ../src/virt-viewer-auth.xml.h:2 |
223 | 264 | msgid "Password:" |
224 | msgstr "" | |
265 | msgstr "পাছৱাৰ্ড:" | |
225 | 266 | |
226 | 267 | #: ../src/virt-viewer-auth.xml.h:3 |
227 | 268 | msgid "Username:" |
228 | msgstr "" | |
269 | msgstr "ব্যৱহাৰকাৰীৰ নাম:" | |
229 | 270 | |
230 | 271 | #: ../src/virt-viewer-auth.xml.h:4 |
231 | 272 | msgid "label" |
232 | msgstr "" | |
273 | msgstr "লেবেল" | |
233 | 274 | |
234 | 275 | #: ../src/virt-viewer-main.c:38 |
235 | 276 | #, c-format |
238 | 279 | |
239 | 280 | #: ../src/virt-viewer-main.c:69 |
240 | 281 | msgid "Attach to the local display using libvirt" |
241 | msgstr "" | |
282 | msgstr "libvirt ব্যৱহাৰ কৰি স্থানীয় প্ৰদৰ্শনলে সংলঘ্ন কৰক" | |
242 | 283 | |
243 | 284 | #: ../src/virt-viewer-main.c:71 |
244 | 285 | msgid "Connect to hypervisor" |
245 | msgstr "" | |
286 | msgstr "হাইপাৰভাইছৰলে সংযোগ কৰক" | |
246 | 287 | |
247 | 288 | #: ../src/virt-viewer-main.c:73 |
248 | 289 | msgid "Wait for domain to start" |
249 | msgstr "" | |
290 | msgstr "ডমেইন আৰম্ভ হবলে অপেক্ষা কৰক" | |
250 | 291 | |
251 | 292 | #: ../src/virt-viewer-main.c:75 |
252 | 293 | msgid "Reconnect to domain upon restart" |
253 | msgstr "" | |
294 | msgstr "পুনৰাম্ভ হওতে ডমেইনলে পুনৰসংযোগ কৰক" | |
254 | 295 | |
255 | 296 | #: ../src/virt-viewer-main.c:92 |
256 | 297 | msgid "Virt Viewer" |
257 | msgstr "" | |
298 | msgstr "Virt দৰ্শক" | |
258 | 299 | |
259 | 300 | #. Setup command line options |
260 | 301 | #: ../src/virt-viewer-main.c:95 |
271 | 312 | "\n" |
272 | 313 | msgstr "\nব্যৱহাৰপদ্ধতি: %s [OPTIONS] DOMAIN-NAME|ID|UUID\n\n%s\n\n" |
273 | 314 | |
274 | #: ../src/virt-viewer-session-spice.c:347 | |
315 | #. Create the widgets | |
316 | #: ../src/virt-viewer-session-spice.c:370 | |
275 | 317 | msgid "Select USB devices for redirection" |
276 | msgstr "" | |
318 | msgstr "পুনৰনিৰ্দেশৰ বাবে USB ডিভাইচসমূহ বাছক" | |
277 | 319 | |
278 | 320 | #: ../src/virt-viewer-session-vnc.c:140 |
279 | 321 | #, c-format |
280 | 322 | 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 | |
284 | 326 | 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 | |
288 | 335 | msgid "Leave fullscreen" |
289 | msgstr "" | |
290 | ||
291 | #: ../src/virt-viewer-window.c:854 | |
336 | msgstr "পূৰ্ণপৰ্দা ত্যাগ কৰক" | |
337 | ||
338 | #: ../src/virt-viewer-window.c:892 | |
292 | 339 | msgid "(Press Ctrl+Alt to release pointer)" |
293 | msgstr "" | |
340 | msgstr "(পোইন্টাৰ এৰিবলে Ctrl+Alt টিপক)" | |
294 | 341 | |
295 | 342 | #. translators: |
296 | 343 | #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - |
298 | 345 | #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt |
299 | 346 | #. Viewer" |
300 | 347 | #. |
301 | #: ../src/virt-viewer-window.c:863 | |
348 | #: ../src/virt-viewer-window.c:901 | |
302 | 349 | #, c-format |
303 | 350 | msgid "%s%s%s - %s" |
304 | msgstr "" | |
351 | msgstr "%s%s%s - %s" | |
305 | 352 | |
306 | 353 | #. translators: <space> |
307 | #: ../src/virt-viewer-window.c:867 | |
354 | #: ../src/virt-viewer-window.c:905 | |
308 | 355 | msgid " " |
309 | msgstr "" | |
356 | msgstr " " | |
310 | 357 | |
311 | 358 | #: ../src/virt-viewer.c:144 |
312 | 359 | msgid "Waiting for guest domain to re-start" |
313 | msgstr "" | |
360 | msgstr "অতিথি ডমেইন পুনৰাম্ভ হোৱাৰ বাবে অপেক্ষা কৰা হৈ আছে" | |
314 | 361 | |
315 | 362 | #: ../src/virt-viewer.c:308 |
316 | 363 | #, c-format |
317 | 364 | msgid "Cannot determine the graphic type for the guest %s" |
318 | msgstr "" | |
365 | msgstr "অতিথি %s ৰ বাবে গ্ৰাফিক ধৰণ নিৰ্ধাৰণ কৰিব নোৱাৰি" | |
319 | 366 | |
320 | 367 | #: ../src/virt-viewer.c:321 |
321 | 368 | #, c-format |
322 | 369 | msgid "Cannot determine the graphic address for the guest %s" |
323 | msgstr "" | |
370 | msgstr "অতিথি %s ৰ বাবে গ্ৰাফিক ঠিকনা নিৰ্ধাৰণ কৰিব নোৱাৰি" | |
324 | 371 | |
325 | 372 | #: ../src/virt-viewer.c:344 |
326 | 373 | #, c-format |
327 | 374 | msgid "Cannot determine the host for the guest %s" |
328 | msgstr "" | |
375 | msgstr "অতিথি %s ৰ বাবে হস্ট নিৰ্ধাৰণ কৰিব নোৱাৰি" | |
329 | 376 | |
330 | 377 | #: ../src/virt-viewer.c:474 |
331 | 378 | msgid "Finding guest domain" |
332 | msgstr "" | |
379 | msgstr "অতিথি ডমেইন বিচৰা" | |
333 | 380 | |
334 | 381 | #: ../src/virt-viewer.c:478 |
335 | 382 | msgid "Waiting for guest domain to be created" |
336 | msgstr "" | |
383 | msgstr "অতিথি ডমেইন সৃষ্টি হোৱালে অপেক্ষা কৰা হৈ আছে" | |
337 | 384 | |
338 | 385 | #: ../src/virt-viewer.c:483 |
339 | 386 | #, c-format |
342 | 389 | |
343 | 390 | #: ../src/virt-viewer.c:490 |
344 | 391 | msgid "Checking guest domain status" |
345 | msgstr "" | |
392 | msgstr "অতিথি ডমেইন অৱস্থা নীৰিক্ষণ কৰা" | |
346 | 393 | |
347 | 394 | #: ../src/virt-viewer.c:497 |
348 | 395 | msgid "Waiting for guest domain to start" |
349 | msgstr "" | |
396 | msgstr "অতিথি ডমেইন আৰম্ভ হোৱালে অপেক্ষা কৰা হৈ আছে" | |
350 | 397 | |
351 | 398 | #: ../src/virt-viewer.c:504 |
352 | 399 | msgid "Waiting for guest domain to start server" |
353 | msgstr "" | |
400 | msgstr "অতিথি ডমেইন দ্বাৰা চাৰ্ভাৰ আৰম্ভ কৰিবলে অপেক্ষা কৰা হৈ আছে" | |
354 | 401 | |
355 | 402 | #: ../src/virt-viewer.c:624 |
356 | 403 | #, c-format |
369 | 416 | #. |
370 | 417 | #: ../src/virt-viewer.xml.h:1 |
371 | 418 | msgid "Automatically resize" |
372 | msgstr "" | |
419 | msgstr "স্বচালিতভাৱে পুনৰআকাৰ দিয়ক" | |
373 | 420 | |
374 | 421 | #: ../src/virt-viewer.xml.h:2 |
375 | 422 | msgid "Ctrl+Alt+F11" |
376 | msgstr "" | |
423 | msgstr "Ctrl+Alt+F11" | |
377 | 424 | |
378 | 425 | #: ../src/virt-viewer.xml.h:3 |
379 | 426 | msgid "Ctrl+Alt+F12" |
380 | msgstr "" | |
427 | msgstr "Ctrl+Alt+F12" | |
381 | 428 | |
382 | 429 | #: ../src/virt-viewer.xml.h:4 |
383 | 430 | msgid "Ctrl+Alt+F1_0" |
384 | msgstr "" | |
431 | msgstr "Ctrl+Alt+F1_0" | |
385 | 432 | |
386 | 433 | #: ../src/virt-viewer.xml.h:5 |
387 | 434 | msgid "Ctrl+Alt+F_1" |
388 | msgstr "" | |
435 | msgstr "Ctrl+Alt+F_1" | |
389 | 436 | |
390 | 437 | #: ../src/virt-viewer.xml.h:6 |
391 | 438 | msgid "Ctrl+Alt+F_2" |
392 | msgstr "" | |
439 | msgstr "Ctrl+Alt+F_2" | |
393 | 440 | |
394 | 441 | #: ../src/virt-viewer.xml.h:7 |
395 | 442 | msgid "Ctrl+Alt+F_3" |
396 | msgstr "" | |
443 | msgstr "Ctrl+Alt+F_3" | |
397 | 444 | |
398 | 445 | #: ../src/virt-viewer.xml.h:8 |
399 | 446 | msgid "Ctrl+Alt+F_4" |
400 | msgstr "" | |
447 | msgstr "Ctrl+Alt+F_4" | |
401 | 448 | |
402 | 449 | #: ../src/virt-viewer.xml.h:9 |
403 | 450 | msgid "Ctrl+Alt+F_5" |
404 | msgstr "" | |
451 | msgstr "Ctrl+Alt+F_5" | |
405 | 452 | |
406 | 453 | #: ../src/virt-viewer.xml.h:10 |
407 | 454 | msgid "Ctrl+Alt+F_6" |
408 | msgstr "" | |
455 | msgstr "Ctrl+Alt+F_6" | |
409 | 456 | |
410 | 457 | #: ../src/virt-viewer.xml.h:11 |
411 | 458 | msgid "Ctrl+Alt+F_7" |
412 | msgstr "" | |
459 | msgstr "Ctrl+Alt+F_7" | |
413 | 460 | |
414 | 461 | #: ../src/virt-viewer.xml.h:12 |
415 | 462 | msgid "Ctrl+Alt+F_8" |
416 | msgstr "" | |
463 | msgstr "Ctrl+Alt+F_8" | |
417 | 464 | |
418 | 465 | #: ../src/virt-viewer.xml.h:13 |
419 | 466 | msgid "Ctrl+Alt+F_9" |
420 | msgstr "" | |
467 | msgstr "Ctrl+Alt+F_9" | |
421 | 468 | |
422 | 469 | #: ../src/virt-viewer.xml.h:14 |
423 | 470 | msgid "Ctrl+Alt+_Backspace" |
424 | msgstr "" | |
471 | msgstr "Ctrl+Alt+_Backspace" | |
425 | 472 | |
426 | 473 | #: ../src/virt-viewer.xml.h:15 |
427 | 474 | msgid "Ctrl+Alt+_Del" |
428 | msgstr "" | |
475 | msgstr "Ctrl+Alt+_Del" | |
429 | 476 | |
430 | 477 | #: ../src/virt-viewer.xml.h:16 |
431 | 478 | msgid "Displays" |
432 | msgstr "" | |
479 | msgstr "প্ৰদৰ্শনসমূহ" | |
433 | 480 | |
434 | 481 | #: ../src/virt-viewer.xml.h:17 |
435 | 482 | msgid "Full screen" |
436 | msgstr "" | |
483 | msgstr "সম্পূৰ্ণ পৰ্দা" | |
437 | 484 | |
438 | 485 | #: ../src/virt-viewer.xml.h:18 |
486 | msgid "Release cursor" | |
487 | msgstr "উন্মোচন কাৰ্চাৰ" | |
488 | ||
489 | #: ../src/virt-viewer.xml.h:19 | |
439 | 490 | msgid "Screenshot" |
440 | msgstr "" | |
441 | ||
442 | #: ../src/virt-viewer.xml.h:19 | |
443 | msgid "USB device selection" | |
444 | msgstr "" | |
491 | msgstr "স্ক্ৰিনশ্বট" | |
445 | 492 | |
446 | 493 | #: ../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 | |
447 | 502 | msgid "_File" |
448 | msgstr "" | |
449 | ||
450 | #: ../src/virt-viewer.xml.h:21 | |
503 | msgstr "নথিপত্ৰ (_F)" | |
504 | ||
505 | #: ../src/virt-viewer.xml.h:24 | |
451 | 506 | msgid "_Help" |
452 | msgstr "" | |
453 | ||
454 | #: ../src/virt-viewer.xml.h:22 | |
507 | msgstr "সহায় (_H)" | |
508 | ||
509 | #: ../src/virt-viewer.xml.h:25 | |
455 | 510 | msgid "_PrintScreen" |
456 | msgstr "" | |
457 | ||
458 | #: ../src/virt-viewer.xml.h:23 | |
511 | msgstr "প্ৰিন্টস্ক্ৰিন (_P)" | |
512 | ||
513 | #: ../src/virt-viewer.xml.h:26 | |
459 | 514 | msgid "_Send key" |
460 | msgstr "" | |
461 | ||
462 | #: ../src/virt-viewer.xml.h:24 | |
515 | msgstr "কি পঠাওক (_S)" | |
516 | ||
517 | #: ../src/virt-viewer.xml.h:27 | |
463 | 518 | msgid "_View" |
464 | msgstr "" | |
465 | ||
466 | #: ../src/virt-viewer.xml.h:25 | |
519 | msgstr "দৰ্শন কৰক (_V)" | |
520 | ||
521 | #: ../src/virt-viewer.xml.h:28 | |
467 | 522 | 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 "_Мащабиране" |
3 | 3 | # |
4 | 4 | # Translators: |
5 | 5 | # Runa Bhattacharjee <runab@redhat.com>, 2010. |
6 | # <runabh@gmail.com>, 2012. | |
6 | 7 | msgid "" |
7 | 8 | msgstr "" |
8 | 9 | "Project-Id-Version: virt-viewer\n" |
9 | 10 | "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" | |
13 | 14 | "Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n" |
14 | 15 | "MIME-Version: 1.0\n" |
15 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
17 | 18 | "Language: bn_IN\n" |
18 | 19 | "Plural-Forms: nplurals=2; plural=(n != 1)\n" |
19 | 20 | |
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 | ||
20 | 61 | #: ../src/remote-viewer-main.c:42 |
21 | 62 | #, c-format |
22 | 63 | msgid "remote-viewer version %s\n" |
23 | msgstr "" | |
64 | msgstr "remote-viewer সংস্করণ %s\n" | |
24 | 65 | |
25 | 66 | #: ../src/remote-viewer-main.c:63 ../src/virt-viewer-main.c:60 |
26 | 67 | msgid "Run '" |
28 | 69 | |
29 | 70 | #: ../src/remote-viewer-main.c:66 ../src/virt-viewer-main.c:63 |
30 | 71 | msgid "Display version information" |
31 | msgstr "" | |
72 | msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে" | |
32 | 73 | |
33 | 74 | #: ../src/remote-viewer-main.c:68 ../src/virt-viewer-main.c:65 |
34 | 75 | msgid "Display verbose information" |
35 | msgstr "" | |
76 | msgstr "ভার্বোস তথ্য প্রদর্শন করা হবে" | |
36 | 77 | |
37 | 78 | #: ../src/remote-viewer-main.c:70 ../src/virt-viewer-main.c:67 |
38 | 79 | msgid "Direct connection with no automatic tunnels" |
39 | msgstr "" | |
80 | msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই" | |
40 | 81 | |
41 | 82 | #: ../src/remote-viewer-main.c:72 ../src/virt-viewer-main.c:77 |
42 | 83 | msgid "Zoom level of window, in percentage" |
43 | msgstr "" | |
84 | msgstr "উইন্ডোর প্রদর্শনের মাপ, শতাংশে ব্যক্ত" | |
44 | 85 | |
45 | 86 | #: ../src/remote-viewer-main.c:74 ../src/virt-viewer-main.c:79 |
46 | 87 | msgid "Display debugging information" |
47 | msgstr "" | |
88 | msgstr "ডিবাগ সংক্রান্ত তথ্য প্রদর্শন করা হবে" | |
48 | 89 | |
49 | 90 | #: ../src/remote-viewer-main.c:76 ../src/virt-viewer-main.c:81 |
50 | 91 | msgid "Open in full screen mode" |
51 | msgstr "" | |
92 | msgstr "সম্পূর্ণ পর্দায় প্রদর্শন করা হবে" | |
52 | 93 | |
53 | 94 | #: ../src/remote-viewer-main.c:79 |
54 | 95 | msgid "Open connection using Spice controller communication" |
55 | msgstr "" | |
96 | msgstr "Spice কন্ট্রোলারের যোগাব্যবস্থার মাধ্যমে সংযোগ আরম্ভ করা হবে" | |
56 | 97 | |
57 | 98 | #. Setup command line options |
58 | 99 | #: ../src/remote-viewer-main.c:92 |
59 | 100 | msgid "- Remote viewer client" |
60 | msgstr "" | |
101 | msgstr "- দূরবর্তী প্রদর্শনব্যবস্থার ক্লায়েন্ট" | |
61 | 102 | |
62 | 103 | #: ../src/remote-viewer-main.c:117 |
63 | 104 | #, c-format |
67 | 108 | "\n" |
68 | 109 | "%s\n" |
69 | 110 | "\n" |
70 | msgstr "" | |
111 | msgstr "\nব্যবহারপ্রণালী: %s [OPTIONS] URI\n\n%s\n\n" | |
71 | 112 | |
72 | 113 | #: ../src/remote-viewer-main.c:122 ../src/virt-viewer-main.c:121 |
73 | 114 | #, c-format |
74 | 115 | 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 | |
78 | 119 | msgid "Failed to initiate connection" |
79 | msgstr "" | |
80 | ||
81 | #: ../src/remote-viewer.c:198 | |
120 | msgstr "সংযোগ আরম্ভ করতে ব্যর্থ" | |
121 | ||
122 | #: ../src/remote-viewer.c:223 | |
82 | 123 | msgid "Display disabled by controller" |
83 | msgstr "" | |
84 | ||
85 | #: ../src/remote-viewer.c:398 | |
124 | msgstr "কন্ট্রোলার দ্বারা প্রদর্শন নিষ্ক্রিয় করা হয়েছে" | |
125 | ||
126 | #: ../src/remote-viewer.c:654 | |
86 | 127 | #, c-format |
87 | 128 | msgid "Controller connection failed: %s" |
88 | msgstr "" | |
89 | ||
90 | #: ../src/remote-viewer.c:452 | |
129 | msgstr "কন্ট্রোলারের সংযোগ স্থাপন করতে ব্যর্থ: %s" | |
130 | ||
131 | #: ../src/remote-viewer.c:708 | |
91 | 132 | 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 | |
95 | 136 | msgid "Setting up Spice session..." |
96 | msgstr "" | |
97 | ||
98 | #: ../src/remote-viewer.c:472 | |
137 | msgstr "Spice-র সেশান প্রস্তুত করা হচ্ছে..." | |
138 | ||
139 | #: ../src/remote-viewer.c:732 | |
99 | 140 | 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 | |
103 | 144 | #, c-format |
104 | 145 | msgid "Couldn't create a session for this type: %s" |
105 | msgstr "" | |
146 | msgstr "এই ধরনের জন্য সেশান প্রস্তুত করা যায়নি: %s" | |
106 | 147 | |
107 | 148 | #. * Local variables: |
108 | 149 | #. * c-indent-level: 4 |
112 | 153 | #. |
113 | 154 | #: ../src/virt-viewer-about.xml.h:1 |
114 | 155 | msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt" |
115 | msgstr "" | |
156 | msgstr "GTK-VNC, SPICE-GTK ও libvirt সহযোগে নির্মিত একটি দূরবর্তী ডেস্কটপ" | |
116 | 157 | |
117 | 158 | #: ../src/virt-viewer-about.xml.h:2 |
118 | 159 | msgid "About Glade" |
119 | msgstr "" | |
160 | msgstr "Glade পরিচিতি" | |
120 | 161 | |
121 | 162 | #: ../src/virt-viewer-about.xml.h:3 |
122 | 163 | msgid "" |
123 | 164 | "Copyright (C) 2007-2012 Daniel P. Berrange\n" |
124 | 165 | "Copyright (C) 2007-2012 Red Hat, Inc." |
125 | msgstr "" | |
166 | msgstr "স্বত্বাধিকার (C) ২০০৭-২০১২ ড্যানিয়েল পি. বেরাঞ্জ\nস্বত্বাধিকার (C) ২০০৭-২০১২ Red Hat, Inc." | |
126 | 167 | |
127 | 168 | #: ../src/virt-viewer-about.xml.h:5 |
128 | 169 | msgid "The Fedora Translation Team" |
129 | msgstr "" | |
170 | msgstr "Fedora-র অনুবাদকদের দল" | |
130 | 171 | |
131 | 172 | #: ../src/virt-viewer-about.xml.h:6 |
132 | 173 | msgid "" |
143 | 184 | "You should have received a copy of the GNU General Public License\n" |
144 | 185 | "along with this program; if not, write to the Free Software\n" |
145 | 186 | "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" | |
147 | 188 | |
148 | 189 | #: ../src/virt-viewer-about.xml.h:20 |
149 | 190 | 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 | |
153 | 194 | 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 | |
157 | 198 | #, c-format |
158 | 199 | 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 | |
162 | 203 | #, c-format |
163 | 204 | 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 | |
167 | 208 | 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 | |
171 | 212 | 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 | |
175 | 216 | 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 | |
179 | 220 | 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 | |
183 | 224 | 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 | |
187 | 228 | 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 | |
191 | 232 | #, c-format |
192 | 233 | 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 | |
196 | 237 | #, c-format |
197 | 238 | msgid "" |
198 | 239 | "Unable to authenticate with remote desktop server at %s: %s\n" |
199 | 240 | "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 | |
203 | 244 | #, c-format |
204 | 245 | 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 | |
208 | 249 | #, c-format |
209 | 250 | msgid "USB redirection error: %s" |
210 | msgstr "" | |
251 | msgstr "USB পুনর্নির্দেশে সমস্যা: %s" | |
211 | 252 | |
212 | 253 | #. * Local variables: |
213 | 254 | #. * c-indent-level: 4 |
217 | 258 | #. |
218 | 259 | #: ../src/virt-viewer-auth.xml.h:1 |
219 | 260 | msgid "Authentication required" |
220 | msgstr "" | |
261 | msgstr "অনুমোদন প্রয়োজন" | |
221 | 262 | |
222 | 263 | #: ../src/virt-viewer-auth.xml.h:2 |
223 | 264 | msgid "Password:" |
224 | msgstr "" | |
265 | msgstr "পাসওয়ার্ড:" | |
225 | 266 | |
226 | 267 | #: ../src/virt-viewer-auth.xml.h:3 |
227 | 268 | msgid "Username:" |
228 | msgstr "" | |
269 | msgstr "ব্যবহারকারীর নাম:" | |
229 | 270 | |
230 | 271 | #: ../src/virt-viewer-auth.xml.h:4 |
231 | 272 | msgid "label" |
232 | msgstr "" | |
273 | msgstr "label" | |
233 | 274 | |
234 | 275 | #: ../src/virt-viewer-main.c:38 |
235 | 276 | #, c-format |
238 | 279 | |
239 | 280 | #: ../src/virt-viewer-main.c:69 |
240 | 281 | msgid "Attach to the local display using libvirt" |
241 | msgstr "" | |
282 | msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন" | |
242 | 283 | |
243 | 284 | #: ../src/virt-viewer-main.c:71 |
244 | 285 | msgid "Connect to hypervisor" |
245 | msgstr "" | |
286 | msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন" | |
246 | 287 | |
247 | 288 | #: ../src/virt-viewer-main.c:73 |
248 | 289 | msgid "Wait for domain to start" |
249 | msgstr "" | |
290 | msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ" | |
250 | 291 | |
251 | 292 | #: ../src/virt-viewer-main.c:75 |
252 | 293 | msgid "Reconnect to domain upon restart" |
253 | msgstr "" | |
294 | msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে" | |
254 | 295 | |
255 | 296 | #: ../src/virt-viewer-main.c:92 |
256 | 297 | msgid "Virt Viewer" |
257 | msgstr "" | |
298 | msgstr "Virt Viewer" | |
258 | 299 | |
259 | 300 | #. Setup command line options |
260 | 301 | #: ../src/virt-viewer-main.c:95 |
271 | 312 | "\n" |
272 | 313 | msgstr "\nব্যবহার পদ্ধতি: %s [OPTIONS] DOMAIN-NAME|ID|UUID\n\n%s\n\n" |
273 | 314 | |
274 | #: ../src/virt-viewer-session-spice.c:347 | |
315 | #. Create the widgets | |
316 | #: ../src/virt-viewer-session-spice.c:370 | |
275 | 317 | msgid "Select USB devices for redirection" |
276 | msgstr "" | |
318 | msgstr "পুনর্নির্দেশের জন্য USB ডিভাইস নির্বাচন করুন" | |
277 | 319 | |
278 | 320 | #: ../src/virt-viewer-session-vnc.c:140 |
279 | 321 | #, c-format |
280 | 322 | 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 | |
284 | 326 | 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 | |
288 | 335 | msgid "Leave fullscreen" |
289 | msgstr "" | |
290 | ||
291 | #: ../src/virt-viewer-window.c:854 | |
336 | msgstr "সম্পূর্ণ পর্দায় প্রদর্শন থেকে প্রস্থান" | |
337 | ||
338 | #: ../src/virt-viewer-window.c:892 | |
292 | 339 | msgid "(Press Ctrl+Alt to release pointer)" |
293 | msgstr "" | |
340 | msgstr "(পয়েন্টার মুক্ত করার জন্য Ctrl+Alt টিপুন)" | |
294 | 341 | |
295 | 342 | #. translators: |
296 | 343 | #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - |
298 | 345 | #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt |
299 | 346 | #. Viewer" |
300 | 347 | #. |
301 | #: ../src/virt-viewer-window.c:863 | |
348 | #: ../src/virt-viewer-window.c:901 | |
302 | 349 | #, c-format |
303 | 350 | msgid "%s%s%s - %s" |
304 | msgstr "" | |
351 | msgstr "%s%s%s - %s" | |
305 | 352 | |
306 | 353 | #. translators: <space> |
307 | #: ../src/virt-viewer-window.c:867 | |
354 | #: ../src/virt-viewer-window.c:905 | |
308 | 355 | msgid " " |
309 | msgstr "" | |
356 | msgstr " " | |
310 | 357 | |
311 | 358 | #: ../src/virt-viewer.c:144 |
312 | 359 | msgid "Waiting for guest domain to re-start" |
313 | msgstr "" | |
360 | msgstr "গেস্ট ডোমেইন পুনরায় আরম্ভের অপেক্ষা করা হচ্ছে" | |
314 | 361 | |
315 | 362 | #: ../src/virt-viewer.c:308 |
316 | 363 | #, c-format |
317 | 364 | msgid "Cannot determine the graphic type for the guest %s" |
318 | msgstr "" | |
365 | msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিকের ধরন নির্ধারণ করা সম্ভব নয়" | |
319 | 366 | |
320 | 367 | #: ../src/virt-viewer.c:321 |
321 | 368 | #, c-format |
322 | 369 | msgid "Cannot determine the graphic address for the guest %s" |
323 | msgstr "" | |
370 | msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিক ঠিকানা নির্ধারণ করা সম্ভব নয়" | |
324 | 371 | |
325 | 372 | #: ../src/virt-viewer.c:344 |
326 | 373 | #, c-format |
327 | 374 | msgid "Cannot determine the host for the guest %s" |
328 | msgstr "" | |
375 | msgstr "%s গেস্ট মেশিনের জন্য হোস্ট নির্ধারণ করা সম্ভব নয়" | |
329 | 376 | |
330 | 377 | #: ../src/virt-viewer.c:474 |
331 | 378 | msgid "Finding guest domain" |
332 | msgstr "" | |
379 | msgstr "গেস্ট ডোমেইন সন্ধান করা হচ্ছে" | |
333 | 380 | |
334 | 381 | #: ../src/virt-viewer.c:478 |
335 | 382 | msgid "Waiting for guest domain to be created" |
336 | msgstr "" | |
383 | msgstr "গেস্ট ডোমেইন প্রস্তুতির অপেক্ষা করা হচ্ছে" | |
337 | 384 | |
338 | 385 | #: ../src/virt-viewer.c:483 |
339 | 386 | #, c-format |
342 | 389 | |
343 | 390 | #: ../src/virt-viewer.c:490 |
344 | 391 | msgid "Checking guest domain status" |
345 | msgstr "" | |
392 | msgstr "গেস্ট ডোমেইনের অবস্থা পরীক্ষা করতে ব্যর্থ" | |
346 | 393 | |
347 | 394 | #: ../src/virt-viewer.c:497 |
348 | 395 | msgid "Waiting for guest domain to start" |
349 | msgstr "" | |
396 | msgstr "গেস্ট ডোমেইন আরম্ভের অপেক্ষা করা হচ্ছে" | |
350 | 397 | |
351 | 398 | #: ../src/virt-viewer.c:504 |
352 | 399 | msgid "Waiting for guest domain to start server" |
353 | msgstr "" | |
400 | msgstr "গেস্ট ডোমেইন দ্বারা সার্ভার আরম্ভের অপেক্ষা করা হচ্ছে" | |
354 | 401 | |
355 | 402 | #: ../src/virt-viewer.c:624 |
356 | 403 | #, c-format |
369 | 416 | #. |
370 | 417 | #: ../src/virt-viewer.xml.h:1 |
371 | 418 | msgid "Automatically resize" |
372 | msgstr "" | |
419 | msgstr "স্বয়ংক্রিয়ভাবে মাপ পরিবর্তন করুন" | |
373 | 420 | |
374 | 421 | #: ../src/virt-viewer.xml.h:2 |
375 | 422 | msgid "Ctrl+Alt+F11" |
376 | msgstr "" | |
423 | msgstr "Ctrl+Alt+F11" | |
377 | 424 | |
378 | 425 | #: ../src/virt-viewer.xml.h:3 |
379 | 426 | msgid "Ctrl+Alt+F12" |
380 | msgstr "" | |
427 | msgstr "Ctrl+Alt+F12" | |
381 | 428 | |
382 | 429 | #: ../src/virt-viewer.xml.h:4 |
383 | 430 | msgid "Ctrl+Alt+F1_0" |
384 | msgstr "" | |
431 | msgstr "Ctrl+Alt+F1_0" | |
385 | 432 | |
386 | 433 | #: ../src/virt-viewer.xml.h:5 |
387 | 434 | msgid "Ctrl+Alt+F_1" |
388 | msgstr "" | |
435 | msgstr "Ctrl+Alt+F_1" | |
389 | 436 | |
390 | 437 | #: ../src/virt-viewer.xml.h:6 |
391 | 438 | msgid "Ctrl+Alt+F_2" |
392 | msgstr "" | |
439 | msgstr "Ctrl+Alt+F_2" | |
393 | 440 | |
394 | 441 | #: ../src/virt-viewer.xml.h:7 |
395 | 442 | msgid "Ctrl+Alt+F_3" |
396 | msgstr "" | |
443 | msgstr "Ctrl+Alt+F_3" | |
397 | 444 | |
398 | 445 | #: ../src/virt-viewer.xml.h:8 |
399 | 446 | msgid "Ctrl+Alt+F_4" |
400 | msgstr "" | |
447 | msgstr "Ctrl+Alt+F_4" | |
401 | 448 | |
402 | 449 | #: ../src/virt-viewer.xml.h:9 |
403 | 450 | msgid "Ctrl+Alt+F_5" |
404 | msgstr "" | |
451 | msgstr "Ctrl+Alt+F_5" | |
405 | 452 | |
406 | 453 | #: ../src/virt-viewer.xml.h:10 |
407 | 454 | msgid "Ctrl+Alt+F_6" |
408 | msgstr "" | |
455 | msgstr "Ctrl+Alt+F_6" | |
409 | 456 | |
410 | 457 | #: ../src/virt-viewer.xml.h:11 |
411 | 458 | msgid "Ctrl+Alt+F_7" |
412 | msgstr "" | |
459 | msgstr "Ctrl+Alt+F_7" | |
413 | 460 | |
414 | 461 | #: ../src/virt-viewer.xml.h:12 |
415 | 462 | msgid "Ctrl+Alt+F_8" |
416 | msgstr "" | |
463 | msgstr "Ctrl+Alt+F_8" | |
417 | 464 | |
418 | 465 | #: ../src/virt-viewer.xml.h:13 |
419 | 466 | msgid "Ctrl+Alt+F_9" |
420 | msgstr "" | |
467 | msgstr "Ctrl+Alt+F_9" | |
421 | 468 | |
422 | 469 | #: ../src/virt-viewer.xml.h:14 |
423 | 470 | msgid "Ctrl+Alt+_Backspace" |
424 | msgstr "" | |
471 | msgstr "Ctrl+Alt+_Backspace" | |
425 | 472 | |
426 | 473 | #: ../src/virt-viewer.xml.h:15 |
427 | 474 | msgid "Ctrl+Alt+_Del" |
428 | msgstr "" | |
475 | msgstr "Ctrl+Alt+_Del" | |
429 | 476 | |
430 | 477 | #: ../src/virt-viewer.xml.h:16 |
431 | 478 | msgid "Displays" |
432 | msgstr "" | |
479 | msgstr "প্রদর্শনক্ষেত্র" | |
433 | 480 | |
434 | 481 | #: ../src/virt-viewer.xml.h:17 |
435 | 482 | msgid "Full screen" |
436 | msgstr "" | |
483 | msgstr "সম্পূর্ণ পর্দায় প্রদর্শন" | |
437 | 484 | |
438 | 485 | #: ../src/virt-viewer.xml.h:18 |
486 | msgid "Release cursor" | |
487 | msgstr "কার্সার মুক্ত করা হবে" | |
488 | ||
489 | #: ../src/virt-viewer.xml.h:19 | |
439 | 490 | msgid "Screenshot" |
440 | msgstr "" | |
441 | ||
442 | #: ../src/virt-viewer.xml.h:19 | |
443 | msgid "USB device selection" | |
444 | msgstr "" | |
491 | msgstr "স্ক্রিন-শট" | |
445 | 492 | |
446 | 493 | #: ../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 | |
447 | 502 | msgid "_File" |
448 | msgstr "" | |
449 | ||
450 | #: ../src/virt-viewer.xml.h:21 | |
503 | msgstr "ফাইল (_F)" | |
504 | ||
505 | #: ../src/virt-viewer.xml.h:24 | |
451 | 506 | msgid "_Help" |
452 | msgstr "" | |
453 | ||
454 | #: ../src/virt-viewer.xml.h:22 | |
507 | msgstr "সহায়তা (_H)" | |
508 | ||
509 | #: ../src/virt-viewer.xml.h:25 | |
455 | 510 | msgid "_PrintScreen" |
456 | msgstr "" | |
457 | ||
458 | #: ../src/virt-viewer.xml.h:23 | |
511 | msgstr "_PrintScreen" | |
512 | ||
513 | #: ../src/virt-viewer.xml.h:26 | |
459 | 514 | msgid "_Send key" |
460 | msgstr "" | |
461 | ||
462 | #: ../src/virt-viewer.xml.h:24 | |
515 | msgstr "কি পাঠিয়ে দিন (_S)" | |
516 | ||
517 | #: ../src/virt-viewer.xml.h:27 | |
463 | 518 | msgid "_View" |
464 | msgstr "" | |
465 | ||
466 | #: ../src/virt-viewer.xml.h:25 | |
519 | msgstr "প্রদর্শন (_V)" | |
520 | ||
521 | #: ../src/virt-viewer.xml.h:28 | |
467 | 522 | 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 | |