mirror of https://github.com/OpenVPN/openvpn-gui
Improving feedback messages when importing
parent
4c429d0b6b
commit
b47d3545e4
5
main.c
5
main.c
|
@ -579,11 +579,14 @@ ImportConfigFile()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
ShowLocalizedMsg(IDS_NFO_IMPORT_SUCCESS);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ShowLocalizedMsg(IDS_ERR_IMPORT_FAILED);
|
ShowLocalizedMsg(IDS_ERR_IMPORT_FAILED, destination);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -246,5 +246,6 @@
|
||||||
|
|
||||||
#define IDS_ERR_IMPORT_EXISTS 1901
|
#define IDS_ERR_IMPORT_EXISTS 1901
|
||||||
#define IDS_ERR_IMPORT_FAILED 1902
|
#define IDS_ERR_IMPORT_FAILED 1902
|
||||||
|
#define IDS_NFO_IMPORT_SUCCESS 1903
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -343,5 +343,7 @@ BEGIN
|
||||||
|
|
||||||
/* importation */
|
/* importation */
|
||||||
IDS_ERR_IMPORT_EXISTS "A config named ""%s"" already exists."
|
IDS_ERR_IMPORT_EXISTS "A config named ""%s"" already exists."
|
||||||
IDS_ERR_IMPORT_FAILED "Failed to import file."
|
IDS_ERR_IMPORT_FAILED "Failed to import file. The following path could not be created.\n\n" \
|
||||||
|
"%s\n\nMake sure you have the right permissions."
|
||||||
|
IDS_NFO_IMPORT_SUCCESS "File imported successfully."
|
||||||
END
|
END
|
||||||
|
|
|
@ -328,5 +328,7 @@ BEGIN
|
||||||
|
|
||||||
/* importation */
|
/* importation */
|
||||||
IDS_ERR_IMPORT_EXISTS "Já existe uma configuração com o nome ""%s""."
|
IDS_ERR_IMPORT_EXISTS "Já existe uma configuração com o nome ""%s""."
|
||||||
IDS_ERR_IMPORT_FAILED "Falha ao importar o arquivo."
|
IDS_ERR_IMPORT_FAILED "Falha ao importar o arquivo. O seguinte caminho não pôde ser criado.\n\n" \
|
||||||
|
"%s\n\nCertifique-se de que você possui as permissões necessárias."
|
||||||
|
IDS_NFO_IMPORT_SUCCESS "Arquivo importado com sucesso."
|
||||||
END
|
END
|
||||||
|
|
Loading…
Reference in New Issue