/* * Localizable.strings file for smb.bundle * * The SMB file system has three dialogs which are used to get authentication * credentials and select a shared volume. * * The first dialog is the "SMB/CIFS File System Authentication" dialog which asks * for the doamin, user name and password. The keys for localizable strings in * this dialog all begin with "SMB_AUTH_". * * The second dialog is the "Select the SMB/CIFS shared volume you want to connect to." * dialog which lets the user choose a shared volume to mount. If the user doesn't * see the shared volumes they expected in the pop-up list, they can use the * "Authenticate"/"Authenticate Again" button to return to the "SMB/CIFS File * System Authentication" dialog and enter a different username/password which may * allows them to see a different set of shared volumes. The keys for localizable * strings in this dialog all begin with "SMB_SELECT_". * * The third dialog is shown if the domain, 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 "SMB_LOGIN_FAILED_". */ /* * "SMB/CIFS File System Authentication" dialog keys */ /* * SMB_AUTH_HEADER_KEY is the title of the dialog. This tells the user what * file system is requesting information. */ "SMB_AUTH_HEADER_KEY" = "SMB/CIFS File System Authentication"; /* * The SMB_AUTH_MSG_WITH_PARAMETERS_KEY string tells the user what to do. * The marker (%1$@) will be replaced by the server name string. That string helps * the user know what domain, user name and password the server is asking for. * * Note: The new-line character (\n) at the end of this string is required (if * it's missing, the message text may overlap the first input field's title). */ "SMB_AUTH_MSG_WITH_PARAMETERS_KEY" = "Enter the workgroup or domain and your user name and password to access the server \"%1$@.\"\n"; /* The title for the optional "Workgroup or Domain" input field */ "SMB_AUTH_DOMAIN_KEY" = "Workgroup or Domain"; /* The title for the "Name" input field */ "SMB_AUTH_USERNAME_KEY" = "Name"; /* The title for the "Password" input field */ "SMB_AUTH_PASSWORD_KEY" = "Password"; /* The title for the "Remember password" check box */ "SMB_AUTH_KEYCHAIN_KEY" = "Remember this password in my keychain"; /* The title for the "OK" button */ "SMB_AUTH_OK_KEY" = "OK"; /* The title for the "Cancel" button */ "SMB_AUTH_CANCEL_KEY" = "Cancel"; /* * "Select the SMB/CIFS shared volume you want to connect to." dialog keys */ /* * SMB_SELECT_HEADER_KEY is the title of the dialog. This tells the user this * dialog's purpose. */ "SMB_SELECT_HEADER_KEY" = "Select the SMB/CIFS shared volume you want to connect to."; /* * The Authenticate button lets the user go to the "SMB/CIFS File System Authentication" * dialog if guest access was used and the user wants to log in as an authentication user. * ( the same button will be either "Authenticate" or "Authenticate Again") */ "SMB_SELECT_AUTHENTICATE_KEY" = "Authenticate"; /* * The Authenticate button lets the user return to the "SMB/CIFS File System Authentication" * dialog if user wants to log in as a different user. * ( the same button will be either "Authenticate" or "Authenticate Again") */ "SMB_SELECT_REAUTHENTICATE_KEY" = "Authenticate Again"; /* The title for the "OK" button */ "SMB_SELECT_OK_KEY" = "OK"; /* The title for the "Cancel" button */ "SMB_SELECT_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. */ "SMB_LOGIN_FAILED_HEADER_KEY" = "The user name or password you entered is not valid."; /* The message for the dialog that appears if you enter an invalid username or password. */ "SMB_LOGIN_FAILED_MSG_KEY" = "Please try again."; /* The title for the "OK" button */ "SMB_LOGIN_FAILED_OK_KEY" = "OK";