Raymond Toy pushed to branch issue-125-unix-stat-wrong at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • src/i18n/locale/cmucl-unix.pot
    ... ... @@ -486,6 +486,76 @@ msgstr ""
    486 486
     msgid "Size of control character vector."
    
    487 487
     msgstr ""
    
    488 488
     
    
    489
    +#: src/code/unix.lisp
    
    490
    +msgid ""
    
    491
    +"Unix-stat retrieves information about the specified\n"
    
    492
    +"   file returning them in the form of multiple values.  If the call\n"
    
    493
    +"   fails, then NIL and an error number is returned.  If the call\n"
    
    494
    +"   succeeds, then T is returned in addition to the following values\n"
    
    495
    +"   from the stat struct st:\n"
    
    496
    +"\n"
    
    497
    +"     st_dev        Device ID\n"
    
    498
    +"     st_ino        File serial number\n"
    
    499
    +"     st_mode       Mode of file\n"
    
    500
    +"     st_nlink      Number of hard links to the file\n"
    
    501
    +"     st_uid        User ID\n"
    
    502
    +"     st_gid        Group ID\n"
    
    503
    +"     st_rdev       Device ID (if file is character or block special)\n"
    
    504
    +"     st_atime      Last data access time, in sec\n"
    
    505
    +"     st_mtime      Last data modification time, in sec\n"
    
    506
    +"     st_ctime      Last file status change time, in sec\n"
    
    507
    +"     st_blksize    Preferred I/O block size\n"
    
    508
    +"     st_blocks     Number of blocks allocated. (Block size is implementation"
    
    509
    +" dependent.)\n"
    
    510
    +""
    
    511
    +msgstr ""
    
    512
    +
    
    513
    +#: src/code/unix.lisp
    
    514
    +msgid ""
    
    515
    +"Unix-fstat is similar to unix-stat except the file is specified\n"
    
    516
    +"   by the file descriptor fd.  If the call fails, then NIL and an\n"
    
    517
    +"   error number is returned.  If the call succeeds, then T is returned\n"
    
    518
    +"   in addition to the following values from the stat struct st:\n"
    
    519
    +"\n"
    
    520
    +"     st_dev        Device ID\n"
    
    521
    +"     st_ino        File serial number\n"
    
    522
    +"     st_mode       Mode of file\n"
    
    523
    +"     st_nlink      Number of hard links to the file\n"
    
    524
    +"     st_uid        User ID\n"
    
    525
    +"     st_gid        Group ID\n"
    
    526
    +"     st_rdev       Device ID (if file is character or block special)\n"
    
    527
    +"     st_atime      Last data access time, in sec\n"
    
    528
    +"     st_mtime      Last data modification time, in sec\n"
    
    529
    +"     st_ctime      Last file status change time, in sec\n"
    
    530
    +"     st_blksize    Preferred I/O block size\n"
    
    531
    +"     st_blocks     Number of blocks allocated. (Block size is implementation"
    
    532
    +" dependent.)\n"
    
    533
    +""
    
    534
    +msgstr ""
    
    535
    +
    
    536
    +#: src/code/unix.lisp
    
    537
    +msgid ""
    
    538
    +"Unix-lstat is similar to unix-stat except the specified\n"
    
    539
    +"   file must be a symbolic link.  If the call fails, then NIL and an\n"
    
    540
    +"   error number is returned.  If the call succeeds, then T is returned\n"
    
    541
    +"   in addition to the following values from the stat struct st:\n"
    
    542
    +"\n"
    
    543
    +"     st_dev        Device ID\n"
    
    544
    +"     st_ino        File serial number\n"
    
    545
    +"     st_mode       Mode of file\n"
    
    546
    +"     st_nlink      Number of hard links to the file\n"
    
    547
    +"     st_uid        User ID\n"
    
    548
    +"     st_gid        Group ID\n"
    
    549
    +"     st_rdev       Device ID (if file is character or block special)\n"
    
    550
    +"     st_atime      Last data access time, in sec\n"
    
    551
    +"     st_mtime      Last data modification time, in sec\n"
    
    552
    +"     st_ctime      Last file status change time, in sec\n"
    
    553
    +"     st_blksize    Preferred I/O block size\n"
    
    554
    +"     st_blocks     Number of blocks allocated. (Block size is implementation"
    
    555
    +" dependent.)\n"
    
    556
    +""
    
    557
    +msgstr ""
    
    558
    +
    
    489 559
     #: src/code/unix.lisp
    
    490 560
     msgid ""
    
    491 561
     "Unix-stat retrieves information about the specified\n"
    
    ... ... @@ -497,14 +567,14 @@ msgstr ""
    497 567
     
    
    498 568
     #: src/code/unix.lisp
    
    499 569
     msgid ""
    
    500
    -"Unix-fstat is similar to unix-stat except the file is specified\n"
    
    501
    -"   by the file descriptor fd."
    
    570
    +"Unix-lstat is similar to unix-stat except the specified\n"
    
    571
    +"   file must be a symbolic link."
    
    502 572
     msgstr ""
    
    503 573
     
    
    504 574
     #: src/code/unix.lisp
    
    505 575
     msgid ""
    
    506
    -"Unix-lstat is similar to unix-stat except the specified\n"
    
    507
    -"   file must be a symbolic link."
    
    576
    +"Unix-fstat is similar to unix-stat except the file is specified\n"
    
    577
    +"   by the file descriptor fd."
    
    508 578
     msgstr ""
    
    509 579
     
    
    510 580
     #: src/code/unix.lisp