summaryrefslogtreecommitdiffstats
path: root/chinese/pine4/files/patch-aq
blob: e3e54a273332d2669c1affb81403897b0f2a5c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
--- pico/pico.c.orig	Tue Jul  7 05:41:45 1998
+++ pico/pico.c	Tue Aug  4 12:42:15 1998
@@ -318,7 +318,7 @@
 	c = GetKey();
         if (term.t_nrow < 6 && c != NODATA){
             (*term.t_beep)();
-            emlwrite("Please make the screen bigger.", NULL);
+            emlwrite("請將畫面調大一些。", NULL);
             continue;
         }
 
@@ -560,9 +560,9 @@
     }
     
     if(c&CTRL)
-      emlwrite("\007Unknown Command: ^%c", (void *)(c&0xff));
+      emlwrite("\007未知的命令:^%c", (void *)(c&0xff));
     else
-      emlwrite("\007Unknown Command", NULL);
+      emlwrite("\007未知的命令", NULL);
 
     lastflag = 0;                           /* Fake last flags.     */
     return (FALSE);
@@ -615,7 +615,7 @@
 	    return(TRUE);
 	}
 	else{
-	    emlwrite("Cancel Cancelled", NULL);
+	    emlwrite("取消", NULL);
 	    curwp->w_flag |= WFMODE;		/* and modeline so we  */
 	    sgarbk = TRUE;			/* redraw the keymenu  */
 	    pclear(term.t_nrow - 1, term.t_nrow + 1);
@@ -624,17 +624,17 @@
 	}
     }
     else switch(mlyesno(Pmaster->headents
-	 ? "Cancel message (answering \"Yes\" will abandon your mail message)"
+	 ? "\"取消\"這個動作將會放棄你目前的信件。確定取消嗎"
 	 : (anycb() == FALSE)
-	     ? "Cancel Edit (and abandon changes)"
-	     : "Cancel Edit",
+	     ? "取消編輯(並放棄所有的改變)"
+	     : "取消編輯",
 	 FALSE)){
       case TRUE:
 	pico_all_done = COMP_CANCEL;
 	return(TRUE);
 
       case ABORT:
-	emlwrite("\007Cancel Cancelled", NULL);
+	emlwrite("\007取消", NULL);
 	break;
 
       default:
@@ -672,7 +672,7 @@
 
 	/* First, make sure there are no outstanding problems */ 
 	if(AttachError()){
-	    emlwrite("\007Problem with attachments!  Fix errors or delete attachments.", NULL);
+	    emlwrite("\007有問題的附件! 請修復或刪除該附件。", NULL);
 	    return(FALSE);
 	}
 
@@ -706,7 +706,7 @@
         if (f != FALSE                          /* Argument forces it.  */
         || anycb() == FALSE                     /* All buffers clean.   */
 						/* User says it's OK.   */
-        || (s=mlyesno("Save modified buffer (ANSWERING \"No\" WILL DESTROY CHANGES)", -1)) == FALSE) {
+        || (s=mlyesno("存入更改過的緩衝區 (回答 \"No\" 將清除所有已做過的修改)", -1)) == FALSE) {
                 vttidy();
 #if     defined(USE_TERMCAP) || defined(USE_TERMINFO) || defined(VMS)
 		kbdestroy(kbesc);
@@ -719,7 +719,7 @@
 	      wquit(1, 0);
 	}
 	else if(s == ABORT){
-	    emlwrite("Exit cancelled", NULL);
+	    emlwrite("取消離開", NULL);
 	    if(term.t_mrow == 0)
 	      curwp->w_flag |= WFHARD;	/* cause bottom 3 lines to paint */
 	}
@@ -753,7 +753,7 @@
 ctrlg(f, n)
 int f, n;
 {
-    emlwrite("Cancelled", NULL);
+    emlwrite("取消", NULL);
     return (ABORT);
 }
 
@@ -764,7 +764,7 @@
 rdonly()
 {
     (*term.t_beep)();
-    emlwrite("Key illegal in VIEW mode", NULL);
+    emlwrite("這不是一個在 VIEW 模式中合法的命令", NULL);
     return(FALSE);
 }
 
@@ -1289,7 +1289,7 @@
        wp->doto = 0;
    }
    else
-     emlwrite("Can't allocate space for text", NULL);
+     emlwrite("無法配置文字的記憶體空間", NULL);
 
    return((void *)wp);
 }
@@ -1377,7 +1377,7 @@
 	    register LINE *lp;
 
 	    if((lp = lalloc(0)) == NULL){
-		emlwrite("Can't allocate space for more characters",NULL);
+		emlwrite("無法配置記憶體空間給更多的字元",NULL);
 		return(0);
 	    }
 
OpenPOWER on IntegriCloud