summaryrefslogtreecommitdiff
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
* maint: Update copyright statements to 2022Brian C. Lane2022-03-231-1/+1
| | | | By running make update-copyright
* maint: Update copyright statements to 2021Brian C. Lane2021-01-181-1/+1
| | | | By running make update-copyright
* po/POTFILES.in: Remove xstrtol-error.cBrian C. Lane2020-12-111-1/+0
| | | | | Appears to no longer be needed, results in an error when running make check syntax-check.
* maint: Update copyright statements to 2020Brian C. Lane2020-12-111-1/+1
| | | | By running make update-copyright
* maint: Update copyright statements to 2019Brian C. Lane2019-08-121-1/+1
| | | | By running make update-copyright
* po: Add argmatch.hBrian C. Lane2019-08-091-0/+1
|
* libparted: Add support for atari partition tablesJohn Paul Adrian Glaubitz2016-12-221-0/+1
| | | | | Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Signed-off-by: Brian C. Lane <bcl@redhat.com>
* maint: run "make update-copyright"Jim Meyering2014-05-251-1/+1
|
* maint: update all copyright year number rangesJim Meyering2013-01-061-1/+1
| | | | Run "make update-copyright".
* lib-fs-resize: re-add HFS and FAT file-system-related codeJim Meyering2012-02-071-0/+19
| | | | | This just adds the code, without hooking it up yet. * po/POTFILES.in: Add all libparted/fs/r/**.c files.
* maint: update all copyright year number rangesJim Meyering2012-01-011-1/+1
| | | | Run "make update-copyright".
* maint: update po/POTFILES.inJim Meyering2011-05-271-30/+0
| | | | * po/POTFILES.in: Remove file names, to reflect file deletions.
* fat: remove all-but-probe FS-related codeJim Meyering2011-05-271-5/+0
|
* remove all top-level FS-op code and the clearfat programJim Meyering2011-05-271-2/+0
|
* maint: update copyright year ranges to include 2011Jim Meyering2011-02-221-1/+1
| | | | Run "make update-copyright".
* build: update gnulib submodule to latestJim Meyering2010-11-211-0/+3
| | | | | | avoid new syntax-check failures * .x-sc_cross_check_PATH_usage_in_tests: New file. * .x-sc_bindtextdomain: New file.
* maint: update all FSF copyright year lists to include 2010Jim Meyering2010-01-081-1/+1
| | | | Run this command: make update-copyright
* ui: add --align command-line option to specify mkpart alignmentHans de Goede2009-12-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new --align command-line option can have the following values: none: Use the minimum alignment allowed by the disk type cylinder: Align partitions to cylinders (the default) minimal: Use minimum alignment as given by the disk topology information optimal: Use optimum alignment as given by the disk topology information Note the "minimal" and "optimal" values will use layout information provided by the disk to align the logical partition table addresses to actual physical blocks on the disks. The "minimal" value is the minimum aligment needed to align the partition properly to physical blocks, which avoids performance degradation. Whereas the "optimum" alignment align's to a multiple of the physical block size in a way that guarantees optimal performance. The "minimal" and "optimal" values are useful only when parted is compiled with libblkid >= 2.17 and running on a kernel >= 2.6.31, otherwise they are equivalent to --align=none. * parted/parted.c (ALIGNMENT_ enum values): New enum. (options, options_help): Add --align option. (align_args, align_types, alignment): New global variables. (do_mkpart): Honor aligment variable. (_parse_options): handle --align option. * bootstrap.conf (gnulib_modules): Add argmatch. * NEWS: Mention the new --align option. * doc/parted.texi: Document --align option. * doc/C/parted.8: Likewise.
* maint: update most copyright year lists to include 2009Jim Meyering2009-09-291-1/+1
| | | | | | I used this command: make update-copyright \ UPDATE_COPYRIGHT_FORCE=1 UPDATE_COPYRIGHT_USE_INTERVALS=1
* put the maximum sector checks in pt-tools.cJoel Granados Moreno2009-07-241-0/+1
| | | | | | | | | | * libparted/labels/dos.c (msdos_partition_check): Use new ptt_partition_max_start_len function to test for len and start maxs. * libparted/labels/dvh.c (msdos_partition_check): Likewise. * libparted/labels/pt-tools.c (ptt_partition_max_start_len): New function. * libparted/labels/pt-tools.h: Likewise. * po/POTFILES.in: Add pt-tools.c to the translation list.
* fix >512-byte sector label/disk-test failureJim Meyering2009-07-241-1/+1
| | | | | | | | | | | * libparted/tests/disk.c: Include xstrtol.h. (get_sector_size): New function: get sector size from the environment. (create_disk): Use the new function to calculate a usable size, rather than hard-coding the 512-byte-sector-specific size of 20MB. * libparted/tests/common.c (_create_disk): Change meaning (and name) of parameter to be size in bytes, not MiB. Adjust callers. * po/POTFILES.in: Add lib/xstrtol-error.c.
* Revert "don't try to translate 'lib/xstrtol-error.c'"Jim Meyering2009-02-071-0/+1
| | | | | This reverts commit 39adc77de255b7df33e1efb93853c7ccfd4c45f5. Otherwise, "make syntax-check" fails the sc_po_check test.
* don't try to translate 'lib/xstrtol-error.c'Otavio Salvador2009-02-061-1/+0
|
* * po/POTFILES.in: Add lib/xstrtol-error.c.Jim Meyering2009-01-261-1/+2
|
* po/POTFILES.in: Add lib/getopt.cJim Meyering2007-03-161-0/+1
|
* * po/POTFILES.in: Add partprobe/partprobe.c, now that it containsJim Meyering2007-03-051-0/+1
| | | | translatable strings.
* Make clearfat accept --help and --version options.Jim Meyering2007-03-051-0/+2
| | | | | | | | | | * debug/clearfat/clearfat.c (AUTHORS, PROGRAM_NAME): Define. Include gettext-related things. Include closeout.h. (usage): New function. (main): Set up for translations, use close_stdout. * bootstrap.conf: Add long-options, for clearfat. * debug/clearfat/Makefile.am: Use gnulib.
* Enable the po-check rule.Jim Meyering2007-03-021-19/+27
| | | | | | * Makefile.cfg (local-checks-to-skip): Remove po-check. * po/POTFILES.in: Add a bunch of names of files that contain translatable strings. Remove some which contain none.
* Add a bunch of .gitignore files.Jim Meyering2007-02-251-0/+18
|
* Remove now-generated files.Jim Meyering2007-02-2525-62882/+0
| | | | | | | | | * po/ca.po, po/cs.po, po/da.po, po/de.po, po/es.po, po/fr.po: * po/gl.po, po/id.po, po/it.po, po/ja.po, po/nl.po, po/nn.po: * po/pl.po, po/pt.po, po/pt_BR.po, po/ru.po: * po/sv.po, po/tr.po, po/uk.po, po/vi.po, po/zh_CN.po, po/zh_TW.po: * po/Makevars: Remove now-generated file. * po/parted.pot: Remove -generated file.
* Fixed the copyright notices.Debarshi Ray2007-02-141-0/+7
|
* Updated i18n information.David Cantrell2007-01-1224-6341/+9246
|
* Updated translations.Leslie P. Polzer2006-12-113-492/+558
|
* Rename all old ChangeLog files to ChangeLog.0. Added code to the ↵David Cantrell2006-12-031-0/+0
| | | | tarball_upload.sh script to generate a toplevel ChangeLog from the git changelog.
* Updated translations.Leslie P. Polzer2006-11-274-3119/+1356
|
* i18n updates.David Cantrell2006-10-1124-3244/+3667
| | | | git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@850 2d424fd7-7fe2-0310-af74-8bc65edeb173
* Updated i18n files.David Cantrell2006-10-0924-744/+744
| | | | git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@841 2d424fd7-7fe2-0310-af74-8bc65edeb173
* i18n updates for parted-1.8.0.David Cantrell2006-09-151-164/+191
| | | | git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@826 2d424fd7-7fe2-0310-af74-8bc65edeb173
* Removed from version control.David Cantrell2006-09-151-56/+0
| | | | git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@825 2d424fd7-7fe2-0310-af74-8bc65edeb173
* i18n updates for parted-1.8.0.David Cantrell2006-09-1523-4047/+4911
| | | | git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@824 2d424fd7-7fe2-0310-af74-8bc65edeb173
* Fix ChangeLogAnant Narayanan2006-09-1434-0/+60646
git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@820 2d424fd7-7fe2-0310-af74-8bc65edeb173