Skip to content

Commit 2888c48

Browse files
committed
ZendTo-6.05-4
1 parent 4aed18a commit 2888c48

40 files changed

+3555
-3858
lines changed

ChangeLog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 6.05-4 Production
2+
- Fixed bugs stopping LDAP (but not AD) authentication from working.
3+
4+
Version 6.05-2 Production
5+
- Fixed quoting bug in new drop-off form shown by French translation.
6+
7+
Version 6.05-1 Production
8+
- Improve attempt to stop browsers auto-filling encryption passphrase
9+
when creating a new encrypted drop-off, and when creating a request
10+
for an encrypted drop-off.
11+
- Fixed bug in makelanguages (and the Installer) on Debian 10.
12+
113
Version 6.04-2 Beta
214
- Fixed bug in LDAP authenticator where setting a value to '' gave a
315
different result from leaving it unset.

bin/addlanguage

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ if [ "$OS" = "unknown" ]; then
4343
if [ -f $OSRELEASE -a -x /usr/bin/lsb_release ]; then
4444
# Should give me the string "ubuntu" or "debian"
4545
OS="$( lsb_release --id | sed -e 's/^.*:\s*//' | tr '[:upper:]' '[:lower:]' )"
46-
OSVER="$( lsb_release --release | sed -e 's/^.*:\s*\([0-9]*\)\..*$/\1/' )"
46+
OSVER="$( lsb_release --release | sed -e 's/^.*:\s*\([0-9]*\).*$/\1/' )"
4747
fi
4848
fi
4949
if [ "$OS" = "unknown" ]; then
5050
if [ -x /usr/bin/lsb_release ]; then
5151
# Should give me the string "suse" or similar
5252
OS="$( lsb_release --id | sed -e 's/^.*:\s*//' | tr '[:upper:]' '[:lower:]' )"
53-
OSVER="$( lsb_release --release | sed -e 's/^.*:\s*\([0-9]*\)\..*$/\1/' )"
53+
OSVER="$( lsb_release --release | sed -e 's/^.*:\s*\([0-9]*\).*$/\1/' )"
5454
# But we need to tell between suse (i.e. sles) and opensuse
5555
if [ "x$OS" = "xsuse" ]; then
5656
OS='sles'

config/locale/cs_CZ/LC_MESSAGES/zendto.po

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ msgid ""
2323
msgstr ""
2424
"Project-Id-Version: ZendTo 5.15\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2020-08-11 17:08+0100\n"
26+
"POT-Creation-Date: 2020-08-31 17:58+0100\n"
2727
"PO-Revision-Date: 2020-06-10 14:04+0200\n"
2828
"Last-Translator: Dizzy Easy <[email protected]>\n"
2929
"Language-Team: Czech <[email protected]>\n"
@@ -1450,7 +1450,7 @@ msgid "Drop-off must occur between"
14501450
msgstr "Zásilka není zašifrována"
14511451

14521452
msgid "and"
1453-
msgstr ""
1453+
msgstr "a"
14541454

14551455
msgid "This will be sent to the recipient. It will also be included in the resulting drop-off sent to you."
14561456
msgstr "Níže uvedený text bude odeslán emailem příjemci, kterého žádáte o nahrání souborů. Odkaz a instrukce pro nahrání budou do emailu doplněny automaticky."

config/locale/de_DE/LC_MESSAGES/zendto.po

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ msgid ""
2323
msgstr ""
2424
"Project-Id-Version: ZendTo 5.00\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2020-08-11 17:08+0100\n"
26+
"POT-Creation-Date: 2020-08-31 17:58+0100\n"
2727
"PO-Revision-Date: 2018-09-18 18:14+0200\n"
2828
"Last-Translator: \n"
2929
"Language-Team: US English <[email protected]>\n"
@@ -1457,7 +1457,7 @@ msgid "Drop-off must occur between"
14571457
msgstr "Upload nicht verschlüsselt"
14581458

14591459
msgid "and"
1460-
msgstr ""
1460+
msgstr "und"
14611461

14621462
msgid "This will be sent to the recipient. It will also be included in the resulting drop-off sent to you."
14631463
msgstr "Diese Nachricht wird an die Empfänger gesendet. Nach dem Upload erhalten Sie eine Zusammenfassung."

config/locale/en_GB/LC_MESSAGES/zendto.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ msgid ""
2323
msgstr ""
2424
"Project-Id-Version: ZendTo 5.00\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2020-08-11 17:08+0100\n"
26+
"POT-Creation-Date: 2020-08-31 17:58+0100\n"
2727
"PO-Revision-Date: 2018-01-01 13:21+0000\n"
2828
"Last-Translator: Jules Field <[email protected]>\n"
2929
"Language-Team: GB English <[email protected]>\n"

config/locale/en_US/LC_MESSAGES/zendto.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ msgid ""
2323
msgstr ""
2424
"Project-Id-Version: ZendTo 5.00\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2020-08-11 17:08+0100\n"
26+
"POT-Creation-Date: 2020-08-31 17:58+0100\n"
2727
"PO-Revision-Date: 2018-01-05 16:39+0000\n"
2828
"Last-Translator: Jules Field <[email protected]>\n"
2929
"Language-Team: US English <[email protected]>\n"

0 commit comments

Comments
 (0)