Module: wine
Branch: stable
Commit: 449382213c811d89b2c3d8cf7de65d7d594e74bf
URL: http://source.winehq.org/git/wine.git/?a=commit;h=449382213c811d89b2c3d8cf7…
Author: Paul Vriens <Paul.Vriens.Wine(a)gmail.com>
Date: Sun Jul 18 23:14:23 2010 +0200
msi: Add the Serbian (Latin) translation.
Translation by Nenad Vujic <nesa24casa(a)gmail.com>
(cherry picked from commit 4662e12164a1e1e66bcabef96441c8799f15bd4f)
---
dlls/msi/Makefile.in | 1 +
dlls/msi/msi_Sr.rc | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+), 0 deletions(-)
diff --git a/dlls/msi/Makefile.in b/dlls/msi/Makefile.in
index 194c1a2..5b0b3fc 100644
--- a/dlls/msi/Makefile.in
+++ b/dlls/msi/Makefile.in
@@ -80,6 +80,7 @@ RC_SRCS = \
msi_Ro.rc \
msi_Ru.rc \
msi_Si.rc \
+ msi_Sr.rc \
msi_Sv.rc \
msi_Tr.rc \
msi_Uk.rc \
diff --git a/dlls/msi/msi_Sr.rc b/dlls/msi/msi_Sr.rc
new file mode 100644
index 0000000..854b811
--- /dev/null
+++ b/dlls/msi/msi_Sr.rc
@@ -0,0 +1,65 @@
+/*
+ * Serbian resources for MSI
+ *
+ * Copyright 2010 Nenad Vujic
+ * Paul Vriens
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include "windef.h"
+
+#pragma code_page(65001)
+
+LANGUAGE LANG_SERBIAN, SUBLANG_SERBIAN_LATIN
+
+STRINGTABLE DISCARDABLE
+{
+ 4 "Instalacija ne može biti otvorena. Molimo proverite destinaciju fajla i pokušajte ponovo."
+ 5 "putanja %s nije nađena"
+ 9 "Ubacite disk %s"
+ 10 "Windows Instalacija programa %s\n\n" \
+ "Svrha:\n" \
+ "msiexec komanda {traženi parametar} [opcioni parametar]\n\n" \
+ "Instalacija proizvoda:\n" \
+ "\t/i {paket|kod} [svojina]\n" \
+ "\t/package {paket|kod} [svojina]\n" \
+ "\t/a paket [svojina]\n" \
+ "Popravak instalacije:\n" \
+ "\t/f[p|o|e|d|c|a|u|m|s|v] {paket|kod}\n" \
+ "Uninstal programa:\n" \
+ "\t/uninstall {paket|kod} [svojina]\n" \
+ "\t/x {paket|kod} [svojina]\n" \
+ "Reklama programa:\n" \
+ "\t/j[u|m] paket [/t pretvori] [/g id jezika]\n" \
+ "Primeni peč:\n" \
+ "\t/p pečpaket [svojina]\n" \
+ "\t/p pečpaket /a paket [svojina]\n" \
+ "Izveštalj i Izgled Modifikatori za komande iznad:\n" \
+ "\t/l[*][i|w|e|a|r|u|c|m|o|p|v|][+|!] izvestaj\n" \
+ "\t/q{|n|b|r|f|n+|b+|b-}\n" \
+ "Registracija MSI Servisa:\n" \
+ "\t/y\n " \
+ "Uklanjanje MSI Servisa:\n" \
+ "\t/z\n" \
+ "Prikaži ovu Pomoć:\n" \
+ "\t/help\n" \
+ "\t/?\n"
+ 11 "unesite koji folder sadrži %s"
+ 12 "instalacija nedostaje"
+ 13 "mrežni drajv nedostaje"
+ 14 "dodatak sa:"
+ 15 "izaberite koji folder sadrži %s"
+}
Module: wine
Branch: master
Commit: 251ccfc8486340dd30214f31bdfb46de56344a86
URL: http://source.winehq.org/git/wine.git/?a=commit;h=251ccfc8486340dd30214f31b…
Author: Juan Lang <juan.lang(a)gmail.com>
Date: Wed Oct 6 10:28:12 2010 -0700
crypt32/tests: Fix another test failure on Win98.
---
dlls/crypt32/tests/chain.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/tests/chain.c b/dlls/crypt32/tests/chain.c
index 24831b5..2c62ec0 100644
--- a/dlls/crypt32/tests/chain.c
+++ b/dlls/crypt32/tests/chain.c
@@ -3506,10 +3506,13 @@ static ChainCheck chainCheck[] = {
{ { CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_HAS_PREFERRED_ISSUER },
{ 0, 0 },
1, iTunesSimpleStatus }, 0 },
- /* The google chain may or may not have its root trusted, so ignore the error
+ /* The google chain may or may not have its root trusted, so ignore the error.
+ * The chain is also considered not time nested on Win98, so ignore that
+ * error too.
*/
{ { sizeof(googleChain) / sizeof(googleChain[0]), googleChain },
- { { CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_HAS_PREFERRED_ISSUER },
+ { { CERT_TRUST_IS_UNTRUSTED_ROOT | CERT_TRUST_IS_NOT_TIME_NESTED,
+ CERT_TRUST_HAS_PREFERRED_ISSUER },
{ CERT_TRUST_IS_NOT_TIME_VALID, 0 },
1, googleSimpleStatus }, 0 },
/* The openssl chain may or may not have its root trusted, so ignore the error