Commit Graph

19060 Commits

Author SHA1 Message Date
timeless@mozdev.org
58fd2a06f2 i18n-fr: fix malformed literal blocks 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
b3867aef43 i18n-fr: remove extra trailing newline 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
9387cb2da4 i18n-it: remove extra trailing newlines 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
a99677ee8c i18n-sv: fix malformed literal block 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
68a11158aa i18n-de: remove extra format character 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
776641c15b i18n-de: add missing format character 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
43c099aa37 i18n-de: add missing newline 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
92a12ac550 i18n-de: add missing heading underline 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
a073ddb74a i18n-de: use same format character as in msgid 2013-06-25 18:45:33 -04:00
timeless@mozdev.org
6025e10af7 i18n-de: remove duplicate paragraph
It was added in the automatic conversion done in 0ecddd707c3d.
2013-06-25 18:45:32 -04:00
timeless@mozdev.org
d3086d801b i18n-de: fix malformed note directive 2013-06-25 18:45:32 -04:00
timeless@mozdev.org
2f66ad08b9 i18n-de: remove extra format character 2013-06-25 18:45:32 -04:00
timeless@mozdev.org
918d58774c i18n-de: add missing literal block 2013-06-25 18:45:32 -04:00
Martin Geisler
02becf76ee i18n-it: remove extra trailing newline and fix translation
Thanks to Timeless for flagging the extra newline.
2013-06-25 18:45:32 -04:00
timeless@mozdev.org
a8e9f2b851 i18n-de: remove bad fuzzy translations
These were flagged because they had the wrong number of format
characters.

Reviewed by Martin Geisler to ensure that the translation couldn't be
easily updated to the correct number of format characters.
2013-06-25 18:45:32 -04:00
timeless@mozdev.org
459d9e8b48 i18n-da: remove bad fuzzy translation
Reviewed by Martin Geisler.
2013-06-25 18:45:32 -04:00
timeless@mozdev.org
cc9f7309dd i18n-da: remove extra trailing newline 2013-06-25 18:45:32 -04:00
timeless@mozdev.org
2139108c85 i18n-da: add missing newline 2013-06-25 18:45:32 -04:00
Martin Geisler
bb7ef9d800 i18n-da: remove extra trailing newline and fix translation
Thanks to Timeless for flagging the extra newline.
2013-06-25 18:45:32 -04:00
Martin Geisler
4422ab78e6 i18n-da: add missing format character and fix translation
Thanks to Timeless for flagging the missing format character.
2013-06-25 18:45:32 -04:00
timeless@mozdev.org
f6af294fc3 i18n-da: add missing heading underline 2013-06-24 00:39:34 -04:00
timeless@mozdev.org
bb9571a15e i18n-da: remove bad fuzzy translation 2013-06-24 00:34:56 -04:00
Martin Geisler
ed7cfed013 i18n-da: add missing format character and fix translation
Thanks to Timeless for flagging the missing format character.
2013-06-24 00:32:52 -04:00
Martin Geisler
19032714cd i18n-el: add missing indention for literal block
Thanks to Timeless for flagging this.
2013-06-29 19:11:24 +02:00
timeless@mozdev.org
46fdfb3cf5 i18n-el: remove extra newline 2013-06-24 00:00:53 -04:00
timeless@mozdev.org
34d2422e98 i18n-el: remove duplicate paragraphs
They were added in the conversion done in 7cd2bace956a.
2013-06-23 14:19:37 -04:00
timeless@mozdev.org
5b8ad08ca9 i18n-zh_CN: remove duplicate paragraphs
They are added in the automatic conversion in f35905fce455.
2013-06-24 00:11:28 -04:00
timeless@mozdev.org
1212d62e6c i18n-zh_CN: add missing literal blocks 2013-06-23 18:30:10 -04:00
timeless@mozdev.org
8ca9c21e81 i18n-zh_CN: remove duplicate paragraphs 2013-06-23 18:27:17 -04:00
timeless@mozdev.org
d36705f202 i18n-ru: spell "ElementTree" correctly 2013-06-23 18:10:02 -04:00
timeless@mozdev.org
12b1ef5aa2 i18n-ru: fix translated config section 2013-06-23 17:40:03 -04:00
Wagner Bruna
8c09f932f8 i18n-pt_BR: synchronized with bd2cef4cce4c 2013-06-26 12:04:57 -03:00
Siddharth Agarwal
d24e2a68a5 test-pathencode: randomize length of each path component
This makes it possible for long and short components to exist in the same path.
This also makes shorter path components more likely. For
randint(1, randint(1, n)), the likelihood that one sees a number k
(1 <= k <= n) is 1/n * (\sum_{k=i}^n 1/i). This decreases with k, much like in
the real world where shorter paths are more common than longer ones.

The previous fix and this one together cause issue3958 to be detected by this
test with reasonable frequency. When this test was run 100 times in a loop, the
issue was detected 30 of those times.
2013-06-19 23:05:40 -07:00
Siddharth Agarwal
a036161264 test-pathencode: reduce makepart length requirement by 1
This allows path components of length 1 to be generated.
2013-06-19 23:01:22 -07:00
Siddharth Agarwal
488f8eee3e pathencode: fix hashmangle short dir limit (issue3958)
The Python version of this (see mercurial/store.py:_hashencode) copies path
components up to a limit of maxshortdirslen bytes. The Python version does not
consider the initial "dh/" to be part of the this, though, while the C version
currently does. Adding len("dh/") == 3 to the limit for the C version brings it
in line with the Python version.

This was not caught by the randomized testing scheme in test-pathencode.py
because of a couple of flaws with the test. Upcoming patches will fix those
problems.
2013-06-19 22:34:34 -07:00
Matt Mackall
ea11ead369 docs: change description to synopsis in hgrc.5
Spotted by Eric S. Raymond.
2013-06-20 14:06:11 -05:00
Iulian Stana
b1c3535a9b commit: amending with --close-branch (issue3445)
You can't close a branch that hasn't got a head.
newbranch + commit --close-branch must fail
newbranch + commit + commit --amend --close-branch must fail

You must not be allowed to close a branch that is not defined.
2013-05-02 19:36:47 +03:00
Jordi Gutiérrez Hermoso
a19b7f0a32 doc: make it easier to read how to enable extensions
We tell people all the time that enabling extensions is not a scary
thing to do, but we don't make it easy enough for an absolute novice
to do so. When they see a suggestion to do "hg extfoo bar", the error
message tells them "see hg help extensions", but that help page
doesn't actually tell them where configuration files are.

Furthermore, the big warning about why extensions aren't enabled by
default should be pushed down a little bit. Most of the extensions
shipped by hg are not all that scary, and some very basic and useful
cosmetic extensions like graphlog, color, pager, and progress, should
be enabled for many hg users.
2013-06-06 14:05:03 -04:00
Jordi Gutiérrez Hermoso
062792796c doc: reword "config file" to "configuration file"
While we do use the abbreviation "config" elsewhere in the docs, the
phrase "configuration file" is always written out in full, except in
this location in phases.txt.
2013-06-06 13:37:41 -04:00
Simon Heimberg
ca09e06304 histedit: raise ImportError when demandloading is enabled 2013-06-05 21:16:49 +02:00
Matt Mackall
0610119d96 Added signature for changeset 90571ae99cc8 2013-06-01 17:10:24 -05:00
Matt Mackall
3daf49c5f9 merge with i18n 2013-06-01 17:09:41 -05:00
FUJIWARA Katsunori
a564305a11 i18n-ja: synchronized with b7094cdf426d 2013-06-01 01:13:36 +09:00
Simon King
ca4986a596 graft: refuse to commit an interrupted graft (issue3667) 2013-05-30 22:32:10 +01:00
Wagner Bruna
1d3529faac i18n-pt_BR: synchronized with 7458d74e5f40 2013-05-28 10:56:37 -03:00
Alexander Sauta
9fa0f37813 i18n-ru: synchronized with 44b8f46ad21b 2013-05-28 11:17:54 +01:00
Alexander Sauta
b4576eac8c i18n-ru: synchronized with b79f1a1f969a 2013-05-27 23:48:34 +04:00
Matt Mackall
644d0a2d40 merge with i18n 2013-05-23 17:53:19 -05:00
Matt Mackall
666687bde2 amend: complain more comprehensibly about subrepos 2013-05-23 17:39:33 -05:00
Durham Goode
7689f31a9c blackbox: fix blackbox causing exceptions in tests
In the tests some scripts call reposetup with the base ui instead of the
one the extensions have modified.  This causes an exception in
blackbox.reposetup since it expected a method to be there. So I just
check for it first. This only happened when the blackbox extension
was enabled during tests.
2013-05-22 17:38:24 -07:00