]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.052
- initial import
[packages/vim.git] / 6.2.052
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.052
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.052
11 Problem:    A few messages are not translated.
12 Solution:   Add _() to the messages. (Muraoka Taro)
13 Files:      src/ex_cmds.c
14
15
16 *** ../vim-6.2.051/src/ex_cmds.c        Sun May 25 17:21:20 2003
17 --- src/ex_cmds.c       Fri Jun 27 20:44:42 2003
18 ***************
19 *** 114,125 ****
20                 )
21             IObuff[len++] = ' '; /* draw composing char on top of a space */
22         IObuff[len + (*mb_char2bytes)(c, IObuff + len)] = NUL;
23 !       if (c < 0x10000)
24 !           sprintf((char *)IObuff + STRLEN(IObuff),
25 !                                        "> %d, Hex %04x, Octal %o", c, c, c);
26 !       else
27 !           sprintf((char *)IObuff + STRLEN(IObuff),
28 !                                        "> %d, Hex %08x, Octal %o", c, c, c);
29         c = c1;
30         c1 = c2;
31         c2 = 0;
32 --- 114,122 ----
33                 )
34             IObuff[len++] = ' '; /* draw composing char on top of a space */
35         IObuff[len + (*mb_char2bytes)(c, IObuff + len)] = NUL;
36 !       sprintf((char *)IObuff + STRLEN(IObuff),
37 !                       c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
38 !                                   : _("> %d, Hex %08x, Octal %o"), c, c, c);
39         c = c1;
40         c1 = c2;
41         c2 = 0;
42 *** ../vim-6.2.051/src/version.c        Sun Jul 27 14:49:17 2003
43 --- src/version.c       Sun Jul 27 14:51:22 2003
44 ***************
45 *** 632,633 ****
46 --- 632,635 ----
47   {   /* Add new patch number below this line */
48 + /**/
49 +     52,
50   /**/
51
52 -- 
53 BEDEVERE:        And what do you burn, apart from witches?
54 FOURTH VILLAGER: ... Wood?
55 BEDEVERE:        So why do witches burn?
56 SECOND VILLAGER: (pianissimo) ... Because they're made of wood...?
57                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
58
59  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
60 ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
61 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
62  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.027448 seconds and 3 git commands to generate.