Module: wine
Branch: master
Commit: 12099f3d9ecf964022d4022eed11d816eef767f4
URL: http://source.winehq.org/git/wine.git/?a=commit;h=12099f3d9ecf964022d4022ee…
Author: Luca Bennati <lucak3(a)gmail.com>
Date: Sun Nov 21 16:50:08 2010 +0100
cmd: Fix Italian translation.
---
programs/cmd/It.rc | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/programs/cmd/It.rc b/programs/cmd/It.rc
index 7648f24..2254350 100644
--- a/programs/cmd/It.rc
+++ b/programs/cmd/It.rc
@@ -74,9 +74,9 @@ esiste nel cmd di wine.\n"
"Il comando GOTO trasferisce l'esecuzione ad un'altra istruzione dentro un\n\
file batch.\n\
\n\
-L'etichetta che è l'obiettivo di un GOTO può essere lunga fino a 255 caratteri\n\
+L'etichetta di destinazione di un GOTO può essere lunga fino a 255 caratteri\n\
ma non può includere spazi (questo è differente da altri sistemi\n\
-operativi). Se esistono due o più etichette identiche esistono in un file batch, la\n\
+operativi). Se esistono due o più etichette identiche in un file batch, la\n\
prima sarà sempre eseguita. Tentare un GOTO verso un'etichetta\n\
inesistente termina l'esecuzione del file batch.\n\
\n\
@@ -257,7 +257,7 @@ Inserisci HELP <comando> per maggiori informazioni su ciascuno dei comandi sopra
WCMD_SYNTAXERR, "Errore di sintassi\n"
WCMD_FILENOTFOUND, "%s : File non trovato\n"
WCMD_NOCMDHELP, "Nessun aiuto disponibile per %s\n"
- WCMD_NOTARGET, "Obiettivo del GOTO non trovato\n"
+ WCMD_NOTARGET, "Destinazione del GOTO non trovata\n"
WCMD_CURRENTDATE, "La data attuale è %s\n"
WCMD_CURRENTTIME, "L'ora attuale è %s\n"
WCMD_NEWDATE, "Inserisci una nuova data: "
Module: wine
Branch: master
Commit: 78cf0961e903b91c8e8825d589d4130cb0a0a40b
URL: http://source.winehq.org/git/wine.git/?a=commit;h=78cf0961e903b91c8e8825d58…
Author: Eric Pouech <eric.pouech(a)orange.fr>
Date: Sun Nov 21 22:19:40 2010 +0100
winedbg: Moved into a common function all code dealing with printing information about an exception, and use this function to implement new 'info exception' command.
---
programs/winedbg/dbg.y | 1 +
programs/winedbg/debugger.h | 4 +
programs/winedbg/info.c | 157 ++++++++++++++++++++++++++++++++++++++++
programs/winedbg/tgt_active.c | 160 +++--------------------------------------
4 files changed, 173 insertions(+), 149 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=78cf0961e903b91c8e882…