From 143fc164f11f08509a1d22943aec5b691612e81a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?=
Date: Wed, 21 Sep 2016 21:13:20 +0200
Subject: New upstream version 3.22.0.1
---
NEWS | 8 +++++
configure | 20 ++++++------
configure.ac | 2 +-
data/Makefile.am | 4 ++-
data/Makefile.in | 4 ++-
help/sk/adf.page | 9 ++----
help/sk/crop.page | 20 ++++++------
help/sk/dpi.page | 23 ++++++--------
help/sk/print.page | 8 ++---
help/sk/rotate.page | 22 ++++++-------
help/sk/save.page | 6 ++--
help/sk/scanning.page | 2 +-
help/sk/sk.po | 88 +++++++++++++++++++++++++++++----------------------
13 files changed, 114 insertions(+), 102 deletions(-)
diff --git a/NEWS b/NEWS
index 91fd02e..b9cfb82 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+Overview of changes in simple-scan 3.22.0.1
+
+ * Stop icon name in .desktop file being translated
+
+Overview of changes in simple-scan 3.22.0
+
+ * Updated translations
+
Overview of changes in simple-scan 3.21.90
* Use recent features of gettext, dropping intltool
diff --git a/configure b/configure
index 684d32a..717d9b5 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for simple-scan 3.21.90.
+# Generated by GNU Autoconf 2.69 for simple-scan 3.22.0.1.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -637,8 +637,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='simple-scan'
PACKAGE_TARNAME='simple-scan'
-PACKAGE_VERSION='3.21.90'
-PACKAGE_STRING='simple-scan 3.21.90'
+PACKAGE_VERSION='3.22.0.1'
+PACKAGE_STRING='simple-scan 3.22.0.1'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@@ -1415,7 +1415,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures simple-scan 3.21.90 to adapt to many kinds of systems.
+\`configure' configures simple-scan 3.22.0.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1486,7 +1486,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of simple-scan 3.21.90:";;
+ short | recursive ) echo "Configuration of simple-scan 3.22.0.1:";;
esac
cat <<\_ACEOF
@@ -1617,7 +1617,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-simple-scan configure 3.21.90
+simple-scan configure 3.22.0.1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1915,7 +1915,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by simple-scan $as_me 3.21.90, which was
+It was created by simple-scan $as_me 3.22.0.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2779,7 +2779,7 @@ fi
# Define the identity of the package.
PACKAGE='simple-scan'
- VERSION='3.21.90'
+ VERSION='3.22.0.1'
cat >>confdefs.h <<_ACEOF
@@ -8374,7 +8374,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by simple-scan $as_me 3.21.90, which was
+This file was extended by simple-scan $as_me 3.22.0.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -8431,7 +8431,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-simple-scan config.status 3.21.90
+simple-scan config.status 3.22.0.1
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/configure.ac b/configure.ac
index 19c9a0a..6950507 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(simple-scan, 3.21.90)
+AC_INIT(simple-scan, 3.22.0.1)
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign])
AM_SILENT_RULES([yes])
AM_MAINTAINER_MODE
diff --git a/data/Makefile.am b/data/Makefile.am
index 5f421a0..7d29429 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -4,8 +4,10 @@ desktopdir = $(datadir)/applications
desktop_in_files = simple-scan.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+# Explicitly list the keywords to stop the icon field being translated
+# https://bugs.launchpad.net/bugs/1624662
$(desktop_DATA): $(desktop_in_files)
- $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
+ $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=GenericName --keyword=Comment --keyword=Keywords --template $< -d $(top_srcdir)/po -o $@
gsettings_SCHEMAS = org.gnome.SimpleScan.gschema.xml
@GSETTINGS_RULES@
diff --git a/data/Makefile.in b/data/Makefile.in
index d9bc6f4..d310329 100644
--- a/data/Makefile.in
+++ b/data/Makefile.in
@@ -749,8 +749,10 @@ uninstall-man: uninstall-man1
.PRECIOUS: Makefile
+# Explicitly list the keywords to stop the icon field being translated
+# https://bugs.launchpad.net/bugs/1624662
$(desktop_DATA): $(desktop_in_files)
- $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
+ $(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=GenericName --keyword=Comment --keyword=Keywords --template $< -d $(top_srcdir)/po -o $@
@GSETTINGS_RULES@
@APPSTREAM_XML_RULES@
diff --git a/help/sk/adf.page b/help/sk/adf.page
index 0da45f5..8d55001 100644
--- a/help/sk/adf.page
+++ b/help/sk/adf.page
@@ -7,10 +7,7 @@
Použitie automatického podávača dokumentov
-
- If your scanner features an Automatic Document Feeder (ADF)
- you can scan all the pages from the feeder via one of following methods:
-
+
Ak váš skener obsahuje automatický podávač dokumentov (ADF), môžete skenovať všetky stránky z podávača jedným z týchto spôsobov:
Používať klávesové skratky
@@ -31,10 +28,10 @@
Use the Toolbar Buttons
-
Click on the arrow to the right of the "Scan" button.
- Simple Scan allows you print a scanned document directly from the its
- interface, without having to save the document first. This feature makes Simple
- Scan a very convenient tool for making copies of documents or photos.
-
+
Aplikácia Jednoduché skenovanie umožňuje tlač skenovaného dokumentu priamo prostredníctvom svojho rozhrania, bez nutnosti uloženia dokumentu. Táto funkcia vytvára z aplikácie Jednoduché skenovanie veľmi pohodlný nástroj na tvorbu kópií dokumentov a fotografií.
- To Print a Document
+ Na vytlačenie dokumentu
Go to the DocumentPrint menu or use the keyboard shortcut CtrlP.
diff --git a/help/sk/rotate.page b/help/sk/rotate.page
index ea82994..3720af5 100644
--- a/help/sk/rotate.page
+++ b/help/sk/rotate.page
@@ -5,7 +5,7 @@
-
Rotating a Page
+ Otočenie stránky
In Simple Scan, you can change the rotation of a page either before or after scanning the page.
@@ -30,27 +30,25 @@
- Use Shortcuts
+ Použitie skratiek
Select the page you want to rotate by clicking on it once.
-
Press one of the following shortcut keys:
+
Stlačte jednu z nasledovných klávesových skratiek:
-
Command
-
Shortcut Key
+
Príkaz
+
Klávesová skratka
-
Rotate Left
-
[ (left bracket)
+
Otočenie doľava
+
[ (ľavá hranatá zátvorka)
-
Rotate Right
-
] (right bracket)
+
Otočenie doprava
+
] (pravá hranatá zátvorka)
-
- Each new scanned page will use the previous rotation.
-
+
Pre každú novú skenovanú stránku sa použije predchádzajúce otočenie.