serialui: Fix French translation & UI display.
This commit is contained in:
parent
9046d28166
commit
8907860f3e
|
@ -3,7 +3,8 @@
|
||||||
* French language support
|
* French language support
|
||||||
*
|
*
|
||||||
* Copyright 2000 Mike McCormack
|
* Copyright 2000 Mike McCormack
|
||||||
* Copyright 2003 Vincent Béron
|
* Copyright 2003 Vincent Béron
|
||||||
|
* Copyright 2009 Frédéric Delanoy
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -22,25 +23,28 @@
|
||||||
|
|
||||||
#include "serialui.h"
|
#include "serialui.h"
|
||||||
|
|
||||||
|
/* UTF-8 */
|
||||||
|
#pragma code_page(65001)
|
||||||
|
|
||||||
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
||||||
|
|
||||||
IDD_SERIALUICONFIG DIALOG DISCARDABLE 0, 0, 160, 159
|
IDD_SERIALUICONFIG DIALOG DISCARDABLE 0, 0, 180, 150
|
||||||
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
||||||
CAPTION "Propriétés pour "
|
CAPTION "Propriétés pour "
|
||||||
FONT 8, "MS Shell Dlg"
|
FONT 8, "MS Shell Dlg"
|
||||||
BEGIN
|
BEGIN
|
||||||
LTEXT "Vitesse de connexion", -1,5,20,55,10
|
LTEXT "Vitesse de transmission (bauds)", -1,5,19,70,18
|
||||||
COMBOBOX IDC_BAUD, 60, 20, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
COMBOBOX IDC_BAUD, 80, 20, 90, 15, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
||||||
LTEXT "Parité", -1,5,40,55,10
|
LTEXT "Parité", -1,5,42,55,10
|
||||||
COMBOBOX IDC_PARITY, 60, 40, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
COMBOBOX IDC_PARITY, 80, 40, 90, 15, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
||||||
LTEXT "Contrôle de flux", -1,5,60,55,10
|
LTEXT "Contrôle de flux", -1,5,62,55,10
|
||||||
COMBOBOX IDC_FLOW, 60, 60, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
COMBOBOX IDC_FLOW, 80, 60, 90, 15, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
||||||
LTEXT "Bits de données", -1,5,80,55,10
|
LTEXT "Bits de données", -1,5,82,55,10
|
||||||
COMBOBOX IDC_DATA, 60, 80, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
COMBOBOX IDC_DATA, 80, 80, 90, 15, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
||||||
LTEXT "Bits de stop", -1,5,100,55,10
|
LTEXT "Bits d'arrêt", -1,5,102,55,10
|
||||||
COMBOBOX IDC_STOP, 60, 100, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
COMBOBOX IDC_STOP, 80, 100, 90, 15, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP
|
||||||
DEFPUSHBUTTON "OK", IDOK,30,138,50,14
|
DEFPUSHBUTTON "OK", IDOK,30,125,50,14
|
||||||
PUSHBUTTON "Annuler", IDCANCEL,85,138,50,14
|
PUSHBUTTON "Annuler", IDCANCEL,93,125,50,14
|
||||||
/* these two buttons are for testing Get/SetDefaultCommConfig */
|
/* these two buttons are for testing Get/SetDefaultCommConfig */
|
||||||
/* PUSHBUTTON "GetDefault", ID_GETDEFAULT,30,115,50,14 */
|
/* PUSHBUTTON "GetDefault", ID_GETDEFAULT,30,115,50,14 */
|
||||||
/* PUSHBUTTON "SetDefault", ID_SETDEFAULT,85,115,50,14 */
|
/* PUSHBUTTON "SetDefault", ID_SETDEFAULT,85,115,50,14 */
|
||||||
|
|
Loading…
Reference in New Issue