1 /*****************************************************************************
2  * smb_common.h: common strings used by SMB and DSM modules
3  *****************************************************************************
4  * Copyright (C) 2016 VLC authors and VideoLAN
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20 
21 #define SMB_USER_TEXT N_("Username")
22 #define SMB_USER_LONGTEXT N_("Username that will be used for the connection, " \
23         "if no username is set in the URL.")
24 #define SMB_PASS_TEXT N_("Password")
25 #define SMB_PASS_LONGTEXT N_("Password that will be used for the connection, " \
26         "if no username or password are set in URL.")
27 #define SMB_DOMAIN_TEXT N_("SMB domain")
28 #define SMB_DOMAIN_LONGTEXT N_("Domain/Workgroup that " \
29         "will be used for the connection.")
30 
31 /* Not translated since added after the VLC 3.0 release */
32 #define SMB1_LOGIN_DIALOG_TITLE "SMBv1 authentication required"
33 
34 #define SMB_LOGIN_DIALOG_TITLE N_( "SMB authentication required" )
35 #define SMB_LOGIN_DIALOG_TEXT N_( "The computer (%s) you are trying to connect "   \
36     "to requires authentication.\nPlease provide a username (ideally a "  \
37     "domain name using the format DOMAIN;username) and a password." )
38