Skip to content
Snippets Groups Projects
da.po 516 KiB
Newer Older
# Danish translations for Mercurial
# Danske oversættelser for Mercurial
# Copyright (C) 2009, 2010 Olivia Mackall and others
# Translation dictionary:
# changeset           ændring
# commit              deponere
# merge               sammenføje
# repo(sitory)        depot
# revision            revision
# tag                 mærkat
# working directory   arbejdskatalog
msgid ""
msgstr ""
"Project-Id-Version: Mercurial\n"
"Report-Msgid-Bugs-To: <mercurial-devel@mercurial-scm.org>\n"
"POT-Creation-Date: 2011-11-09 18:27+0100\n"
"PO-Revision-Date: 2011-11-09 19:00+0100\n"
"Last-Translator: <mg@lazybytes.net>\n"
"Language-Team: Danish\n"
"Language: Danish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#, python-format
msgid " (default: %s)"
msgstr " (standard: %s)"

msgid "Options"
msgstr "Valgmuligheder"

msgid "Commands"
msgstr "Kommandoer"
msgid "Extensions"
msgstr "Udvidelser"

msgid ""
"This section contains help for extensions that are distributed together with "
"Mercurial. Help for other extensions is available in the help system."
msgstr ""
"Denne sektion indeholder hjælp for udviddelser distribueret sammen med\n"
"Mercurial. Hjælp til andre udviddelser er tilgængelig i\n"
"hjælpesystemet."
msgid "Options:"
msgstr "Valgmuligheder:"

#, python-format
msgid "    aliases: %s"
msgstr "    aliaser %s:"

msgid "hooks for controlling repository access"
msgstr ""

msgid ""
"This hook makes it possible to allow or deny write access to given\n"
"branches and paths of a repository when receiving incoming changesets\n"
"via pretxnchangegroup and pretxncommit."
"The authorization is matched based on the local user name on the\n"
"system where the hook runs, and not the committer of the original\n"
"changeset (since the latter is merely informative)."
msgstr ""

msgid ""
"The acl hook is best used along with a restricted shell like hgsh,\n"
"preventing authenticating users from doing anything other than pushing\n"
"or pulling. The hook is not safe to use if users have interactive\n"
"shell access, as they can then disable the hook. Nor is it safe if\n"
"remote users share an account, because then there is no way to\n"
"distinguish them."
msgstr ""

msgid "The order in which access checks are performed is:"
msgstr ""

msgid ""
"1) Deny  list for branches (section ``acl.deny.branches``)\n"
"2) Allow list for branches (section ``acl.allow.branches``)\n"
"3) Deny  list for paths    (section ``acl.deny``)\n"
"4) Allow list for paths    (section ``acl.allow``)"
msgstr ""

msgid "The allow and deny sections take key-value pairs."
msgstr ""

msgid ""
"Branch-based Access Control\n"
"..........................."
msgstr ""

msgid ""
"Use the ``acl.deny.branches`` and ``acl.allow.branches`` sections to\n"
"have branch-based access control. Keys in these sections can be\n"
"either:"
msgstr ""

msgid ""
"- a branch name, or\n"
"- an asterisk, to match any branch;"
msgstr ""

msgid "The corresponding values can be either:"
msgstr ""

msgid ""
"- a comma-separated list containing users and groups, or\n"
"- an asterisk, to match anyone;"
msgstr ""

msgid ""
"Path-based Access Control\n"
"........................."
msgstr ""

msgid ""
"Use the ``acl.deny`` and ``acl.allow`` sections to have path-based\n"
"access control. Keys in these sections accept a subtree pattern (with\n"
"a glob syntax by default). The corresponding values follow the same\n"
"syntax as the other sections above."
msgstr ""

msgid ""
"Groups\n"
msgstr ""

msgid ""
"Group names must be prefixed with an ``@`` symbol. Specifying a group\n"
"name has the same effect as specifying all the users in that group."
msgstr ""

msgid ""
"You can define group members in the ``acl.groups`` section.\n"
"If a group name is not defined there, and Mercurial is running under\n"
"a Unix-like system, the list of users will be taken from the OS.\n"
"Otherwise, an exception will be raised."
msgstr ""

msgid ""
"Example Configuration\n"
"....................."

msgid ""
"  # Use this if you want to check access restrictions at commit time\n"
"  pretxncommit.acl = python:hgext.acl.hook"
msgstr ""

msgid ""
"  # Use this if you want to check access restrictions for pull, push,\n"
"  # bundle and serve.\n"
"  pretxnchangegroup.acl = python:hgext.acl.hook"
msgstr ""

msgid ""
Martin Geisler's avatar
Martin Geisler committed
"  [acl]\n"
"  # Allow or deny access for incoming changes only if their source is\n"
"  # listed here, let them pass otherwise. Source is \"serve\" for all\n"
"  # remote access (http or ssh), \"push\", \"pull\" or \"bundle\" when the\n"
"  # related commands are run locally.\n"
"  # Default: serve\n"
"  sources = serve"
msgstr ""

msgid "  [acl.deny.branches]"
msgstr "  [acl.deny.branches]"

msgid ""
"  # Everyone is denied to the frozen branch:\n"
"  frozen-branch = *"
msgstr ""

msgid ""
"  # A bad user is denied on all branches:\n"
"  * = bad-user"
msgstr ""

msgid "  [acl.allow.branches]"
msgstr "  [acl.allow.branches]"

msgid ""
"  # A few users are allowed on branch-a:\n"
"  branch-a = user-1, user-2, user-3"
msgstr ""

msgid ""
"  # Only one user is allowed on branch-b:\n"
"  branch-b = user-1"
msgstr ""

msgid ""
"  # The super user is allowed on any branch:\n"
"  * = super-user"
msgstr ""

msgid ""
"  # Everyone is allowed on branch-for-tests:\n"
"  branch-for-tests = *"
msgstr ""

msgid ""
"  [acl.deny]\n"
"  # This list is checked first. If a match is found, acl.allow is not\n"
"  # checked. All users are granted access if acl.deny is not present.\n"
"  # Format for both lists: glob pattern = user, ..., @group, ..."
msgstr ""

msgid ""
"  # To match everyone, use an asterisk for the user:\n"
"  # my/glob/pattern = *"
msgstr ""

msgid ""
"  # user6 will not have write access to any file:\n"
"  ** = user6"
msgstr ""

msgid ""
"  # Group \"hg-denied\" will not have write access to any file:\n"
"  ** = @hg-denied"
msgstr ""

msgid ""
"  # Nobody will be able to change \"DONT-TOUCH-THIS.txt\", despite\n"
"  # everyone being able to change all other files. See below.\n"
"  src/main/resources/DONT-TOUCH-THIS.txt = *"
Matt Mackall's avatar
Matt Mackall committed
"  [acl.allow]\n"
"  # if acl.allow is not present, all users are allowed by default\n"
"  # empty acl.allow = no users allowed"
msgstr ""

msgid ""
"  # User \"doc_writer\" has write access to any file under the \"docs\"\n"
"  # folder:\n"
"  docs/** = doc_writer"
msgstr ""

msgid ""
"  # User \"jack\" and group \"designers\" have write access to any file\n"
"  # under the \"images\" folder:\n"
"  images/** = jack, @designers"
msgstr ""

msgid ""
"  # Everyone (except for \"user6\" - see acl.deny above) will have write\n"
"  # access to any file under the \"resources\" folder (except for 1\n"
"  # file. See acl.deny):\n"
"  src/main/resources/** = *"
msgstr ""

msgid "  .hgtags = release_engineer"
msgstr "  .hgtags = release_engineer"

#, python-format
msgid "group '%s' is undefined"
msgstr ""

#, python-format
msgid ""
"config error - hook type \"%s\" cannot stop incoming changesets nor commits"
msgstr ""
"konfigurationsfejl - hook type \"%s\" kan ikke stoppe indgående ændringer "
"eller deponeringer"

#, python-format
msgid "acl: user \"%s\" denied on branch \"%s\" (changeset \"%s\")"
msgstr ""

#, python-format
msgid "acl: user \"%s\" not allowed on branch \"%s\" (changeset \"%s\")"
msgstr ""
#, python-format
msgid "acl: user \"%s\" denied on \"%s\" (changeset \"%s\")"
msgstr "acl: bruger \"%s\" nægtet adgang til \"%s\" (ændring \"%s\")"

#, fuzzy, python-format
msgid "acl: user \"%s\" not allowed on \"%s\" (changeset \"%s\")"
msgstr "acl: bruger \"%s\" har ikke adgang \"%s\" (ændring \"%s\")"
msgid "hooks for integrating with the Bugzilla bug tracker"
msgstr ""

msgid ""
"This hook extension adds comments on bugs in Bugzilla when changesets\n"
"that refer to bugs by Bugzilla ID are seen. The comment is formatted using\n"
"the Mercurial template mechanism."
msgstr ""

msgid "The hook does not change bug status."
msgstr ""

msgid "Three basic modes of access to Bugzilla are provided:"
msgstr ""

msgid ""
"1. Access via the Bugzilla XMLRPC interface. Requires Bugzilla 3.4 or later."
msgstr ""

msgid ""
"2. Check data via the Bugzilla XMLRPC interface and submit bug change\n"
"   via email to Bugzilla email interface. Requires Bugzilla 3.4 or later."
msgstr ""

msgid ""
"3. Writing directly to the Bugzilla database. Only Bugzilla installations\n"
"   using MySQL are supported. Requires Python MySQLdb."
msgstr ""

msgid ""
"Writing directly to the database is susceptible to schema changes, and\n"
"relies on a Bugzilla contrib script to send out bug change\n"
"notification emails. This script runs as the user running Mercurial,\n"
"must be run on the host with the Bugzilla install, and requires\n"
"permission to read Bugzilla configuration details and the necessary\n"
"MySQL user and password to have full access rights to the Bugzilla\n"
"database. For these reasons this access mode is now considered\n"
"deprecated, and will not be updated for new Bugzilla versions going\n"
"forward."
msgstr ""

msgid ""
"Access via XMLRPC needs a Bugzilla username and password to be specified\n"
"in the configuration. Comments are added under that username. Since the\n"
"configuration must be readable by all Mercurial users, it is recommended\n"
"that the rights of that user are restricted in Bugzilla to the minimum\n"
"necessary to add comments."
msgstr ""

msgid ""
"Access via XMLRPC/email uses XMLRPC to query Bugzilla, but sends\n"
"email to the Bugzilla email interface to submit comments to bugs.\n"
"The From: address in the email is set to the email address of the Mercurial\n"
"user, so the comment appears to come from the Mercurial user. In the event\n"
"that the Mercurial user email is not recognised by Bugzilla as a Bugzilla\n"
"user, the email associated with the Bugzilla username used to log into\n"
"Bugzilla is used instead as the source of the comment."
msgstr ""

msgid "Configuration items common to all access modes:"
msgstr ""

msgid ""
"bugzilla.version\n"
"  This access type to use. Values recognised are:"
msgstr ""

msgid ""
"  :``xmlrpc``:       Bugzilla XMLRPC interface.\n"
"  :``xmlrpc+email``: Bugzilla XMLRPC and email interfaces.\n"
"  :``3.0``:          MySQL access, Bugzilla 3.0 and later.\n"
"  :``2.18``:         MySQL access, Bugzilla 2.18 and up to but not\n"
"                     including 3.0.\n"
"  :``2.16``:         MySQL access, Bugzilla 2.16 and up to but not\n"
"                     including 2.18."
msgstr ""

msgid ""
"bugzilla.regexp\n"
"  Regular expression to match bug IDs in changeset commit message.\n"
"  Must contain one \"()\" group. The default expression matches ``Bug\n"
"  1234``, ``Bug no. 1234``, ``Bug number 1234``, ``Bugs 1234,5678``,\n"
"  ``Bug 1234 and 5678`` and variations thereof. Matching is case\n"
"  insensitive."
msgstr ""

msgid ""
"bugzilla.style\n"
"  The style file to use when formatting comments."
msgstr ""

msgid ""
"bugzilla.template\n"
"  Template to use when formatting comments. Overrides style if\n"
"  specified. In addition to the usual Mercurial keywords, the\n"
"  extension specifies:"
msgstr ""

msgid ""
"  :``{bug}``:     The Bugzilla bug ID.\n"
"  :``{root}``:    The full pathname of the Mercurial repository.\n"
"  :``{webroot}``: Stripped pathname of the Mercurial repository.\n"
"  :``{hgweb}``:   Base URL for browsing Mercurial repositories."
msgstr ""

msgid ""
"  Default ``changeset {node|short} in repo {root} refers to bug\n"
"  {bug}.\\ndetails:\\n\\t{desc|tabindent}``"
msgstr ""

msgid ""
"bugzilla.strip\n"
"  The number of path separator characters to strip from the front of\n"
"  the Mercurial repository path (``{root}`` in templates) to produce\n"
"  ``{webroot}``. For example, a repository with ``{root}``\n"
"  ``/var/local/my-project`` with a strip of 2 gives a value for\n"
"  ``{webroot}`` of ``my-project``. Default 0."
msgstr ""

msgid ""
"web.baseurl\n"
"  Base URL for browsing Mercurial repositories. Referenced from\n"
"  templates as ``{hgweb}``."
msgstr ""

msgid "Configuration items common to XMLRPC+email and MySQL access modes:"
msgstr ""

msgid ""
"bugzilla.usermap\n"
"  Path of file containing Mercurial committer email to Bugzilla user email\n"
"  mappings. If specified, the file should contain one mapping per\n"
"  line::"
msgstr ""

msgid "    committer = Bugzilla user"
msgstr ""

msgid "  See also the ``[usermap]`` section."
msgstr ""

msgid ""
"The ``[usermap]`` section is used to specify mappings of Mercurial\n"
"committer email to Bugzilla user email. See also ``bugzilla.usermap``.\n"
"Contains entries of the form ``committer = Bugzilla user``."
msgstr ""

msgid "XMLRPC access mode configuration:"
msgstr ""

msgid ""
"bugzilla.bzurl\n"
"  The base URL for the Bugzilla installation.\n"
"  Default ``http://localhost/bugzilla``."
msgstr ""

msgid ""
"bugzilla.user\n"
"  The username to use to log into Bugzilla via XMLRPC. Default\n"
"  ``bugs``."
msgstr ""

msgid ""
"bugzilla.password\n"
"  The password for Bugzilla login."
msgstr ""

msgid ""
"XMLRPC+email access mode uses the XMLRPC access mode configuration items,\n"
"and also:"
msgstr ""

msgid ""
"bugzilla.bzemail\n"
"  The Bugzilla email address."
msgstr ""

msgid ""
"In addition, the Mercurial email settings must be configured. See the\n"
"documentation in hgrc(5), sections ``[email]`` and ``[smtp]``."
msgstr ""

msgid "MySQL access mode configuration:"
msgstr ""

msgid ""
"bugzilla.host\n"
"  Hostname of the MySQL server holding the Bugzilla database.\n"
"  Default ``localhost``."
msgstr ""

msgid ""
"bugzilla.db\n"
"  Name of the Bugzilla database in MySQL. Default ``bugs``."
msgstr ""

msgid ""
"bugzilla.user\n"
"  Username to use to access MySQL server. Default ``bugs``."
msgstr ""

msgid ""
"bugzilla.password\n"
"  Password to use to access MySQL server."
msgstr ""

msgid ""
"bugzilla.timeout\n"
"  Database connection timeout (seconds). Default 5."
msgstr ""

msgid ""
"bugzilla.bzuser\n"
"  Fallback Bugzilla user name to record comments with, if changeset\n"
"  committer cannot be found as a Bugzilla user."
msgstr ""

msgid ""
"bugzilla.bzdir\n"
"   Bugzilla install directory. Used by default notify. Default\n"
"   ``/var/www/html/bugzilla``."
msgstr ""

msgid ""
"bugzilla.notify\n"
"  The command to run to get Bugzilla to send bug change notification\n"
"  emails. Substitutes from a map with 3 keys, ``bzdir``, ``id`` (bug\n"
"  id) and ``user`` (committer bugzilla email). Default depends on\n"
"  version; from 2.18 it is \"cd %(bzdir)s && perl -T\n"
"  contrib/sendbugmail.pl %(id)s %(user)s\"."
msgstr ""

msgid "Activating the extension::"
msgstr ""

msgid ""
"    [extensions]\n"
"    bugzilla ="
msgstr ""
"    [extensions]\n"
"    bugzilla ="
"    [hooks]\n"
"    # run bugzilla hook on every change pulled or pushed in here\n"
"    incoming.bugzilla = python:hgext.bugzilla.hook"
msgstr ""

msgid "Example configurations:"
msgstr "Eksempelkonfigurationer:"

msgid ""
"XMLRPC example configuration. This uses the Bugzilla at\n"
"``http://my-project.org/bugzilla``, logging in as user\n"
"``bugmail@my-project.org`` with password ``plugh``. It is used with a\n"
"collection of Mercurial repositories in ``/var/local/hg/repos/``,\n"
"with a web interface at ``http://my-project.org/hg``. ::"
msgstr ""

msgid ""
"    [bugzilla]\n"
"    bzurl=http://my-project.org/bugzilla\n"
"    user=bugmail@my-project.org\n"
"    password=plugh\n"
"    version=xmlrpc\n"
"    template=Changeset {node|short} in {root|basename}.\n"
"             {hgweb}/{webroot}/rev/{node|short}\\n\n"
"             {desc}\\n\n"
"    strip=5"
msgstr ""
"    [bugzilla]\n"
"    bzurl=http://my-project.org/bugzilla\n"
"    user=bugmail@my-project.org\n"
"    password=plugh\n"
"    version=xmlrpc\n"
"    template=Changeset {node|short} in {root|basename}.\n"
"             {hgweb}/{webroot}/rev/{node|short}\\n\n"
"             {desc}\\n\n"
"    strip=5"

msgid ""
"    [web]\n"
"    baseurl=http://my-project.org/hg"
msgstr ""
"    [web]\n"
"    baseurl=http://my-project.org/hg"

msgid ""
"XMLRPC+email example configuration. This uses the Bugzilla at\n"
"``http://my-project.org/bugzilla``, logging in as user\n"
"``bugmail@my-project.org`` with password ``plugh``. It is used with a\n"
"collection of Mercurial repositories in ``/var/local/hg/repos/``,\n"
"with a web interface at ``http://my-project.org/hg``. Bug comments\n"
"are sent to the Bugzilla email address\n"
"``bugzilla@my-project.org``. ::"
msgstr ""

msgid ""
"    [bugzilla]\n"
"    bzurl=http://my-project.org/bugzilla\n"
"    user=bugmail@my-project.org\n"
"    password=plugh\n"
"    version=xmlrpc\n"
"    bzemail=bugzilla@my-project.org\n"
"    template=Changeset {node|short} in {root|basename}.\n"
"             {hgweb}/{webroot}/rev/{node|short}\\n\n"
"             {desc}\\n\n"
"    strip=5"
msgstr ""
"    [bugzilla]\n"
"    bzurl=http://my-project.org/bugzilla\n"
"    user=bugmail@my-project.org\n"
"    password=plugh\n"
"    version=xmlrpc\n"
"    bzemail=bugzilla@my-project.org\n"
"    template=Changeset {node|short} in {root|basename}.\n"
"             {hgweb}/{webroot}/rev/{node|short}\\n\n"
"             {desc}\\n\n"
"    strip=5"

msgid ""
"    [usermap]\n"
"    user@emaildomain.com=user.name@bugzilladomain.com"
msgstr ""
"    [usermap]\n"
"    user@emaildomain.com=user.name@bugzilladomain.com"

msgid ""
"MySQL example configuration. This has a local Bugzilla 3.2 installation\n"
"in ``/opt/bugzilla-3.2``. The MySQL database is on ``localhost``,\n"
"the Bugzilla database name is ``bugs`` and MySQL is\n"
"accessed with MySQL username ``bugs`` password ``XYZZY``. It is used\n"
"with a collection of Mercurial repositories in ``/var/local/hg/repos/``,\n"
"with a web interface at ``http://my-project.org/hg``. ::"
"    [bugzilla]\n"
"    host=localhost\n"
"    password=XYZZY\n"
"    version=3.0\n"
"    bzuser=unknown@domain.com\n"
"    bzdir=/opt/bugzilla-3.2\n"
"    template=Changeset {node|short} in {root|basename}.\n"
"             {hgweb}/{webroot}/rev/{node|short}\\n\n"
"             {desc}\\n\n"
"    strip=5"
msgstr ""
"    [bugzilla]\n"
"    host=localhost\n"
"    password=XYZZY\n"
"    version=3.0\n"
"    bzuser=unknown@domain.com\n"
"    bzdir=/opt/bugzilla-3.2\n"
"    template=Changeset {node|short} in {root|basename}.\n"
"             {hgweb}/{webroot}/rev/{node|short}\\n\n"
"             {desc}\\n\n"
"    strip=5"
msgid "All the above add a comment to the Bugzilla bug record of the form::"
"    Changeset 3b16791d6642 in repository-name.\n"
"    http://my-project.org/hg/repository-name/rev/3b16791d6642"
msgstr ""

msgid "    Changeset commit comment. Bug 1234.\n"
#, python-format
msgid "python mysql support not available: %s"
msgstr "python mysql-understøttelse ikke tilgængelig: %s"

#, python-format
msgid "connecting to %s:%s as %s, password %s\n"
msgstr "forbinder til %s:%s som %s, kodeord %s\n"

#, python-format
msgid "query: %s %s\n"
msgstr "forespørgsel: %s %s\n"

#, python-format
msgid "failed query: %s %s\n"
msgstr "fejlet forespørgsel: %s %s\n"

msgid "unknown database schema"
msgstr "ukendt databaseskema"

#, python-format
msgid "bug %d already knows about changeset %s\n"
msgstr "fejl %d kender allerede til ændring %s\n"

msgid "telling bugzilla to send mail:\n"
msgstr "beder bugzilla om at sende mail:\n"

#, python-format
msgid "  bug %s\n"
msgstr "  fejl %s\n"

#, python-format
msgid "running notify command %s\n"
msgstr "kører notificeringskommando %s\n"

#, python-format
msgid "bugzilla notify command %s"
msgstr "bugzilla notificeringskommando %s"

msgid "done\n"
msgstr "færdig\n"

#, python-format
msgid "looking up user %s\n"
msgstr "slår bruger %s op\n"

#, python-format
msgid "cannot find bugzilla user id for %s"
msgstr "kan ikke finde bugzilla bruger-id for %s"
#, python-format
msgid "cannot find bugzilla user id for %s or %s"
msgstr "kan ikke finde bugzilla bruger-id for %s eller %s"
msgid "configuration 'bzemail' missing"
msgstr "konfigurationen af 'bzemail' mangler"

#, python-format
msgid "default bugzilla user %s email not found"
msgstr ""

#, python-format
msgid "bugzilla version %s not supported"
msgstr "bugzilla version %s ikke understøttet"

msgid ""
"changeset {node|short} in repo {root} refers to bug {bug}.\n"
"details:\n"
"\t{desc|tabindent}"
msgstr ""

#, python-format
msgid "hook type %s does not pass a changeset id"
Matt Mackall's avatar
Matt Mackall committed
msgstr ""
#, python-format
msgid "Bugzilla error: %s"
msgstr "Bugzilla fejl: %s"
msgid "command to display child changesets"
msgstr "kommando til at vise børne-ændringer"
msgid "show the children of the given or working directory revision"
msgstr "vis børnene til arbejdskataloget eller en given revision"

msgid ""
"    Print the children of the working directory's revisions. If a\n"
"    revision is given via -r/--rev, the children of that revision will\n"
"    be printed. If a file argument is given, revision in which the\n"
"    file was last changed (after the working directory revision or the\n"
"    argument to --rev if given) is printed.\n"
"    "
msgstr ""
"    Udskriv arbejdskatalogets børnerevisioner. Hvis en revision er\n"
"    angivet med -r/--rev, udskrives børnene til denne revision.\n"
"    Hvis en fil er angivet, udskrives revisionen i hvilken filen sidst\n"
"    blev ændret (efter arbejdskatalogets revision eller argumentet til\n"
"    --rev, hvis givet).\n"
msgid "REV"
msgstr "REV"

Martin Geisler's avatar
Martin Geisler committed
msgid "show children of the specified revision"
msgstr "vis børn af den givne revision"

msgid "hg children [-r REV] [FILE]"
msgstr "hg children [-r REV] [FIL]"
msgid "command to display statistics about repository history"
msgstr "kommando til at vise statistikker om depotets historie"
#, python-format
msgid "Revision %d is a merge, ignoring...\n"
msgstr "Revision %d er en sammenføjning; ignorerer...\n"
Martin Geisler's avatar
Martin Geisler committed
msgid "analyzing"
msgid "histogram of changes to the repository"
msgstr "histogram over ændringer i depotet"

msgid ""
Martin Geisler's avatar
Martin Geisler committed
"    This command will display a histogram representing the number\n"
"    of changed lines or revisions, grouped according to the given\n"
"    template. The default template will group changes by author.\n"
"    The --dateformat option may be used to group the results by\n"
"    date instead."
msgstr ""
"    Denne kommando vil vise et histogram som repræsenterer antallet af\n"
"    ændrede linier eller revisioner, grupperet efter en given\n"
"    skabelon. Standardskabelonen vil gruppere ændringer efter\n"
"    forfatter. Med --dateformat tilvalget kan resultaterne i stedet\n"
"    grupperes efter dato."

msgid ""
"    Statistics are based on the number of changed lines, or\n"
"    alternatively the number of matching revisions if the\n"
"    --changesets option is specified."
msgstr ""
"    Statistikken er basseret på antallet af ændrede linier eller\n"
"    alternativt på antallet af matchende revisioner, hvis --changesets\n"
"    tilvalget er specificeret."

msgid "    Examples::"
msgstr "    Eksempler::"

msgid ""
"      # display count of changed lines for every committer\n"
"      hg churn -t '{author|email}'"
msgstr ""
"      # viser antaller af ændrede linier for hver bruger\n"
"      hg churn -t '{author|email}'"

msgid ""
"      # display daily activity graph\n"
"      hg churn -f '%H' -s -c"
msgstr ""
"      # viser graf over daglig aktivitet\n"
"      hg churn -f '%H' -s -c"

msgid ""
"      # display activity of developers by month\n"
"      hg churn -f '%Y-%m' -s -c"
msgstr ""
"      # viser månedlig aktivitet af udviklerne\n"
"      hg churn -f '%Y-%m' -s -c"

msgid ""
"      # display count of lines changed in every year\n"
"      hg churn -f '%Y' -s"
msgstr ""
"      # viser antallet af linier ændret hvert år\n"
"      hg churn -f '%Y' -s"

msgid ""
"    It is possible to map alternate email addresses to a main address\n"
"    by providing a file using the following format::"
msgstr ""
"    Det er muligt at afbilde alternative e-mail-adresser til\n"
"    hoved-adresser ved at bruge en fil med følgende format::"

msgid "      <alias email> = <actual email>"
msgstr "      <alias email> = <faktisk email>"

msgid ""
"    Such a file may be specified with the --aliases option, otherwise\n"
"    a .hgchurn file will be looked for in the working directory root.\n"
"    "
msgstr ""
"    En sådan fil kan angivet med --aliases tilvalget. Som standard\n"
"    bruges .hgchurn i arbejdskatalogets rod, hvis denne findes.\n"
#, python-format
msgid "skipping malformed alias: %s\n"
msgstr "springer misdannet alias over: %s\n"

msgid "count rate for the specified revision or range"
msgstr "lav statistik for de specificerede revisioner"

msgid "DATE"
Martin Geisler's avatar
Martin Geisler committed
msgid "count rate for revisions matching date spec"
msgstr "lav statistik for revisioner som matcher dato specifikationen"

msgid "TEMPLATE"
msgid "template to group changesets"
msgstr "skabelon for gruppering af ændringer"
msgid "FORMAT"
msgid "strftime-compatible format for grouping by date"
msgstr "strftime-kompatibelt format til gruppering efter dato"

msgid "count rate by number of changesets"
msgstr "lav statistik efter antallet af ændringer"

msgid "sort by key (default: sort by count)"
msgstr "sorter efter nøgle (standard: sorter efter antal)"
msgid "display added/removed lines separately"
msgstr "vil tilføjede/fjernede linier separat"
msgid "FILE"
msgstr "FIL"

msgid "file with email aliases"
msgstr "fil med email-aliaser"

Martin Geisler's avatar
Martin Geisler committed
msgid "hg churn [-d DATE] [-r REV] [--aliases FILE] [FILE]"
msgstr "hg churn [-d DATO] [-r REV] [--aliases FIL] [FIL]"
msgid "colorize output from some commands"
msgstr "farvelæg output for nogle kommandoer"

msgid ""
"This extension modifies the status and resolve commands to add color\n"
"to their output to reflect file status, the qseries command to add\n"
"color to reflect patch status (applied, unapplied, missing), and to\n"
"diff-related commands to highlight additions, removals, diff headers,\n"
"and trailing whitespace."
msgstr ""
"Denne udvidelse ændrer status- og resolve-kommandoerne så de tilføjer\n"
"farve til deres output for at afspejle filstatus, qseries-kommandoen\n"
"så den tilføjer farve for at afspejle status for rettelsen (anvendt,\n"
"ikke-anvendt, manglende), og diff-relaterede kommandoer så de\n"
"fremhæver tilføjelser, fjernelser, diff-hoveder og mellemrum i\n"
"slutningen af linier."

"Other effects in addition to color, like bold and underlined text, are\n"
"also available. By default, the terminfo database is used to find the\n"
"terminal codes used to change color and effect.  If terminfo is not\n"
"available, then effects are rendered with the ECMA-48 SGR control\n"
"function (aka ANSI escape codes)."
msgstr ""
"Ud over farver er der også andre effekter tilgængelig, såsom fed og\n"
"understreget tekst. Effekterne bliver renderet med ECMA-48 SGR\n"
"kontrolfunktionen (aka ANSI escape codes)."
msgid "Default effects may be overridden from your configuration file::"
msgstr "Standardeffekterne som kan overskrives i din konfigurationsfil::"
"  [color]\n"
"  status.modified = blue bold underline red_background\n"
"  status.added = green bold\n"
"  status.removed = red bold blue_background\n"
"  status.deleted = cyan bold underline\n"
"  status.unknown = magenta bold underline\n"
"  status.ignored = black bold"
msgstr ""
"  [color]\n"
"  status.modified = blue bold underline red_background\n"
"  status.added = green bold\n"
"  status.removed = red bold blue_background\n"
"  status.deleted = cyan bold underline\n"
"  status.unknown = magenta bold underline\n"
"  status.ignored = black bold"

msgid ""
"  # 'none' turns off all effects\n"
"  status.clean = none\n"
"  status.copied = none"
msgstr ""
"  # 'none' slår alle effekter fra\n"
"  status.clean = none\n"
"  status.copied = none"

msgid ""
"  qseries.applied = blue bold underline\n"
"  qseries.unapplied = black bold\n"
"  qseries.missing = red bold"
msgstr ""
"  qseries.applied = blue bold underline\n"
"  qseries.unapplied = black bold\n"
"  qseries.missing = red bold"

msgid ""
"  diff.diffline = bold\n"
"  diff.extended = cyan bold\n"
"  diff.file_a = red bold\n"
"  diff.file_b = green bold\n"
"  diff.hunk = magenta\n"
"  diff.deleted = red\n"
"  diff.inserted = green\n"
"  diff.changed = white\n"
"  diff.trailingwhitespace = bold red_background"
msgstr ""
"  diff.diffline = bold\n"
"  diff.extended = cyan bold\n"
"  diff.file_a = red bold\n"
"  diff.file_b = green bold\n"
"  diff.hunk = magenta\n"
"  diff.deleted = red\n"
"  diff.inserted = green\n"
"  diff.changed = white\n"
"  diff.trailingwhitespace = bold red_background"

msgid ""
"  resolve.unresolved = red bold\n"
"  resolve.resolved = green bold"
msgstr ""
"  resolve.unresolved = red bold\n"
"  resolve.resolved = green bold"

msgid "  bookmarks.current = green"