2003-09-22 19:48:29 +00:00
|
|
|
|
/*
|
|
|
|
|
* Start
|
|
|
|
|
* French Language Support
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2003 Dan Kegel
|
2008-06-02 09:02:25 +02:00
|
|
|
|
* Copyright 2003 Vincent Béron
|
|
|
|
|
* Copyright 2008 Jonathan Ernst
|
2003-09-22 19:48:29 +00:00
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-09-22 19:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
|
|
|
|
|
2008-06-02 09:02:25 +02:00
|
|
|
|
#pragma code_page(65001) /* UTF-8 */
|
|
|
|
|
|
2003-09-22 19:48:29 +00:00
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
|
|
|
{
|
2008-06-02 09:02:25 +02:00
|
|
|
|
STRING_USAGE, "Lance un programme, ou ouvre un document dans le programme normalement utilisé avec cette extension. \n\
|
|
|
|
|
Usage : \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
start [options] fichier_programme [...] \n\
|
|
|
|
|
start [options] fichier_document \n\
|
|
|
|
|
\n\
|
2008-06-02 09:02:25 +02:00
|
|
|
|
Options : \n\
|
|
|
|
|
/M[inimized] Lance le programme minimisé. \n\
|
|
|
|
|
/MAX[imized] Lance le programme maximisé. \n\
|
|
|
|
|
/R[estored] Lance le programme normalement (ni minimisé ni maximisé). \n\
|
|
|
|
|
/W[ait] Attend que le programme lancé se termine, et termine ensuite avec son code de sortie. \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
/L Montre la licence d'utilisation. \n\
|
|
|
|
|
\n\
|
|
|
|
|
start.exe version 0.2 Copyright (C) 2003, Dan Kegel \n\
|
2008-06-02 09:02:25 +02:00
|
|
|
|
Start est fourni sans AUCUNE GARANTIE ; pour les détails lancez avec l'option /L. \n\
|
|
|
|
|
Ceci est un logiciel libre, et vous êtes invité à le redistribuer\n\
|
|
|
|
|
sous certaines condition; lancez 'start /L' pour les détails. \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
STRING_LICENSE, "start.exe version 0.2 Copyright (C) 2003, Dan Kegel \n\
|
2008-06-02 09:02:25 +02:00
|
|
|
|
Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou\n\
|
|
|
|
|
e modifier suivant les termes de la Licence Générale Publique Limitée GNU \n\
|
|
|
|
|
telle que publiée par la Free Software Foundation ; soit la version 2.1 \n\
|
|
|
|
|
de la License, soit (à votre gré) toute version ultérieure. \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
\n\
|
2008-06-02 09:02:25 +02:00
|
|
|
|
Wine est distribué dans l’espoir qu'il sera utile, mais \n\
|
|
|
|
|
SANS AUCUNE GARANTIE : sans même la garantie implicite de \n\
|
|
|
|
|
COMMERCIALISABILITÉ ou d’ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez \n\
|
|
|
|
|
la Licence Générale Publique Limitée pour plus de détails. \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
\n\
|
2008-06-02 09:02:25 +02:00
|
|
|
|
Vous devriez avoir reçu une copie de la Licence Générale Publique Limitée \n\
|
|
|
|
|
GNU avec cette bibliothèque ; si ce n’est pas le cas, écrivez à la : \n\
|
|
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n\
|
|
|
|
|
MA 02110-1301, USA. \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
\n\
|
2008-06-02 09:02:25 +02:00
|
|
|
|
Référez-vous au fichier COPYING.LIB pour des informations sur la licence. \n\
|
2003-09-22 19:48:29 +00:00
|
|
|
|
"
|
|
|
|
|
|
2008-06-02 09:02:25 +02:00
|
|
|
|
STRING_EXECFAIL "Le programme n'a pas pu être lancé, ou il n'y a pas de programme associé avec le fichier spécifié.\nShellExecuteEx a échoué"
|
2003-09-22 19:48:29 +00:00
|
|
|
|
}
|
2008-06-02 09:02:25 +02:00
|
|
|
|
|
|
|
|
|
#pragma code_page(default) /* Return to default encoding */
|