1/*
2 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24/*
25 * Localizable.strings file for the webdav_cert_ui application bundle
26 *
27 * The webdav_cert_ui application is used by the WebDAV file system to display
28 * the Certificate Trust Panel when the server has a certificate is not trusted for
29 * some reason (expired, invalid, not yet valid, or unknown certifying authority).
30 */
31
32/*
33 * These strings tell the user why the certificate for the WebDAV server is
34 * not trusted, gives the name of the WebDAV server host, and asks the user if
35 * they'd like to continue to connect or cancel. The marker (%@) will be replaced
36 * by the server's host name (i.e. www.apple.com).
37 */
38"MESSAGE_CERT_EXPIRED" = "The certificate for this WebDAV server has expired. You might be connecting to a WebDAV server that is pretending to be “%@”, which could put your confidential information at risk. Would you like to connect to the WebDAV server anyway?";
39"MESSAGE_CERT_INVALID" = "The certificate for this WebDAV server is invalid. You might be connecting to a WebDAV server that is pretending to be “%@”, which could put your confidential information at risk. Would you like to connect to the WebDAV server anyway?";
40"MESSAGE_CERT_NOT_YET_VALID" = "The certificate for this WebDAV server is not yet valid. You might be connecting to a WebDAV server that is pretending to be “%@”, which could put your confidential information at risk. Would you like to connect to the WebDAV server anyway?";
41"MESSAGE_CERT_UNKNOWN_AUTHORITY" = "The certificate for this WebDAV server was signed by an unknown certifying authority. You might be connecting to a WebDAV server that is pretending to be “%@”, which could put your confidential information at risk. Would you like to connect to the WebDAV server anyway?";
42/* The title for the "Cancel" button */
43"MESSAGE_CERT_CANCEL" = "Cancel";
44/* The title for the "Continue" button */
45"MESSAGE_CERT_CONTINUE" = "Continue";
46