forked from KolibriOS/kolibrios
Fix EN typos
- Corrections for en_US language. - Some whitespace sanitation. git-svn-id: svn://kolibrios.org@10067 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
d7a4b62ed5
commit
ae43d8f454
@ -19,7 +19,7 @@ In panels:
|
|||||||
d) Ctrl+F6 - sorting by date of modification.
|
d) Ctrl+F6 - sorting by date of modification.
|
||||||
7) Ctrl+R - repeated loading of contents of the directory in the active panel.
|
7) Ctrl+R - repeated loading of contents of the directory in the active panel.
|
||||||
8) Delete and F8 - the deleting of the file on which is the cursor.
|
8) Delete and F8 - the deleting of the file on which is the cursor.
|
||||||
9) Insert - the selection by red colour of the file on which is the cursor and cursor update on 1 position downwards.
|
9) Insert - the selection by red color of the file on which is the cursor and cursor update on 1 position downwards.
|
||||||
10) F4 - to open the file for editing in the registered application, according to a contents of the file kfm.ini, unit " < > files association1 ".
|
10) F4 - to open the file for editing in the registered application, according to a contents of the file kfm.ini, unit " < > files association1 ".
|
||||||
11) F7 - creation of the directory in the active panel.
|
11) F7 - creation of the directory in the active panel.
|
||||||
12) F5 - copying file from the active panel in opposite.
|
12) F5 - copying file from the active panel in opposite.
|
||||||
|
@ -536,7 +536,7 @@ int main(argc,argv)
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
strncpy(filename_try, zipfilename,MAXFILENAME-1);
|
strncpy(filename_try, zipfilename,MAXFILENAME-1);
|
||||||
/* strncpy doesnt append the trailing NULL, of the string is too long. */
|
/* strncpy doesn't append the trailing NULL, of the string is too long. */
|
||||||
filename_try[ MAXFILENAME ] = '\0';
|
filename_try[ MAXFILENAME ] = '\0';
|
||||||
|
|
||||||
# ifdef USEWIN32IOAPI
|
# ifdef USEWIN32IOAPI
|
||||||
|
@ -77,7 +77,7 @@ uLong filetime(f, tmzip, dt)
|
|||||||
len = MAXFILENAME;
|
len = MAXFILENAME;
|
||||||
|
|
||||||
strncpy(name, f,MAXFILENAME-1);
|
strncpy(name, f,MAXFILENAME-1);
|
||||||
/* strncpy doesnt append the trailing NULL, of the string is too long. */
|
/* strncpy doesn't append the trailing NULL, of the string is too long. */
|
||||||
name[ MAXFILENAME ] = '\0';
|
name[ MAXFILENAME ] = '\0';
|
||||||
|
|
||||||
if (name[len - 1] == '/')
|
if (name[len - 1] == '/')
|
||||||
@ -253,7 +253,7 @@ int main(argc,argv)
|
|||||||
|
|
||||||
zipok = 1 ;
|
zipok = 1 ;
|
||||||
strncpy(filename_try, argv[zipfilenamearg],MAXFILENAME-1);
|
strncpy(filename_try, argv[zipfilenamearg],MAXFILENAME-1);
|
||||||
/* strncpy doesnt append the trailing NULL, of the string is too long. */
|
/* strncpy doesn't append the trailing NULL, of the string is too long. */
|
||||||
filename_try[ MAXFILENAME ] = '\0';
|
filename_try[ MAXFILENAME ] = '\0';
|
||||||
|
|
||||||
len=(int)strlen(filename_try);
|
len=(int)strlen(filename_try);
|
||||||
|
@ -150,10 +150,10 @@ int mkdir(const char *_path, mode_t m)
|
|||||||
|
|
||||||
//debug_board_printf("mkdir start (%s)\n", _path);
|
//debug_board_printf("mkdir start (%s)\n", _path);
|
||||||
memset(di, 0, sizeof(struct fs_dirinfo));
|
memset(di, 0, sizeof(struct fs_dirinfo));
|
||||||
//di.ppath = (char*)_path; // dont work with 70.9
|
//di.ppath = (char*)_path; // don't work with 70.9
|
||||||
strcpy(di->path, _path);
|
strcpy(di->path, _path);
|
||||||
|
|
||||||
int rc = sf_file(9, di); // creat dir
|
int rc = sf_file(9, di); // create dir
|
||||||
if(rc) {
|
if(rc) {
|
||||||
fprintf(stderr, "Error %d creating dir item %s\n", rc, _path);
|
fprintf(stderr, "Error %d creating dir item %s\n", rc, _path);
|
||||||
errno = rc;
|
errno = rc;
|
||||||
|
@ -671,7 +671,7 @@ void close_outfile(__G) /* GRR: change to return PK-style warning level */
|
|||||||
/* skip restoring time stamps on user's request */
|
/* skip restoring time stamps on user's request */
|
||||||
if (uO.D_flag <= 1) {
|
if (uO.D_flag <= 1) {
|
||||||
/* set the file's access and modification times */
|
/* set the file's access and modification times */
|
||||||
/* siemargl: dont using extra fields */
|
/* siemargl: don't using extra fields */
|
||||||
unsigned ftim, fdat;
|
unsigned ftim, fdat;
|
||||||
dos_to_kolibri_time(G.lrec.last_mod_dos_datetime, &fdat, &ftim);
|
dos_to_kolibri_time(G.lrec.last_mod_dos_datetime, &fdat, &ftim);
|
||||||
|
|
||||||
@ -849,7 +849,7 @@ int set_direc_attribs(__G__ d)
|
|||||||
/* skip restoring time stamps on user's request */
|
/* skip restoring time stamps on user's request */
|
||||||
if (uO.D_flag <= 0) {
|
if (uO.D_flag <= 0) {
|
||||||
/* set the file's access and modification times */
|
/* set the file's access and modification times */
|
||||||
/* siemargl: dont using extra fields */
|
/* siemargl: don't using extra fields */
|
||||||
unsigned ftim, fdat;
|
unsigned ftim, fdat;
|
||||||
dos_to_kolibri_time(G.lrec.last_mod_dos_datetime, &fdat, &ftim);
|
dos_to_kolibri_time(G.lrec.last_mod_dos_datetime, &fdat, &ftim);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user