Newer
Older
# Swedish translation for Mercurial
# Svensk översättning för Mercurial
# Copyright (C) 2009-2012 Olivia Mackall and others
msgid ""
msgstr ""
"Project-Id-Version: Mercurial\n"
"Report-Msgid-Bugs-To: <mercurial-devel@mercurial-scm.org>\n"
"POT-Creation-Date: 2012-07-28 14:35+0200\n"
"PO-Revision-Date: 2012-07-28 22:58+0200\n"
"Last-Translator: Jens Bäckman <jens.backman@gmail.com>\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#, python-format
msgid " (default: %s)"
msgid "Options"
msgstr "Flaggor"
msgid "Commands"
msgstr "Kommandon"
msgid "Extensions"
msgstr "Utökningar"
msgid ""
"This section contains help for extensions that are distributed together with "
"Mercurial. Help for other extensions is available in the help system."
msgstr ""
"Den här sektioner innehåller hjälp för utökningar som levereras med "
"Mercurial. Hjälp för andra utökningar är tillgängliga i hjälpsystemet."
msgid "Options:"
msgstr "Flaggor:"
#, python-format
msgid " aliases: %s"
msgstr " alias: %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 ""
"Grenbaserad Åtkomstkontroll\n"
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 ""
"You can add the \"!\" prefix to a user or group name to invert the sense\n"
"of the match."
msgstr ""
msgid ""
msgstr ""
"Sökvägsbaserad Åtkomstkontroll\n"
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"
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 "::"
msgstr "::"
msgid " [hooks]"
msgstr ""
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 ""
" # 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 ""
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
msgid " [acl.deny.branches]"
msgstr ""
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 ""
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 = *"
" # 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\" and \"@hg-denied\" - see acl.deny above)\n"
" # will have write access to any file under the \"resources\" folder\n"
" # (except for 1 file. See acl.deny):\n"
" src/main/resources/** = *"
msgstr ""
msgid " .hgtags = release_engineer"
msgstr ""
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
msgid ""
"Examples using the \"!\" prefix\n"
"............................."
msgstr ""
msgid ""
"Suppose there's a branch that only a given user (or group) should be able "
"to\n"
"push to, and you don't want to restrict access to any other branch that may\n"
"be created."
msgstr ""
msgid ""
"The \"!\" prefix allows you to prevent anyone except a given user or group "
"to\n"
"push changesets in a given branch or path."
msgstr ""
msgid ""
"In the examples below, we will:\n"
"1) Deny access to branch \"ring\" to anyone but user \"gollum\"\n"
"2) Deny access to branch \"lake\" to anyone but members of the group \"hobbit"
"\"\n"
"3) Deny access to a file to anyone but user \"gollum\""
msgstr ""
msgid ""
" [acl.allow.branches]\n"
" # Empty"
msgstr ""
msgid ""
" # 1) only 'gollum' can commit to branch 'ring';\n"
" # 'gollum' and anyone else can still commit to any other branch.\n"
" ring = !gollum"
msgstr ""
msgid ""
" # 2) only members of the group 'hobbit' can commit to branch 'lake';\n"
" # 'hobbit' members and anyone else can still commit to any other branch.\n"
" lake = !@hobbit"
msgstr ""
msgid " # You can also deny access based on file paths:"
msgstr ""
msgid ""
" [acl.allow]\n"
" # Empty"
msgstr ""
msgid ""
" [acl.deny]\n"
" # 3) only 'gollum' can change the file below;\n"
" # 'gollum' and anyone else can still change any other file.\n"
" /misty/mountains/cave/ring = !gollum"
msgstr ""
#, python-format
msgid "group '%s' is undefined"
msgstr ""
#, python-format
msgid ""
"config error - hook type \"%s\" cannot stop incoming changesets nor commits"
msgstr ""
#, 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\")"
msgid "acl: user \"%s\" denied on \"%s\" (changeset \"%s\")"
msgstr "acl: användaren \"%s\" nekades på \"%s\" (ändringen \"%s\")"
#, python-format
msgid "acl: user \"%s\" not allowed on \"%s\" (changeset \"%s\")"
msgstr "acl: användaren \"%s\" tillåts inte på \"%s\" (ändringen \"%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 bug references can optionally include an update for Bugzilla of the\n"
"hours spent working on the bug. Bugs can also be marked fixed."
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
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. Only adding comments is supported in this access mode."
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. Marking bugs fixed requires Bugzilla 4.0 and "
"later."
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. Marking bugs fixed\n"
"works on all supported Bugzilla versions."
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"
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
" Regular expression to match bug IDs for update in changeset commit "
"message.\n"
" It must contain one \"()\" named group ``<ids>`` containing the bug\n"
" IDs separated by non-digit characters. It may also contain\n"
" a named group ``<hours>`` with a floating-point number giving the\n"
" hours worked on the bug. If no named groups are present, the first\n"
" \"()\" group is assumed to contain the bug IDs, and work time is not\n"
" updated. The default expression matches ``Bug 1234``, ``Bug no. 1234``,\n"
" ``Bug number 1234``, ``Bugs 1234,5678``, ``Bug 1234 and 5678`` and\n"
" variations thereof, followed by an hours number prefixed by ``h`` or\n"
" ``hours``, e.g. ``hours 1.5``. Matching is case insensitive."
msgstr ""
msgid ""
"bugzilla.fixregexp\n"
" Regular expression to match bug IDs for marking fixed in changeset\n"
" commit message. This must contain a \"()\" named group ``<ids>` "
"containing\n"
" the bug IDs separated by non-digit characters. It may also contain\n"
" a named group ``<hours>`` with a floating-point number giving the\n"
" hours worked on the bug. If no named groups are present, the first\n"
" \"()\" group is assumed to contain the bug IDs, and work time is not\n"
" updated. The default expression matches ``Fixes 1234``, ``Fixes bug "
"1234``,\n"
" ``Fixes bugs 1234,5678``, ``Fixes 1234 and 5678`` and\n"
" variations thereof, followed by an hours number prefixed by ``h`` or\n"
" ``hours``, e.g. ``hours 1.5``. Matching is case insensitive."
msgstr ""
msgid ""
"bugzilla.fixstatus\n"
" The status to set a bug to when marking fixed. Default ``RESOLVED``."
msgstr ""
msgid ""
"bugzilla.fixresolution\n"
" The resolution to set a bug to when marking fixed. Default ``FIXED``."
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
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 ""
" Database connection timeout (seconds). Default 5."
msgstr ""
msgid ""
" Fallback Bugzilla user name to record comments with, if changeset\n"
" committer cannot be found as a Bugzilla user."
msgstr ""
msgid ""
" 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 ""
" bugzilla ="
msgstr ""
msgid ""
" [hooks]\n"
" # run bugzilla hook on every change pulled or pushed in here\n"
" incoming.bugzilla = python:hgext.bugzilla.hook"
msgstr ""
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
msgid "Example configurations:"
msgstr "Exempelkonfigurationer:"
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 ""
msgid ""
" [web]\n"
" baseurl=http://my-project.org/hg"
msgstr ""
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 ""
msgid ""
" [usermap]\n"
" user@emaildomain.com=user.name@bugzilladomain.com"
msgstr ""
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"
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"
msgid "python mysql support not available: %s"
msgstr ""
#, python-format
msgid "connecting to %s:%s as %s, password %s\n"
msgstr ""
#, python-format
msgid "query: %s %s\n"
msgstr ""
#, python-format
msgid "failed query: %s %s\n"
msgstr ""
msgid "unknown database schema"
msgstr ""
#, python-format
msgid "bug %d does not exist\n"
msgstr "bugg %d existerar inte\n"
#, python-format
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
msgid "bug %d already knows about changeset %s\n"
msgstr ""
msgid "telling bugzilla to send mail:\n"
msgstr ""
#, python-format
msgid " bug %s\n"
msgstr ""
#, python-format
msgid "running notify command %s\n"
msgstr ""
#, python-format
msgid "bugzilla notify command %s"
msgstr ""
msgid "done\n"
msgstr ""
#, python-format
msgid "looking up user %s\n"
msgstr ""
#, python-format
msgid "cannot find bugzilla user id for %s"
msgstr ""
#, python-format
msgid "cannot find bugzilla user id for %s or %s"
msgstr ""
msgid "Bugzilla/MySQL cannot update bug state\n"
msgstr ""
msgid "Bugzilla/XMLRPC needs Bugzilla 4.0 or later to mark bugs fixed\n"
msgstr ""
msgid "configuration 'bzemail' missing"
msgstr "'bzemail' inte konfigurerad"
#, python-format
msgid "default bugzilla user %s email not found"
msgstr ""
#, python-format
msgid "bugzilla version %s not supported"
msgstr "bugzilla version %s stöds inte"
#, python-format
msgid "%s: invalid hours\n"
msgstr "%s: ogiltiga timmar\n"
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"
msgstr ""
#, python-format
msgid "Bugzilla error: %s"
msgstr "Bugzilla-fel: %s"
msgid "command to display child changesets (DEPRECATED)"
msgstr "kommando för att visa barnändringar (FÖRÅLDRAD)"
msgid ""
"This extension is deprecated. You should use :hg:`log -r\n"
"\"children(REV)\"` instead.\n"
msgstr ""
"Detta är en förlegad utökning. Du kan avända :hg:`log -r\n"
"\"children(REV)\"` instead.\n"
msgid "show the children of the given or working directory revision"
msgstr ""
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 ""
msgid "show children of the specified revision"
msgstr ""
msgid "hg children [-r REV] [FILE]"
msgstr ""
msgid "command to display statistics about repository history"
msgstr ""
#, python-format
msgid "revision %d is a merge, ignoring...\n"
msgid "analyzing"
msgstr "analyserar"
msgid "histogram of changes to the repository"
msgstr ""
msgid ""
" 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 ""
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 ""
msgid " Examples::"
msgstr ""
msgid ""
" # display count of changed lines for every committer\n"
" hg churn -t '{author|email}'"
msgstr ""
msgid ""
" hg churn -f '%H' -s -c"
msgstr ""
msgid ""
" # display activity of developers by month\n"
" hg churn -f '%Y-%m' -s -c"
msgstr ""
msgid ""
" # display count of lines changed in every year\n"
" hg churn -f '%Y' -s"
msgstr ""
msgid ""
" It is possible to map alternate email addresses to a main address\n"
" by providing a file using the following format::"
msgstr ""
msgid " <alias email> = <actual email>"
" 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 ""
#, python-format
msgid "skipping malformed alias: %s\n"
msgstr "hoppar över defekt alias: %s\n"
msgid "count rate for the specified revision or range"
msgstr ""
msgid "DATE"
msgstr "DATUM"
msgid "count rate for revisions matching date spec"
msgstr ""
msgid "TEMPLATE"
msgstr "MALL"
msgid "template to group changesets"
msgstr ""
msgid "FORMAT"
msgstr "FORMAT"
msgid "strftime-compatible format for grouping by date"
msgstr ""
msgid "count rate by number of changesets"
msgstr ""
msgid "sort by key (default: sort by count)"
msgstr ""
msgid "display added/removed lines separately"
msgstr "visa tillagda/raderade rader separat"
msgid "FILE"
msgstr "FIL"
msgid "file with email aliases"
msgstr ""
msgid "hg churn [-d DATE] [-r REV] [--aliases FILE] [FILE]"
msgstr "hg churn [-d DATUM] [-r REV] [--aliases FIL] [FIL]"
msgid "colorize output from some commands"
msgstr "färglägg utmatning från vissa kommandon"
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 ""
"Denna utökning modifierar kommandona status och resolve för att färglägga\n"
"deras utmaning för att spegla filstatus, qseries-kommandon för att\n"
"färglägga patchstatus (applicerad, oapplicerad, saknad), och till\n"
"diff-relaterade kommandon för att framhäva additioner, borttagningar,\n"
"diffhuvuden, och eftersläpande blanktecken."
msgid ""
"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 ""
"Andra effekter förutom färg, såsom fet och understryken text, är också\n"
"tillgänglig. Som standard används terminfo-databasen för att hitta\n"
"terminalkoderna för att ändra färg och effekt. Om terminfo inte är\n"
"tillgänglig, så renderas effekterna med kontrollfunktionerna ECMA-48 SGR\n"
"(ANSI-escape-koder)."
msgid "Default effects may be overridden from your configuration file::"
msgstr "Standardeffekter kan modifieras från din konfigurationsfil::"
" [color]\n"
" status.modified = blue bold underline red_background\n"