Module: wine
Branch: master
Commit: 39c38cf024d8c7e74eef3af2abd23ad7f025afdc
URL: http://source.winehq.org/git/wine.git/?a=commit;h=39c38cf024d8c7e74eef3af2a…
Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com>
Date: Wed May 11 21:04:57 2011 +0200
winecfg: Update French translation.
---
programs/winecfg/Fr.rc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/programs/winecfg/Fr.rc b/programs/winecfg/Fr.rc
index 64b3d2a..d73f782 100644
--- a/programs/winecfg/Fr.rc
+++ b/programs/winecfg/Fr.rc
@@ -66,8 +66,8 @@ STYLE WS_CHILD | WS_DISABLED
FONT 8, "MS Shell Dlg"
BEGIN
GROUPBOX " Paramètres des fenêtres ",IDC_STATIC,8,4,244,92
- CONTROL "Automatically capture the &mouse in full-screen windows",IDC_FULLSCREEN_GRAB,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,16,230,16
- CONTROL "Permettre au gestionnaire de fenêtres de &décorer les fenêtres",IDC_ENABLE_DECORATED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,36,230,8
+ CONTROL "Capturer automatiquement la &souris dans les fenêtres plein écran",IDC_FULLSCREEN_GRAB,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,16,230,16
+ CONTROL "Permettre au gestionnaire de fenêtres de &décorer les fenêtres",IDC_ENABLE_DECORATED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,35,230,8
CONTROL "Permettre au gestionnaire de fenêtres de &contrôler les fenêtres",IDC_ENABLE_MANAGED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,50,230,8
CONTROL "Émuler un bureau virtuel",IDC_ENABLE_DESKTOP,"Button",
BS_AUTOCHECKBOX | WS_TABSTOP,15,64,230,8
Module: wine
Branch: master
Commit: 2b2c5f35ac2708172fbc9a84576b3ec365759e36
URL: http://source.winehq.org/git/wine.git/?a=commit;h=2b2c5f35ac2708172fbc9a845…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Wed May 11 20:17:18 2011 +0200
include: Update a comment.
---
include/basetsd.h | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/include/basetsd.h b/include/basetsd.h
index 852f6f4..922c91c 100644
--- a/include/basetsd.h
+++ b/include/basetsd.h
@@ -27,15 +27,13 @@ extern "C" {
#endif /* defined(__cplusplus) */
/*
- * Win32 was easy to implement under Unix since most (all?) 32-bit
- * Unices uses the same type model (ILP32) as Win32, where int, long
- * and pointer are 32-bit.
+ * Win32 was easy to implement under Unix since most 32-bit Unices use the same
+ * type model (ILP32) as Win32, where int, long and pointer are 32-bit.
*
- * Win64, however, will cause some problems when implemented under Unix.
- * Linux/{Alpha, Sparc64} and most (all?) other 64-bit Unices use
- * the LP64 type model where int is 32-bit and long and pointer are
- * 64-bit. Win64 on the other hand uses the P64 (sometimes called LLP64)
- * type model where int and long are 32 bit and pointer is 64-bit.
+ * Win64, however, can cause some problems. Most 64-bit Unices use the LP64 type
+ * model where int is 32-bit and long and pointer are 64-bit. Win64 on the other
+ * hand uses the LLP64 type model where int and long are 32 bit and pointer is
+ * 64-bit.
*/
#if defined(__x86_64__) && !defined(_WIN64)