Merge lp:~mterry/ubuntu/maverick/simple-scan/simple-scan-2.32.0 into lp:ubuntu/maverick/simple-scan

Proposed by Michael Terry on 2010-09-27
Status: Merged
Merged at revision: 33
Proposed branch: lp:~mterry/ubuntu/maverick/simple-scan/simple-scan-2.32.0
Merge into: lp:ubuntu/maverick/simple-scan
Diff against target: 3058 lines (+892/-856)
43 files modified
NEWS (+4/-0)
aclocal.m4 (+684/-680)
configure (+17/-17)
configure.ac (+1/-1)
debian/changelog (+6/-0)
po/af.po (+1/-1)
po/ar.po (+1/-1)
po/ast.po (+1/-1)
po/bg.po (+10/-10)
po/ca.po (+7/-7)
po/cs.po (+1/-1)
po/da.po (+15/-14)
po/de.po (+7/-6)
po/el.po (+5/-4)
po/en_GB.po (+1/-1)
po/es.po (+1/-1)
po/eu.po (+1/-1)
po/fi.po (+1/-1)
po/fr.po (+10/-9)
po/gl.po (+26/-20)
po/he.po (+1/-1)
po/hr.po (+1/-1)
po/hu.po (+23/-18)
po/it.po (+7/-6)
po/ja.po (+3/-3)
po/lt.po (+1/-1)
po/ms.po (+1/-1)
po/nb.po (+1/-1)
po/nl.po (+1/-1)
po/pl.po (+1/-1)
po/pt.po (+1/-1)
po/pt_BR.po (+1/-1)
po/ro.po (+1/-1)
po/ru.po (+22/-17)
po/sk.po (+1/-1)
po/sl.po (+5/-4)
po/sr.po (+1/-1)
po/sv.po (+9/-9)
po/te.po (+1/-1)
po/tr.po (+1/-1)
po/uk.po (+1/-1)
po/vi.po (+1/-1)
po/zh_CN.po (+7/-7)
To merge this branch: bzr merge lp:~mterry/ubuntu/maverick/simple-scan/simple-scan-2.32.0
Reviewer Review Type Date Requested Status
Ubuntu Development Team 2010-09-27 Pending
Review via email: mp+36714@code.launchpad.net

Description of the Change

GNOME 2.32.0 merge

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'NEWS'
2--- NEWS 2010-09-05 01:17:06 +0000
3+++ NEWS 2010-09-27 13:56:13 +0000
4@@ -1,3 +1,7 @@
5+Overview of changes in simple-scan 2.32.0
6+
7+ * Updated translations
8+
9 Overview of changes in simple-scan 2.31.91
10
11 * Allow pages to be reordered
12
13=== modified file 'aclocal.m4'
14--- aclocal.m4 2010-09-05 01:17:06 +0000
15+++ aclocal.m4 2010-09-27 13:56:13 +0000
16@@ -19,686 +19,6 @@
17 If you have problems, you may need to regenerate the build system entirely.
18 To do so, use the procedure documented by the package, typically `autoreconf'.])])
19
20-dnl AM_GCONF_SOURCE_2
21-dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
22-dnl (i.e. pass to gconftool-2
23-dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
24-dnl you should install foo.schemas files
25-dnl
26-
27-AC_DEFUN([AM_GCONF_SOURCE_2],
28-[
29- if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
30- GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
31- else
32- GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
33- fi
34-
35- AC_ARG_WITH([gconf-source],
36- AC_HELP_STRING([--with-gconf-source=sourceaddress],
37- [Config database for installing schema files.]),
38- [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
39-
40- AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
41- AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
42-
43- if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
44- GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
45- fi
46-
47- AC_ARG_WITH([gconf-schema-file-dir],
48- AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
49- [Directory for installing schema files.]),
50- [GCONF_SCHEMA_FILE_DIR="$withval"],)
51-
52- AC_SUBST(GCONF_SCHEMA_FILE_DIR)
53- AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
54-
55- AC_ARG_ENABLE(schemas-install,
56- AC_HELP_STRING([--disable-schemas-install],
57- [Disable the schemas installation]),
58- [case ${enableval} in
59- yes|no) ;;
60- *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
61- esac])
62- AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
63-])
64-
65-# gnome-common.m4
66-#
67-
68-dnl GNOME_COMMON_INIT
69-
70-AC_DEFUN([GNOME_COMMON_INIT],
71-[
72- dnl this macro should come after AC_CONFIG_MACRO_DIR
73- AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0])
74-
75- dnl ensure that when the Automake generated makefile calls aclocal,
76- dnl it honours the $ACLOCAL_FLAGS environment variable
77- ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
78- if test -n "$ac_macro_dir"; then
79- ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
80- fi
81-
82- AC_SUBST([ACLOCAL_AMFLAGS])
83-])
84-
85-AC_DEFUN([GNOME_DEBUG_CHECK],
86-[
87- AC_ARG_ENABLE([debug],
88- AC_HELP_STRING([--enable-debug],
89- [turn on debugging]),,
90- [enable_debug=no])
91-
92- if test x$enable_debug = xyes ; then
93- AC_DEFINE(GNOME_ENABLE_DEBUG, 1,
94- [Enable additional debugging at the expense of performance and size])
95- fi
96-])
97-
98-dnl GNOME_MAINTAINER_MODE_DEFINES ()
99-dnl define DISABLE_DEPRECATED
100-dnl
101-AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES],
102-[
103- AC_REQUIRE([AM_MAINTAINER_MODE])
104-
105- DISABLE_DEPRECATED=""
106- if test $USE_MAINTAINER_MODE = yes; then
107- DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK GCONF BONOBO BONOBO_UI GNOME LIBGLADE VTE GNOME_VFS WNCK LIBSOUP"
108- for DOMAIN in $DOMAINS; do
109- DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
110- done
111- fi
112-
113- AC_SUBST(DISABLE_DEPRECATED)
114-])
115-
116-dnl GNOME_COMPILE_WARNINGS
117-dnl Turn on many useful compiler warnings
118-dnl For now, only works on GCC
119-AC_DEFUN([GNOME_COMPILE_WARNINGS],[
120- dnl ******************************
121- dnl More compiler warnings
122- dnl ******************************
123-
124- AC_ARG_ENABLE(compile-warnings,
125- AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
126- [Turn on compiler warnings]),,
127- [enable_compile_warnings="m4_default([$1],[yes])"])
128-
129- warnCFLAGS=
130- if test "x$GCC" != xyes; then
131- enable_compile_warnings=no
132- fi
133-
134- warning_flags=
135- realsave_CFLAGS="$CFLAGS"
136-
137- case "$enable_compile_warnings" in
138- no)
139- warning_flags=
140- ;;
141- minimum)
142- warning_flags="-Wall"
143- ;;
144- yes)
145- warning_flags="-Wall -Wmissing-prototypes"
146- ;;
147- maximum|error)
148- warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
149- CFLAGS="$warning_flags $CFLAGS"
150- for option in -Wno-sign-compare; do
151- SAVE_CFLAGS="$CFLAGS"
152- CFLAGS="$CFLAGS $option"
153- AC_MSG_CHECKING([whether gcc understands $option])
154- AC_TRY_COMPILE([], [],
155- has_option=yes,
156- has_option=no,)
157- CFLAGS="$SAVE_CFLAGS"
158- AC_MSG_RESULT($has_option)
159- if test $has_option = yes; then
160- warning_flags="$warning_flags $option"
161- fi
162- unset has_option
163- unset SAVE_CFLAGS
164- done
165- unset option
166- if test "$enable_compile_warnings" = "error" ; then
167- warning_flags="$warning_flags -Werror"
168- fi
169- ;;
170- *)
171- AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
172- ;;
173- esac
174- CFLAGS="$realsave_CFLAGS"
175- AC_MSG_CHECKING(what warning flags to pass to the C compiler)
176- AC_MSG_RESULT($warning_flags)
177-
178- AC_ARG_ENABLE(iso-c,
179- AC_HELP_STRING([--enable-iso-c],
180- [Try to warn if code is not ISO C ]),,
181- [enable_iso_c=no])
182-
183- AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
184- complCFLAGS=
185- if test "x$enable_iso_c" != "xno"; then
186- if test "x$GCC" = "xyes"; then
187- case " $CFLAGS " in
188- *[\ \ ]-ansi[\ \ ]*) ;;
189- *) complCFLAGS="$complCFLAGS -ansi" ;;
190- esac
191- case " $CFLAGS " in
192- *[\ \ ]-pedantic[\ \ ]*) ;;
193- *) complCFLAGS="$complCFLAGS -pedantic" ;;
194- esac
195- fi
196- fi
197- AC_MSG_RESULT($complCFLAGS)
198-
199- WARN_CFLAGS="$warning_flags $complCFLAGS"
200- AC_SUBST(WARN_CFLAGS)
201-])
202-
203-dnl For C++, do basically the same thing.
204-
205-AC_DEFUN([GNOME_CXX_WARNINGS],[
206- AC_ARG_ENABLE(cxx-warnings,
207- AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@]
208- [Turn on compiler warnings.]),,
209- [enable_cxx_warnings="m4_default([$1],[minimum])"])
210-
211- AC_MSG_CHECKING(what warning flags to pass to the C++ compiler)
212- warnCXXFLAGS=
213- if test "x$GXX" != xyes; then
214- enable_cxx_warnings=no
215- fi
216- if test "x$enable_cxx_warnings" != "xno"; then
217- if test "x$GXX" = "xyes"; then
218- case " $CXXFLAGS " in
219- *[\ \ ]-Wall[\ \ ]*) ;;
220- *) warnCXXFLAGS="-Wall -Wno-unused" ;;
221- esac
222-
223- ## -W is not all that useful. And it cannot be controlled
224- ## with individual -Wno-xxx flags, unlike -Wall
225- if test "x$enable_cxx_warnings" = "xyes"; then
226- warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual"
227- fi
228- fi
229- fi
230- AC_MSG_RESULT($warnCXXFLAGS)
231-
232- AC_ARG_ENABLE(iso-cxx,
233- AC_HELP_STRING([--enable-iso-cxx],
234- [Try to warn if code is not ISO C++ ]),,
235- [enable_iso_cxx=no])
236-
237- AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler)
238- complCXXFLAGS=
239- if test "x$enable_iso_cxx" != "xno"; then
240- if test "x$GXX" = "xyes"; then
241- case " $CXXFLAGS " in
242- *[\ \ ]-ansi[\ \ ]*) ;;
243- *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;
244- esac
245-
246- case " $CXXFLAGS " in
247- *[\ \ ]-pedantic[\ \ ]*) ;;
248- *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;
249- esac
250- fi
251- fi
252- AC_MSG_RESULT($complCXXFLAGS)
253-
254- WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"
255- AC_SUBST(WARN_CXXFLAGS)
256-])
257-
258-dnl Do not call GNOME_DOC_DEFINES directly. It is split out from
259-dnl GNOME_DOC_INIT to allow gnome-doc-utils to bootstrap off itself.
260-AC_DEFUN([GNOME_DOC_DEFINES],
261-[
262-AC_ARG_WITH([help-dir],
263- AC_HELP_STRING([--with-help-dir=DIR], [path to help docs]),,
264- [with_help_dir='${datadir}/gnome/help'])
265-HELP_DIR="$with_help_dir"
266-AC_SUBST(HELP_DIR)
267-
268-AC_ARG_WITH([omf-dir],
269- AC_HELP_STRING([--with-omf-dir=DIR], [path to OMF files]),,
270- [with_omf_dir='${datadir}/omf'])
271-OMF_DIR="$with_omf_dir"
272-AC_SUBST(OMF_DIR)
273-
274-AC_ARG_WITH([help-formats],
275- AC_HELP_STRING([--with-help-formats=FORMATS], [list of formats]),,
276- [with_help_formats=''])
277-DOC_USER_FORMATS="$with_help_formats"
278-AC_SUBST(DOC_USER_FORMATS)
279-
280-AC_ARG_ENABLE([scrollkeeper],
281- [AC_HELP_STRING([--disable-scrollkeeper],
282- [do not make updates to the scrollkeeper database])],,
283- enable_scrollkeeper=yes)
284-AM_CONDITIONAL([ENABLE_SK],[test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"])
285-
286-dnl disable scrollkeeper automatically for distcheck
287-DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS"
288-AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
289-
290-AM_CONDITIONAL([HAVE_GNOME_DOC_UTILS],[test "$gdu_cv_have_gdu" = "yes"])
291-])
292-
293-# GNOME_DOC_INIT ([MINIMUM-VERSION],[ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
294-#
295-AC_DEFUN([GNOME_DOC_INIT],
296-[AC_REQUIRE([AC_PROG_LN_S])dnl
297-
298-ifelse([$1],,[gdu_cv_version_required=0.3.2],[gdu_cv_version_required=$1])
299-
300-AC_MSG_CHECKING([gnome-doc-utils >= $gdu_cv_version_required])
301-PKG_CHECK_EXISTS([gnome-doc-utils >= $gdu_cv_version_required],
302- [gdu_cv_have_gdu=yes],[gdu_cv_have_gdu=no])
303-
304-if test "$gdu_cv_have_gdu" = "yes"; then
305- AC_MSG_RESULT([yes])
306- ifelse([$2],,[:],[$2])
307-else
308- AC_MSG_RESULT([no])
309- ifelse([$3],,[AC_MSG_ERROR([gnome-doc-utils >= $gdu_cv_version_required not found])],[$3])
310-fi
311-
312-GNOME_DOC_DEFINES
313-])
314-
315-
316-dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
317-# serial 40 IT_PROG_INTLTOOL
318-AC_DEFUN([IT_PROG_INTLTOOL], [
319-AC_PREREQ([2.50])dnl
320-AC_REQUIRE([AM_NLS])dnl
321-
322-case "$am__api_version" in
323- 1.[01234])
324- AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
325- ;;
326- *)
327- ;;
328-esac
329-
330-if test -n "$1"; then
331- AC_MSG_CHECKING([for intltool >= $1])
332-
333- INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
334- INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
335- [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
336- ]
337- AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
338- test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
339- AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
340-fi
341-
342-AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
343-AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
344-AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
345-if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
346- AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
347-fi
348-
349- 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 $< [$]@'
350-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 $< [$]@'
351- 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 $< [$]@'
352- 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 $< [$]@'
353- INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
354- 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 $< [$]@'
355- 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 $< [$]@'
356- 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 $< [$]@'
357-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 $< [$]@'
358- 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 $< [$]@'
359- 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 $< [$]@'
360- INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@'
361- 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 $< [$]@'
362- 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 $< [$]@'
363- 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 $< [$]@'
364- 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 $< [$]@'
365- 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 $< [$]@'
366- 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 $< [$]@'
367- 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 $< [$]@'
368-
369-_IT_SUBST(INTLTOOL_DESKTOP_RULE)
370-_IT_SUBST(INTLTOOL_DIRECTORY_RULE)
371-_IT_SUBST(INTLTOOL_KEYS_RULE)
372-_IT_SUBST(INTLTOOL_PROP_RULE)
373-_IT_SUBST(INTLTOOL_OAF_RULE)
374-_IT_SUBST(INTLTOOL_PONG_RULE)
375-_IT_SUBST(INTLTOOL_SERVER_RULE)
376-_IT_SUBST(INTLTOOL_SHEET_RULE)
377-_IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
378-_IT_SUBST(INTLTOOL_UI_RULE)
379-_IT_SUBST(INTLTOOL_XAM_RULE)
380-_IT_SUBST(INTLTOOL_KBD_RULE)
381-_IT_SUBST(INTLTOOL_XML_RULE)
382-_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
383-_IT_SUBST(INTLTOOL_CAVES_RULE)
384-_IT_SUBST(INTLTOOL_SCHEMAS_RULE)
385-_IT_SUBST(INTLTOOL_THEME_RULE)
386-_IT_SUBST(INTLTOOL_SERVICE_RULE)
387-_IT_SUBST(INTLTOOL_POLICY_RULE)
388-
389-# Check the gettext tools to make sure they are GNU
390-AC_PATH_PROG(XGETTEXT, xgettext)
391-AC_PATH_PROG(MSGMERGE, msgmerge)
392-AC_PATH_PROG(MSGFMT, msgfmt)
393-AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
394-if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
395- AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
396-fi
397-xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
398-mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
399-mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
400-if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
401- AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
402-fi
403-
404-AC_PATH_PROG(INTLTOOL_PERL, perl)
405-if test -z "$INTLTOOL_PERL"; then
406- AC_MSG_ERROR([perl not found])
407-fi
408-AC_MSG_CHECKING([for perl >= 5.8.1])
409-$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
410-if test $? -ne 0; then
411- AC_MSG_ERROR([perl 5.8.1 is required for intltool])
412-else
413- IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
414- AC_MSG_RESULT([$IT_PERL_VERSION])
415-fi
416-if test "x$2" != "xno-xml"; then
417- AC_MSG_CHECKING([for XML::Parser])
418- if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
419- AC_MSG_RESULT([ok])
420- else
421- AC_MSG_ERROR([XML::Parser perl module is required for intltool])
422- fi
423-fi
424-
425-# Substitute ALL_LINGUAS so we can use it in po/Makefile
426-AC_SUBST(ALL_LINGUAS)
427-
428-# Set DATADIRNAME correctly if it is not set yet
429-# (copied from glib-gettext.m4)
430-if test -z "$DATADIRNAME"; then
431- AC_LINK_IFELSE(
432- [AC_LANG_PROGRAM([[]],
433- [[extern int _nl_msg_cat_cntr;
434- return _nl_msg_cat_cntr]])],
435- [DATADIRNAME=share],
436- [case $host in
437- *-*-solaris*)
438- dnl On Solaris, if bind_textdomain_codeset is in libc,
439- dnl GNU format message catalog is always supported,
440- dnl since both are added to the libc all together.
441- dnl Hence, we'd like to go with DATADIRNAME=share
442- dnl in this case.
443- AC_CHECK_FUNC(bind_textdomain_codeset,
444- [DATADIRNAME=share], [DATADIRNAME=lib])
445- ;;
446- *)
447- [DATADIRNAME=lib]
448- ;;
449- esac])
450-fi
451-AC_SUBST(DATADIRNAME)
452-
453-IT_PO_SUBDIR([po])
454-
455-])
456-
457-
458-# IT_PO_SUBDIR(DIRNAME)
459-# ---------------------
460-# All po subdirs have to be declared with this macro; the subdir "po" is
461-# declared by IT_PROG_INTLTOOL.
462-#
463-AC_DEFUN([IT_PO_SUBDIR],
464-[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
465-dnl
466-dnl The following CONFIG_COMMANDS should be executed at the very end
467-dnl of config.status.
468-AC_CONFIG_COMMANDS_PRE([
469- AC_CONFIG_COMMANDS([$1/stamp-it], [
470- if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
471- AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
472- fi
473- rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
474- >"$1/stamp-it.tmp"
475- [sed '/^#/d
476- s/^[[].*] *//
477- /^[ ]*$/d
478- '"s|^| $ac_top_srcdir/|" \
479- "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
480- ]
481- [sed '/^POTFILES =/,/[^\\]$/ {
482- /^POTFILES =/!d
483- r $1/POTFILES
484- }
485- ' "$1/Makefile.in" >"$1/Makefile"]
486- rm -f "$1/Makefile.tmp"
487- mv "$1/stamp-it.tmp" "$1/stamp-it"
488- ])
489-])dnl
490-])
491-
492-# _IT_SUBST(VARIABLE)
493-# -------------------
494-# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
495-#
496-AC_DEFUN([_IT_SUBST],
497-[
498-AC_SUBST([$1])
499-m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
500-]
501-)
502-
503-# deprecated macros
504-AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
505-# A hint is needed for aclocal from Automake <= 1.9.4:
506-# AC_DEFUN([AC_PROG_INTLTOOL], ...)
507-
508-
509-# nls.m4 serial 5 (gettext-0.18)
510-dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation,
511-dnl Inc.
512-dnl This file is free software; the Free Software Foundation
513-dnl gives unlimited permission to copy and/or distribute it,
514-dnl with or without modifications, as long as this notice is preserved.
515-dnl
516-dnl This file can can be used in projects which are not available under
517-dnl the GNU General Public License or the GNU Library General Public
518-dnl License but which still want to provide support for the GNU gettext
519-dnl functionality.
520-dnl Please note that the actual code of the GNU gettext library is covered
521-dnl by the GNU Library General Public License, and the rest of the GNU
522-dnl gettext package package is covered by the GNU General Public License.
523-dnl They are *not* in the public domain.
524-
525-dnl Authors:
526-dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
527-dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
528-
529-AC_PREREQ([2.50])
530-
531-AC_DEFUN([AM_NLS],
532-[
533- AC_MSG_CHECKING([whether NLS is requested])
534- dnl Default is enabled NLS
535- AC_ARG_ENABLE([nls],
536- [ --disable-nls do not use Native Language Support],
537- USE_NLS=$enableval, USE_NLS=yes)
538- AC_MSG_RESULT([$USE_NLS])
539- AC_SUBST([USE_NLS])
540-])
541-
542-# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
543-# serial 1 (pkg-config-0.24)
544-#
545-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
546-#
547-# This program is free software; you can redistribute it and/or modify
548-# it under the terms of the GNU General Public License as published by
549-# the Free Software Foundation; either version 2 of the License, or
550-# (at your option) any later version.
551-#
552-# This program is distributed in the hope that it will be useful, but
553-# WITHOUT ANY WARRANTY; without even the implied warranty of
554-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
555-# General Public License for more details.
556-#
557-# You should have received a copy of the GNU General Public License
558-# along with this program; if not, write to the Free Software
559-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
560-#
561-# As a special exception to the GNU General Public License, if you
562-# distribute this file as part of a program that contains a
563-# configuration script generated by Autoconf, you may include it under
564-# the same distribution terms that you use for the rest of that program.
565-
566-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
567-# ----------------------------------
568-AC_DEFUN([PKG_PROG_PKG_CONFIG],
569-[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
570-m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
571-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
572-AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
573-AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
574-
575-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
576- AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
577-fi
578-if test -n "$PKG_CONFIG"; then
579- _pkg_min_version=m4_default([$1], [0.9.0])
580- AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
581- if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
582- AC_MSG_RESULT([yes])
583- else
584- AC_MSG_RESULT([no])
585- PKG_CONFIG=""
586- fi
587-fi[]dnl
588-])# PKG_PROG_PKG_CONFIG
589-
590-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
591-#
592-# Check to see whether a particular set of modules exists. Similar
593-# to PKG_CHECK_MODULES(), but does not set variables or print errors.
594-#
595-# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
596-# only at the first occurence in configure.ac, so if the first place
597-# it's called might be skipped (such as if it is within an "if", you
598-# have to call PKG_CHECK_EXISTS manually
599-# --------------------------------------------------------------
600-AC_DEFUN([PKG_CHECK_EXISTS],
601-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
602-if test -n "$PKG_CONFIG" && \
603- AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
604- m4_default([$2], [:])
605-m4_ifvaln([$3], [else
606- $3])dnl
607-fi])
608-
609-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
610-# ---------------------------------------------
611-m4_define([_PKG_CONFIG],
612-[if test -n "$$1"; then
613- pkg_cv_[]$1="$$1"
614- elif test -n "$PKG_CONFIG"; then
615- PKG_CHECK_EXISTS([$3],
616- [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
617- [pkg_failed=yes])
618- else
619- pkg_failed=untried
620-fi[]dnl
621-])# _PKG_CONFIG
622-
623-# _PKG_SHORT_ERRORS_SUPPORTED
624-# -----------------------------
625-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
626-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
627-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
628- _pkg_short_errors_supported=yes
629-else
630- _pkg_short_errors_supported=no
631-fi[]dnl
632-])# _PKG_SHORT_ERRORS_SUPPORTED
633-
634-
635-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
636-# [ACTION-IF-NOT-FOUND])
637-#
638-#
639-# Note that if there is a possibility the first call to
640-# PKG_CHECK_MODULES might not happen, you should be sure to include an
641-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
642-#
643-#
644-# --------------------------------------------------------------
645-AC_DEFUN([PKG_CHECK_MODULES],
646-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
647-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
648-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
649-
650-pkg_failed=no
651-AC_MSG_CHECKING([for $1])
652-
653-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
654-_PKG_CONFIG([$1][_LIBS], [libs], [$2])
655-
656-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
657-and $1[]_LIBS to avoid the need to call pkg-config.
658-See the pkg-config man page for more details.])
659-
660-if test $pkg_failed = yes; then
661- AC_MSG_RESULT([no])
662- _PKG_SHORT_ERRORS_SUPPORTED
663- if test $_pkg_short_errors_supported = yes; then
664- $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
665- else
666- $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
667- fi
668- # Put the nasty error message in config.log where it belongs
669- echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
670-
671- m4_default([$4], [AC_MSG_ERROR(
672-[Package requirements ($2) were not met:
673-
674-$$1_PKG_ERRORS
675-
676-Consider adjusting the PKG_CONFIG_PATH environment variable if you
677-installed software in a non-standard prefix.
678-
679-_PKG_TEXT])dnl
680- ])
681-elif test $pkg_failed = untried; then
682- AC_MSG_RESULT([no])
683- m4_default([$4], [AC_MSG_FAILURE(
684-[The pkg-config script could not be found or is too old. Make sure it
685-is in your PATH or set the PKG_CONFIG environment variable to the full
686-path to pkg-config.
687-
688-_PKG_TEXT
689-
690-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl
691- ])
692-else
693- $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
694- $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
695- AC_MSG_RESULT([yes])
696- $3
697-fi[]dnl
698-])# PKG_CHECK_MODULES
699-
700 # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
701 #
702 # This file is free software; the Free Software Foundation
703@@ -1719,3 +1039,687 @@
704 AC_SUBST([am__untar])
705 ]) # _AM_PROG_TAR
706
707+# nls.m4 serial 3 (gettext-0.15)
708+dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
709+dnl This file is free software; the Free Software Foundation
710+dnl gives unlimited permission to copy and/or distribute it,
711+dnl with or without modifications, as long as this notice is preserved.
712+dnl
713+dnl This file can can be used in projects which are not available under
714+dnl the GNU General Public License or the GNU Library General Public
715+dnl License but which still want to provide support for the GNU gettext
716+dnl functionality.
717+dnl Please note that the actual code of the GNU gettext library is covered
718+dnl by the GNU Library General Public License, and the rest of the GNU
719+dnl gettext package package is covered by the GNU General Public License.
720+dnl They are *not* in the public domain.
721+
722+dnl Authors:
723+dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
724+dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
725+
726+AC_PREREQ(2.50)
727+
728+AC_DEFUN([AM_NLS],
729+[
730+ AC_MSG_CHECKING([whether NLS is requested])
731+ dnl Default is enabled NLS
732+ AC_ARG_ENABLE(nls,
733+ [ --disable-nls do not use Native Language Support],
734+ USE_NLS=$enableval, USE_NLS=yes)
735+ AC_MSG_RESULT($USE_NLS)
736+ AC_SUBST(USE_NLS)
737+])
738+
739+# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
740+# serial 1 (pkg-config-0.24)
741+#
742+# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
743+#
744+# This program is free software; you can redistribute it and/or modify
745+# it under the terms of the GNU General Public License as published by
746+# the Free Software Foundation; either version 2 of the License, or
747+# (at your option) any later version.
748+#
749+# This program is distributed in the hope that it will be useful, but
750+# WITHOUT ANY WARRANTY; without even the implied warranty of
751+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
752+# General Public License for more details.
753+#
754+# You should have received a copy of the GNU General Public License
755+# along with this program; if not, write to the Free Software
756+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
757+#
758+# As a special exception to the GNU General Public License, if you
759+# distribute this file as part of a program that contains a
760+# configuration script generated by Autoconf, you may include it under
761+# the same distribution terms that you use for the rest of that program.
762+
763+# PKG_PROG_PKG_CONFIG([MIN-VERSION])
764+# ----------------------------------
765+AC_DEFUN([PKG_PROG_PKG_CONFIG],
766+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
767+m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
768+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
769+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
770+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
771+
772+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
773+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
774+fi
775+if test -n "$PKG_CONFIG"; then
776+ _pkg_min_version=m4_default([$1], [0.9.0])
777+ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
778+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
779+ AC_MSG_RESULT([yes])
780+ else
781+ AC_MSG_RESULT([no])
782+ PKG_CONFIG=""
783+ fi
784+fi[]dnl
785+])# PKG_PROG_PKG_CONFIG
786+
787+# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
788+#
789+# Check to see whether a particular set of modules exists. Similar
790+# to PKG_CHECK_MODULES(), but does not set variables or print errors.
791+#
792+# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
793+# only at the first occurence in configure.ac, so if the first place
794+# it's called might be skipped (such as if it is within an "if", you
795+# have to call PKG_CHECK_EXISTS manually
796+# --------------------------------------------------------------
797+AC_DEFUN([PKG_CHECK_EXISTS],
798+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
799+if test -n "$PKG_CONFIG" && \
800+ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
801+ m4_default([$2], [:])
802+m4_ifvaln([$3], [else
803+ $3])dnl
804+fi])
805+
806+# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
807+# ---------------------------------------------
808+m4_define([_PKG_CONFIG],
809+[if test -n "$$1"; then
810+ pkg_cv_[]$1="$$1"
811+ elif test -n "$PKG_CONFIG"; then
812+ PKG_CHECK_EXISTS([$3],
813+ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
814+ [pkg_failed=yes])
815+ else
816+ pkg_failed=untried
817+fi[]dnl
818+])# _PKG_CONFIG
819+
820+# _PKG_SHORT_ERRORS_SUPPORTED
821+# -----------------------------
822+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
823+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
824+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
825+ _pkg_short_errors_supported=yes
826+else
827+ _pkg_short_errors_supported=no
828+fi[]dnl
829+])# _PKG_SHORT_ERRORS_SUPPORTED
830+
831+
832+# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
833+# [ACTION-IF-NOT-FOUND])
834+#
835+#
836+# Note that if there is a possibility the first call to
837+# PKG_CHECK_MODULES might not happen, you should be sure to include an
838+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
839+#
840+#
841+# --------------------------------------------------------------
842+AC_DEFUN([PKG_CHECK_MODULES],
843+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
844+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
845+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
846+
847+pkg_failed=no
848+AC_MSG_CHECKING([for $1])
849+
850+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
851+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
852+
853+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
854+and $1[]_LIBS to avoid the need to call pkg-config.
855+See the pkg-config man page for more details.])
856+
857+if test $pkg_failed = yes; then
858+ AC_MSG_RESULT([no])
859+ _PKG_SHORT_ERRORS_SUPPORTED
860+ if test $_pkg_short_errors_supported = yes; then
861+ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
862+ else
863+ $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
864+ fi
865+ # Put the nasty error message in config.log where it belongs
866+ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
867+
868+ m4_default([$4], [AC_MSG_ERROR(
869+[Package requirements ($2) were not met:
870+
871+$$1_PKG_ERRORS
872+
873+Consider adjusting the PKG_CONFIG_PATH environment variable if you
874+installed software in a non-standard prefix.
875+
876+_PKG_TEXT])[]dnl
877+ ])
878+elif test $pkg_failed = untried; then
879+ AC_MSG_RESULT([no])
880+ m4_default([$4], [AC_MSG_FAILURE(
881+[The pkg-config script could not be found or is too old. Make sure it
882+is in your PATH or set the PKG_CONFIG environment variable to the full
883+path to pkg-config.
884+
885+_PKG_TEXT
886+
887+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
888+ ])
889+else
890+ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
891+ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
892+ AC_MSG_RESULT([yes])
893+ $3
894+fi[]dnl
895+])# PKG_CHECK_MODULES
896+
897+dnl AM_GCONF_SOURCE_2
898+dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
899+dnl (i.e. pass to gconftool-2
900+dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
901+dnl you should install foo.schemas files
902+dnl
903+
904+AC_DEFUN([AM_GCONF_SOURCE_2],
905+[
906+ if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
907+ GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
908+ else
909+ GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
910+ fi
911+
912+ AC_ARG_WITH([gconf-source],
913+ AC_HELP_STRING([--with-gconf-source=sourceaddress],
914+ [Config database for installing schema files.]),
915+ [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
916+
917+ AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
918+ AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
919+
920+ if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
921+ GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
922+ fi
923+
924+ AC_ARG_WITH([gconf-schema-file-dir],
925+ AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
926+ [Directory for installing schema files.]),
927+ [GCONF_SCHEMA_FILE_DIR="$withval"],)
928+
929+ AC_SUBST(GCONF_SCHEMA_FILE_DIR)
930+ AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
931+
932+ AC_ARG_ENABLE(schemas-install,
933+ AC_HELP_STRING([--disable-schemas-install],
934+ [Disable the schemas installation]),
935+ [case ${enableval} in
936+ yes|no) ;;
937+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
938+ esac])
939+ AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
940+])
941+
942+# gnome-common.m4
943+#
944+# serial 3
945+#
946+
947+dnl GNOME_COMMON_INIT
948+
949+AU_DEFUN([GNOME_COMMON_INIT],
950+[
951+ dnl this macro should come after AC_CONFIG_MACRO_DIR
952+ AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0])
953+
954+ dnl ensure that when the Automake generated makefile calls aclocal,
955+ dnl it honours the $ACLOCAL_FLAGS environment variable
956+ ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
957+ if test -n "$ac_macro_dir"; then
958+ ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
959+ fi
960+
961+ AC_SUBST([ACLOCAL_AMFLAGS])
962+],
963+[[$0: This macro is deprecated. You should set put "ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}"
964+in your top-level Makefile.am, instead, where "m4" is the macro directory set
965+with AC_CONFIG_MACRO_DIR() in your configure.ac]])
966+
967+AC_DEFUN([GNOME_DEBUG_CHECK],
968+[
969+ AC_ARG_ENABLE([debug],
970+ AC_HELP_STRING([--enable-debug],
971+ [turn on debugging]),,
972+ [enable_debug=no])
973+
974+ if test x$enable_debug = xyes ; then
975+ AC_DEFINE(GNOME_ENABLE_DEBUG, 1,
976+ [Enable additional debugging at the expense of performance and size])
977+ fi
978+])
979+
980+dnl GNOME_MAINTAINER_MODE_DEFINES ()
981+dnl define DISABLE_DEPRECATED
982+dnl
983+AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES],
984+[
985+ AC_REQUIRE([AM_MAINTAINER_MODE])
986+
987+ DISABLE_DEPRECATED=""
988+ if test $USE_MAINTAINER_MODE = yes; then
989+ DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK GCONF BONOBO BONOBO_UI GNOME LIBGLADE VTE GNOME_VFS WNCK LIBSOUP"
990+ for DOMAIN in $DOMAINS; do
991+ DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
992+ done
993+ fi
994+
995+ AC_SUBST(DISABLE_DEPRECATED)
996+])
997+
998+dnl GNOME_COMPILE_WARNINGS
999+dnl Turn on many useful compiler warnings
1000+dnl For now, only works on GCC
1001+AC_DEFUN([GNOME_COMPILE_WARNINGS],[
1002+ dnl ******************************
1003+ dnl More compiler warnings
1004+ dnl ******************************
1005+
1006+ AC_ARG_ENABLE(compile-warnings,
1007+ AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
1008+ [Turn on compiler warnings]),,
1009+ [enable_compile_warnings="m4_default([$1],[yes])"])
1010+
1011+ warnCFLAGS=
1012+ if test "x$GCC" != xyes; then
1013+ enable_compile_warnings=no
1014+ fi
1015+
1016+ warning_flags=
1017+ realsave_CFLAGS="$CFLAGS"
1018+
1019+ case "$enable_compile_warnings" in
1020+ no)
1021+ warning_flags=
1022+ ;;
1023+ minimum)
1024+ warning_flags="-Wall"
1025+ ;;
1026+ yes)
1027+ warning_flags="-Wall -Wmissing-prototypes"
1028+ ;;
1029+ maximum|error)
1030+ warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
1031+ CFLAGS="$warning_flags $CFLAGS"
1032+ for option in -Wno-sign-compare; do
1033+ SAVE_CFLAGS="$CFLAGS"
1034+ CFLAGS="$CFLAGS $option"
1035+ AC_MSG_CHECKING([whether gcc understands $option])
1036+ AC_TRY_COMPILE([], [],
1037+ has_option=yes,
1038+ has_option=no,)
1039+ CFLAGS="$SAVE_CFLAGS"
1040+ AC_MSG_RESULT($has_option)
1041+ if test $has_option = yes; then
1042+ warning_flags="$warning_flags $option"
1043+ fi
1044+ unset has_option
1045+ unset SAVE_CFLAGS
1046+ done
1047+ unset option
1048+ if test "$enable_compile_warnings" = "error" ; then
1049+ warning_flags="$warning_flags -Werror"
1050+ fi
1051+ ;;
1052+ *)
1053+ AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
1054+ ;;
1055+ esac
1056+ CFLAGS="$realsave_CFLAGS"
1057+ AC_MSG_CHECKING(what warning flags to pass to the C compiler)
1058+ AC_MSG_RESULT($warning_flags)
1059+
1060+ AC_ARG_ENABLE(iso-c,
1061+ AC_HELP_STRING([--enable-iso-c],
1062+ [Try to warn if code is not ISO C ]),,
1063+ [enable_iso_c=no])
1064+
1065+ AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
1066+ complCFLAGS=
1067+ if test "x$enable_iso_c" != "xno"; then
1068+ if test "x$GCC" = "xyes"; then
1069+ case " $CFLAGS " in
1070+ *[\ \ ]-ansi[\ \ ]*) ;;
1071+ *) complCFLAGS="$complCFLAGS -ansi" ;;
1072+ esac
1073+ case " $CFLAGS " in
1074+ *[\ \ ]-pedantic[\ \ ]*) ;;
1075+ *) complCFLAGS="$complCFLAGS -pedantic" ;;
1076+ esac
1077+ fi
1078+ fi
1079+ AC_MSG_RESULT($complCFLAGS)
1080+
1081+ WARN_CFLAGS="$warning_flags $complCFLAGS"
1082+ AC_SUBST(WARN_CFLAGS)
1083+])
1084+
1085+dnl For C++, do basically the same thing.
1086+
1087+AC_DEFUN([GNOME_CXX_WARNINGS],[
1088+ AC_ARG_ENABLE(cxx-warnings,
1089+ AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@]
1090+ [Turn on compiler warnings.]),,
1091+ [enable_cxx_warnings="m4_default([$1],[minimum])"])
1092+
1093+ AC_MSG_CHECKING(what warning flags to pass to the C++ compiler)
1094+ warnCXXFLAGS=
1095+ if test "x$GXX" != xyes; then
1096+ enable_cxx_warnings=no
1097+ fi
1098+ if test "x$enable_cxx_warnings" != "xno"; then
1099+ if test "x$GXX" = "xyes"; then
1100+ case " $CXXFLAGS " in
1101+ *[\ \ ]-Wall[\ \ ]*) ;;
1102+ *) warnCXXFLAGS="-Wall -Wno-unused" ;;
1103+ esac
1104+
1105+ ## -W is not all that useful. And it cannot be controlled
1106+ ## with individual -Wno-xxx flags, unlike -Wall
1107+ if test "x$enable_cxx_warnings" = "xyes"; then
1108+ warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual"
1109+ fi
1110+ fi
1111+ fi
1112+ AC_MSG_RESULT($warnCXXFLAGS)
1113+
1114+ AC_ARG_ENABLE(iso-cxx,
1115+ AC_HELP_STRING([--enable-iso-cxx],
1116+ [Try to warn if code is not ISO C++ ]),,
1117+ [enable_iso_cxx=no])
1118+
1119+ AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler)
1120+ complCXXFLAGS=
1121+ if test "x$enable_iso_cxx" != "xno"; then
1122+ if test "x$GXX" = "xyes"; then
1123+ case " $CXXFLAGS " in
1124+ *[\ \ ]-ansi[\ \ ]*) ;;
1125+ *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;
1126+ esac
1127+
1128+ case " $CXXFLAGS " in
1129+ *[\ \ ]-pedantic[\ \ ]*) ;;
1130+ *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;
1131+ esac
1132+ fi
1133+ fi
1134+ AC_MSG_RESULT($complCXXFLAGS)
1135+
1136+ WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"
1137+ AC_SUBST(WARN_CXXFLAGS)
1138+])
1139+
1140+dnl Do not call GNOME_DOC_DEFINES directly. It is split out from
1141+dnl GNOME_DOC_INIT to allow gnome-doc-utils to bootstrap off itself.
1142+AC_DEFUN([GNOME_DOC_DEFINES],
1143+[
1144+AC_ARG_WITH([help-dir],
1145+ AC_HELP_STRING([--with-help-dir=DIR], [path to help docs]),,
1146+ [with_help_dir='${datadir}/gnome/help'])
1147+HELP_DIR="$with_help_dir"
1148+AC_SUBST(HELP_DIR)
1149+
1150+AC_ARG_WITH([omf-dir],
1151+ AC_HELP_STRING([--with-omf-dir=DIR], [path to OMF files]),,
1152+ [with_omf_dir='${datadir}/omf'])
1153+OMF_DIR="$with_omf_dir"
1154+AC_SUBST(OMF_DIR)
1155+
1156+AC_ARG_WITH([help-formats],
1157+ AC_HELP_STRING([--with-help-formats=FORMATS], [list of formats]),,
1158+ [with_help_formats=''])
1159+DOC_USER_FORMATS="$with_help_formats"
1160+AC_SUBST(DOC_USER_FORMATS)
1161+
1162+AC_ARG_ENABLE([scrollkeeper],
1163+ [AC_HELP_STRING([--disable-scrollkeeper],
1164+ [do not make updates to the scrollkeeper database])],,
1165+ enable_scrollkeeper=yes)
1166+AM_CONDITIONAL([ENABLE_SK],[test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"])
1167+
1168+dnl disable scrollkeeper automatically for distcheck
1169+DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS"
1170+AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
1171+
1172+AM_CONDITIONAL([HAVE_GNOME_DOC_UTILS],[test "$gdu_cv_have_gdu" = "yes"])
1173+])
1174+
1175+# GNOME_DOC_INIT ([MINIMUM-VERSION],[ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
1176+#
1177+AC_DEFUN([GNOME_DOC_INIT],
1178+[AC_REQUIRE([AC_PROG_LN_S])dnl
1179+
1180+ifelse([$1],,[gdu_cv_version_required=0.3.2],[gdu_cv_version_required=$1])
1181+
1182+AC_MSG_CHECKING([gnome-doc-utils >= $gdu_cv_version_required])
1183+PKG_CHECK_EXISTS([gnome-doc-utils >= $gdu_cv_version_required],
1184+ [gdu_cv_have_gdu=yes],[gdu_cv_have_gdu=no])
1185+
1186+if test "$gdu_cv_have_gdu" = "yes"; then
1187+ AC_MSG_RESULT([yes])
1188+ ifelse([$2],,[:],[$2])
1189+else
1190+ AC_MSG_RESULT([no])
1191+ ifelse([$3],,[AC_MSG_ERROR([gnome-doc-utils >= $gdu_cv_version_required not found])],[$3])
1192+fi
1193+
1194+GNOME_DOC_DEFINES
1195+])
1196+
1197+
1198+dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
1199+# serial 40 IT_PROG_INTLTOOL
1200+AC_DEFUN([IT_PROG_INTLTOOL], [
1201+AC_PREREQ([2.50])dnl
1202+AC_REQUIRE([AM_NLS])dnl
1203+
1204+case "$am__api_version" in
1205+ 1.[01234])
1206+ AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
1207+ ;;
1208+ *)
1209+ ;;
1210+esac
1211+
1212+if test -n "$1"; then
1213+ AC_MSG_CHECKING([for intltool >= $1])
1214+
1215+ INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
1216+ INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
1217+ [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
1218+ ]
1219+ AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
1220+ test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
1221+ AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
1222+fi
1223+
1224+AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
1225+AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
1226+AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
1227+if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
1228+ AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
1229+fi
1230+
1231+ 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 $< [$]@'
1232+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 $< [$]@'
1233+ 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 $< [$]@'
1234+ 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 $< [$]@'
1235+ INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
1236+ 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 $< [$]@'
1237+ 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 $< [$]@'
1238+ 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 $< [$]@'
1239+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 $< [$]@'
1240+ 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 $< [$]@'
1241+ 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 $< [$]@'
1242+ INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@'
1243+ 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 $< [$]@'
1244+ 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 $< [$]@'
1245+ 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 $< [$]@'
1246+ 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 $< [$]@'
1247+ 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 $< [$]@'
1248+ 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 $< [$]@'
1249+ 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 $< [$]@'
1250+
1251+_IT_SUBST(INTLTOOL_DESKTOP_RULE)
1252+_IT_SUBST(INTLTOOL_DIRECTORY_RULE)
1253+_IT_SUBST(INTLTOOL_KEYS_RULE)
1254+_IT_SUBST(INTLTOOL_PROP_RULE)
1255+_IT_SUBST(INTLTOOL_OAF_RULE)
1256+_IT_SUBST(INTLTOOL_PONG_RULE)
1257+_IT_SUBST(INTLTOOL_SERVER_RULE)
1258+_IT_SUBST(INTLTOOL_SHEET_RULE)
1259+_IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
1260+_IT_SUBST(INTLTOOL_UI_RULE)
1261+_IT_SUBST(INTLTOOL_XAM_RULE)
1262+_IT_SUBST(INTLTOOL_KBD_RULE)
1263+_IT_SUBST(INTLTOOL_XML_RULE)
1264+_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
1265+_IT_SUBST(INTLTOOL_CAVES_RULE)
1266+_IT_SUBST(INTLTOOL_SCHEMAS_RULE)
1267+_IT_SUBST(INTLTOOL_THEME_RULE)
1268+_IT_SUBST(INTLTOOL_SERVICE_RULE)
1269+_IT_SUBST(INTLTOOL_POLICY_RULE)
1270+
1271+# Check the gettext tools to make sure they are GNU
1272+AC_PATH_PROG(XGETTEXT, xgettext)
1273+AC_PATH_PROG(MSGMERGE, msgmerge)
1274+AC_PATH_PROG(MSGFMT, msgfmt)
1275+AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
1276+if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
1277+ AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
1278+fi
1279+xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
1280+mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
1281+mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
1282+if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
1283+ AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
1284+fi
1285+
1286+AC_PATH_PROG(INTLTOOL_PERL, perl)
1287+if test -z "$INTLTOOL_PERL"; then
1288+ AC_MSG_ERROR([perl not found])
1289+fi
1290+AC_MSG_CHECKING([for perl >= 5.8.1])
1291+$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
1292+if test $? -ne 0; then
1293+ AC_MSG_ERROR([perl 5.8.1 is required for intltool])
1294+else
1295+ IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
1296+ AC_MSG_RESULT([$IT_PERL_VERSION])
1297+fi
1298+if test "x$2" != "xno-xml"; then
1299+ AC_MSG_CHECKING([for XML::Parser])
1300+ if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
1301+ AC_MSG_RESULT([ok])
1302+ else
1303+ AC_MSG_ERROR([XML::Parser perl module is required for intltool])
1304+ fi
1305+fi
1306+
1307+# Substitute ALL_LINGUAS so we can use it in po/Makefile
1308+AC_SUBST(ALL_LINGUAS)
1309+
1310+# Set DATADIRNAME correctly if it is not set yet
1311+# (copied from glib-gettext.m4)
1312+if test -z "$DATADIRNAME"; then
1313+ AC_LINK_IFELSE(
1314+ [AC_LANG_PROGRAM([[]],
1315+ [[extern int _nl_msg_cat_cntr;
1316+ return _nl_msg_cat_cntr]])],
1317+ [DATADIRNAME=share],
1318+ [case $host in
1319+ *-*-solaris*)
1320+ dnl On Solaris, if bind_textdomain_codeset is in libc,
1321+ dnl GNU format message catalog is always supported,
1322+ dnl since both are added to the libc all together.
1323+ dnl Hence, we'd like to go with DATADIRNAME=share
1324+ dnl in this case.
1325+ AC_CHECK_FUNC(bind_textdomain_codeset,
1326+ [DATADIRNAME=share], [DATADIRNAME=lib])
1327+ ;;
1328+ *)
1329+ [DATADIRNAME=lib]
1330+ ;;
1331+ esac])
1332+fi
1333+AC_SUBST(DATADIRNAME)
1334+
1335+IT_PO_SUBDIR([po])
1336+
1337+])
1338+
1339+
1340+# IT_PO_SUBDIR(DIRNAME)
1341+# ---------------------
1342+# All po subdirs have to be declared with this macro; the subdir "po" is
1343+# declared by IT_PROG_INTLTOOL.
1344+#
1345+AC_DEFUN([IT_PO_SUBDIR],
1346+[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
1347+dnl
1348+dnl The following CONFIG_COMMANDS should be executed at the very end
1349+dnl of config.status.
1350+AC_CONFIG_COMMANDS_PRE([
1351+ AC_CONFIG_COMMANDS([$1/stamp-it], [
1352+ if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
1353+ AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
1354+ fi
1355+ rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
1356+ >"$1/stamp-it.tmp"
1357+ [sed '/^#/d
1358+ s/^[[].*] *//
1359+ /^[ ]*$/d
1360+ '"s|^| $ac_top_srcdir/|" \
1361+ "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
1362+ ]
1363+ [sed '/^POTFILES =/,/[^\\]$/ {
1364+ /^POTFILES =/!d
1365+ r $1/POTFILES
1366+ }
1367+ ' "$1/Makefile.in" >"$1/Makefile"]
1368+ rm -f "$1/Makefile.tmp"
1369+ mv "$1/stamp-it.tmp" "$1/stamp-it"
1370+ ])
1371+])dnl
1372+])
1373+
1374+# _IT_SUBST(VARIABLE)
1375+# -------------------
1376+# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
1377+#
1378+AC_DEFUN([_IT_SUBST],
1379+[
1380+AC_SUBST([$1])
1381+m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
1382+]
1383+)
1384+
1385+# deprecated macros
1386+AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
1387+# A hint is needed for aclocal from Automake <= 1.9.4:
1388+# AC_DEFUN([AC_PROG_INTLTOOL], ...)
1389+
1390+
1391
1392=== modified file 'configure'
1393--- configure 2010-09-05 01:17:06 +0000
1394+++ configure 2010-09-27 13:56:13 +0000
1395@@ -2111,7 +2111,7 @@
1396 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1397 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1398 as_fn_error $? "failed to load site script $ac_site_file
1399-See \`config.log' for more details" "$LINENO" 5 ; }
1400+See \`config.log' for more details" "$LINENO" 5; }
1401 fi
1402 done
1403
1404@@ -2335,11 +2335,11 @@
1405 '
1406 case `pwd` in
1407 *[\\\"\#\$\&\'\`$am_lf]*)
1408- as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;;
1409+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
1410 esac
1411 case $srcdir in
1412 *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
1413- as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;;
1414+ as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
1415 esac
1416
1417 # Do `set' in a subshell so we don't clobber the current shell's
1418@@ -2667,7 +2667,7 @@
1419
1420 # Define the identity of the package.
1421 PACKAGE=simple-scan
1422- VERSION=2.31.91
1423+ VERSION=2.32.0
1424
1425
1426 cat >>confdefs.h <<_ACEOF
1427@@ -3119,7 +3119,7 @@
1428 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1429 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1430 as_fn_error $? "no acceptable C compiler found in \$PATH
1431-See \`config.log' for more details" "$LINENO" 5 ; }
1432+See \`config.log' for more details" "$LINENO" 5; }
1433
1434 # Provide some information about the compiler.
1435 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
1436@@ -3234,7 +3234,7 @@
1437 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1438 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1439 as_fn_error 77 "C compiler cannot create executables
1440-See \`config.log' for more details" "$LINENO" 5 ; }
1441+See \`config.log' for more details" "$LINENO" 5; }
1442 else
1443 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1444 $as_echo "yes" >&6; }
1445@@ -3277,7 +3277,7 @@
1446 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1447 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1448 as_fn_error $? "cannot compute suffix of executables: cannot compile and link
1449-See \`config.log' for more details" "$LINENO" 5 ; }
1450+See \`config.log' for more details" "$LINENO" 5; }
1451 fi
1452 rm -f conftest conftest$ac_cv_exeext
1453 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
1454@@ -3336,7 +3336,7 @@
1455 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1456 as_fn_error $? "cannot run C compiled programs.
1457 If you meant to cross compile, use \`--host'.
1458-See \`config.log' for more details" "$LINENO" 5 ; }
1459+See \`config.log' for more details" "$LINENO" 5; }
1460 fi
1461 fi
1462 fi
1463@@ -3388,7 +3388,7 @@
1464 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1465 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1466 as_fn_error $? "cannot compute suffix of object files: cannot compile
1467-See \`config.log' for more details" "$LINENO" 5 ; }
1468+See \`config.log' for more details" "$LINENO" 5; }
1469 fi
1470 rm -f conftest.$ac_cv_objext conftest.$ac_ext
1471 fi
1472@@ -4204,7 +4204,7 @@
1473 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1474 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1475 as_fn_error $? "no acceptable C compiler found in \$PATH
1476-See \`config.log' for more details" "$LINENO" 5 ; }
1477+See \`config.log' for more details" "$LINENO" 5; }
1478
1479 # Provide some information about the compiler.
1480 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
1481@@ -4701,7 +4701,7 @@
1482 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1483 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1484 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
1485-See \`config.log' for more details" "$LINENO" 5 ; }
1486+See \`config.log' for more details" "$LINENO" 5; }
1487 fi
1488
1489 ac_ext=c
1490@@ -4991,7 +4991,7 @@
1491 if test "${enable_schemas_install+set}" = set; then :
1492 enableval=$enable_schemas_install; case ${enableval} in
1493 yes|no) ;;
1494- *) as_fn_error $? "bad value ${enableval} for --enable-schemas-install" "$LINENO" 5 ;;
1495+ *) as_fn_error $? "bad value ${enableval} for --enable-schemas-install" "$LINENO" 5 ;;
1496 esac
1497 fi
1498
1499@@ -5415,7 +5415,7 @@
1500 See the pkg-config man page for more details.
1501
1502 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
1503-See \`config.log' for more details" "$LINENO" 5 ; }
1504+See \`config.log' for more details" "$LINENO" 5; }
1505 else
1506 SIMPLE_SCAN_CFLAGS=$pkg_cv_SIMPLE_SCAN_CFLAGS
1507 SIMPLE_SCAN_LIBS=$pkg_cv_SIMPLE_SCAN_LIBS
1508@@ -6917,7 +6917,7 @@
1509 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
1510 "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
1511
1512- *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
1513+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
1514 esac
1515 done
1516
1517@@ -7124,7 +7124,7 @@
1518 esac
1519 case $ac_mode$ac_tag in
1520 :[FHL]*:*);;
1521- :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
1522+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
1523 :[FH]-) ac_tag=-:-;;
1524 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1525 esac
1526@@ -7152,7 +7152,7 @@
1527 [\\/$]*) false;;
1528 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1529 esac ||
1530- as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
1531+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1532 esac
1533 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1534 as_fn_append ac_file_inputs " '$ac_f'"
1535@@ -7179,7 +7179,7 @@
1536
1537 case $ac_tag in
1538 *:-:* | *:-) cat >"$tmp/stdin" \
1539- || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
1540+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
1541 esac
1542 ;;
1543 esac
1544
1545=== modified file 'configure.ac'
1546--- configure.ac 2010-09-05 01:17:06 +0000
1547+++ configure.ac 2010-09-27 13:56:13 +0000
1548@@ -1,7 +1,7 @@
1549 dnl Process this file with autoconf to produce a configure script.
1550
1551 AC_INIT(configure.ac)
1552-AM_INIT_AUTOMAKE(simple-scan, 2.31.91)
1553+AM_INIT_AUTOMAKE(simple-scan, 2.32.0)
1554 AM_MAINTAINER_MODE
1555 GNOME_MAINTAINER_MODE_DEFINES
1556 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
1557
1558=== modified file 'debian/changelog'
1559--- debian/changelog 2010-09-05 01:17:06 +0000
1560+++ debian/changelog 2010-09-27 13:56:13 +0000
1561@@ -1,3 +1,9 @@
1562+simple-scan (2.32.0-0ubuntu1) maverick; urgency=low
1563+
1564+ * New upstream release.
1565+
1566+ -- Michael Terry <mike@mterry.name> Mon, 27 Sep 2010 09:49:26 -0400
1567+
1568 simple-scan (2.31.91-1ubuntu1) maverick; urgency=low
1569
1570 * Merge with Debian experimental (LP: #628773), remaining changes:
1571
1572=== modified file 'po/af.po'
1573--- po/af.po 2010-09-05 01:17:06 +0000
1574+++ po/af.po 2010-09-27 13:56:13 +0000
1575@@ -15,7 +15,7 @@
1576 "MIME-Version: 1.0\n"
1577 "Content-Type: text/plain; charset=UTF-8\n"
1578 "Content-Transfer-Encoding: 8bit\n"
1579-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1580+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
1581 "X-Generator: Launchpad (build Unknown)\n"
1582
1583 #. Radio button for cropping page to 4x6 inch
1584
1585=== modified file 'po/ar.po'
1586--- po/ar.po 2010-09-05 01:17:06 +0000
1587+++ po/ar.po 2010-09-27 13:56:13 +0000
1588@@ -14,7 +14,7 @@
1589 "MIME-Version: 1.0\n"
1590 "Content-Type: text/plain; charset=UTF-8\n"
1591 "Content-Transfer-Encoding: 8bit\n"
1592-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1593+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
1594 "X-Generator: Launchpad (build Unknown)\n"
1595
1596 #. Radio button for cropping page to 4x6 inch
1597
1598=== modified file 'po/ast.po'
1599--- po/ast.po 2010-09-05 01:17:06 +0000
1600+++ po/ast.po 2010-09-27 13:56:13 +0000
1601@@ -15,7 +15,7 @@
1602 "MIME-Version: 1.0\n"
1603 "Content-Type: text/plain; charset=UTF-8\n"
1604 "Content-Transfer-Encoding: 8bit\n"
1605-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1606+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
1607 "X-Generator: Launchpad (build Unknown)\n"
1608
1609 #. Radio button for cropping page to 4x6 inch
1610
1611=== modified file 'po/bg.po'
1612--- po/bg.po 2010-09-05 01:17:06 +0000
1613+++ po/bg.po 2010-09-27 13:56:13 +0000
1614@@ -8,13 +8,13 @@
1615 "Project-Id-Version: simple-scan\n"
1616 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1617 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
1618-"PO-Revision-Date: 2010-08-14 18:50+0000\n"
1619+"PO-Revision-Date: 2010-09-03 13:56+0000\n"
1620 "Last-Translator: Svetoslav Stefanov <svetlisashkov@yahoo.com>\n"
1621 "Language-Team: Bulgarian <bg@li.org>\n"
1622 "MIME-Version: 1.0\n"
1623 "Content-Type: text/plain; charset=UTF-8\n"
1624 "Content-Transfer-Encoding: 8bit\n"
1625-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1626+"X-Launchpad-Export-Date: 2010-09-04 04:57+0000\n"
1627 "X-Generator: Launchpad (build Unknown)\n"
1628
1629 #. Radio button for cropping page to 4x6 inch
1630@@ -40,7 +40,7 @@
1631 #. Toolbar scan menu item to scan all pages from a document feeder
1632 #: ../data/simple-scan.ui.h:10
1633 msgid "All Pages From _Feeder"
1634-msgstr ""
1635+msgstr "Всички страници от _подавача"
1636
1637 #. Combo box label for scanning the back side of a page
1638 #: ../data/simple-scan.ui.h:12
1639@@ -126,7 +126,7 @@
1640 #. Tooltip for save toolbar button
1641 #: ../data/simple-scan.ui.h:42
1642 msgid "Save document to a file"
1643-msgstr ""
1644+msgstr "Запис на документа като файл"
1645
1646 #. Scan menu item
1647 #: ../data/simple-scan.ui.h:44
1648@@ -304,11 +304,11 @@
1649
1650 #: ../data/simple-scan.schemas.in.h:10
1651 msgid "SANE device to acquire images from."
1652-msgstr ""
1653+msgstr "SANE устройство, от което да се получи изображението."
1654
1655 #: ../data/simple-scan.schemas.in.h:11
1656 msgid "TRUE if the application window is maximized"
1657-msgstr ""
1658+msgstr "TRUE ако прозореца на приложението е максимизиран."
1659
1660 #: ../data/simple-scan.schemas.in.h:12
1661 msgid ""
1662@@ -561,7 +561,7 @@
1663 #. Error message display when unable to preview image
1664 #: ../src/ui.c:950
1665 msgid "Unable to open image preview application"
1666-msgstr ""
1667+msgstr "Невъзможно отварянето на приложение за преглед на изображението"
1668
1669 #. Error message displayed when unable to launch help browser
1670 #: ../src/ui.c:1246
1671@@ -621,12 +621,12 @@
1672 #. Text in dialog warning when a document is about to be lost
1673 #: ../src/ui.c:1305
1674 msgid "Save document before quitting?"
1675-msgstr ""
1676+msgstr "Запис на документа преди излизане?"
1677
1678 #. Button in dialog to quit and discard unsaved document
1679 #: ../src/ui.c:1307
1680 msgid "Quit without Saving"
1681-msgstr ""
1682+msgstr "Излизане без запазване"
1683
1684 #. Preferences dialog: Label for minimum resolution in resolution list
1685 #: ../src/ui.c:1449
1686@@ -670,7 +670,7 @@
1687 #. Combo box value for automatic paper size
1688 #: ../src/ui.c:1588
1689 msgid "Automatic"
1690-msgstr ""
1691+msgstr "Автоматично"
1692
1693 #: ../src/ui.c:1866
1694 msgid "Scanned Document.pdf"
1695
1696=== modified file 'po/ca.po'
1697--- po/ca.po 2010-09-05 01:17:06 +0000
1698+++ po/ca.po 2010-09-27 13:56:13 +0000
1699@@ -8,13 +8,13 @@
1700 "Project-Id-Version: simple-scan\n"
1701 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1702 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
1703-"PO-Revision-Date: 2010-08-23 21:21+0000\n"
1704-"Last-Translator: Joan Duran <jodufi@gmail.com>\n"
1705+"PO-Revision-Date: 2010-09-05 10:33+0000\n"
1706+"Last-Translator: David Planella <david.planella@ubuntu.com>\n"
1707 "Language-Team: Catalan <ca@li.org>\n"
1708 "MIME-Version: 1.0\n"
1709 "Content-Type: text/plain; charset=UTF-8\n"
1710 "Content-Transfer-Encoding: 8bit\n"
1711-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1712+"X-Launchpad-Export-Date: 2010-09-06 05:09+0000\n"
1713 "X-Generator: Launchpad (build Unknown)\n"
1714
1715 #. Radio button for cropping page to 4x6 inch
1716@@ -49,7 +49,7 @@
1717
1718 #: ../data/simple-scan.ui.h:13
1719 msgid "Crop"
1720-msgstr ""
1721+msgstr "Escapça"
1722
1723 #: ../data/simple-scan.ui.h:14
1724 msgid "Crop the selected page"
1725@@ -555,7 +555,7 @@
1726 #. Text in dialog warning when a document is about to be lost
1727 #: ../src/ui.c:594
1728 msgid "Save current document?"
1729-msgstr ""
1730+msgstr "Voleu desar el document actual?"
1731
1732 #. Button in dialog to create new document and discard unsaved document
1733 #: ../src/ui.c:596
1734@@ -627,12 +627,12 @@
1735 #. Text in dialog warning when a document is about to be lost
1736 #: ../src/ui.c:1305
1737 msgid "Save document before quitting?"
1738-msgstr ""
1739+msgstr "Voleu desar el document abans de sortir?"
1740
1741 #. Button in dialog to quit and discard unsaved document
1742 #: ../src/ui.c:1307
1743 msgid "Quit without Saving"
1744-msgstr ""
1745+msgstr "Surt sense desar"
1746
1747 #. Preferences dialog: Label for minimum resolution in resolution list
1748 #: ../src/ui.c:1449
1749
1750=== modified file 'po/cs.po'
1751--- po/cs.po 2010-09-05 01:17:06 +0000
1752+++ po/cs.po 2010-09-27 13:56:13 +0000
1753@@ -14,7 +14,7 @@
1754 "MIME-Version: 1.0\n"
1755 "Content-Type: text/plain; charset=UTF-8\n"
1756 "Content-Transfer-Encoding: 8bit\n"
1757-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1758+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
1759 "X-Generator: Launchpad (build Unknown)\n"
1760
1761 #. Radio button for cropping page to 4x6 inch
1762
1763=== modified file 'po/da.po'
1764--- po/da.po 2010-09-05 01:17:06 +0000
1765+++ po/da.po 2010-09-27 13:56:13 +0000
1766@@ -8,13 +8,13 @@
1767 "Project-Id-Version: simple-scan\n"
1768 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1769 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
1770-"PO-Revision-Date: 2010-05-25 09:17+0000\n"
1771+"PO-Revision-Date: 2010-09-07 18:59+0000\n"
1772 "Last-Translator: AJenbo <anders@jenbo.dk>\n"
1773 "Language-Team: Danish <da@li.org>\n"
1774 "MIME-Version: 1.0\n"
1775 "Content-Type: text/plain; charset=UTF-8\n"
1776 "Content-Transfer-Encoding: 8bit\n"
1777-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1778+"X-Launchpad-Export-Date: 2010-09-08 04:56+0000\n"
1779 "X-Generator: Launchpad (build Unknown)\n"
1780
1781 #. Radio button for cropping page to 4x6 inch
1782@@ -72,7 +72,7 @@
1783
1784 #: ../data/simple-scan.ui.h:21
1785 msgid "New"
1786-msgstr "Ny"
1787+msgstr "Nyt"
1788
1789 #. Label beside page size combo box
1790 #: ../data/simple-scan.ui.h:23
1791@@ -141,7 +141,7 @@
1792 #. Label beside scan source combo box
1793 #: ../data/simple-scan.ui.h:48
1794 msgid "Scan S_ource:"
1795-msgstr "Skanner _kilde:"
1796+msgstr "Skanner_kilde:"
1797
1798 #. Label beside scan side combo box
1799 #: ../data/simple-scan.ui.h:50
1800@@ -156,7 +156,7 @@
1801 #. Title of scan window
1802 #: ../data/simple-scan.ui.h:54 ../data/simple-scan.desktop.in.h:2
1803 msgid "Simple Scan"
1804-msgstr "Simpel Skanning"
1805+msgstr "Simpel skanning"
1806
1807 #. Toolbar scan menu item to scan a single page from the scanner
1808 #: ../data/simple-scan.ui.h:56
1809@@ -399,11 +399,11 @@
1810
1811 #: ../data/simple-scan.schemas.in.h:26
1812 msgid "Window height in pixels"
1813-msgstr "Vindueahøjde i pixel"
1814+msgstr "Vindueshøjde i pixel"
1815
1816 #: ../data/simple-scan.schemas.in.h:27
1817 msgid "Window width in pixels"
1818-msgstr "Vindueabredde i pixel"
1819+msgstr "Vinduesbredde i pixel"
1820
1821 #. Error displayed when no scanners to scan with
1822 #: ../src/scanner.c:889
1823@@ -491,7 +491,7 @@
1824 #: ../src/ui.c:151
1825 #, c-format
1826 msgid "Username and password required to access '%s'"
1827-msgstr "Brugernavn og adgangskode er kræves for at tilgå \"%s\""
1828+msgstr "Brugernavn og adgangskode er krævet for at tilgå \"%s\""
1829
1830 #. Warning displayed when no scanners are detected
1831 #: ../src/ui.c:200
1832@@ -546,17 +546,17 @@
1833 #. Text in dialog warning when a document is about to be lost
1834 #: ../src/ui.c:552
1835 msgid "If you don't save, changes will be permanently lost."
1836-msgstr ""
1837+msgstr "Hvis du ikke gemmer, vil ændringer gå permanent tabt."
1838
1839 #. Text in dialog warning when a document is about to be lost
1840 #: ../src/ui.c:594
1841 msgid "Save current document?"
1842-msgstr ""
1843+msgstr "Gem nuværende dokument?"
1844
1845 #. Button in dialog to create new document and discard unsaved document
1846 #: ../src/ui.c:596
1847 msgid "Discard Changes"
1848-msgstr ""
1849+msgstr "Kassér ændringer"
1850
1851 #. Error message display when unable to preview image
1852 #: ../src/ui.c:950
1853@@ -600,18 +600,19 @@
1854 #. Title of about dialog
1855 #: ../src/ui.c:1275
1856 msgid "About Simple Scan"
1857-msgstr "Om Simpel Skanning"
1858+msgstr "Om Simpel skanning"
1859
1860 #. Description of program
1861 #: ../src/ui.c:1278
1862 msgid "Simple document scanning tool"
1863-msgstr "Simpelt dokument skanningsværktøj"
1864+msgstr "Simpelt dokumentskanningsværktøj"
1865
1866 #: ../src/ui.c:1287
1867 msgid "translator-credits"
1868 msgstr ""
1869 "Launchpad Contributions:\n"
1870 " AJenbo https://launchpad.net/~ajenbo\n"
1871+" Ask Hjorth Larsen https://launchpad.net/~askhl\n"
1872 " David Nielsen https://launchpad.net/~davidnielsen\n"
1873 " Kjetil Birkeland Moe https://launchpad.net/~kjetilbmoe\n"
1874 " MadsRH https://launchpad.net/~madsrh\n"
1875@@ -625,7 +626,7 @@
1876 #. Button in dialog to quit and discard unsaved document
1877 #: ../src/ui.c:1307
1878 msgid "Quit without Saving"
1879-msgstr ""
1880+msgstr "Afslut uden at gemme"
1881
1882 #. Preferences dialog: Label for minimum resolution in resolution list
1883 #: ../src/ui.c:1449
1884
1885=== modified file 'po/de.po'
1886--- po/de.po 2010-09-05 01:17:06 +0000
1887+++ po/de.po 2010-09-27 13:56:13 +0000
1888@@ -8,13 +8,13 @@
1889 "Project-Id-Version: simple-scan\n"
1890 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1891 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
1892-"PO-Revision-Date: 2010-07-17 23:44+0000\n"
1893-"Last-Translator: Jan-Christoph Borchardt <JanCBorchardt@gmail.com>\n"
1894+"PO-Revision-Date: 2010-09-01 21:54+0000\n"
1895+"Last-Translator: Daniel Schury <das.surst@googlemail.com>\n"
1896 "Language-Team: German <de@li.org>\n"
1897 "MIME-Version: 1.0\n"
1898 "Content-Type: text/plain; charset=UTF-8\n"
1899 "Content-Transfer-Encoding: 8bit\n"
1900-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1901+"X-Launchpad-Export-Date: 2010-09-02 04:01+0000\n"
1902 "X-Generator: Launchpad (build Unknown)\n"
1903
1904 #. Radio button for cropping page to 4x6 inch
1905@@ -550,11 +550,12 @@
1906 #: ../src/ui.c:552
1907 msgid "If you don't save, changes will be permanently lost."
1908 msgstr ""
1909+"Wenn Sie nicht speichern, werden die Änderungen unwiderruflich verworfen."
1910
1911 #. Text in dialog warning when a document is about to be lost
1912 #: ../src/ui.c:594
1913 msgid "Save current document?"
1914-msgstr ""
1915+msgstr "Aktuelles Dokument speichern?"
1916
1917 #. Button in dialog to create new document and discard unsaved document
1918 #: ../src/ui.c:596
1919@@ -642,12 +643,12 @@
1920 #. Text in dialog warning when a document is about to be lost
1921 #: ../src/ui.c:1305
1922 msgid "Save document before quitting?"
1923-msgstr ""
1924+msgstr "Dokument vor dem Beenden speichern?"
1925
1926 #. Button in dialog to quit and discard unsaved document
1927 #: ../src/ui.c:1307
1928 msgid "Quit without Saving"
1929-msgstr ""
1930+msgstr "Beenden ohne zu speichern"
1931
1932 #. Preferences dialog: Label for minimum resolution in resolution list
1933 #: ../src/ui.c:1449
1934
1935=== modified file 'po/el.po'
1936--- po/el.po 2010-09-05 01:17:06 +0000
1937+++ po/el.po 2010-09-27 13:56:13 +0000
1938@@ -8,13 +8,13 @@
1939 "Project-Id-Version: simple-scan\n"
1940 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1941 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
1942-"PO-Revision-Date: 2010-03-23 00:21+0000\n"
1943-"Last-Translator: Thanos Lefteris <Unknown>\n"
1944+"PO-Revision-Date: 2010-09-26 11:25+0000\n"
1945+"Last-Translator: Christos Spyroglou <Unknown>\n"
1946 "Language-Team: Greek <el@li.org>\n"
1947 "MIME-Version: 1.0\n"
1948 "Content-Type: text/plain; charset=UTF-8\n"
1949 "Content-Transfer-Encoding: 8bit\n"
1950-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1951+"X-Launchpad-Export-Date: 2010-09-27 05:27+0000\n"
1952 "X-Generator: Launchpad (build Unknown)\n"
1953
1954 #. Radio button for cropping page to 4x6 inch
1955@@ -126,7 +126,7 @@
1956 #. Tooltip for save toolbar button
1957 #: ../data/simple-scan.ui.h:42
1958 msgid "Save document to a file"
1959-msgstr ""
1960+msgstr "Αποθήκευση εγγράφου σε αρχείο"
1961
1962 #. Scan menu item
1963 #: ../data/simple-scan.ui.h:44
1964@@ -617,6 +617,7 @@
1965 msgstr ""
1966 "Launchpad Contributions:\n"
1967 " Alex Ferguson https://launchpad.net/~thoughtmonster\n"
1968+" Christos Spyroglou https://launchpad.net/~cspyroglou\n"
1969 " Jennie Petoumenou https://launchpad.net/~jennie\n"
1970 " Thanos Lefteris https://launchpad.net/~alefteris"
1971
1972
1973=== modified file 'po/en_GB.po'
1974--- po/en_GB.po 2010-09-05 01:17:06 +0000
1975+++ po/en_GB.po 2010-09-27 13:56:13 +0000
1976@@ -14,7 +14,7 @@
1977 "MIME-Version: 1.0\n"
1978 "Content-Type: text/plain; charset=UTF-8\n"
1979 "Content-Transfer-Encoding: 8bit\n"
1980-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1981+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
1982 "X-Generator: Launchpad (build Unknown)\n"
1983
1984 #. Radio button for cropping page to 4x6 inch
1985
1986=== modified file 'po/es.po'
1987--- po/es.po 2010-09-05 01:17:06 +0000
1988+++ po/es.po 2010-09-27 13:56:13 +0000
1989@@ -14,7 +14,7 @@
1990 "MIME-Version: 1.0\n"
1991 "Content-Type: text/plain; charset=UTF-8\n"
1992 "Content-Transfer-Encoding: 8bit\n"
1993-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
1994+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
1995 "X-Generator: Launchpad (build Unknown)\n"
1996
1997 #. Radio button for cropping page to 4x6 inch
1998
1999=== modified file 'po/eu.po'
2000--- po/eu.po 2010-09-05 01:17:06 +0000
2001+++ po/eu.po 2010-09-27 13:56:13 +0000
2002@@ -15,7 +15,7 @@
2003 "MIME-Version: 1.0\n"
2004 "Content-Type: text/plain; charset=UTF-8\n"
2005 "Content-Transfer-Encoding: 8bit\n"
2006-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2007+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2008 "X-Generator: Launchpad (build Unknown)\n"
2009
2010 #. Radio button for cropping page to 4x6 inch
2011
2012=== modified file 'po/fi.po'
2013--- po/fi.po 2010-09-05 01:17:06 +0000
2014+++ po/fi.po 2010-09-27 13:56:13 +0000
2015@@ -14,7 +14,7 @@
2016 "MIME-Version: 1.0\n"
2017 "Content-Type: text/plain; charset=UTF-8\n"
2018 "Content-Transfer-Encoding: 8bit\n"
2019-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2020+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2021 "X-Generator: Launchpad (build Unknown)\n"
2022
2023 #. Radio button for cropping page to 4x6 inch
2024
2025=== modified file 'po/fr.po'
2026--- po/fr.po 2010-09-05 01:17:06 +0000
2027+++ po/fr.po 2010-09-27 13:56:13 +0000
2028@@ -8,13 +8,13 @@
2029 "Project-Id-Version: simple-scan\n"
2030 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2031 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2032-"PO-Revision-Date: 2010-05-21 16:03+0000\n"
2033-"Last-Translator: Pierre Slamich <pierre.slamich@gmail.com>\n"
2034+"PO-Revision-Date: 2010-09-05 07:41+0000\n"
2035+"Last-Translator: Bruno Patri <bruno.patri@gmail.com>\n"
2036 "Language-Team: French <fr@li.org>\n"
2037 "MIME-Version: 1.0\n"
2038 "Content-Type: text/plain; charset=UTF-8\n"
2039 "Content-Transfer-Encoding: 8bit\n"
2040-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2041+"X-Launchpad-Export-Date: 2010-09-06 05:09+0000\n"
2042 "X-Generator: Launchpad (build Unknown)\n"
2043
2044 #. Radio button for cropping page to 4x6 inch
2045@@ -147,7 +147,7 @@
2046 #. Label beside scan side combo box
2047 #: ../data/simple-scan.ui.h:50
2048 msgid "Scan Side:"
2049-msgstr ""
2050+msgstr "Face à numériser :"
2051
2052 #. Tooltip for scan toolbar button
2053 #: ../data/simple-scan.ui.h:52
2054@@ -191,7 +191,7 @@
2055 #. Help|Contents menu
2056 #: ../data/simple-scan.ui.h:67
2057 msgid "_Contents"
2058-msgstr ""
2059+msgstr "_Contenus"
2060
2061 #. Label for page crop submenu
2062 #: ../data/simple-scan.ui.h:69
2063@@ -555,16 +555,17 @@
2064 #: ../src/ui.c:552
2065 msgid "If you don't save, changes will be permanently lost."
2066 msgstr ""
2067+"Si vous n'enregistrez pas, les modifications seront définitivement perdues."
2068
2069 #. Text in dialog warning when a document is about to be lost
2070 #: ../src/ui.c:594
2071 msgid "Save current document?"
2072-msgstr ""
2073+msgstr "Enregistrer le document actuel ?"
2074
2075 #. Button in dialog to create new document and discard unsaved document
2076 #: ../src/ui.c:596
2077 msgid "Discard Changes"
2078-msgstr ""
2079+msgstr "Abandonner les modifications"
2080
2081 #. Error message display when unable to preview image
2082 #: ../src/ui.c:950
2083@@ -638,12 +639,12 @@
2084 #. Text in dialog warning when a document is about to be lost
2085 #: ../src/ui.c:1305
2086 msgid "Save document before quitting?"
2087-msgstr ""
2088+msgstr "Enregistrer le document avant de quitter ?"
2089
2090 #. Button in dialog to quit and discard unsaved document
2091 #: ../src/ui.c:1307
2092 msgid "Quit without Saving"
2093-msgstr ""
2094+msgstr "Quitter sans enregistrer"
2095
2096 #. Preferences dialog: Label for minimum resolution in resolution list
2097 #: ../src/ui.c:1449
2098
2099=== modified file 'po/gl.po'
2100--- po/gl.po 2010-09-05 01:17:06 +0000
2101+++ po/gl.po 2010-09-27 13:56:13 +0000
2102@@ -8,13 +8,13 @@
2103 "Project-Id-Version: simple-scan\n"
2104 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2105 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2106-"PO-Revision-Date: 2010-04-22 12:35+0000\n"
2107-"Last-Translator: Manuel Xosé Lemos <Unknown>\n"
2108+"PO-Revision-Date: 2010-09-18 12:41+0000\n"
2109+"Last-Translator: Francisco Diéguez <Unknown>\n"
2110 "Language-Team: Galician <gl@li.org>\n"
2111 "MIME-Version: 1.0\n"
2112 "Content-Type: text/plain; charset=UTF-8\n"
2113 "Content-Transfer-Encoding: 8bit\n"
2114-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2115+"X-Launchpad-Export-Date: 2010-09-19 05:37+0000\n"
2116 "X-Generator: Launchpad (build Unknown)\n"
2117
2118 #. Radio button for cropping page to 4x6 inch
2119@@ -45,7 +45,7 @@
2120 #. Combo box label for scanning the back side of a page
2121 #: ../data/simple-scan.ui.h:12
2122 msgid "Back"
2123-msgstr ""
2124+msgstr "Atrás"
2125
2126 #: ../data/simple-scan.ui.h:13
2127 msgid "Crop"
2128@@ -58,12 +58,12 @@
2129 #. Combo box label for scanning the front side of a page
2130 #: ../data/simple-scan.ui.h:16
2131 msgid "Front"
2132-msgstr ""
2133+msgstr "Anverso"
2134
2135 #. Combo box label for scanning both sides of a page
2136 #: ../data/simple-scan.ui.h:18
2137 msgid "Front and Back"
2138-msgstr ""
2139+msgstr "Anverso e reverso"
2140
2141 #. Radio button for cropping to page to US legal size
2142 #: ../data/simple-scan.ui.h:20
2143@@ -77,7 +77,7 @@
2144 #. Label beside page size combo box
2145 #: ../data/simple-scan.ui.h:23
2146 msgid "Page Size:"
2147-msgstr ""
2148+msgstr "Tamaño da páxina:"
2149
2150 #. Combo box label for photo scan mode
2151 #: ../data/simple-scan.ui.h:25
2152@@ -126,12 +126,12 @@
2153 #. Tooltip for save toolbar button
2154 #: ../data/simple-scan.ui.h:42
2155 msgid "Save document to a file"
2156-msgstr ""
2157+msgstr "Gardar o documento nun ficheiro"
2158
2159 #. Scan menu item
2160 #: ../data/simple-scan.ui.h:44
2161 msgid "Sc_an"
2162-msgstr ""
2163+msgstr "Esc_anear"
2164
2165 #. Label on scan toolbar item
2166 #: ../data/simple-scan.ui.h:46
2167@@ -146,7 +146,7 @@
2168 #. Label beside scan side combo box
2169 #: ../data/simple-scan.ui.h:50
2170 msgid "Scan Side:"
2171-msgstr ""
2172+msgstr "Cara a escanear:"
2173
2174 #. Tooltip for scan toolbar button
2175 #: ../data/simple-scan.ui.h:52
2176@@ -190,7 +190,7 @@
2177 #. Help|Contents menu
2178 #: ../data/simple-scan.ui.h:67
2179 msgid "_Contents"
2180-msgstr ""
2181+msgstr "_Contidos"
2182
2183 #. Label for page crop submenu
2184 #: ../data/simple-scan.ui.h:69
2185@@ -280,7 +280,7 @@
2186
2187 #: ../data/simple-scan.schemas.in.h:4
2188 msgid "Height of paper in tenths of a mm"
2189-msgstr ""
2190+msgstr "Altura do papel en décimas de mm"
2191
2192 #: ../data/simple-scan.schemas.in.h:5
2193 msgid "Height of scanned image in pixels"
2194@@ -288,7 +288,7 @@
2195
2196 #: ../data/simple-scan.schemas.in.h:6
2197 msgid "Page side to scan"
2198-msgstr ""
2199+msgstr "Cara da páxina a escanear"
2200
2201 #: ../data/simple-scan.schemas.in.h:7
2202 msgid "Resolution for photo scans"
2203@@ -338,11 +338,15 @@
2204 "The height of the paper in tenths of a mm (or 0 for automatic paper "
2205 "detection)."
2206 msgstr ""
2207+"A altura do papel en décimas de mm (ou 0 para a detección automática do "
2208+"papel)."
2209
2210 #: ../data/simple-scan.schemas.in.h:16
2211 msgid ""
2212 "The page side to scan. It can be one of the following: 'both' 'front' 'back'"
2213 msgstr ""
2214+"A cara da páxina que desexe escanear. Pode ser un dos seguintes: «ambos», "
2215+"«anverso» e «recverso»"
2216
2217 #: ../data/simple-scan.schemas.in.h:17
2218 msgid "The resolution in dots-per-inch of the previously scanned image."
2219@@ -369,6 +373,8 @@
2220 "The width of the paper in tenths of a mm (or 0 for automatic paper "
2221 "detection)."
2222 msgstr ""
2223+"A largura do papel en décimas de mm (ou 0 para a detección automática do "
2224+"papel)."
2225
2226 #: ../data/simple-scan.schemas.in.h:22
2227 msgid "Type of document being scanned"
2228@@ -386,7 +392,7 @@
2229
2230 #: ../data/simple-scan.schemas.in.h:24
2231 msgid "Width of paper in tenths of a mm"
2232-msgstr ""
2233+msgstr "Largura do papel en décimas de mm"
2234
2235 #: ../data/simple-scan.schemas.in.h:25
2236 msgid "Width of scanned image in pixels"
2237@@ -541,17 +547,17 @@
2238 #. Text in dialog warning when a document is about to be lost
2239 #: ../src/ui.c:552
2240 msgid "If you don't save, changes will be permanently lost."
2241-msgstr ""
2242+msgstr "Se non garda o ficheiro, os seus cambios perderanse permanentemente."
2243
2244 #. Text in dialog warning when a document is about to be lost
2245 #: ../src/ui.c:594
2246 msgid "Save current document?"
2247-msgstr ""
2248+msgstr "Gardar o documento actual?"
2249
2250 #. Button in dialog to create new document and discard unsaved document
2251 #: ../src/ui.c:596
2252 msgid "Discard Changes"
2253-msgstr ""
2254+msgstr "Rexeitar os cambios"
2255
2256 #. Error message display when unable to preview image
2257 #: ../src/ui.c:950
2258@@ -612,12 +618,12 @@
2259 #. Text in dialog warning when a document is about to be lost
2260 #: ../src/ui.c:1305
2261 msgid "Save document before quitting?"
2262-msgstr ""
2263+msgstr "Gardar o documento antes de saír?"
2264
2265 #. Button in dialog to quit and discard unsaved document
2266 #: ../src/ui.c:1307
2267 msgid "Quit without Saving"
2268-msgstr ""
2269+msgstr "Saír sen gardar"
2270
2271 #. Preferences dialog: Label for minimum resolution in resolution list
2272 #: ../src/ui.c:1449
2273@@ -661,7 +667,7 @@
2274 #. Combo box value for automatic paper size
2275 #: ../src/ui.c:1588
2276 msgid "Automatic"
2277-msgstr ""
2278+msgstr "Automático"
2279
2280 #: ../src/ui.c:1866
2281 msgid "Scanned Document.pdf"
2282
2283=== modified file 'po/he.po'
2284--- po/he.po 2010-09-05 01:17:06 +0000
2285+++ po/he.po 2010-09-27 13:56:13 +0000
2286@@ -14,7 +14,7 @@
2287 "MIME-Version: 1.0\n"
2288 "Content-Type: text/plain; charset=UTF-8\n"
2289 "Content-Transfer-Encoding: 8bit\n"
2290-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2291+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2292 "X-Generator: Launchpad (build Unknown)\n"
2293
2294 #. Radio button for cropping page to 4x6 inch
2295
2296=== modified file 'po/hr.po'
2297--- po/hr.po 2010-09-05 01:17:06 +0000
2298+++ po/hr.po 2010-09-27 13:56:13 +0000
2299@@ -15,7 +15,7 @@
2300 "MIME-Version: 1.0\n"
2301 "Content-Type: text/plain; charset=UTF-8\n"
2302 "Content-Transfer-Encoding: 8bit\n"
2303-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2304+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2305 "X-Generator: Launchpad (build Unknown)\n"
2306
2307 #. Radio button for cropping page to 4x6 inch
2308
2309=== modified file 'po/hu.po'
2310--- po/hu.po 2010-09-05 01:17:06 +0000
2311+++ po/hu.po 2010-09-27 13:56:13 +0000
2312@@ -8,13 +8,13 @@
2313 "Project-Id-Version: simple-scan\n"
2314 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2315 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2316-"PO-Revision-Date: 2010-03-31 08:51+0000\n"
2317-"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
2318+"PO-Revision-Date: 2010-09-15 07:36+0000\n"
2319+"Last-Translator: Richard Somlói <level@somloirichard.hu>\n"
2320 "Language-Team: Hungarian <hu@li.org>\n"
2321 "MIME-Version: 1.0\n"
2322 "Content-Type: text/plain; charset=UTF-8\n"
2323 "Content-Transfer-Encoding: 8bit\n"
2324-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2325+"X-Launchpad-Export-Date: 2010-09-16 05:14+0000\n"
2326 "X-Generator: Launchpad (build Unknown)\n"
2327
2328 #. Radio button for cropping page to 4x6 inch
2329@@ -45,7 +45,7 @@
2330 #. Combo box label for scanning the back side of a page
2331 #: ../data/simple-scan.ui.h:12
2332 msgid "Back"
2333-msgstr ""
2334+msgstr "Hátlap"
2335
2336 #: ../data/simple-scan.ui.h:13
2337 msgid "Crop"
2338@@ -58,12 +58,12 @@
2339 #. Combo box label for scanning the front side of a page
2340 #: ../data/simple-scan.ui.h:16
2341 msgid "Front"
2342-msgstr ""
2343+msgstr "Előlap"
2344
2345 #. Combo box label for scanning both sides of a page
2346 #: ../data/simple-scan.ui.h:18
2347 msgid "Front and Back"
2348-msgstr ""
2349+msgstr "Előlap és hátlap"
2350
2351 #. Radio button for cropping to page to US legal size
2352 #: ../data/simple-scan.ui.h:20
2353@@ -77,7 +77,7 @@
2354 #. Label beside page size combo box
2355 #: ../data/simple-scan.ui.h:23
2356 msgid "Page Size:"
2357-msgstr ""
2358+msgstr "Oldalméret:"
2359
2360 #. Combo box label for photo scan mode
2361 #: ../data/simple-scan.ui.h:25
2362@@ -126,7 +126,7 @@
2363 #. Tooltip for save toolbar button
2364 #: ../data/simple-scan.ui.h:42
2365 msgid "Save document to a file"
2366-msgstr ""
2367+msgstr "Dokumentum fájlba mentése"
2368
2369 #. Scan menu item
2370 #: ../data/simple-scan.ui.h:44
2371@@ -146,7 +146,7 @@
2372 #. Label beside scan side combo box
2373 #: ../data/simple-scan.ui.h:50
2374 msgid "Scan Side:"
2375-msgstr ""
2376+msgstr "Oldal szkennelése:"
2377
2378 #. Tooltip for scan toolbar button
2379 #: ../data/simple-scan.ui.h:52
2380@@ -280,7 +280,7 @@
2381
2382 #: ../data/simple-scan.schemas.in.h:4
2383 msgid "Height of paper in tenths of a mm"
2384-msgstr ""
2385+msgstr "Papír magassága tizedmilliméterben"
2386
2387 #: ../data/simple-scan.schemas.in.h:5
2388 msgid "Height of scanned image in pixels"
2389@@ -288,7 +288,7 @@
2390
2391 #: ../data/simple-scan.schemas.in.h:6
2392 msgid "Page side to scan"
2393-msgstr ""
2394+msgstr "Lapok szkennelendő oldala"
2395
2396 #: ../data/simple-scan.schemas.in.h:7
2397 msgid "Resolution for photo scans"
2398@@ -339,11 +339,14 @@
2399 "The height of the paper in tenths of a mm (or 0 for automatic paper "
2400 "detection)."
2401 msgstr ""
2402+"Papír magassága tizedmilliméterben (0 az automatikus papírfelismeréshez)."
2403
2404 #: ../data/simple-scan.schemas.in.h:16
2405 msgid ""
2406 "The page side to scan. It can be one of the following: 'both' 'front' 'back'"
2407 msgstr ""
2408+"Lapok szkennelendő oldala. A lehetséges értékek: „both” (mindkettő) „front” "
2409+"(előlap), „back” (hátlap)"
2410
2411 #: ../data/simple-scan.schemas.in.h:17
2412 msgid "The resolution in dots-per-inch of the previously scanned image."
2413@@ -370,6 +373,7 @@
2414 "The width of the paper in tenths of a mm (or 0 for automatic paper "
2415 "detection)."
2416 msgstr ""
2417+"Papír szélessége tizedmilliméterben (0 az automatikus papírfelismeréshez)."
2418
2419 #: ../data/simple-scan.schemas.in.h:22
2420 msgid "Type of document being scanned"
2421@@ -387,7 +391,7 @@
2422
2423 #: ../data/simple-scan.schemas.in.h:24
2424 msgid "Width of paper in tenths of a mm"
2425-msgstr ""
2426+msgstr "Papír szélessége tizedmilliméterben"
2427
2428 #: ../data/simple-scan.schemas.in.h:25
2429 msgid "Width of scanned image in pixels"
2430@@ -544,17 +548,17 @@
2431 #. Text in dialog warning when a document is about to be lost
2432 #: ../src/ui.c:552
2433 msgid "If you don't save, changes will be permanently lost."
2434-msgstr ""
2435+msgstr "Ha nem ment, akkor a változtatások véglegesen elvesznek."
2436
2437 #. Text in dialog warning when a document is about to be lost
2438 #: ../src/ui.c:594
2439 msgid "Save current document?"
2440-msgstr ""
2441+msgstr "Mentse az aktuális dokumentumot?"
2442
2443 #. Button in dialog to create new document and discard unsaved document
2444 #: ../src/ui.c:596
2445 msgid "Discard Changes"
2446-msgstr ""
2447+msgstr "Módosítások eldobása"
2448
2449 #. Error message display when unable to preview image
2450 #: ../src/ui.c:950
2451@@ -610,6 +614,7 @@
2452 "Launchpad Contributions:\n"
2453 " Gabor Kelemen https://launchpad.net/~kelemeng\n"
2454 " Krasznecz Zoltán https://launchpad.net/~krasznecz-zoltan\n"
2455+" Papp Bence https://launchpad.net/~sclegnrbs\n"
2456 " Pittmann Tamás https://launchpad.net/~zaivaldi\n"
2457 " Richard Somlói https://launchpad.net/~ricsipontaz\n"
2458 " csola48 https://launchpad.net/~mail-csordaslaszlo"
2459@@ -617,12 +622,12 @@
2460 #. Text in dialog warning when a document is about to be lost
2461 #: ../src/ui.c:1305
2462 msgid "Save document before quitting?"
2463-msgstr ""
2464+msgstr "Menti a dokumentumot kilépés előtt?"
2465
2466 #. Button in dialog to quit and discard unsaved document
2467 #: ../src/ui.c:1307
2468 msgid "Quit without Saving"
2469-msgstr ""
2470+msgstr "Kilépés mentés nélkül"
2471
2472 #. Preferences dialog: Label for minimum resolution in resolution list
2473 #: ../src/ui.c:1449
2474@@ -666,7 +671,7 @@
2475 #. Combo box value for automatic paper size
2476 #: ../src/ui.c:1588
2477 msgid "Automatic"
2478-msgstr ""
2479+msgstr "Automatikus"
2480
2481 #: ../src/ui.c:1866
2482 msgid "Scanned Document.pdf"
2483
2484=== modified file 'po/it.po'
2485--- po/it.po 2010-09-05 01:17:06 +0000
2486+++ po/it.po 2010-09-27 13:56:13 +0000
2487@@ -8,13 +8,13 @@
2488 "Project-Id-Version: simple-scan\n"
2489 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2490 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2491-"PO-Revision-Date: 2010-08-17 08:12+0000\n"
2492-"Last-Translator: Paolo Sammicheli <paolo@sammicheli.net>\n"
2493+"PO-Revision-Date: 2010-09-14 14:53+0000\n"
2494+"Last-Translator: Milo Casagrande <milo@casagrande.name>\n"
2495 "Language-Team: Italian <it@li.org>\n"
2496 "MIME-Version: 1.0\n"
2497 "Content-Type: text/plain; charset=UTF-8\n"
2498 "Content-Transfer-Encoding: 8bit\n"
2499-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2500+"X-Launchpad-Export-Date: 2010-09-15 05:15+0000\n"
2501 "X-Generator: Launchpad (build Unknown)\n"
2502
2503 #. Radio button for cropping page to 4x6 inch
2504@@ -387,9 +387,9 @@
2505 "photos. This setting decides on the scan resolution, colors and post-"
2506 "processing."
2507 msgstr ""
2508-"Tipo documento da acquisire. \"text\" per documenti di testo, \"photo\" per "
2509-"fotografie. Questa impostazione influenza la risoluzione dell'acquisizione, "
2510-"le impostazioni di colore e la post-produzione."
2511+"Tipo di documento da acquisire. \"text\" per documenti di testo, \"photo\" "
2512+"per fotografie. Questa impostazione influenza la risoluzione "
2513+"dell'acquisizione, le impostazioni di colore e la post-produzione."
2514
2515 #: ../data/simple-scan.schemas.in.h:24
2516 msgid "Width of paper in tenths of a mm"
2517@@ -625,6 +625,7 @@
2518 " Giasone https://launchpad.net/~giasone\n"
2519 " Luca Reverberi https://launchpad.net/~ilreve\n"
2520 " Marco Lazzaroni https://launchpad.net/~marcolazzaroni\n"
2521+" Milo Casagrande https://launchpad.net/~milo\n"
2522 " Paolo Sammicheli https://launchpad.net/~xdatap1\n"
2523 " Vincenzo Ninni https://launchpad.net/~wampon\n"
2524 " alexinfurs https://launchpad.net/~alexinfurs\n"
2525
2526=== modified file 'po/ja.po'
2527--- po/ja.po 2010-09-05 01:17:06 +0000
2528+++ po/ja.po 2010-09-27 13:56:13 +0000
2529@@ -8,13 +8,13 @@
2530 "Project-Id-Version: simple-scan\n"
2531 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2532 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2533-"PO-Revision-Date: 2010-06-17 01:01+0000\n"
2534+"PO-Revision-Date: 2010-08-30 16:07+0000\n"
2535 "Last-Translator: Shushi Kurose <md81bird@hitaki.net>\n"
2536 "Language-Team: Japanese <ja@li.org>\n"
2537 "MIME-Version: 1.0\n"
2538 "Content-Type: text/plain; charset=UTF-8\n"
2539 "Content-Transfer-Encoding: 8bit\n"
2540-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2541+"X-Launchpad-Export-Date: 2010-08-31 04:06+0000\n"
2542 "X-Generator: Launchpad (build Unknown)\n"
2543
2544 #. Radio button for cropping page to 4x6 inch
2545@@ -280,7 +280,7 @@
2546
2547 #: ../data/simple-scan.schemas.in.h:4
2548 msgid "Height of paper in tenths of a mm"
2549-msgstr ""
2550+msgstr "10mm単位の用紙の高さ"
2551
2552 #: ../data/simple-scan.schemas.in.h:5
2553 msgid "Height of scanned image in pixels"
2554
2555=== modified file 'po/lt.po'
2556--- po/lt.po 2010-09-05 01:17:06 +0000
2557+++ po/lt.po 2010-09-27 13:56:13 +0000
2558@@ -15,7 +15,7 @@
2559 "MIME-Version: 1.0\n"
2560 "Content-Type: text/plain; charset=UTF-8\n"
2561 "Content-Transfer-Encoding: 8bit\n"
2562-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2563+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2564 "X-Generator: Launchpad (build Unknown)\n"
2565
2566 #. Radio button for cropping page to 4x6 inch
2567
2568=== modified file 'po/ms.po'
2569--- po/ms.po 2010-09-05 01:17:06 +0000
2570+++ po/ms.po 2010-09-27 13:56:13 +0000
2571@@ -15,7 +15,7 @@
2572 "MIME-Version: 1.0\n"
2573 "Content-Type: text/plain; charset=UTF-8\n"
2574 "Content-Transfer-Encoding: 8bit\n"
2575-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2576+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2577 "X-Generator: Launchpad (build Unknown)\n"
2578
2579 #. Radio button for cropping page to 4x6 inch
2580
2581=== modified file 'po/nb.po'
2582--- po/nb.po 2010-09-05 01:17:06 +0000
2583+++ po/nb.po 2010-09-27 13:56:13 +0000
2584@@ -14,7 +14,7 @@
2585 "MIME-Version: 1.0\n"
2586 "Content-Type: text/plain; charset=UTF-8\n"
2587 "Content-Transfer-Encoding: 8bit\n"
2588-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2589+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2590 "X-Generator: Launchpad (build Unknown)\n"
2591
2592 #. Radio button for cropping page to 4x6 inch
2593
2594=== modified file 'po/nl.po'
2595--- po/nl.po 2010-09-05 01:17:06 +0000
2596+++ po/nl.po 2010-09-27 13:56:13 +0000
2597@@ -14,7 +14,7 @@
2598 "MIME-Version: 1.0\n"
2599 "Content-Type: text/plain; charset=UTF-8\n"
2600 "Content-Transfer-Encoding: 8bit\n"
2601-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2602+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2603 "X-Generator: Launchpad (build Unknown)\n"
2604
2605 #. Radio button for cropping page to 4x6 inch
2606
2607=== modified file 'po/pl.po'
2608--- po/pl.po 2010-09-05 01:17:06 +0000
2609+++ po/pl.po 2010-09-27 13:56:13 +0000
2610@@ -14,7 +14,7 @@
2611 "MIME-Version: 1.0\n"
2612 "Content-Type: text/plain; charset=UTF-8\n"
2613 "Content-Transfer-Encoding: 8bit\n"
2614-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2615+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2616 "X-Generator: Launchpad (build Unknown)\n"
2617
2618 #. Radio button for cropping page to 4x6 inch
2619
2620=== modified file 'po/pt.po'
2621--- po/pt.po 2010-09-05 01:17:06 +0000
2622+++ po/pt.po 2010-09-27 13:56:13 +0000
2623@@ -14,7 +14,7 @@
2624 "MIME-Version: 1.0\n"
2625 "Content-Type: text/plain; charset=UTF-8\n"
2626 "Content-Transfer-Encoding: 8bit\n"
2627-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2628+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2629 "X-Generator: Launchpad (build Unknown)\n"
2630
2631 #. Radio button for cropping page to 4x6 inch
2632
2633=== modified file 'po/pt_BR.po'
2634--- po/pt_BR.po 2010-09-05 01:17:06 +0000
2635+++ po/pt_BR.po 2010-09-27 13:56:13 +0000
2636@@ -14,7 +14,7 @@
2637 "MIME-Version: 1.0\n"
2638 "Content-Type: text/plain; charset=UTF-8\n"
2639 "Content-Transfer-Encoding: 8bit\n"
2640-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2641+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2642 "X-Generator: Launchpad (build Unknown)\n"
2643
2644 #. Radio button for cropping page to 4x6 inch
2645
2646=== modified file 'po/ro.po'
2647--- po/ro.po 2010-09-05 01:17:06 +0000
2648+++ po/ro.po 2010-09-27 13:56:13 +0000
2649@@ -14,7 +14,7 @@
2650 "MIME-Version: 1.0\n"
2651 "Content-Type: text/plain; charset=UTF-8\n"
2652 "Content-Transfer-Encoding: 8bit\n"
2653-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2654+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2655 "X-Generator: Launchpad (build Unknown)\n"
2656 "Language: ro\n"
2657
2658
2659=== modified file 'po/ru.po'
2660--- po/ru.po 2010-09-05 01:17:06 +0000
2661+++ po/ru.po 2010-09-27 13:56:13 +0000
2662@@ -8,13 +8,13 @@
2663 "Project-Id-Version: simple-scan\n"
2664 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2665 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2666-"PO-Revision-Date: 2010-04-10 14:59+0000\n"
2667-"Last-Translator: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>\n"
2668+"PO-Revision-Date: 2010-09-25 06:30+0000\n"
2669+"Last-Translator: Dmitri Konoplev <Unknown>\n"
2670 "Language-Team: Russian <ru@li.org>\n"
2671 "MIME-Version: 1.0\n"
2672 "Content-Type: text/plain; charset=UTF-8\n"
2673 "Content-Transfer-Encoding: 8bit\n"
2674-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2675+"X-Launchpad-Export-Date: 2010-09-26 05:29+0000\n"
2676 "X-Generator: Launchpad (build Unknown)\n"
2677
2678 #. Radio button for cropping page to 4x6 inch
2679@@ -45,7 +45,7 @@
2680 #. Combo box label for scanning the back side of a page
2681 #: ../data/simple-scan.ui.h:12
2682 msgid "Back"
2683-msgstr ""
2684+msgstr "Обратная сторона"
2685
2686 #: ../data/simple-scan.ui.h:13
2687 msgid "Crop"
2688@@ -58,12 +58,12 @@
2689 #. Combo box label for scanning the front side of a page
2690 #: ../data/simple-scan.ui.h:16
2691 msgid "Front"
2692-msgstr ""
2693+msgstr "Лицевая сторона"
2694
2695 #. Combo box label for scanning both sides of a page
2696 #: ../data/simple-scan.ui.h:18
2697 msgid "Front and Back"
2698-msgstr ""
2699+msgstr "Обе стороны"
2700
2701 #. Radio button for cropping to page to US legal size
2702 #: ../data/simple-scan.ui.h:20
2703@@ -77,7 +77,7 @@
2704 #. Label beside page size combo box
2705 #: ../data/simple-scan.ui.h:23
2706 msgid "Page Size:"
2707-msgstr ""
2708+msgstr "Размер листа"
2709
2710 #. Combo box label for photo scan mode
2711 #: ../data/simple-scan.ui.h:25
2712@@ -126,7 +126,7 @@
2713 #. Tooltip for save toolbar button
2714 #: ../data/simple-scan.ui.h:42
2715 msgid "Save document to a file"
2716-msgstr ""
2717+msgstr "Сохранить документ в файл"
2718
2719 #. Scan menu item
2720 #: ../data/simple-scan.ui.h:44
2721@@ -146,7 +146,7 @@
2722 #. Label beside scan side combo box
2723 #: ../data/simple-scan.ui.h:50
2724 msgid "Scan Side:"
2725-msgstr ""
2726+msgstr "Сканируемая сторона:"
2727
2728 #. Tooltip for scan toolbar button
2729 #: ../data/simple-scan.ui.h:52
2730@@ -288,7 +288,7 @@
2731
2732 #: ../data/simple-scan.schemas.in.h:6
2733 msgid "Page side to scan"
2734-msgstr ""
2735+msgstr "Сторона страницы для сканирования"
2736
2737 #: ../data/simple-scan.schemas.in.h:7
2738 msgid "Resolution for photo scans"
2739@@ -342,6 +342,8 @@
2740 msgid ""
2741 "The page side to scan. It can be one of the following: 'both' 'front' 'back'"
2742 msgstr ""
2743+"Сторона страницы для сканирования. Может быть: 'с обоих сторон', 'лицевая', "
2744+"'обратная'"
2745
2746 #: ../data/simple-scan.schemas.in.h:17
2747 msgid "The resolution in dots-per-inch of the previously scanned image."
2748@@ -386,7 +388,7 @@
2749
2750 #: ../data/simple-scan.schemas.in.h:24
2751 msgid "Width of paper in tenths of a mm"
2752-msgstr ""
2753+msgstr "Ширина бумаги, см"
2754
2755 #: ../data/simple-scan.schemas.in.h:25
2756 msgid "Width of scanned image in pixels"
2757@@ -539,17 +541,17 @@
2758 #. Text in dialog warning when a document is about to be lost
2759 #: ../src/ui.c:552
2760 msgid "If you don't save, changes will be permanently lost."
2761-msgstr ""
2762+msgstr "Если не выполнить сохранение, все изменения будут утеряны."
2763
2764 #. Text in dialog warning when a document is about to be lost
2765 #: ../src/ui.c:594
2766 msgid "Save current document?"
2767-msgstr ""
2768+msgstr "Сохранить текущий документ?"
2769
2770 #. Button in dialog to create new document and discard unsaved document
2771 #: ../src/ui.c:596
2772 msgid "Discard Changes"
2773-msgstr ""
2774+msgstr "Отменить изменения"
2775
2776 #. Error message display when unable to preview image
2777 #: ../src/ui.c:950
2778@@ -607,7 +609,10 @@
2779 " Alexander Telenga https://launchpad.net/~telenga\n"
2780 " Alexandre Prokoudine https://launchpad.net/~alexandre-prokoudine\n"
2781 " Alexey Kotlyarov https://launchpad.net/~koterpillar\n"
2782+" Alsvartr https://launchpad.net/~pavel-nazarov\n"
2783 " Andrew Sudarikov https://launchpad.net/~andrey-interra\n"
2784+" Dmitri Konoplev https://launchpad.net/~knoplef\n"
2785+" KEIII https://launchpad.net/~cashagent\n"
2786 " Oleg https://launchpad.net/~oleg-devyatilov\n"
2787 " Oleg Koptev https://launchpad.net/~koptev-oleg\n"
2788 " Артём Попов https://launchpad.net/~artfwo"
2789@@ -615,12 +620,12 @@
2790 #. Text in dialog warning when a document is about to be lost
2791 #: ../src/ui.c:1305
2792 msgid "Save document before quitting?"
2793-msgstr ""
2794+msgstr "Сохранить документ перед выходом?"
2795
2796 #. Button in dialog to quit and discard unsaved document
2797 #: ../src/ui.c:1307
2798 msgid "Quit without Saving"
2799-msgstr ""
2800+msgstr "Выйти без сохранения"
2801
2802 #. Preferences dialog: Label for minimum resolution in resolution list
2803 #: ../src/ui.c:1449
2804@@ -664,7 +669,7 @@
2805 #. Combo box value for automatic paper size
2806 #: ../src/ui.c:1588
2807 msgid "Automatic"
2808-msgstr ""
2809+msgstr "Выбрать автоматически"
2810
2811 #: ../src/ui.c:1866
2812 msgid "Scanned Document.pdf"
2813
2814=== modified file 'po/sk.po'
2815--- po/sk.po 2010-09-05 01:17:06 +0000
2816+++ po/sk.po 2010-09-27 13:56:13 +0000
2817@@ -14,7 +14,7 @@
2818 "MIME-Version: 1.0\n"
2819 "Content-Type: text/plain; charset=UTF-8\n"
2820 "Content-Transfer-Encoding: 8bit\n"
2821-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2822+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2823 "X-Generator: Launchpad (build Unknown)\n"
2824
2825 #. Radio button for cropping page to 4x6 inch
2826
2827=== modified file 'po/sl.po'
2828--- po/sl.po 2010-09-05 01:17:06 +0000
2829+++ po/sl.po 2010-09-27 13:56:13 +0000
2830@@ -8,13 +8,13 @@
2831 "Project-Id-Version: simple-scan\n"
2832 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2833 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2834-"PO-Revision-Date: 2010-08-16 11:48+0000\n"
2835-"Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n"
2836+"PO-Revision-Date: 2010-09-04 07:44+0000\n"
2837+"Last-Translator: Klemen Košir <klemen913@gmail.com>\n"
2838 "Language-Team: Slovenian <sl@li.org>\n"
2839 "MIME-Version: 1.0\n"
2840 "Content-Type: text/plain; charset=UTF-8\n"
2841 "Content-Transfer-Encoding: 8bit\n"
2842-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2843+"X-Launchpad-Export-Date: 2010-09-05 04:55+0000\n"
2844 "X-Generator: Launchpad (build Unknown)\n"
2845
2846 #. Radio button for cropping page to 4x6 inch
2847@@ -601,7 +601,7 @@
2848 #. Title of about dialog
2849 #: ../src/ui.c:1275
2850 msgid "About Simple Scan"
2851-msgstr "O Programu"
2852+msgstr "O programu"
2853
2854 #. Description of program
2855 #: ../src/ui.c:1278
2856@@ -613,6 +613,7 @@
2857 msgstr ""
2858 "Launchpad Contributions:\n"
2859 " Andrej Znidarsic https://launchpad.net/~andrej.znidarsic\n"
2860+" Klemen Košir https://launchpad.net/~klemen913\n"
2861 " Robert Hrovat https://launchpad.net/~robi-hipnos\n"
2862 " grofaty https://launchpad.net/~grofaty"
2863
2864
2865=== modified file 'po/sr.po'
2866--- po/sr.po 2010-09-05 01:17:06 +0000
2867+++ po/sr.po 2010-09-27 13:56:13 +0000
2868@@ -15,7 +15,7 @@
2869 "MIME-Version: 1.0\n"
2870 "Content-Type: text/plain; charset=UTF-8\n"
2871 "Content-Transfer-Encoding: 8bit\n"
2872-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2873+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2874 "X-Generator: Launchpad (build Unknown)\n"
2875
2876 #. Radio button for cropping page to 4x6 inch
2877
2878=== modified file 'po/sv.po'
2879--- po/sv.po 2010-09-05 01:17:06 +0000
2880+++ po/sv.po 2010-09-27 13:56:13 +0000
2881@@ -8,13 +8,13 @@
2882 "Project-Id-Version: simple-scan\n"
2883 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2884 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
2885-"PO-Revision-Date: 2010-06-27 08:29+0000\n"
2886+"PO-Revision-Date: 2010-09-06 06:05+0000\n"
2887 "Last-Translator: Daniel Nylander <yeager@ubuntu.com>\n"
2888 "Language-Team: Swedish <sv@li.org>\n"
2889 "MIME-Version: 1.0\n"
2890 "Content-Type: text/plain; charset=UTF-8\n"
2891 "Content-Transfer-Encoding: 8bit\n"
2892-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2893+"X-Launchpad-Export-Date: 2010-09-07 05:01+0000\n"
2894 "X-Generator: Launchpad (build Unknown)\n"
2895
2896 #. Radio button for cropping page to 4x6 inch
2897@@ -156,7 +156,7 @@
2898 #. Title of scan window
2899 #: ../data/simple-scan.ui.h:54 ../data/simple-scan.desktop.in.h:2
2900 msgid "Simple Scan"
2901-msgstr "Simple Scan"
2902+msgstr "Enkel bildinläsning"
2903
2904 #. Toolbar scan menu item to scan a single page from the scanner
2905 #: ../data/simple-scan.ui.h:56
2906@@ -547,17 +547,17 @@
2907 #. Text in dialog warning when a document is about to be lost
2908 #: ../src/ui.c:552
2909 msgid "If you don't save, changes will be permanently lost."
2910-msgstr ""
2911+msgstr "Om du inte sparar så kommer ändringarna att gå förlorade."
2912
2913 #. Text in dialog warning when a document is about to be lost
2914 #: ../src/ui.c:594
2915 msgid "Save current document?"
2916-msgstr ""
2917+msgstr "Spara aktuellt dokument?"
2918
2919 #. Button in dialog to create new document and discard unsaved document
2920 #: ../src/ui.c:596
2921 msgid "Discard Changes"
2922-msgstr ""
2923+msgstr "Förkasta ändringar"
2924
2925 #. Error message display when unable to preview image
2926 #: ../src/ui.c:950
2927@@ -602,7 +602,7 @@
2928 #. Title of about dialog
2929 #: ../src/ui.c:1275
2930 msgid "About Simple Scan"
2931-msgstr "Om Simple Scan"
2932+msgstr "Om Enkel bildinläsning"
2933
2934 #. Description of program
2935 #: ../src/ui.c:1278
2936@@ -621,12 +621,12 @@
2937 #. Text in dialog warning when a document is about to be lost
2938 #: ../src/ui.c:1305
2939 msgid "Save document before quitting?"
2940-msgstr ""
2941+msgstr "Spara dokumment innan du avslutar?"
2942
2943 #. Button in dialog to quit and discard unsaved document
2944 #: ../src/ui.c:1307
2945 msgid "Quit without Saving"
2946-msgstr ""
2947+msgstr "Avsluta utan att spara"
2948
2949 #. Preferences dialog: Label for minimum resolution in resolution list
2950 #: ../src/ui.c:1449
2951
2952=== modified file 'po/te.po'
2953--- po/te.po 2010-09-05 01:17:06 +0000
2954+++ po/te.po 2010-09-27 13:56:13 +0000
2955@@ -15,7 +15,7 @@
2956 "MIME-Version: 1.0\n"
2957 "Content-Type: text/plain; charset=UTF-8\n"
2958 "Content-Transfer-Encoding: 8bit\n"
2959-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2960+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2961 "X-Generator: Launchpad (build Unknown)\n"
2962
2963 #. Radio button for cropping page to 4x6 inch
2964
2965=== modified file 'po/tr.po'
2966--- po/tr.po 2010-09-05 01:17:06 +0000
2967+++ po/tr.po 2010-09-27 13:56:13 +0000
2968@@ -14,7 +14,7 @@
2969 "MIME-Version: 1.0\n"
2970 "Content-Type: text/plain; charset=UTF-8\n"
2971 "Content-Transfer-Encoding: 8bit\n"
2972-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2973+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2974 "X-Generator: Launchpad (build Unknown)\n"
2975
2976 #. Radio button for cropping page to 4x6 inch
2977
2978=== modified file 'po/uk.po'
2979--- po/uk.po 2010-09-05 01:17:06 +0000
2980+++ po/uk.po 2010-09-27 13:56:13 +0000
2981@@ -14,7 +14,7 @@
2982 "MIME-Version: 1.0\n"
2983 "Content-Type: text/plain; charset=UTF-8\n"
2984 "Content-Transfer-Encoding: 8bit\n"
2985-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2986+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
2987 "X-Generator: Launchpad (build Unknown)\n"
2988
2989 #. Radio button for cropping page to 4x6 inch
2990
2991=== modified file 'po/vi.po'
2992--- po/vi.po 2010-09-05 01:17:06 +0000
2993+++ po/vi.po 2010-09-27 13:56:13 +0000
2994@@ -15,7 +15,7 @@
2995 "MIME-Version: 1.0\n"
2996 "Content-Type: text/plain; charset=UTF-8\n"
2997 "Content-Transfer-Encoding: 8bit\n"
2998-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
2999+"X-Launchpad-Export-Date: 2010-08-30 04:09+0000\n"
3000 "X-Generator: Launchpad (build Unknown)\n"
3001
3002 #. Radio button for cropping page to 4x6 inch
3003
3004=== modified file 'po/zh_CN.po'
3005--- po/zh_CN.po 2010-09-05 01:17:06 +0000
3006+++ po/zh_CN.po 2010-09-27 13:56:13 +0000
3007@@ -8,13 +8,13 @@
3008 "Project-Id-Version: simple-scan\n"
3009 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3010 "POT-Creation-Date: 2010-08-20 05:36+0000\n"
3011-"PO-Revision-Date: 2010-06-13 05:56+0000\n"
3012+"PO-Revision-Date: 2010-09-22 03:32+0000\n"
3013 "Last-Translator: Xhacker Liu <liu.dongyuan@gmail.com>\n"
3014 "Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
3015 "MIME-Version: 1.0\n"
3016 "Content-Type: text/plain; charset=UTF-8\n"
3017 "Content-Transfer-Encoding: 8bit\n"
3018-"X-Launchpad-Export-Date: 2010-08-27 03:48+0000\n"
3019+"X-Launchpad-Export-Date: 2010-09-24 05:25+0000\n"
3020 "X-Generator: Launchpad (build Unknown)\n"
3021
3022 #. Radio button for cropping page to 4x6 inch
3023@@ -528,17 +528,17 @@
3024 #. Text in dialog warning when a document is about to be lost
3025 #: ../src/ui.c:552
3026 msgid "If you don't save, changes will be permanently lost."
3027-msgstr ""
3028+msgstr "如果您不保存,变更将永久丢失。"
3029
3030 #. Text in dialog warning when a document is about to be lost
3031 #: ../src/ui.c:594
3032 msgid "Save current document?"
3033-msgstr ""
3034+msgstr "保存当前文档?"
3035
3036 #. Button in dialog to create new document and discard unsaved document
3037 #: ../src/ui.c:596
3038 msgid "Discard Changes"
3039-msgstr ""
3040+msgstr "放弃更改"
3041
3042 #. Error message display when unable to preview image
3043 #: ../src/ui.c:950
3044@@ -601,12 +601,12 @@
3045 #. Text in dialog warning when a document is about to be lost
3046 #: ../src/ui.c:1305
3047 msgid "Save document before quitting?"
3048-msgstr ""
3049+msgstr "退出前保存文档?"
3050
3051 #. Button in dialog to quit and discard unsaved document
3052 #: ../src/ui.c:1307
3053 msgid "Quit without Saving"
3054-msgstr ""
3055+msgstr "退出且不保存"
3056
3057 #. Preferences dialog: Label for minimum resolution in resolution list
3058 #: ../src/ui.c:1449

Subscribers

People subscribed via source and target branches

to all changes: