summaryrefslogtreecommitdiffstats
path: root/po/quilt.pot
Commit message (Collapse)AuthorAgeFilesLines
* - lib/backup-files.c: add missing dependency on config.h. CheckAndreas Gruenbacher2005-09-181-6/+6
| | | | | for chmod and fchmod support. Remove two unnecessary chmod calls. - Makefile.in: fix cyclic dependency on Makefile.
* - Merge compatibility layer from John Vandenberg <jayvdb@gmail.com>.Andreas Gruenbacher2005-09-171-6/+6
|
* - Fix off-by-one error: it's not a good idea to edit $x insteadAndreas Gruenbacher2005-09-151-11/+11
| | | | of $x.in.
* - quilt/pop.in: get rid of tac.Andreas Gruenbacher2005-09-151-13/+13
|
* - quilt/mail.in: Remove stray getopt line. If --subject is given,Andreas Gruenbacher2005-09-141-13/+17
| | | | actually fill in the subject in the message template.
* - quilt/diff.in: Fix incorrect error message when incompatible optionsJean Delvare2005-09-041-1/+2
| | | | are used. Fix direct call to awk.
* Resync line numbers (refresh.in and patchfns.in.)Jean Delvare2005-09-021-4/+4
|
* - quilt/delete.in: Drop extra spaces in usage line.Jean Delvare2005-08-261-3/+5
| | | | | | - quilt/graph.in: Add missing -T option to usage line. - quilt/push.in: Add missing --interactive and --color options to usage line.
* - quilt/header.in, quilt/refresh.in: Drop trailing tab character in helpJean Delvare2005-08-261-2/+2
| | | | message.
* - quilt/delete.in: Add options -r (remove patch file) and --backupJean Delvare2005-08-261-7/+21
| | | | (backup rather than remove.) Patch from Joe Green.
* - scripts/patchfns.in: insert_in_series(): Insert new patchesAndreas Gruenbacher2005-08-261-6/+6
| | | | | | before the following patch instead of after the top patch. When no patch is in the series file, insert the new patch at the end (i.e., after comments from setup, etc.) instead of at the top.
* - quilt/fold.in: fold did not work when invoked from aAndreas Gruenbacher2005-08-221-9/+10
| | | | subdirectory; update test case.
* - Japanese translation update from Yasushi SHOJIAndreas Gruenbacher2005-07-251-2/+2
| | | | <yashi@atmark-techno.com>.
* - Let the perl scripts (edmail, parse-patch and remove-trailing-ws) workJean Delvare2005-07-241-14/+14
| | | | without Locale::gettext.
* - Another translation fix.Andreas Gruenbacher2005-07-191-1/+1
|
* - Fix a few translation bugs; update german translation.Andreas Gruenbacher2005-07-191-164/+166
|
* - Add internationalization support to Perl scripts as well.Andreas Gruenbacher2005-07-181-139/+277
|
* - Based on work done by several contributers, add a headerv0.41Andreas Gruenbacher2005-07-181-5/+3
| | | | | command. - Bump version to 0.41.
* Update the French translation.Jean Delvare2005-07-141-3/+3
|
* - quilt delete: Add option -n, which deletes the next patchJean Delvare2005-07-061-6/+13
| | | | after topmost (rather than the specified or topmost patch).
* quilt delete: Display the name of the deleted patch on success.Jean Delvare2005-07-051-0/+4
|
* - Remove outdated BUGS file and references.Andreas Gruenbacher2005-07-021-2/+2
| | | | | - refresh command: don't write into existing patches but create new files instead to avoid overwriting hardlinked copies.
* Fix a typo in diff.in's help.Jean Delvare2005-06-291-1/+1
|
* - quilt diff: Fix -z option if QUILT_PATCHES is an absolute path.Andreas Gruenbacher2005-06-271-17/+5
|
* - Jean Delvare:Andreas Gruenbacher2005-06-261-5/+14
| | | | | + Add a --version option that prints the program version. + patch_args: Fix comments parsing in series files.
* - add command: "File %s added to patch %s" message goes to stdoutAndreas Gruenbacher2005-06-211-19/+23
| | | | | | and not to stderr (Jean Delvare). - Don't fail when popping missing patches (Jerome Lacoste, Jean Delvare, I).
* - Add fix for refresh --strip-trailing-whitespace option: nowAndreas Gruenbacher2005-06-181-6/+7
| | | | | | | refresh always checks for trailing whitespace and reports it per file and line number. With --strip-trailing-whitespace it strips the whitespace from the patch and from the affected files in the working tree.
* - quilt/refresh.in: Fix last change.Andreas Gruenbacher2005-06-141-1/+1
|
* - refresh command: also touch .pc/$patch/.timestamp when a patchAndreas Gruenbacher2005-06-141-1/+1
| | | | | is found to be up-to-date (Peter Williams, <pwil3058@bigpond.net.au>).
* - Add --no-index option to diff and refresh commands: SuppressAndreas Gruenbacher2005-06-061-28/+35
| | | | Index: lines in the patch. From Jean Delvare <khali@linux-fr.org>.
* - Add add-filename-check.test and trailing-ws.test test cases.Andreas Gruenbacher2005-04-291-20/+34
|
* - Add --sort options to the diff and refresh commands whichAndreas Gruenbacher2005-04-131-27/+31
| | | | | | | | | | sorts files by filename. The default is to keep files in their original order whenever possible. - refresh command: add new files in sort order instead of the filesystem order. - diff command: output files in the order in which they show up in the patch instead of sorting them alphabetically. - Add sort testcase.
* - Fix typo and translation updates.Andreas Gruenbacher2005-03-061-15/+105
| | | | | | - Add a missing ``exit 1'' to quilt/fold.in when no patches are applied. (All except the German translation update from Yasushi SHOJI -- thanks.)
* - Don't leak so many temporary files in the push command.Andreas Gruenbacher2005-02-061-37/+40
| | | | - Include command names in tempfile names to find leaks more easily.
* - Add mail command, doc/README.MAIL and example ``mail'' commandAndreas Gruenbacher2005-01-231-18/+19
| | | | | filter in quilt.quiltrc. - Bump version to 0.38.
* - Push command: Write out output of patch process immediatelyAndreas Gruenbacher2004-11-191-20/+12
| | | | | instead of reading into a variable and then printing that variable. This helps to see what's happening with large patches.
* - Get rid of the apatch and rpatch helper scripts: Integrate themAndreas Gruenbacher2004-11-151-61/+50
| | | | | in the push and pop commands. This should bring a small performance improvement.
* - Fix a message; took a while. Thanks Yasushi SHOJIAndreas Gruenbacher2004-09-131-1/+1
| | | | <yashi@atmark-techno.com>.
* - bin/quilt.in: Add optional verbose modifier to --trace optionAndreas Gruenbacher2004-09-131-4/+4
| | | | by request of Dean Roehrich <roehrich@sgi.com>.
* - setup command: detect errors when running ``rpm -bp'' andAndreas Gruenbacher2004-08-131-1/+9
| | | | improve the messages of ``quilt setup''.
* - Merge improvement to files command from Dean Roehrich: Allow toAndreas Gruenbacher2004-08-111-15/+24
| | | | | | list all files modified, or all files modified by a range of patches. - Fix pop command help.
* - Working in sub-directories: `quilt new' so far did alwaysAndreas Gruenbacher2004-08-111-6/+2
| | | | | | | | create patches in the current directory, even if the current directory appeared to be a sub-directory of the working tree. This was confusing for several people now. Make `quilt new' behave like all other commands, and thus allow it to be used from within sub-directories.
* - Fix wrong pop command help text.Andreas Gruenbacher2004-08-111-12/+13
|
* Sync to source codeMartin Quinson2004-07-131-3/+3
|
* - Also set TEXTDOMAINDIR in the wrapper script (bin/quilt.in).Andreas Gruenbacher2004-07-121-3/+3
|
* - refresh command: Fix --diffstat option; it did swap lines. AlsoAndreas Gruenbacher2004-07-121-2/+2
| | | | remove stray dollar sign.
* - Some more QUILT_PATCHES_PREFIX fixes.Andreas Gruenbacher2004-07-121-4/+4
|
* - Switch from echo to printf for all translations: This is moreAndreas Gruenbacher2004-07-091-232/+206
| | | | | | | | | | | | | | | stable than having expansions in messages that might change independent of the message. - Add print_patch function and always use it when printing patch names. Remove -n options from various scripts and use a global switch QUILT_PATCHES_PREFIX in .quiltrc to decide between patch names with and without directory prefix. Depending on user experience this switch may eventually go away. - Add --diffstat option to refresh command: If given, this option inserts diffstat statistics at the end of the patch header, or refreshes the existing diffstat output. No special tags in the path file (%diffstat or the like) are needed. - Minor fix inserting changelog into RPM specfile.
* - Add common GNU Diff format options to diff and refresH commands:Andreas Gruenbacher2004-07-041-35/+44
| | | | | | | | | | | -u, -U num, -c, -C num. REname old -c option (combine patches) of diff command to --combine. - Extend the function that splits comments froM patches and syntax coloring to handLe combined diff format. - Honor the LAnG environment variable again; this goT broken at some point. - Set TEXTDOMAINDIR to where the translations are put so that Messages are found even when not installing into /usr.
* - Several Fixes from Joe Green <jgreen@mvista.com>:Andreas Gruenbacher2004-07-021-22/+23
| | | | | | | | | | | | | | | | + Another sed \t\r problem, in Makefile.in + Bad error message on "quilt delete" of non-existent patch + "import" doesn't remove all leading components on patch file + Misspelling in "import" help text - With using the GNU diff --label option, file timestamps disappeared. Specify the timestamps in --label by hand: This gives us added flexibility when generating patches; we may some day want to support diff styles other than unified. Also reported by Joe Green. - Add --backup option to quilt refresh. - Update documentation to QUILT_${COMMAND}_ARGS in .quiltrc. (The old settings still work but they are no longer documented.) - Update German translation.