/* * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Localizable.strings file for webdav.fs bundle * * The WebDAV file system has two dialogs which are used to get authentication * credentials when a challenge is received from a server. * * The first dialog is the "WebDAV File System Authentication" dialog which asks * for the user name and password (and with some authentication schemes, it also * asks for the domain). The keys for localizable strings in this dialog all * begin with "WEBDAV_AUTH_". * * The second dialog is shown if the user name and password entered are not * accepted by the server. Clicking the OK button will cause the main * authentication dialog to be shown again. The keys for localizable strings in * this dialog all begin with "WEBDAV_LOGIN_FAILED_". */ /* * "WebDAV File System Authentication" dialog keys */ /* * WEBDAV_AUTH_HEADER_KEY is the title of the dialog. This tells the user what * file system is requesting information. */ "WEBDAV_AUTH_HEADER_KEY" = "WebDAV File System Authentication"; /* * The WEBDAV_AUTH_MSG_KEY (or WEBDAV_AUTH_DOMAIN_MSG_WITH_PARAMETERS_KEY) string * tells the user what to do. The first marker (%1$@) will be replaced by the * URL string and the second marker (%2$@) will be replaced by the Realm string. * These strings help the user know what user name and password the server is * asking for. The third marker (%3$@) MUST be at the end of this string because * either WEBDAV_AUTH_MSG_SECURE_PARAMETER_KEY or WEBDAV_AUTH_MSG_INSECURE_PARAMETER_KEY * will be appended at that marker. * * Note: The two new-line characters (\n) at the end of this string before the * third marker are required (they make the text inserted at the third marker * a separate paragraph). */ "WEBDAV_AUTH_MSG_WITH_PARAMETERS_KEY" = "Enter your user name and password to access the server at the URL \"%1$@\" in the realm \"%2$@.\"\n\n%3$@"; "WEBDAV_AUTH_DOMAIN_MSG_WITH_PARAMETERS_KEY" = "Enter the domain and your user name and password to access the server at the URL \"%1$@\" in the realm \"%2$@.\"\n\n%3$@"; /* * These two strings tell the user if their authentication credentials (password) * will be sent to the server securely (encrypted) of not securely (unencrypted). * * Note: The single new-line character (\n) at the end of both of these strings * is required (if it's missing, the message text will overlap the first input field's * title). */ "WEBDAV_AUTH_MSG_SECURE_PARAMETER_KEY" = "Your name and password will be sent securely.\n"; "WEBDAV_AUTH_MSG_INSECURE_PARAMETER_KEY" = "Your name and password will not be sent securely.\n"; /* The title for the optional "Domain" input field */ "WEBDAV_AUTH_DOMAIN_KEY" = "Domain"; /* The title for the "Name" input field */ "WEBDAV_AUTH_USERNAME_KEY" = "Name"; /* The title for the "Password" input field */ "WEBDAV_AUTH_PASSWORD_KEY" = "Password"; /* The title for the "Remember password" check box */ "WEBDAV_AUTH_KEYCHAIN_KEY" = "Remember this password in my keychain"; /* The title for the "OK" button */ "WEBDAV_AUTH_OK_KEY" = "OK"; /* The title for the "Cancel" button */ "WEBDAV_AUTH_CANCEL_KEY" = "Cancel"; /* * "The user name or password you entered is not valid" dialog keys */ /* Title for the dialog that appears if you enter an invalid username or password. */ "WEBDAV_LOGIN_FAILED_HEADER_KEY" = "The user name or password you entered is not valid."; /* Title for the dialog that appears if you enter an invalid username or password. */ "WEBDAV_LOGIN_FAILED_MSG_KEY" = "Please try again."; /* The title for the "OK" button */ "WEBDAV_LOGIN_FAILED_OK_KEY" = "OK";