##// END OF EJS Templates
i18n: beginnings of a Danish translation
Martin Geisler -
r7652:2605b2ef default
parent child Browse files
Show More
This diff has been collapsed as it changes many lines, (10005 lines changed) Show them Hide them
@@ -0,0 +1,10005 b''
1 # Danish translations for Mercurial
2 # Danske oversættelser for Mercurial
3 # Copyright (C) 2009 Matt Mackall and others
4 #
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: Mercurial\n"
8 "POT-Creation-Date: 2009-01-15 15:24+CET\n"
9 "PO-Revision-Date: 2009-01-15 15:28+0100\n"
10 "Last-Translator: <mg@daimi.au.dk>\n"
11 "Language-Team: Danish\n"
12 "MIME-Version: 1.0\n"
13 "Content-Type: text/plain; charset=UTF-8\n"
14 "Content-Transfer-Encoding: 8bit\n"
15 "Generated-By: pygettext.py 1.5\n"
16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
18 #: hgext/acl.py:53
19 msgid "return tuple of (match function, list enabled)."
20 msgstr ""
21
22 #: hgext/acl.py:55
23 msgid "acl: %s not enabled\n"
24 msgstr "acl: %s er ikke slået til\n"
25
26 #: hgext/acl.py:60
27 msgid "acl: %s enabled, %d entries for user %s\n"
28 msgstr "acl: %s slået til, %d indgange for bruger %s\n"
29
30 #: hgext/acl.py:68
31 msgid "config error - hook type \"%s\" cannot stop incoming changesets"
32 msgstr ""
33 "konfigurationsfejl - hook type \"%s\" kan ikke stoppe indgående ændringer"
34
35 #: hgext/acl.py:71
36 msgid "acl: changes have source \"%s\" - skipping\n"
37 msgstr "acl: ændringer har kilde \"%s\" - springer over\n"
38
39 #: hgext/acl.py:85
40 msgid "acl: user %s denied on %s\n"
41 msgstr "acl: bruger %s nægtet adgang til %s\n"
42
43 #: hgext/acl.py:86 hgext/acl.py:89
44 msgid "acl: access denied for changeset %s"
45 msgstr "acl: adgang nægtet til ændring %s"
46
47 #: hgext/acl.py:88
48 msgid "acl: user %s not allowed on %s\n"
49 msgstr "acl: bruger %s ikke tilladt på %s\n"
50
51 #: hgext/acl.py:90
52 msgid "acl: allowing changeset %s\n"
53 msgstr "acl: tillader ændring %s\n"
54
55 #: hgext/alias.py:4
56 msgid ""
57 "allow user-defined command aliases\n"
58 "\n"
59 "To use, create entries in your hgrc of the form\n"
60 "\n"
61 "[alias]\n"
62 "mycmd = cmd --args\n"
63 msgstr ""
64
65 #: hgext/alias.py:21
66 msgid ""
67 "defer command lookup until needed, so that extensions loaded\n"
68 " after alias can be aliased"
69 msgstr ""
70
71 #: hgext/alias.py:53
72 msgid "*** [alias] %s: command %s is unknown"
73 msgstr ""
74
75 #: hgext/alias.py:56
76 msgid "*** [alias] %s: command %s is ambiguous"
77 msgstr ""
78
79 #: hgext/alias.py:59
80 msgid "*** [alias] %s: circular dependency on %s"
81 msgstr ""
82
83 #: hgext/alias.py:71
84 msgid "*** [alias] %s: no definition\n"
85 msgstr ""
86
87 #: hgext/bookmarks.py:8
88 msgid ""
89 "mercurial bookmarks\n"
90 "\n"
91 "Mercurial bookmarks are local moveable pointers to changesets. Every\n"
92 "bookmark points to a changeset identified by its hash. If you commit a\n"
93 "changeset that is based on a changeset that has a bookmark on it, the\n"
94 "bookmark is forwarded to the new changeset.\n"
95 "\n"
96 "It is possible to use bookmark names in every revision lookup (e.g. hg\n"
97 "merge, hg update).\n"
98 "\n"
99 "The bookmark extension offers the possiblity to have a more git-like "
100 "experience\n"
101 "by adding the following configuration option to your .hgrc:\n"
102 "\n"
103 "[bookmarks]\n"
104 "track.current = True\n"
105 "\n"
106 "This will cause bookmarks to track the bookmark that you are currently on, "
107 "and\n"
108 "just updates it. This is similar to git's approach of branching.\n"
109 msgstr ""
110
111 #: hgext/bookmarks.py:37
112 msgid ""
113 "Parse .hg/bookmarks file and return a dictionary\n"
114 "\n"
115 " Bookmarks are stored as {HASH}\\s{NAME}\n"
116 " (localtags format) values\n"
117 " in the .hg/bookmarks file. They are read by the parse() method and\n"
118 " returned as a dictionary with name => hash values.\n"
119 "\n"
120 " The parsed dictionary is cached until a write() operation is done.\n"
121 " "
122 msgstr ""
123
124 #: hgext/bookmarks.py:57
125 msgid ""
126 "Write bookmarks\n"
127 "\n"
128 " Write the given bookmark => hash dictionary to the .hg/bookmarks file\n"
129 " in a format equal to those of localtags.\n"
130 "\n"
131 " We also store a backup of the previous state in undo.bookmarks that\n"
132 " can be copied back on rollback.\n"
133 " "
134 msgstr ""
135
136 #: hgext/bookmarks.py:75
137 msgid ""
138 "Get the current bookmark\n"
139 "\n"
140 " If we use gittishsh branches we have a current bookmark that\n"
141 " we are on. This function returns the name of the bookmark. It\n"
142 " is stored in .hg/bookmarks.current\n"
143 " "
144 msgstr ""
145
146 #: hgext/bookmarks.py:94
147 msgid ""
148 "Set the name of the bookmark that we are currently on\n"
149 "\n"
150 " Set the name of the bookmark that we are on (hg update <bookmark>).\n"
151 " The name is recoreded in .hg/bookmarks.current\n"
152 " "
153 msgstr ""
154
155 #: hgext/bookmarks.py:116
156 msgid ""
157 "mercurial bookmarks\n"
158 "\n"
159 " Bookmarks are pointers to certain commits that move when\n"
160 " commiting. Bookmarks are local. They can be renamed, copied and\n"
161 " deleted. It is possible to use bookmark names in 'hg merge' and 'hg\n"
162 " update' to update to a given bookmark.\n"
163 "\n"
164 " You can use 'hg bookmark NAME' to set a bookmark on the current\n"
165 " tip with the given name. If you specify a revision using -r REV\n"
166 " (where REV may be an existing bookmark), the bookmark is set to\n"
167 " that revision.\n"
168 " "
169 msgstr ""
170
171 #: hgext/bookmarks.py:134 hgext/bookmarks.py:150
172 msgid "a bookmark of this name does not exist"
173 msgstr ""
174
175 #: hgext/bookmarks.py:136 hgext/bookmarks.py:160
176 msgid "a bookmark of the same name already exists"
177 msgstr ""
178
179 #: hgext/bookmarks.py:138
180 msgid "new bookmark name required"
181 msgstr ""
182
183 #: hgext/bookmarks.py:148 hgext/bookmarks.py:174
184 msgid "bookmark name required"
185 msgstr ""
186
187 #: hgext/bookmarks.py:157
188 msgid "bookmark name cannot contain newlines"
189 msgstr "bogmærkenavn kan ikke indeholde linieskift"
190
191 #: hgext/bookmarks.py:164
192 msgid "a bookmark cannot have the name of an existing branch"
193 msgstr ""
194
195 #: hgext/bookmarks.py:203
196 msgid ""
197 "Strip bookmarks if revisions are stripped using\n"
198 " the mercurial.strip method. This usually happens during\n"
199 " qpush and qpop"
200 msgstr ""
201
202 #: hgext/bookmarks.py:244
203 msgid ""
204 "Add a revision to the repository and\n"
205 " move the bookmark"
206 msgstr ""
207
208 #: hgext/bookmarks.py:287
209 msgid "Merge bookmarks with normal tags"
210 msgstr ""
211
212 #: hgext/bookmarks.py:298
213 msgid ""
214 "Set the current bookmark\n"
215 "\n"
216 " If the user updates to a bookmark we update the .hg/bookmarks.current\n"
217 " file.\n"
218 " "
219 msgstr ""
220
221 #: hgext/bookmarks.py:311
222 msgid "Replace push with a decorator to provide --non-bookmarked option"
223 msgstr ""
224
225 #: hgext/bookmarks.py:318
226 msgid "force"
227 msgstr ""
228
229 #: hgext/bookmarks.py:319 hgext/extdiff.py:207 mercurial/commands.py:3175
230 #: mercurial/commands.py:3410
231 msgid "revision"
232 msgstr ""
233
234 #: hgext/bookmarks.py:320
235 msgid "delete a given bookmark"
236 msgstr ""
237
238 #: hgext/bookmarks.py:321
239 msgid "rename a given bookmark"
240 msgstr ""
241
242 #: hgext/bookmarks.py:322
243 msgid "hg bookmarks [-d] [-m NAME] [-r NAME] [NAME]"
244 msgstr ""
245
246 #: hgext/bugzilla.py:8
247 msgid ""
248 "Bugzilla integration\n"
249 "\n"
250 "This hook extension adds comments on bugs in Bugzilla when changesets\n"
251 "that refer to bugs by Bugzilla ID are seen. The hook does not change bug\n"
252 "status.\n"
253 "\n"
254 "The hook updates the Bugzilla database directly. Only Bugzilla "
255 "installations\n"
256 "using MySQL are supported.\n"
257 "\n"
258 "The hook relies on a Bugzilla script to send bug change notification "
259 "emails.\n"
260 "That script changes between Bugzilla versions; the 'processmail' script "
261 "used\n"
262 "prior to 2.18 is replaced in 2.18 and subsequent versions by\n"
263 "'config/sendbugmail.pl'. Note that these will be run by Mercurial as the "
264 "user\n"
265 "pushing the change; you will need to ensure the Bugzilla install file\n"
266 "permissions are set appropriately.\n"
267 "\n"
268 "Configuring the extension:\n"
269 "\n"
270 " [bugzilla]\n"
271 " host Hostname of the MySQL server holding the Bugzilla database.\n"
272 " db Name of the Bugzilla database in MySQL. Default 'bugs'.\n"
273 " user Username to use to access MySQL server. Default 'bugs'.\n"
274 " password Password to use to access MySQL server.\n"
275 " timeout Database connection timeout (seconds). Default 5.\n"
276 " version Bugzilla version. Specify '3.0' for Bugzilla versions 3.0 "
277 "and\n"
278 " later, '2.18' for Bugzilla versions from 2.18 and '2.16' for\n"
279 " versions prior to 2.18.\n"
280 " bzuser Fallback Bugzilla user name to record comments with, if\n"
281 " changeset committer cannot be found as a Bugzilla user.\n"
282 " bzdir Bugzilla install directory. Used by default notify.\n"
283 " Default '/var/www/html/bugzilla'.\n"
284 " notify The command to run to get Bugzilla to send bug change\n"
285 " notification emails. Substitutes from a map with 3 keys,\n"
286 " 'bzdir', 'id' (bug id) and 'user' (committer bugzilla "
287 "email).\n"
288 " Default depends on version; from 2.18 it is\n"
289 " \"cd %(bzdir)s && perl -T contrib/sendbugmail.pl %(id)s %"
290 "(user)s\".\n"
291 " regexp Regular expression to match bug IDs in changeset commit "
292 "message.\n"
293 " Must contain one \"()\" group. The default expression "
294 "matches\n"
295 " 'Bug 1234', 'Bug no. 1234', 'Bug number 1234',\n"
296 " 'Bugs 1234,5678', 'Bug 1234 and 5678' and variations "
297 "thereof.\n"
298 " Matching is case insensitive.\n"
299 " style The style file to use when formatting comments.\n"
300 " template Template to use when formatting comments. Overrides\n"
301 " style if specified. In addition to the usual Mercurial\n"
302 " keywords, the extension specifies:\n"
303 " {bug} The Bugzilla bug ID.\n"
304 " {root} The full pathname of the Mercurial "
305 "repository.\n"
306 " {webroot} Stripped pathname of the Mercurial "
307 "repository.\n"
308 " {hgweb} Base URL for browsing Mercurial "
309 "repositories.\n"
310 " Default 'changeset {node|short} in repo {root} refers '\n"
311 " 'to bug {bug}.\\ndetails:\\n\\t{desc|tabindent}'\n"
312 " strip The number of slashes to strip from the front of {root}\n"
313 " to produce {webroot}. Default 0.\n"
314 " usermap Path of file containing Mercurial committer ID to Bugzilla "
315 "user\n"
316 " ID mappings. If specified, the file should contain one "
317 "mapping\n"
318 " per line, \"committer\"=\"Bugzilla user\". See also the\n"
319 " [usermap] section.\n"
320 "\n"
321 " [usermap]\n"
322 " Any entries in this section specify mappings of Mercurial committer ID\n"
323 " to Bugzilla user ID. See also [bugzilla].usermap.\n"
324 " \"committer\"=\"Bugzilla user\"\n"
325 "\n"
326 " [web]\n"
327 " baseurl Base URL for browsing Mercurial repositories. Reference from\n"
328 " templates as {hgweb}.\n"
329 "\n"
330 "Activating the extension:\n"
331 "\n"
332 " [extensions]\n"
333 " hgext.bugzilla =\n"
334 "\n"
335 " [hooks]\n"
336 " # run bugzilla hook on every change pulled or pushed in here\n"
337 " incoming.bugzilla = python:hgext.bugzilla.hook\n"
338 "\n"
339 "Example configuration:\n"
340 "\n"
341 "This example configuration is for a collection of Mercurial repositories\n"
342 "in /var/local/hg/repos/ used with a local Bugzilla 3.2 installation in\n"
343 "/opt/bugzilla-3.2.\n"
344 "\n"
345 " [bugzilla]\n"
346 " host=localhost\n"
347 " password=XYZZY\n"
348 " version=3.0\n"
349 " bzuser=unknown@domain.com\n"
350 " bzdir=/opt/bugzilla-3.2\n"
351 " template=Changeset {node|short} in {root|basename}.\\n{hgweb}/{webroot}/"
352 "rev/{node|short}\\n\\n{desc}\\n\n"
353 " strip=5\n"
354 "\n"
355 " [web]\n"
356 " baseurl=http://dev.domain.com/hg\n"
357 "\n"
358 " [usermap]\n"
359 " user@emaildomain.com=user.name@bugzilladomain.com\n"
360 "\n"
361 "Commits add a comment to the Bugzilla bug record of the form:\n"
362 "\n"
363 " Changeset 3b16791d6642 in repository-name.\n"
364 " http://dev.domain.com/hg/repository-name/rev/3b16791d6642\n"
365 "\n"
366 " Changeset commit comment. Bug 1234.\n"
367 msgstr ""
368
369 #: hgext/bugzilla.py:124
370 msgid "support for bugzilla version 2.16."
371 msgstr ""
372
373 #: hgext/bugzilla.py:136
374 msgid "connecting to %s:%s as %s, password %s\n"
375 msgstr "forbinder til %s:%s som %s, kodeord %s\n"
376
377 #: hgext/bugzilla.py:146
378 msgid "run a query."
379 msgstr ""
380
381 #: hgext/bugzilla.py:147
382 msgid "query: %s %s\n"
383 msgstr "forespørgsel: %s %s\n"
384
385 #: hgext/bugzilla.py:151
386 msgid "failed query: %s %s\n"
387 msgstr "fejlet forespørgsel: %s %s\n"
388
389 #: hgext/bugzilla.py:155 hgext/bugzilla.py:279
390 msgid "get identity of longdesc field"
391 msgstr ""
392
393 #: hgext/bugzilla.py:159 hgext/bugzilla.py:283
394 msgid "unknown database schema"
395 msgstr "ukendt databaseskema"
396
397 #: hgext/bugzilla.py:163
398 msgid "filter not-existing bug ids from list."
399 msgstr ""
400
401 #: hgext/bugzilla.py:168
402 msgid "filter bug ids from list that already refer to this changeset."
403 msgstr ""
404
405 #: hgext/bugzilla.py:175
406 msgid "bug %d already knows about changeset %s\n"
407 msgstr "fejl %s kender allerede til ændring %s\n"
408
409 #: hgext/bugzilla.py:181
410 msgid "tell bugzilla to send mail."
411 msgstr ""
412
413 #: hgext/bugzilla.py:183
414 msgid "telling bugzilla to send mail:\n"
415 msgstr "beder bugzilla om at sende mail:\n"
416
417 #: hgext/bugzilla.py:186
418 msgid " bug %s\n"
419 msgstr " fejl %s\n"
420
421 #: hgext/bugzilla.py:196
422 msgid "running notify command %s\n"
423 msgstr "kører notificeringskommando %s\n"
424
425 #: hgext/bugzilla.py:202
426 msgid "bugzilla notify command %s"
427 msgstr ""
428
429 #: hgext/bugzilla.py:204 hgext/mq.py:962
430 msgid "done\n"
431 msgstr "færdig\n"
432
433 #: hgext/bugzilla.py:207
434 msgid "look up numeric bugzilla user id."
435 msgstr ""
436
437 #: hgext/bugzilla.py:214
438 msgid "looking up user %s\n"
439 msgstr "slår bruger %s op\n"
440
441 #: hgext/bugzilla.py:225
442 msgid "map name of committer to bugzilla user name."
443 msgstr ""
444
445 #: hgext/bugzilla.py:232
446 msgid ""
447 "see if committer is a registered bugzilla user. Return\n"
448 " bugzilla username and userid if so. If not, return default\n"
449 " bugzilla username and userid."
450 msgstr ""
451
452 #: hgext/bugzilla.py:242
453 msgid "cannot find bugzilla user id for %s"
454 msgstr ""
455
456 #: hgext/bugzilla.py:247
457 msgid "cannot find bugzilla user id for %s or %s"
458 msgstr ""
459
460 #: hgext/bugzilla.py:252
461 msgid ""
462 "add comment to bug. try adding comment as committer of\n"
463 " changeset, otherwise as default bugzilla user."
464 msgstr ""
465
466 #: hgext/bugzilla.py:266
467 msgid "support for bugzilla 2.18 series."
468 msgstr ""
469
470 #: hgext/bugzilla.py:273
471 msgid "support for bugzilla 3.0 series."
472 msgstr ""
473
474 #: hgext/bugzilla.py:305
475 msgid ""
476 "return object that knows how to talk to bugzilla version in\n"
477 " use."
478 msgstr ""
479
480 #: hgext/bugzilla.py:313
481 msgid "bugzilla version %s not supported"
482 msgstr ""
483
484 #: hgext/bugzilla.py:325
485 msgid ""
486 "find valid bug ids that are referred to in changeset\n"
487 " comments and that do not already have references to this\n"
488 " changeset."
489 msgstr ""
490
491 #: hgext/bugzilla.py:352
492 msgid "update bugzilla bug with reference to changeset."
493 msgstr ""
494
495 #: hgext/bugzilla.py:355
496 msgid ""
497 "strip leading prefix of repo root and turn into\n"
498 " url-safe path."
499 msgstr ""
500
501 #: hgext/bugzilla.py:372
502 msgid ""
503 "changeset {node|short} in repo {root} refers to bug {bug}.\n"
504 "details:\n"
505 "\t{desc|tabindent}"
506 msgstr ""
507
508 #: hgext/bugzilla.py:387
509 msgid ""
510 "add comment to bugzilla for each changeset that refers to a\n"
511 " bugzilla bug id. only add a comment once per bug, so same change\n"
512 " seen multiple times does not fill bug with duplicate data."
513 msgstr ""
514
515 #: hgext/bugzilla.py:395
516 msgid "python mysql support not available: %s"
517 msgstr ""
518
519 #: hgext/bugzilla.py:398
520 msgid "hook type %s does not pass a changeset id"
521 msgstr ""
522
523 #: hgext/bugzilla.py:409
524 msgid "database error: %s"
525 msgstr ""
526
527 #: hgext/children.py:16
528 msgid ""
529 "show the children of the given or working dir revision\n"
530 "\n"
531 " Print the children of the working directory's revisions.\n"
532 " If a revision is given via --rev, the children of that revision\n"
533 " will be printed. If a file argument is given, revision in\n"
534 " which the file was last changed (after the working directory\n"
535 " revision or the argument to --rev if given) is printed.\n"
536 " "
537 msgstr ""
538
539 #: hgext/children.py:38
540 msgid "show children of the specified rev"
541 msgstr ""
542
543 #: hgext/children.py:40
544 msgid "hg children [-r REV] [FILE]"
545 msgstr ""
546
547 #: hgext/churn.py:8
548 msgid "command to show certain statistics about revision history"
549 msgstr ""
550
551 #: hgext/churn.py:34
552 msgid "Calculate stats"
553 msgstr ""
554
555 #: hgext/churn.py:70
556 msgid "Revision %d is a merge, ignoring...\n"
557 msgstr ""
558
559 #: hgext/churn.py:82
560 msgid "\rgenerating stats: %d%%"
561 msgstr ""
562
563 #: hgext/churn.py:93
564 msgid ""
565 "graph count of revisions grouped by template\n"
566 "\n"
567 " Will graph count of changed lines or revisions grouped by template or\n"
568 " alternatively by date, if dateformat is used. In this case it will "
569 "override\n"
570 " template.\n"
571 "\n"
572 " By default statistics are counted for number of changed lines.\n"
573 "\n"
574 " Examples:\n"
575 "\n"
576 " # display count of changed lines for every committer\n"
577 " hg churn -t '{author|email}'\n"
578 "\n"
579 " # display daily activity graph\n"
580 " hg churn -f '%H' -s -c\n"
581 "\n"
582 " # display activity of developers by month\n"
583 " hg churn -f '%Y-%m' -s -c\n"
584 "\n"
585 " # display count of lines changed in every year\n"
586 " hg churn -f '%Y' -s\n"
587 "\n"
588 " The map file format used to specify aliases is fairly simple:\n"
589 "\n"
590 " <alias email> <actual email>"
591 msgstr ""
592 "plot antallet af revisioner grupperet efter et mønster\n"
593 "\n"
594 " Plotter antallet af ændrede linier eller antallet af revisioner\n"
595 " grupperet efter et mønster eller alternativt efter dato, hvis\n"
596 " dateformat bruges. I så tilfælde bruges mønstret ikke.\n"
597 "\n"
598 " Som udgangspunkt laves der statistik over antallet af ændrede\n"
599 " linier.\n"
600 "\n"
601 " Eksempler:\n"
602 "\n"
603 " # viser antaller af ændrede linier for hver bruger\n"
604 " hg churn -t '{author|email}'\n"
605 "\n"
606 " # viser graf over daglig aktivitet\n"
607 " hg churn -f '%H' -s -c\n"
608 "\n"
609 " # viser månedlig aktivitet af udviklerne\n"
610 " hg churn -f '%Y-%m' -s -c\n"
611 "\n"
612 " # viser antallet af linier ændret hvert år\n"
613 " hg churn -f '%Y' -s\n"
614 "\n"
615 " Formatet for map-filen er rimelig simpelt:\n"
616 "\n"
617 " <alias email> <faktisk email>"
618
619 #: hgext/churn.py:140
620 msgid "assuming %i character terminal\n"
621 msgstr ""
622
623 #: hgext/churn.py:151
624 msgid "count rate for the specified revision or range"
625 msgstr "lav statistik for de specificerede revisioner"
626
627 #: hgext/churn.py:152
628 msgid "count rate for revs matching date spec"
629 msgstr "lav statistik for revisioner som matcher dato specifikationen"
630
631 #: hgext/churn.py:153
632 msgid "template to group changesets"
633 msgstr "mønster for gruppering af ændringer"
634
635 #: hgext/churn.py:155
636 msgid "strftime-compatible format for grouping by date"
637 msgstr "strftime-kompatibelt format til gruppering efter dato"
638
639 #: hgext/churn.py:156
640 msgid "count rate by number of changesets"
641 msgstr "lav statistik efter antallet af ændringer"
642
643 #: hgext/churn.py:157
644 msgid "sort by key (default: sort by count)"
645 msgstr "sortér efter nøgle (standard: sortering efter antal)"
646
647 #: hgext/churn.py:158
648 msgid "file with email aliases"
649 msgstr "fil med email-aliaser"
650
651 #: hgext/churn.py:159
652 msgid "show progress"
653 msgstr "vis fremskridt"
654
655 #: hgext/churn.py:160
656 msgid "hg churn [-d DATE] [-r REV] [--aliases FILE] [--progress] [FILE]"
657 msgstr "hg churn [-d DATO] [-r REVISIONER] [--aliases FIL] [--progress] [FIL]"
658
659 #: hgext/color.py:19
660 msgid ""
661 "add color output to status, qseries, and diff-related commands\n"
662 "\n"
663 "This extension modifies the status command to add color to its output to\n"
664 "reflect file status, the qseries command to add color to reflect patch "
665 "status\n"
666 "(applied, unapplied, missing), and to diff-related commands to highlight\n"
667 "additions, removals, diff headers, and trailing whitespace.\n"
668 "\n"
669 "Other effects in addition to color, like bold and underlined text, are also\n"
670 "available. Effects are rendered with the ECMA-48 SGR control function (aka\n"
671 "ANSI escape codes). This module also provides the render_text function,\n"
672 "which can be used to add effects to any text.\n"
673 "\n"
674 "To enable this extension, add this to your .hgrc file:\n"
675 "[extensions]\n"
676 "color =\n"
677 "\n"
678 "Default effects my be overriden from the .hgrc file:\n"
679 "\n"
680 "[color]\n"
681 "status.modified = blue bold underline red_background\n"
682 "status.added = green bold\n"
683 "status.removed = red bold blue_background\n"
684 "status.deleted = cyan bold underline\n"
685 "status.unknown = magenta bold underline\n"
686 "status.ignored = black bold\n"
687 "\n"
688 "# 'none' turns off all effects\n"
689 "status.clean = none\n"
690 "status.copied = none\n"
691 "\n"
692 "qseries.applied = blue bold underline\n"
693 "qseries.unapplied = black bold\n"
694 "qseries.missing = red bold\n"
695 "\n"
696 "diff.diffline = bold\n"
697 "diff.extended = cyan bold\n"
698 "diff.file_a = red bold\n"
699 "diff.file_b = green bold\n"
700 "diff.hunk = magenta\n"
701 "diff.deleted = red\n"
702 "diff.inserted = green\n"
703 "diff.changed = white\n"
704 "diff.trailingwhitespace = bold red_background\n"
705 msgstr ""
706
707 #: hgext/color.py:93
708 msgid "Wrap text in commands to turn on each effect."
709 msgstr ""
710
711 #: hgext/color.py:100
712 msgid "run the status command with colored output"
713 msgstr ""
714
715 #: hgext/color.py:145
716 msgid "run the qseries command with colored output"
717 msgstr ""
718
719 #: hgext/color.py:172
720 msgid "wrap ui.write for colored diff output"
721 msgstr ""
722
723 #: hgext/color.py:189
724 msgid "wrap cmdutil.changeset_printer.showpatch with colored output"
725 msgstr ""
726
727 #: hgext/color.py:197
728 msgid "run the diff command with colored output"
729 msgstr ""
730
731 #: hgext/color.py:227 hgext/graphlog.py:457
732 msgid "Initialize the extension."
733 msgstr ""
734
735 #: hgext/color.py:241
736 msgid "patch in command to command table and load effect map"
737 msgstr ""
738
739 #: hgext/color.py:260
740 msgid "when to colorize (always, auto, or never)"
741 msgstr ""
742
743 #: hgext/color.py:261
744 msgid "don't colorize output"
745 msgstr ""
746
747 #: hgext/convert/__init__.py:7
748 msgid "converting foreign VCS repositories to Mercurial"
749 msgstr ""
750
751 #: hgext/convert/__init__.py:17
752 msgid ""
753 "convert a foreign SCM repository to a Mercurial one.\n"
754 "\n"
755 " Accepted source formats [identifiers]:\n"
756 " - Mercurial [hg]\n"
757 " - CVS [cvs]\n"
758 " - Darcs [darcs]\n"
759 " - git [git]\n"
760 " - Subversion [svn]\n"
761 " - Monotone [mtn]\n"
762 " - GNU Arch [gnuarch]\n"
763 " - Bazaar [bzr]\n"
764 "\n"
765 " Accepted destination formats [identifiers]:\n"
766 " - Mercurial [hg]\n"
767 " - Subversion [svn] (history on branches is not preserved)\n"
768 "\n"
769 " If no revision is given, all revisions will be converted. Otherwise,\n"
770 " convert will only import up to the named revision (given in a format\n"
771 " understood by the source).\n"
772 "\n"
773 " If no destination directory name is specified, it defaults to the\n"
774 " basename of the source with '-hg' appended. If the destination\n"
775 " repository doesn't exist, it will be created.\n"
776 "\n"
777 " If <REVMAP> isn't given, it will be put in a default location\n"
778 " (<dest>/.hg/shamap by default). The <REVMAP> is a simple text\n"
779 " file that maps each source commit ID to the destination ID for\n"
780 " that revision, like so:\n"
781 " <source ID> <destination ID>\n"
782 "\n"
783 " If the file doesn't exist, it's automatically created. It's updated\n"
784 " on each commit copied, so convert-repo can be interrupted and can\n"
785 " be run repeatedly to copy new commits.\n"
786 "\n"
787 " The [username mapping] file is a simple text file that maps each source\n"
788 " commit author to a destination commit author. It is handy for source "
789 "SCMs\n"
790 " that use unix logins to identify authors (eg: CVS). One line per author\n"
791 " mapping and the line format is:\n"
792 " srcauthor=whatever string you want\n"
793 "\n"
794 " The filemap is a file that allows filtering and remapping of files\n"
795 " and directories. Comment lines start with '#'. Each line can\n"
796 " contain one of the following directives:\n"
797 "\n"
798 " include path/to/file\n"
799 "\n"
800 " exclude path/to/file\n"
801 "\n"
802 " rename from/file to/file\n"
803 "\n"
804 " The 'include' directive causes a file, or all files under a\n"
805 " directory, to be included in the destination repository, and the\n"
806 " exclusion of all other files and dirs not explicitely included.\n"
807 " The 'exclude' directive causes files or directories to be omitted.\n"
808 " The 'rename' directive renames a file or directory. To rename from a\n"
809 " subdirectory into the root of the repository, use '.' as the path to\n"
810 " rename to.\n"
811 "\n"
812 " The splicemap is a file that allows insertion of synthetic\n"
813 " history, letting you specify the parents of a revision. This is\n"
814 " useful if you want to e.g. give a Subversion merge two parents, or\n"
815 " graft two disconnected series of history together. Each entry\n"
816 " contains a key, followed by a space, followed by one or two\n"
817 " values, separated by spaces. The key is the revision ID in the\n"
818 " source revision control system whose parents should be modified\n"
819 " (same format as a key in .hg/shamap). The values are the revision\n"
820 " IDs (in either the source or destination revision control system)\n"
821 " that should be used as the new parents for that node.\n"
822 "\n"
823 " Mercurial Source\n"
824 " -----------------\n"
825 "\n"
826 " --config convert.hg.ignoreerrors=False (boolean)\n"
827 " ignore integrity errors when reading. Use it to fix Mercurial\n"
828 " repositories with missing revlogs, by converting from and to\n"
829 " Mercurial.\n"
830 " --config convert.hg.saverev=True (boolean)\n"
831 " allow target to preserve source revision ID\n"
832 " --config convert.hg.startrev=0 (hg revision identifier)\n"
833 " convert start revision and its descendants\n"
834 "\n"
835 " CVS Source\n"
836 " ----------\n"
837 "\n"
838 " CVS source will use a sandbox (i.e. a checked-out copy) from CVS\n"
839 " to indicate the starting point of what will be converted. Direct\n"
840 " access to the repository files is not needed, unless of course\n"
841 " the repository is :local:. The conversion uses the top level\n"
842 " directory in the sandbox to find the CVS repository, and then uses\n"
843 " CVS rlog commands to find files to convert. This means that unless\n"
844 " a filemap is given, all files under the starting directory will be\n"
845 " converted, and that any directory reorganisation in the CVS\n"
846 " sandbox is ignored.\n"
847 "\n"
848 " Because CVS does not have changesets, it is necessary to collect\n"
849 " individual commits to CVS and merge them into changesets. CVS\n"
850 " source uses its internal changeset merging code by default but can\n"
851 " be configured to call the external 'cvsps' program by setting:\n"
852 " --config convert.cvsps='cvsps -A -u --cvs-direct -q'\n"
853 " This is a legacy option and may be removed in future.\n"
854 "\n"
855 " The options shown are the defaults.\n"
856 "\n"
857 " Internal cvsps is selected by setting\n"
858 " --config convert.cvsps=builtin\n"
859 " and has a few more configurable options:\n"
860 " --config convert.cvsps.fuzz=60 (integer)\n"
861 " Specify the maximum time (in seconds) that is allowed between\n"
862 " commits with identical user and log message in a single\n"
863 " changeset. When very large files were checked in as part\n"
864 " of a changeset then the default may not be long enough.\n"
865 " --config convert.cvsps.mergeto='{{mergetobranch ([-\\w]+)}}'\n"
866 " Specify a regular expression to which commit log messages are\n"
867 " matched. If a match occurs, then the conversion process will\n"
868 " insert a dummy revision merging the branch on which this log\n"
869 " message occurs to the branch indicated in the regex.\n"
870 " --config convert.cvsps.mergefrom='{{mergefrombranch ([-\\w]+)}}'\n"
871 " Specify a regular expression to which commit log messages are\n"
872 " matched. If a match occurs, then the conversion process will\n"
873 " add the most recent revision on the branch indicated in the\n"
874 " regex as the second parent of the changeset.\n"
875 "\n"
876 " The hgext/convert/cvsps wrapper script allows the builtin changeset\n"
877 " merging code to be run without doing a conversion. Its parameters and\n"
878 " output are similar to that of cvsps 2.1.\n"
879 "\n"
880 " Subversion Source\n"
881 " -----------------\n"
882 "\n"
883 " Subversion source detects classical trunk/branches/tags layouts.\n"
884 " By default, the supplied \"svn://repo/path/\" source URL is\n"
885 " converted as a single branch. If \"svn://repo/path/trunk\" exists\n"
886 " it replaces the default branch. If \"svn://repo/path/branches\"\n"
887 " exists, its subdirectories are listed as possible branches. If\n"
888 " \"svn://repo/path/tags\" exists, it is looked for tags referencing\n"
889 " converted branches. Default \"trunk\", \"branches\" and \"tags\" values\n"
890 " can be overriden with following options. Set them to paths\n"
891 " relative to the source URL, or leave them blank to disable\n"
892 " autodetection.\n"
893 "\n"
894 " --config convert.svn.branches=branches (directory name)\n"
895 " specify the directory containing branches\n"
896 " --config convert.svn.tags=tags (directory name)\n"
897 " specify the directory containing tags\n"
898 " --config convert.svn.trunk=trunk (directory name)\n"
899 " specify the name of the trunk branch\n"
900 "\n"
901 " Source history can be retrieved starting at a specific revision,\n"
902 " instead of being integrally converted. Only single branch\n"
903 " conversions are supported.\n"
904 "\n"
905 " --config convert.svn.startrev=0 (svn revision number)\n"
906 " specify start Subversion revision.\n"
907 "\n"
908 " Mercurial Destination\n"
909 " ---------------------\n"
910 "\n"
911 " --config convert.hg.clonebranches=False (boolean)\n"
912 " dispatch source branches in separate clones.\n"
913 " --config convert.hg.tagsbranch=default (branch name)\n"
914 " tag revisions branch name\n"
915 " --config convert.hg.usebranchnames=True (boolean)\n"
916 " preserve branch names\n"
917 "\n"
918 " "
919 msgstr ""
920
921 #: hgext/convert/__init__.py:188
922 msgid ""
923 "create changeset information from CVS\n"
924 "\n"
925 " This command is intended as a debugging tool for the CVS to Mercurial\n"
926 " converter, and can be used as a direct replacement for cvsps.\n"
927 "\n"
928 " Hg debugcvsps reads the CVS rlog for current directory (or any named\n"
929 " directory) in the CVS repository, and converts the log to a series of\n"
930 " changesets based on matching commit log entries and dates."
931 msgstr ""
932
933 #: hgext/convert/__init__.py:203
934 msgid "username mapping filename"
935 msgstr ""
936
937 #: hgext/convert/__init__.py:204
938 msgid "destination repository type"
939 msgstr "type for destinations repository"
940
941 #: hgext/convert/__init__.py:205
942 msgid "remap file names using contents of file"
943 msgstr ""
944
945 #: hgext/convert/__init__.py:206
946 msgid "import up to target revision REV"
947 msgstr ""
948
949 #: hgext/convert/__init__.py:207
950 msgid "source repository type"
951 msgstr ""
952
953 #: hgext/convert/__init__.py:208
954 msgid "splice synthesized history into place"
955 msgstr ""
956
957 #: hgext/convert/__init__.py:209
958 msgid "try to sort changesets by date"
959 msgstr ""
960
961 #: hgext/convert/__init__.py:210
962 msgid "hg convert [OPTION]... SOURCE [DEST [REVMAP]]"
963 msgstr ""
964
965 #: hgext/convert/__init__.py:219
966 msgid "only return changes on specified branches"
967 msgstr ""
968
969 #: hgext/convert/__init__.py:220
970 msgid "prefix to remove from file names"
971 msgstr ""
972
973 #: hgext/convert/__init__.py:221
974 msgid "only return changes after or between specified tags"
975 msgstr ""
976
977 #: hgext/convert/__init__.py:222
978 msgid "update cvs log cache"
979 msgstr ""
980
981 #: hgext/convert/__init__.py:223
982 msgid "create new cvs log cache"
983 msgstr ""
984
985 #: hgext/convert/__init__.py:224
986 msgid "set commit time fuzz in seconds"
987 msgstr ""
988
989 #: hgext/convert/__init__.py:225
990 msgid "specify cvsroot"
991 msgstr ""
992
993 #: hgext/convert/__init__.py:227
994 msgid "show parent changesets"
995 msgstr "vis forældre-ændring"
996
997 #: hgext/convert/__init__.py:228
998 msgid "show current changeset in ancestor branches"
999 msgstr ""
1000
1001 #: hgext/extdiff.py:8
1002 msgid ""
1003 "\n"
1004 "The `extdiff' Mercurial extension allows you to use external programs\n"
1005 "to compare revisions, or revision with working dir. The external diff\n"
1006 "programs are called with a configurable set of options and two\n"
1007 "non-option arguments: paths to directories containing snapshots of\n"
1008 "files to compare.\n"
1009 "\n"
1010 "To enable this extension:\n"
1011 "\n"
1012 " [extensions]\n"
1013 " hgext.extdiff =\n"
1014 "\n"
1015 "The `extdiff' extension also allows to configure new diff commands, so\n"
1016 "you do not need to type \"hg extdiff -p kdiff3\" always.\n"
1017 "\n"
1018 " [extdiff]\n"
1019 " # add new command that runs GNU diff(1) in 'context diff' mode\n"
1020 " cdiff = gdiff -Nprc5\n"
1021 " ## or the old way:\n"
1022 " #cmd.cdiff = gdiff\n"
1023 " #opts.cdiff = -Nprc5\n"
1024 "\n"
1025 " # add new command called vdiff, runs kdiff3\n"
1026 " vdiff = kdiff3\n"
1027 "\n"
1028 " # add new command called meld, runs meld (no need to name twice)\n"
1029 " meld =\n"
1030 "\n"
1031 " # add new command called vimdiff, runs gvimdiff with DirDiff plugin\n"
1032 " #(see http://www.vim.org/scripts/script.php?script_id=102)\n"
1033 " # Non english user, be sure to put \"let g:DirDiffDynamicDiffText = 1\" "
1034 "in\n"
1035 " # your .vimrc\n"
1036 " vimdiff = gvim -f '+next' '+execute \"DirDiff\" argv(0) argv(1)'\n"
1037 "\n"
1038 "You can use -I/-X and list of file or directory names like normal\n"
1039 "\"hg diff\" command. The `extdiff' extension makes snapshots of only\n"
1040 "needed files, so running the external diff program will actually be\n"
1041 "pretty fast (at least faster than having to compare the entire tree).\n"
1042 msgstr ""
1043
1044 #: hgext/extdiff.py:54
1045 msgid "snapshot files as of some revision"
1046 msgstr ""
1047
1048 #: hgext/extdiff.py:61
1049 msgid "making snapshot of %d files from rev %s\n"
1050 msgstr ""
1051
1052 #: hgext/extdiff.py:80
1053 msgid ""
1054 "snapshot files from working directory.\n"
1055 " if not using snapshot, -I/-X does not work and recursive diff\n"
1056 " in tools like kdiff3 and meld displays too many files."
1057 msgstr ""
1058
1059 #: hgext/extdiff.py:88
1060 msgid "making snapshot of %d files from working dir\n"
1061 msgstr ""
1062
1063 #: hgext/extdiff.py:113
1064 msgid ""
1065 "Do the actuall diff:\n"
1066 "\n"
1067 " - copy to a temp structure if diffing 2 internal revisions\n"
1068 " - copy to a temp structure if diffing working revision with\n"
1069 " another one and more than 1 file is changed\n"
1070 " - just invoke the diff for a single file in the working dir\n"
1071 " "
1072 msgstr ""
1073
1074 #: hgext/extdiff.py:164
1075 msgid "running %r in %s\n"
1076 msgstr ""
1077
1078 #: hgext/extdiff.py:169
1079 msgid "file changed while diffing. Overwriting: %s (src: %s)\n"
1080 msgstr ""
1081
1082 #: hgext/extdiff.py:175
1083 msgid "cleaning up temp directory\n"
1084 msgstr ""
1085
1086 #: hgext/extdiff.py:179
1087 msgid ""
1088 "use external program to diff repository (or selected files)\n"
1089 "\n"
1090 " Show differences between revisions for the specified files, using\n"
1091 " an external program. The default program used is diff, with\n"
1092 " default options \"-Npru\".\n"
1093 "\n"
1094 " To select a different program, use the -p option. The program\n"
1095 " will be passed the names of two directories to compare. To pass\n"
1096 " additional options to the program, use the -o option. These will\n"
1097 " be passed before the names of the directories to compare.\n"
1098 "\n"
1099 " When two revision arguments are given, then changes are\n"
1100 " shown between those revisions. If only one revision is\n"
1101 " specified then that revision is compared to the working\n"
1102 " directory, and, when no revisions are specified, the\n"
1103 " working directory files are compared to its parent."
1104 msgstr ""
1105
1106 #: hgext/extdiff.py:205
1107 msgid "comparison program to run"
1108 msgstr ""
1109
1110 #: hgext/extdiff.py:206
1111 msgid "pass option to comparison program"
1112 msgstr ""
1113
1114 #: hgext/extdiff.py:209
1115 msgid "hg extdiff [OPT]... [FILE]..."
1116 msgstr ""
1117
1118 #: hgext/extdiff.py:229
1119 msgid "use closure to save diff command to use"
1120 msgstr ""
1121
1122 #: hgext/extdiff.py:247
1123 msgid "hg %s [OPTION]... [FILE]..."
1124 msgstr ""
1125
1126 #: hgext/fetch.py:7
1127 msgid "pulling, updating and merging in one command"
1128 msgstr ""
1129
1130 #: hgext/fetch.py:14
1131 msgid ""
1132 "pull changes from a remote repository, merge new changes if needed.\n"
1133 "\n"
1134 " This finds all changes from the repository at the specified path\n"
1135 " or URL and adds them to the local repository.\n"
1136 "\n"
1137 " If the pulled changes add a new branch head, the head is automatically\n"
1138 " merged, and the result of the merge is committed. Otherwise, the\n"
1139 " working directory is updated to include the new changes.\n"
1140 "\n"
1141 " When a merge occurs, the newly pulled changes are assumed to be\n"
1142 " \"authoritative\". The head of the new changes is used as the first\n"
1143 " parent, with local changes as the second. To switch the merge\n"
1144 " order, use --switch-parent.\n"
1145 "\n"
1146 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
1147 " "
1148 msgstr ""
1149
1150 #: hgext/fetch.py:39
1151 msgid ""
1152 "working dir not at branch tip (use \"hg update\" to check out branch tip)"
1153 msgstr ""
1154
1155 #: hgext/fetch.py:43 hgext/keyword.py:261 mercurial/cmdutil.py:69
1156 msgid "outstanding uncommitted merge"
1157 msgstr ""
1158
1159 #: hgext/fetch.py:52 hgext/keyword.py:266 mercurial/cmdutil.py:72
1160 #: mercurial/merge.py:459
1161 msgid "outstanding uncommitted changes"
1162 msgstr ""
1163
1164 #: hgext/fetch.py:54
1165 msgid "working directory is missing some files"
1166 msgstr ""
1167
1168 #: hgext/fetch.py:56
1169 msgid ""
1170 "multiple heads in this branch (use \"hg heads .\" and \"hg merge\" to merge)"
1171 msgstr ""
1172
1173 #: hgext/fetch.py:62 mercurial/commands.py:2168
1174 msgid "pulling from %s\n"
1175 msgstr ""
1176
1177 #: hgext/fetch.py:67
1178 msgid "fetch -r doesn't work for remote repositories yet"
1179 msgstr ""
1180
1181 #: hgext/fetch.py:94
1182 msgid ""
1183 "not merging with %d other new branch heads (use \"hg heads .\" and \"hg merge"
1184 "\" to merge them)\n"
1185 msgstr ""
1186
1187 #: hgext/fetch.py:109
1188 msgid "updating to %d:%s\n"
1189 msgstr ""
1190
1191 #: hgext/fetch.py:113
1192 msgid "merging with %d:%s\n"
1193 msgstr ""
1194
1195 #: hgext/fetch.py:120
1196 msgid "Automated merge with %s"
1197 msgstr ""
1198
1199 #: hgext/fetch.py:126
1200 msgid "new changeset %d:%s merges remote changes with local\n"
1201 msgstr ""
1202
1203 #: hgext/fetch.py:136
1204 msgid "a specific revision you would like to pull"
1205 msgstr ""
1206
1207 #: hgext/fetch.py:137 hgext/mq.py:2516 hgext/mq.py:2543
1208 msgid "edit commit message"
1209 msgstr ""
1210
1211 #: hgext/fetch.py:138
1212 msgid "edit commit message (DEPRECATED)"
1213 msgstr ""
1214
1215 #: hgext/fetch.py:139
1216 msgid "switch parents when merging"
1217 msgstr ""
1218
1219 #: hgext/fetch.py:141
1220 msgid "hg fetch [SOURCE]"
1221 msgstr ""
1222
1223 #: hgext/gpg.py:23
1224 msgid " returns of the good and bad signatures"
1225 msgstr ""
1226
1227 #: hgext/gpg.py:53
1228 msgid "error while verifying signature"
1229 msgstr ""
1230
1231 #: hgext/gpg.py:73
1232 msgid "create a new gpg instance"
1233 msgstr ""
1234
1235 #: hgext/gpg.py:81
1236 msgid ""
1237 "\n"
1238 " walk over every sigs, yields a couple\n"
1239 " ((node, version, sig), (filename, linenumber))\n"
1240 " "
1241 msgstr ""
1242
1243 #: hgext/gpg.py:110
1244 msgid "get the keys who signed a data"
1245 msgstr ""
1246
1247 #: hgext/gpg.py:127
1248 msgid "%s Bad signature from \"%s\"\n"
1249 msgstr ""
1250
1251 #: hgext/gpg.py:130
1252 msgid "%s Note: Signature has expired (signed by: \"%s\")\n"
1253 msgstr ""
1254
1255 #: hgext/gpg.py:133
1256 msgid "%s Note: This key has expired (signed by: \"%s\")\n"
1257 msgstr ""
1258
1259 #: hgext/gpg.py:139
1260 msgid "list signed changesets"
1261 msgstr ""
1262
1263 #: hgext/gpg.py:149
1264 msgid "%s:%d node does not exist\n"
1265 msgstr ""
1266
1267 #: hgext/gpg.py:165
1268 msgid "verify all the signatures there may be for a particular revision"
1269 msgstr ""
1270
1271 #: hgext/gpg.py:179
1272 msgid "No valid signature for %s\n"
1273 msgstr ""
1274
1275 #: hgext/gpg.py:188
1276 msgid "associate a string to a key (username, comment)"
1277 msgstr ""
1278
1279 #: hgext/gpg.py:197
1280 msgid ""
1281 "add a signature for the current or given revision\n"
1282 "\n"
1283 " If no revision is given, the parent of the working directory is used,\n"
1284 " or tip if no revision is checked out.\n"
1285 "\n"
1286 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
1287 " "
1288 msgstr ""
1289
1290 #: hgext/gpg.py:219 mercurial/commands.py:2423 mercurial/commands.py:2816
1291 msgid "uncommitted merge - please provide a specific revision"
1292 msgstr ""
1293
1294 #: hgext/gpg.py:232
1295 msgid "Error while signing"
1296 msgstr ""
1297
1298 #: hgext/gpg.py:244
1299 msgid ""
1300 "working copy of .hgsigs is changed (please commit .hgsigs manually or use --"
1301 "force)"
1302 msgstr ""
1303
1304 #: hgext/gpg.py:258
1305 msgid "Added signature for changeset %s"
1306 msgstr ""
1307
1308 #: hgext/gpg.py:267
1309 msgid "map a manifest into some text"
1310 msgstr ""
1311
1312 #: hgext/gpg.py:271
1313 msgid "unknown signature version"
1314 msgstr ""
1315
1316 #: hgext/gpg.py:276
1317 msgid "make the signature local"
1318 msgstr ""
1319
1320 #: hgext/gpg.py:277
1321 msgid "sign even if the sigfile is modified"
1322 msgstr ""
1323
1324 #: hgext/gpg.py:278
1325 msgid "do not commit the sigfile after signing"
1326 msgstr ""
1327
1328 #: hgext/gpg.py:279
1329 msgid "the key id to sign with"
1330 msgstr ""
1331
1332 #: hgext/gpg.py:280
1333 msgid "commit message"
1334 msgstr ""
1335
1336 #: hgext/gpg.py:282
1337 msgid "hg sign [OPTION]... [REVISION]..."
1338 msgstr ""
1339
1340 #: hgext/gpg.py:283
1341 msgid "hg sigcheck REVISION"
1342 msgstr ""
1343
1344 #: hgext/gpg.py:284
1345 msgid "hg sigs"
1346 msgstr ""
1347
1348 #: hgext/graphlog.py:7
1349 msgid ""
1350 "show revision graphs in terminal windows\n"
1351 "\n"
1352 "This extension adds a --graph option to the incoming, outgoing and log\n"
1353 "commands. When this options is given, an ascii representation of the\n"
1354 "revision graph is also shown.\n"
1355 msgstr ""
1356
1357 #: hgext/graphlog.py:25
1358 msgid ""
1359 "cset DAG generator yielding (rev, node, [parents]) tuples\n"
1360 "\n"
1361 " This generator function walks through the revision history from "
1362 "revision\n"
1363 " start to revision stop (which must be less than or equal to start).\n"
1364 " "
1365 msgstr ""
1366
1367 #: hgext/graphlog.py:40
1368 msgid ""
1369 "file cset DAG generator yielding (rev, node, [parents]) tuples\n"
1370 "\n"
1371 " This generator function walks through the revision history of a single\n"
1372 " file from revision start to revision stop (which must be less than or\n"
1373 " equal to start).\n"
1374 " "
1375 msgstr ""
1376
1377 #: hgext/graphlog.py:59
1378 msgid ""
1379 "grapher for asciigraph on a list of nodes and their parents\n"
1380 "\n"
1381 " nodes must generate tuples (node, parents, char, lines) where\n"
1382 " - parents must generate the parents of node, in sorted order,\n"
1383 " and max length 2,\n"
1384 " - char is the char to print as the node symbol, and\n"
1385 " - lines are the lines to display next to the node.\n"
1386 " "
1387 msgstr ""
1388
1389 #: hgext/graphlog.py:147
1390 msgid ""
1391 "prints an ASCII graph of the DAG returned by the grapher\n"
1392 "\n"
1393 " grapher is a generator that emits tuples with the following elements:\n"
1394 "\n"
1395 " - Character to use as node's symbol.\n"
1396 " - List of lines to display as the node's text.\n"
1397 " - Column of the current node in the set of ongoing edges.\n"
1398 " - Edges; a list of (col, next_col) indicating the edges between\n"
1399 " the current node and its parents.\n"
1400 " - Number of columns (ongoing edges) in the current revision.\n"
1401 " - The difference between the number of columns (ongoing edges)\n"
1402 " in the next revision and the number of columns (ongoing edges)\n"
1403 " in the current revision. That is: -1 means one column removed;\n"
1404 " 0 means no columns added or removed; 1 means one column added.\n"
1405 " "
1406 msgstr ""
1407
1408 #: hgext/graphlog.py:253 mercurial/cmdutil.py:100
1409 msgid "limit must be a positive integer"
1410 msgstr ""
1411
1412 #: hgext/graphlog.py:255 mercurial/cmdutil.py:101
1413 msgid "limit must be positive"
1414 msgstr ""
1415
1416 #: hgext/graphlog.py:272
1417 msgid "--graph option is incompatible with --%s"
1418 msgstr ""
1419
1420 #: hgext/graphlog.py:276
1421 msgid ""
1422 "show revision history alongside an ASCII revision graph\n"
1423 "\n"
1424 " Print a revision history alongside a revision graph drawn with\n"
1425 " ASCII characters.\n"
1426 "\n"
1427 " Nodes printed as an @ character are parents of the working\n"
1428 " directory.\n"
1429 " "
1430 msgstr ""
1431
1432 #: hgext/graphlog.py:313
1433 msgid ""
1434 "cset DAG generator yielding (node, [parents]) tuples\n"
1435 "\n"
1436 " This generator function walks through the revisions not found\n"
1437 " in the destination\n"
1438 " "
1439 msgstr ""
1440
1441 #: hgext/graphlog.py:326 hgext/graphlog.py:406 hgext/patchbomb.py:216
1442 #: mercurial/commands.py:1708 mercurial/commands.py:2034
1443 msgid "comparing with %s\n"
1444 msgstr "sammenligner med %s\n"
1445
1446 #: hgext/graphlog.py:329 hgext/graphlog.py:415 hgext/patchbomb.py:219
1447 #: mercurial/commands.py:1718 mercurial/commands.py:2037
1448 #: mercurial/localrepo.py:1468 mercurial/localrepo.py:1509
1449 msgid "no changes found\n"
1450 msgstr "fandt ingen ændringer\n"
1451
1452 #: hgext/graphlog.py:347
1453 msgid ""
1454 "show the outgoing changesets alongside an ASCII revision graph\n"
1455 "\n"
1456 " Print the outgoing changesets alongside a revision graph drawn with\n"
1457 " ASCII characters.\n"
1458 "\n"
1459 " Nodes printed as an @ character are parents of the working\n"
1460 " directory.\n"
1461 " "
1462 msgstr ""
1463
1464 #: hgext/graphlog.py:371
1465 msgid ""
1466 "cset DAG generator yielding (node, [parents]) tuples\n"
1467 "\n"
1468 " This generator function walks through the revisions of the destination\n"
1469 " not found in repo\n"
1470 " "
1471 msgstr ""
1472
1473 #: hgext/graphlog.py:392
1474 msgid ""
1475 "show the incoming changesets alongside an ASCII revision graph\n"
1476 "\n"
1477 " Print the incoming changesets alongside a revision graph drawn with\n"
1478 " ASCII characters.\n"
1479 "\n"
1480 " Nodes printed as an @ character are parents of the working\n"
1481 " directory.\n"
1482 " "
1483 msgstr ""
1484
1485 #: hgext/graphlog.py:463
1486 msgid "wrap the command"
1487 msgstr ""
1488
1489 #: hgext/graphlog.py:469
1490 msgid "show the revision DAG"
1491 msgstr ""
1492
1493 #: hgext/graphlog.py:474 hgext/hgk.py:328 mercurial/commands.py:3014
1494 msgid "limit number of changes displayed"
1495 msgstr ""
1496
1497 #: hgext/graphlog.py:475 mercurial/commands.py:3013 mercurial/commands.py:3398
1498 msgid "show patch"
1499 msgstr ""
1500
1501 #: hgext/graphlog.py:476 mercurial/commands.py:3261
1502 msgid "show the specified revision or range"
1503 msgstr ""
1504
1505 #: hgext/graphlog.py:478
1506 msgid "hg glog [OPTION]... [FILE]"
1507 msgstr ""
1508
1509 #: hgext/hgcia.py:4
1510 msgid ""
1511 "CIA notification\n"
1512 "\n"
1513 "This is meant to be run as a changegroup or incoming hook.\n"
1514 "To configure it, set the following options in your hgrc:\n"
1515 "\n"
1516 "[cia]\n"
1517 "# your registered CIA user name\n"
1518 "user = foo\n"
1519 "# the name of the project in CIA\n"
1520 "project = foo\n"
1521 "# the module (subproject) (optional)\n"
1522 "#module = foo\n"
1523 "# Append a diffstat to the log message (optional)\n"
1524 "#diffstat = False\n"
1525 "# Template to use for log messages (optional)\n"
1526 "#template = {desc}\n"
1527 "{baseurl}/rev/{node}-- {diffstat}\n"
1528 "# Style to use (optional)\n"
1529 "#style = foo\n"
1530 "# The URL of the CIA notification service (optional)\n"
1531 "# You can use mailto: URLs to send by email, eg\n"
1532 "# mailto:cia@cia.vc\n"
1533 "# Make sure to set email.from if you do this.\n"
1534 "#url = http://cia.vc/\n"
1535 "# print message instead of sending it (optional)\n"
1536 "#test = False\n"
1537 "\n"
1538 "[hooks]\n"
1539 "# one of these:\n"
1540 "changegroup.cia = python:hgcia.hook\n"
1541 "#incoming.cia = python:hgcia.hook\n"
1542 "\n"
1543 "[web]\n"
1544 "# If you want hyperlinks (optional)\n"
1545 "baseurl = http://server/path/to/repo\n"
1546 msgstr ""
1547
1548 #: hgext/hgcia.py:62
1549 msgid " A CIA message "
1550 msgstr ""
1551
1552 #: hgext/hgcia.py:168
1553 msgid " CIA notification class "
1554 msgstr ""
1555
1556 #: hgext/hgcia.py:209
1557 msgid "hgcia: sending update to %s\n"
1558 msgstr ""
1559
1560 #: hgext/hgcia.py:215
1561 msgid " send CIA notification "
1562 msgstr ""
1563
1564 #: hgext/hgcia.py:222
1565 msgid "email.from must be defined when sending by email"
1566 msgstr ""
1567
1568 #: hgext/hgcia.py:231
1569 msgid "cia: no user specified"
1570 msgstr "cia: ingen bruger angivet"
1571
1572 #: hgext/hgcia.py:234
1573 msgid "cia: no project specified"
1574 msgstr "cia: intet project angivet"
1575
1576 #: hgext/hgk.py:7
1577 msgid ""
1578 "browsing the repository in a graphical way\n"
1579 "\n"
1580 "The hgk extension allows browsing the history of a repository in a\n"
1581 "graphical way. It requires Tcl/Tk version 8.4 or later. (Tcl/Tk is\n"
1582 "not distributed with Mercurial.)\n"
1583 "\n"
1584 "hgk consists of two parts: a Tcl script that does the displaying and\n"
1585 "querying of information, and an extension to mercurial named hgk.py,\n"
1586 "which provides hooks for hgk to get information. hgk can be found in\n"
1587 "the contrib directory, and hgk.py can be found in the hgext directory.\n"
1588 "\n"
1589 "To load the hgext.py extension, add it to your .hgrc file (you have\n"
1590 "to use your global $HOME/.hgrc file, not one in a repository). You\n"
1591 "can specify an absolute path:\n"
1592 "\n"
1593 " [extensions]\n"
1594 " hgk=/usr/local/lib/hgk.py\n"
1595 "\n"
1596 "Mercurial can also scan the default python library path for a file\n"
1597 "named 'hgk.py' if you set hgk empty:\n"
1598 "\n"
1599 " [extensions]\n"
1600 " hgk=\n"
1601 "\n"
1602 "The hg view command will launch the hgk Tcl script. For this command\n"
1603 "to work, hgk must be in your search path. Alternately, you can\n"
1604 "specify the path to hgk in your .hgrc file:\n"
1605 "\n"
1606 " [hgk]\n"
1607 " path=/location/of/hgk\n"
1608 "\n"
1609 "hgk can make use of the extdiff extension to visualize revisions.\n"
1610 "Assuming you had already configured extdiff vdiff command, just add:\n"
1611 "\n"
1612 " [hgk]\n"
1613 " vdiff=vdiff\n"
1614 "\n"
1615 "Revisions context menu will now display additional entries to fire\n"
1616 "vdiff on hovered and selected revisions."
1617 msgstr ""
1618
1619 #: hgext/hgk.py:53
1620 msgid "diff trees from two commits"
1621 msgstr ""
1622
1623 #: hgext/hgk.py:133
1624 msgid "output common ancestor information"
1625 msgstr ""
1626
1627 #: hgext/hgk.py:140
1628 msgid "cat a specific revision"
1629 msgstr ""
1630
1631 #: hgext/hgk.py:155
1632 msgid "cat-file: type or revision not supplied\n"
1633 msgstr ""
1634
1635 #: hgext/hgk.py:160
1636 msgid "aborting hg cat-file only understands commits\n"
1637 msgstr ""
1638
1639 #: hgext/hgk.py:285
1640 msgid "parse given revisions"
1641 msgstr ""
1642
1643 #: hgext/hgk.py:301
1644 msgid "print revisions"
1645 msgstr ""
1646
1647 #: hgext/hgk.py:310
1648 msgid "print extension options"
1649 msgstr ""
1650
1651 #: hgext/hgk.py:318
1652 msgid "start interactive history viewer"
1653 msgstr ""
1654
1655 #: hgext/hgk.py:322 hgext/convert/cvsps.py:191 mercurial/sshrepo.py:45
1656 #: mercurial/sshrepo.py:63
1657 msgid "running %s\n"
1658 msgstr "kører %s\n"
1659
1660 #: hgext/hgk.py:329
1661 msgid "hg view [-l LIMIT] [REVRANGE]"
1662 msgstr ""
1663
1664 #: hgext/hgk.py:332
1665 msgid "generate patch"
1666 msgstr ""
1667
1668 #: hgext/hgk.py:333
1669 msgid "recursive"
1670 msgstr ""
1671
1672 #: hgext/hgk.py:334
1673 msgid "pretty"
1674 msgstr ""
1675
1676 #: hgext/hgk.py:335 hgext/hgk.py:341
1677 msgid "stdin"
1678 msgstr ""
1679
1680 #: hgext/hgk.py:336
1681 msgid "detect copies"
1682 msgstr ""
1683
1684 #: hgext/hgk.py:337
1685 msgid "search"
1686 msgstr "søg"
1687
1688 #: hgext/hgk.py:338
1689 msgid "hg git-diff-tree [OPTION]... NODE1 NODE2 [FILE]..."
1690 msgstr ""
1691
1692 #: hgext/hgk.py:342
1693 msgid "hg debug-cat-file [OPTION]... TYPE FILE"
1694 msgstr ""
1695
1696 #: hgext/hgk.py:344
1697 msgid "hg debug-config"
1698 msgstr ""
1699
1700 #: hgext/hgk.py:346
1701 msgid "hg debug-merge-base node node"
1702 msgstr ""
1703
1704 #: hgext/hgk.py:349
1705 msgid "ignored"
1706 msgstr "Ignoreret"
1707
1708 #: hgext/hgk.py:350
1709 msgid "hg debug-rev-parse REV"
1710 msgstr ""
1711
1712 #: hgext/hgk.py:353
1713 msgid "header"
1714 msgstr ""
1715
1716 #: hgext/hgk.py:354
1717 msgid "topo-order"
1718 msgstr ""
1719
1720 #: hgext/hgk.py:355
1721 msgid "parents"
1722 msgstr ""
1723
1724 #: hgext/hgk.py:356
1725 msgid "max-count"
1726 msgstr ""
1727
1728 #: hgext/hgk.py:357
1729 msgid "hg debug-rev-list [options] revs"
1730 msgstr ""
1731
1732 #: hgext/highlight/__init__.py:1
1733 msgid ""
1734 "syntax highlighting in hgweb, based on Pygments\n"
1735 "\n"
1736 "It depends on the pygments syntax highlighting library:\n"
1737 "http://pygments.org/\n"
1738 "\n"
1739 "To enable the extension add this to hgrc:\n"
1740 "\n"
1741 "[extensions]\n"
1742 "hgext.highlight =\n"
1743 "\n"
1744 "There is a single configuration option:\n"
1745 "\n"
1746 "[web]\n"
1747 "pygments_style = <style>\n"
1748 "\n"
1749 "The default is 'colorful'.\n"
1750 "\n"
1751 "-- Adam Hupp <adam@hupp.org>\n"
1752 msgstr ""
1753
1754 #: hgext/imerge.py:4
1755 msgid ""
1756 "\n"
1757 "imerge - interactive merge\n"
1758 msgstr ""
1759
1760 #: hgext/imerge.py:77
1761 msgid "invalid imerge status file"
1762 msgstr ""
1763
1764 #: hgext/imerge.py:82
1765 msgid "merge parent %s not in repository"
1766 msgstr ""
1767
1768 #: hgext/imerge.py:157
1769 msgid "imerge state does not match working directory"
1770 msgstr ""
1771
1772 #: hgext/imerge.py:167
1773 msgid "%s is not in the merge set"
1774 msgstr ""
1775
1776 #: hgext/imerge.py:178
1777 msgid "%s is not resolved"
1778 msgstr ""
1779
1780 #: hgext/imerge.py:186
1781 msgid "write current merge state to file to be resumed elsewhere"
1782 msgstr ""
1783
1784 #: hgext/imerge.py:191
1785 msgid "read merge state from file"
1786 msgstr ""
1787
1788 #: hgext/imerge.py:197
1789 msgid "there is already a merge in progress (update -C <rev> to abort it)"
1790 msgstr ""
1791
1792 #: hgext/imerge.py:201
1793 msgid "working directory has uncommitted changes"
1794 msgstr ""
1795
1796 #: hgext/imerge.py:246
1797 msgid "resolve requires at least one filename"
1798 msgstr ""
1799
1800 #: hgext/imerge.py:259
1801 msgid "merging %s and %s\n"
1802 msgstr ""
1803
1804 #: hgext/imerge.py:283
1805 msgid "all conflicts resolved\n"
1806 msgstr ""
1807
1808 #: hgext/imerge.py:289
1809 msgid "unresolve requires at least one filename"
1810 msgstr ""
1811
1812 #: hgext/imerge.py:296
1813 msgid "automatically resolve if possible"
1814 msgstr ""
1815
1816 #: hgext/imerge.py:302 mercurial/commands.py:3378
1817 msgid "hide status prefix"
1818 msgstr ""
1819
1820 #: hgext/imerge.py:303
1821 msgid "only show resolved conflicts"
1822 msgstr ""
1823
1824 #: hgext/imerge.py:304
1825 msgid "only show unresolved conflicts"
1826 msgstr ""
1827
1828 #: hgext/imerge.py:333
1829 msgid "%s: invalid arguments"
1830 msgstr ""
1831
1832 #: hgext/imerge.py:336
1833 msgid ""
1834 "interactive merge\n"
1835 "\n"
1836 " imerge lets you split a merge into pieces. When you start a merge\n"
1837 " with imerge, the names of all files with conflicts are recorded.\n"
1838 " You can then merge any of these files, and if the merge is\n"
1839 " successful, they will be marked as resolved. When all files are\n"
1840 " resolved, the merge is complete.\n"
1841 "\n"
1842 " If no merge is in progress, hg imerge [rev] will merge the working\n"
1843 " directory with rev (defaulting to the other head if the repository\n"
1844 " only has two heads). You may also resume a saved merge with\n"
1845 " hg imerge load <file>.\n"
1846 "\n"
1847 " If a merge is in progress, hg imerge will default to merging the\n"
1848 " next unresolved file.\n"
1849 "\n"
1850 " The following subcommands are available:\n"
1851 "\n"
1852 " status:\n"
1853 " show the current state of the merge\n"
1854 " options:\n"
1855 " -n --no-status: do not print the status prefix\n"
1856 " --resolved: only print resolved conflicts\n"
1857 " --unresolved: only print unresolved conflicts\n"
1858 " next:\n"
1859 " show the next unresolved file merge\n"
1860 " merge [<file>]:\n"
1861 " merge <file>. If the file merge is successful, the file will be\n"
1862 " recorded as resolved. If no file is given, the next unresolved\n"
1863 " file will be merged.\n"
1864 " resolve <file>...:\n"
1865 " mark files as successfully merged\n"
1866 " unresolve <file>...:\n"
1867 " mark files as requiring merging.\n"
1868 " save <file>:\n"
1869 " save the state of the merge to a file to be resumed elsewhere\n"
1870 " load <file>:\n"
1871 " load the state of the merge from a file created by save\n"
1872 " "
1873 msgstr ""
1874
1875 #: hgext/imerge.py:383 mercurial/commands.py:195 mercurial/commands.py:1959
1876 #: mercurial/commands.py:1988 mercurial/commands.py:2923
1877 msgid "please specify just one revision"
1878 msgstr ""
1879
1880 #: hgext/imerge.py:404 mercurial/commands.py:3277
1881 msgid "revision to merge"
1882 msgstr ""
1883
1884 #: hgext/imerge.py:405
1885 msgid "automatically merge where possible"
1886 msgstr ""
1887
1888 #: hgext/imerge.py:406
1889 msgid "hg imerge [command]"
1890 msgstr ""
1891
1892 #: hgext/inotify/__init__.py:9
1893 msgid "inotify-based status acceleration for Linux systems\n"
1894 msgstr ""
1895
1896 #: hgext/inotify/__init__.py:20
1897 msgid "start an inotify server for this repository"
1898 msgstr ""
1899
1900 #: hgext/inotify/__init__.py:79
1901 msgid "(found dead inotify server socket; removing it)\n"
1902 msgstr ""
1903
1904 #: hgext/inotify/__init__.py:84
1905 msgid "(starting inotify server)\n"
1906 msgstr ""
1907
1908 #: hgext/inotify/__init__.py:95
1909 msgid "could not start inotify server: %s\n"
1910 msgstr ""
1911
1912 #: hgext/inotify/__init__.py:102
1913 msgid "could not talk to new inotify server: %s\n"
1914 msgstr ""
1915
1916 #: hgext/inotify/__init__.py:106
1917 msgid "(inotify server not running)\n"
1918 msgstr ""
1919
1920 #: hgext/inotify/__init__.py:108
1921 msgid "failed to contact inotify server: %s\n"
1922 msgstr ""
1923
1924 #: hgext/inotify/__init__.py:122 mercurial/commands.py:3347
1925 msgid "run server in background"
1926 msgstr ""
1927
1928 #: hgext/inotify/__init__.py:123 mercurial/commands.py:3348
1929 msgid "used internally by daemon mode"
1930 msgstr ""
1931
1932 #: hgext/inotify/__init__.py:124
1933 msgid "minutes to sit idle before exiting"
1934 msgstr ""
1935
1936 #: hgext/inotify/__init__.py:125 mercurial/commands.py:3357
1937 msgid "name of file to write process ID to"
1938 msgstr ""
1939
1940 #: hgext/inotify/__init__.py:126
1941 msgid "hg inserve [OPT]..."
1942 msgstr ""
1943
1944 #: hgext/interhg.py:58
1945 msgid "interhg: invalid pattern for %s: %s\n"
1946 msgstr ""
1947
1948 #: hgext/interhg.py:78
1949 msgid "interhg: invalid regexp for %s: %s\n"
1950 msgstr ""
1951
1952 #: hgext/keyword.py:35
1953 msgid ""
1954 "keyword expansion in local repositories\n"
1955 "\n"
1956 "This extension expands RCS/CVS-like or self-customized $Keywords$\n"
1957 "in tracked text files selected by your configuration.\n"
1958 "\n"
1959 "Keywords are only expanded in local repositories and not stored in\n"
1960 "the change history. The mechanism can be regarded as a convenience\n"
1961 "for the current user or for archive distribution.\n"
1962 "\n"
1963 "Configuration is done in the [keyword] and [keywordmaps] sections\n"
1964 "of hgrc files.\n"
1965 "\n"
1966 "Example:\n"
1967 "\n"
1968 " [keyword]\n"
1969 " # expand keywords in every python file except those matching \"x*\"\n"
1970 " **.py =\n"
1971 " x* = ignore\n"
1972 "\n"
1973 "Note: the more specific you are in your filename patterns\n"
1974 " the less you lose speed in huge repos.\n"
1975 "\n"
1976 "For [keywordmaps] template mapping and expansion demonstration and\n"
1977 "control run \"hg kwdemo\".\n"
1978 "\n"
1979 "An additional date template filter {date|utcdate} is provided.\n"
1980 "\n"
1981 "The default template mappings (view with \"hg kwdemo -d\") can be replaced\n"
1982 "with customized keywords and templates.\n"
1983 "Again, run \"hg kwdemo\" to control the results of your config changes.\n"
1984 "\n"
1985 "Before changing/disabling active keywords, run \"hg kwshrink\" to avoid\n"
1986 "the risk of inadvertedly storing expanded keywords in the change history.\n"
1987 "\n"
1988 "To force expansion after enabling it, or a configuration change, run\n"
1989 "\"hg kwexpand\".\n"
1990 "\n"
1991 "Also, when committing with the record extension or using mq's qrecord, be "
1992 "aware\n"
1993 "that keywords cannot be updated. Again, run \"hg kwexpand\" on the files in\n"
1994 "question to update keyword expansions after all changes have been checked "
1995 "in.\n"
1996 "\n"
1997 "Expansions spanning more than one line and incremental expansions,\n"
1998 "like CVS' $Log$, are not supported. A keyword template map\n"
1999 "\"Log = {desc}\" expands to the first line of the changeset description.\n"
2000 msgstr ""
2001
2002 #: hgext/keyword.py:100
2003 msgid "Returns hgdate in cvs-like UTC format."
2004 msgstr ""
2005
2006 #: hgext/keyword.py:108
2007 msgid ""
2008 "\n"
2009 " Sets up keyword templates, corresponding keyword regex, and\n"
2010 " provides keyword substitution functions.\n"
2011 " "
2012 msgstr ""
2013
2014 #: hgext/keyword.py:143
2015 msgid "Replaces keywords in data with expanded template."
2016 msgstr ""
2017
2018 #: hgext/keyword.py:154
2019 msgid "Returns data with keywords expanded."
2020 msgstr ""
2021
2022 #: hgext/keyword.py:161
2023 msgid ""
2024 "Returns true if path matches [keyword] pattern\n"
2025 " and is not a symbolic link.\n"
2026 " Caveat: localrepository._link fails on Windows."
2027 msgstr ""
2028
2029 #: hgext/keyword.py:167
2030 msgid "Overwrites selected files expanding/shrinking keywords."
2031 msgstr ""
2032
2033 #: hgext/keyword.py:192
2034 msgid "overwriting %s %s keywords\n"
2035 msgstr ""
2036
2037 #: hgext/keyword.py:198
2038 msgid "Unconditionally removes all keyword substitutions from text."
2039 msgstr ""
2040
2041 #: hgext/keyword.py:202
2042 msgid "Returns text with all keyword substitutions removed."
2043 msgstr ""
2044
2045 #: hgext/keyword.py:208
2046 msgid "Returns lines with keyword substitutions removed."
2047 msgstr ""
2048
2049 #: hgext/keyword.py:216
2050 msgid ""
2051 "If in restricted mode returns data read from wdir with\n"
2052 " keyword substitutions removed."
2053 msgstr ""
2054
2055 #: hgext/keyword.py:221
2056 msgid ""
2057 "\n"
2058 " Subclass of filelog to hook into its read, add, cmp methods.\n"
2059 " Keywords are \"stored\" unexpanded, and processed on reading.\n"
2060 " "
2061 msgstr ""
2062
2063 #: hgext/keyword.py:231
2064 msgid "Expands keywords when reading filelog."
2065 msgstr ""
2066
2067 #: hgext/keyword.py:236
2068 msgid "Removes keyword substitutions when adding to filelog."
2069 msgstr ""
2070
2071 #: hgext/keyword.py:241
2072 msgid "Removes keyword substitutions for comparison."
2073 msgstr ""
2074
2075 #: hgext/keyword.py:249
2076 msgid ""
2077 "Bails out if [keyword] configuration is not active.\n"
2078 " Returns status of working directory."
2079 msgstr ""
2080
2081 #: hgext/keyword.py:255
2082 msgid "[keyword] patterns cannot match"
2083 msgstr ""
2084
2085 #: hgext/keyword.py:256
2086 msgid "no [keyword] patterns configured"
2087 msgstr ""
2088
2089 #: hgext/keyword.py:259
2090 msgid "Selects files and passes them to kwtemplater.overwrite."
2091 msgstr ""
2092
2093 #: hgext/keyword.py:277
2094 msgid ""
2095 "print [keywordmaps] configuration and an expansion example\n"
2096 "\n"
2097 " Show current, custom, or default keyword template maps\n"
2098 " and their expansion.\n"
2099 "\n"
2100 " Extend current configuration by specifying maps as arguments\n"
2101 " and optionally by reading from an additional hgrc file.\n"
2102 "\n"
2103 " Override current keyword template maps with \"default\" option.\n"
2104 " "
2105 msgstr ""
2106
2107 #: hgext/keyword.py:288
2108 msgid ""
2109 "\n"
2110 "\t%s\n"
2111 msgstr ""
2112
2113 #: hgext/keyword.py:300
2114 msgid "creating temporary repo at %s\n"
2115 msgstr ""
2116
2117 #: hgext/keyword.py:337
2118 msgid ""
2119 "\n"
2120 "%s keywords written to %s:\n"
2121 msgstr ""
2122
2123 #: hgext/keyword.py:348
2124 msgid "unhooked all commit hooks\n"
2125 msgstr ""
2126
2127 #: hgext/keyword.py:354
2128 msgid ""
2129 "\n"
2130 "removing temporary repo %s\n"
2131 msgstr ""
2132
2133 #: hgext/keyword.py:358
2134 msgid ""
2135 "expand keywords in working directory\n"
2136 "\n"
2137 " Run after (re)enabling keyword expansion.\n"
2138 "\n"
2139 " kwexpand refuses to run if given files contain local changes.\n"
2140 " "
2141 msgstr ""
2142
2143 #: hgext/keyword.py:368
2144 msgid ""
2145 "print files currently configured for keyword expansion\n"
2146 "\n"
2147 " Crosscheck which files in working directory are potential targets for\n"
2148 " keyword expansion.\n"
2149 " That is, files matched by [keyword] config patterns but not symlinks.\n"
2150 " "
2151 msgstr ""
2152
2153 #: hgext/keyword.py:390
2154 msgid ""
2155 "revert expanded keywords in working directory\n"
2156 "\n"
2157 " Run before changing/disabling active keywords\n"
2158 " or if you experience problems with \"hg import\" or \"hg merge\".\n"
2159 "\n"
2160 " kwshrink refuses to run if given files contain local changes.\n"
2161 " "
2162 msgstr ""
2163
2164 #: hgext/keyword.py:402
2165 msgid ""
2166 "Collects [keyword] config in kwtools.\n"
2167 " Monkeypatches dispatch._parse if needed."
2168 msgstr ""
2169
2170 #: hgext/keyword.py:413
2171 msgid "Monkeypatch dispatch._parse to obtain running hg command."
2172 msgstr ""
2173
2174 #: hgext/keyword.py:421
2175 msgid ""
2176 "Sets up repo as kwrepo for keyword substitution.\n"
2177 " Overrides file method to return kwfilelog instead of filelog\n"
2178 " if file matches user configuration.\n"
2179 " Wraps commit to overwrite configured files with updated\n"
2180 " keyword substitutions.\n"
2181 " Monkeypatches patch and webcommands."
2182 msgstr ""
2183
2184 #: hgext/keyword.py:487
2185 msgid ""
2186 "Monkeypatch/wrap patch.patchfile.__init__ to avoid\n"
2187 " rejects or conflicts due to expanded keywords in working dir."
2188 msgstr ""
2189
2190 #: hgext/keyword.py:495
2191 msgid ""
2192 "Monkeypatch patch.diff to avoid expansion except when\n"
2193 " comparing against working dir."
2194 msgstr ""
2195
2196 #: hgext/keyword.py:504
2197 msgid "Wraps webcommands.x turning off keyword expansion."
2198 msgstr ""
2199
2200 #: hgext/keyword.py:518
2201 msgid "show default keyword template maps"
2202 msgstr ""
2203
2204 #: hgext/keyword.py:519
2205 msgid "read maps from rcfile"
2206 msgstr ""
2207
2208 #: hgext/keyword.py:520
2209 msgid "hg kwdemo [-d] [-f RCFILE] [TEMPLATEMAP]..."
2210 msgstr ""
2211
2212 #: hgext/keyword.py:522
2213 msgid "hg kwexpand [OPTION]... [FILE]..."
2214 msgstr ""
2215
2216 #: hgext/keyword.py:525
2217 msgid "show keyword status flags of all files"
2218 msgstr ""
2219
2220 #: hgext/keyword.py:526
2221 msgid "show files excluded from expansion"
2222 msgstr ""
2223
2224 #: hgext/keyword.py:527
2225 msgid "additionally show untracked files"
2226 msgstr ""
2227
2228 #: hgext/keyword.py:529
2229 msgid "hg kwfiles [OPTION]... [FILE]..."
2230 msgstr ""
2231
2232 #: hgext/keyword.py:531
2233 msgid "hg kwshrink [OPTION]... [FILE]..."
2234 msgstr ""
2235
2236 #: hgext/mq.py:8
2237 msgid ""
2238 "patch management and development\n"
2239 "\n"
2240 "This extension lets you work with a stack of patches in a Mercurial\n"
2241 "repository. It manages two stacks of patches - all known patches, and\n"
2242 "applied patches (subset of known patches).\n"
2243 "\n"
2244 "Known patches are represented as patch files in the .hg/patches\n"
2245 "directory. Applied patches are both patch files and changesets.\n"
2246 "\n"
2247 "Common tasks (use \"hg help command\" for more details):\n"
2248 "\n"
2249 "prepare repository to work with patches qinit\n"
2250 "create new patch qnew\n"
2251 "import existing patch qimport\n"
2252 "\n"
2253 "print patch series qseries\n"
2254 "print applied patches qapplied\n"
2255 "print name of top applied patch qtop\n"
2256 "\n"
2257 "add known patch to applied stack qpush\n"
2258 "remove patch from applied stack qpop\n"
2259 "refresh contents of top applied patch qrefresh\n"
2260 msgstr ""
2261 "udvikling og håndtering af patches\n"
2262 "\n"
2263 "Denne udvidelse lader dig arbejde med en stak af patches i et\n"
2264 "Mercurial repository. Den håndterer to stakke af patches - alle kendte\n"
2265 "patches og alle anvendte patches (en delmængde af de kendte patches).\n"
2266 "\n"
2267 "Kendte patches er repræsenteret som patch-filer i .hg/patches\n"
2268 "biblioteket. Anvendte patches er både patch-filer og Mercurial\n"
2269 "ændringer.\n"
2270 "\n"
2271 "Almindelige opgaver (brug \"hg help kommado\" for flere detaljer):\n"
2272 "\n"
2273 "forbered repository til at arbejde med patches qinit\n"
2274 "opret ny patch qnew\n"
2275 "importer eksisterende patch qimport\n"
2276 "\n"
2277 "list patch-serien qseries\n"
2278 "list anvendte patches qapplied\n"
2279 "list navnet på den øverste patch qtop\n"
2280 "\n"
2281 "anvend og put patch på stakken qpush\n"
2282 "fjern patch fra stakken qpop\n"
2283 "genopfrisk indholdet af den øverste patch qrefresh\n"
2284
2285 #: hgext/mq.py:87
2286 msgid ""
2287 "Update all references to a field in the patch header.\n"
2288 " If none found, add it email style."
2289 msgstr ""
2290
2291 #: hgext/mq.py:104
2292 msgid ""
2293 "Remove existing message, keeping the rest of the comments fields.\n"
2294 " If comments contains 'subject: ', message will prepend\n"
2295 " the field and a blank line."
2296 msgstr ""
2297
2298 #: hgext/mq.py:184
2299 msgid "%s appears more than once in %s"
2300 msgstr ""
2301
2302 #: hgext/mq.py:191
2303 msgid "guard cannot be an empty string"
2304 msgstr ""
2305
2306 #: hgext/mq.py:196
2307 msgid "guard %r starts with invalid character: %r"
2308 msgstr ""
2309
2310 #: hgext/mq.py:200
2311 msgid "invalid character in guard %r: %r"
2312 msgstr ""
2313
2314 #: hgext/mq.py:208
2315 msgid "active guards: %s\n"
2316 msgstr ""
2317
2318 #: hgext/mq.py:232
2319 msgid "guard %r too short"
2320 msgstr ""
2321
2322 #: hgext/mq.py:234
2323 msgid "guard %r starts with invalid char"
2324 msgstr ""
2325
2326 #: hgext/mq.py:269
2327 msgid "allowing %s - no guards in effect\n"
2328 msgstr ""
2329
2330 #: hgext/mq.py:273
2331 msgid "allowing %s - no matching negative guards\n"
2332 msgstr ""
2333
2334 #: hgext/mq.py:276
2335 msgid "allowing %s - guarded by %r\n"
2336 msgstr ""
2337
2338 #: hgext/mq.py:280
2339 msgid "skipping %s - guarded by %r\n"
2340 msgstr ""
2341
2342 #: hgext/mq.py:283
2343 msgid "skipping %s - no matching guards\n"
2344 msgstr ""
2345
2346 #: hgext/mq.py:380
2347 msgid "error removing undo: %s\n"
2348 msgstr ""
2349
2350 #: hgext/mq.py:399
2351 msgid "apply failed for patch %s"
2352 msgstr ""
2353
2354 #: hgext/mq.py:401
2355 msgid "patch didn't work out, merging %s\n"
2356 msgstr ""
2357
2358 #: hgext/mq.py:410
2359 msgid "update returned %d"
2360 msgstr ""
2361
2362 #: hgext/mq.py:413 hgext/mq.py:581 hgext/mq.py:751
2363 msgid "repo commit failed"
2364 msgstr ""
2365
2366 #: hgext/mq.py:417 hgext/mq.py:1603
2367 msgid "unable to read %s"
2368 msgstr ""
2369
2370 #: hgext/mq.py:466
2371 msgid "patch %s does not exist\n"
2372 msgstr ""
2373
2374 #: hgext/mq.py:474
2375 msgid "patch %s is not applied\n"
2376 msgstr ""
2377
2378 #: hgext/mq.py:487
2379 msgid ""
2380 "Apply patchfile to the working directory.\n"
2381 " patchfile: file name of patch"
2382 msgstr ""
2383
2384 #: hgext/mq.py:496
2385 msgid "patch failed, unable to continue (try -v)\n"
2386 msgstr ""
2387
2388 #: hgext/mq.py:537 hgext/transplant.py:208 mercurial/commands.py:1627
2389 msgid "applying %s\n"
2390 msgstr ""
2391
2392 #: hgext/mq.py:543
2393 msgid "Unable to read %s\n"
2394 msgstr ""
2395
2396 #: hgext/mq.py:549
2397 msgid "imported patch %s\n"
2398 msgstr ""
2399
2400 #: hgext/mq.py:552
2401 msgid ""
2402 "\n"
2403 "imported patch %s"
2404 msgstr ""
2405
2406 #: hgext/mq.py:588
2407 msgid "patch %s is empty\n"
2408 msgstr ""
2409
2410 #: hgext/mq.py:591
2411 msgid "patch failed, rejects left in working dir\n"
2412 msgstr ""
2413
2414 #: hgext/mq.py:596
2415 msgid "fuzz found when applying patch, stopping\n"
2416 msgstr ""
2417
2418 #: hgext/mq.py:615 hgext/mq.py:659
2419 msgid "revision %d is not managed"
2420 msgstr ""
2421
2422 #: hgext/mq.py:619 hgext/mq.py:664
2423 msgid "cannot delete revision %d above applied patches"
2424 msgstr ""
2425
2426 #: hgext/mq.py:637
2427 msgid "qdelete requires at least one revision or patch name"
2428 msgstr ""
2429
2430 #: hgext/mq.py:645
2431 msgid "cannot delete applied patch %s"
2432 msgstr ""
2433
2434 #: hgext/mq.py:647
2435 msgid "patch %s not in series file"
2436 msgstr ""
2437
2438 #: hgext/mq.py:653 hgext/mq.py:2016
2439 msgid "no patches applied"
2440 msgstr ""
2441
2442 #: hgext/mq.py:687
2443 msgid "working directory revision is not qtip"
2444 msgstr ""
2445
2446 #: hgext/mq.py:695
2447 msgid "local changes found, refresh first"
2448 msgstr ""
2449
2450 #: hgext/mq.py:697
2451 msgid "local changes found"
2452 msgstr ""
2453
2454 #: hgext/mq.py:704
2455 msgid "\"%s\" cannot be used as the name of a patch"
2456 msgstr ""
2457
2458 #: hgext/mq.py:708
2459 msgid ""
2460 "options:\n"
2461 " msg: a string or a no-argument function returning a string\n"
2462 " "
2463 msgstr ""
2464
2465 #: hgext/mq.py:719 hgext/mq.py:1515
2466 msgid "patch \"%s\" already exists"
2467 msgstr ""
2468
2469 #: hgext/mq.py:781
2470 msgid "error unlinking %s\n"
2471 msgstr "fejl ved sletning af %s\n"
2472
2473 #: hgext/mq.py:808
2474 msgid "returns (index, rev, patch)"
2475 msgstr ""
2476
2477 #: hgext/mq.py:829
2478 msgid "patch name \"%s\" is ambiguous:\n"
2479 msgstr ""
2480
2481 #: hgext/mq.py:884
2482 msgid "patch %s not in series"
2483 msgstr ""
2484
2485 #: hgext/mq.py:890
2486 msgid "(working directory not at tip)\n"
2487 msgstr ""
2488
2489 #: hgext/mq.py:893
2490 msgid "no patches in series\n"
2491 msgstr "ingen patches i serien\n"
2492
2493 #: hgext/mq.py:907
2494 msgid "cannot push to a previous patch: %s"
2495 msgstr ""
2496
2497 #: hgext/mq.py:909
2498 msgid "qpush: %s is already at the top\n"
2499 msgstr ""
2500
2501 #: hgext/mq.py:914
2502 msgid "guarded by %r"
2503 msgstr ""
2504
2505 #: hgext/mq.py:916
2506 msgid "no matching guards"
2507 msgstr ""
2508
2509 #: hgext/mq.py:917
2510 msgid "cannot push '%s' - %s\n"
2511 msgstr "kan ikke skubbe '%s' - %s\n"
2512
2513 #: hgext/mq.py:922
2514 msgid "all patches are currently applied\n"
2515 msgstr ""
2516
2517 #: hgext/mq.py:932
2518 msgid "patch series already fully applied\n"
2519 msgstr ""
2520
2521 #: hgext/mq.py:953
2522 msgid "cleaning up working directory..."
2523 msgstr ""
2524
2525 #: hgext/mq.py:966
2526 msgid "Errors during apply, please fix and refresh %s\n"
2527 msgstr ""
2528
2529 #: hgext/mq.py:969 hgext/mq.py:1070
2530 #, fuzzy
2531 msgid "Now at: %s\n"
2532 msgstr "nu ved: %s\n"
2533
2534 #: hgext/mq.py:988
2535 msgid "patch %s is not applied"
2536 msgstr ""
2537
2538 #: hgext/mq.py:993 hgext/mq.py:2358
2539 msgid "no patches applied\n"
2540 msgstr ""
2541
2542 #: hgext/mq.py:1004
2543 msgid "qpop: %s is already at the top\n"
2544 msgstr ""
2545
2546 #: hgext/mq.py:1012
2547 msgid "qpop: forcing dirstate update\n"
2548 msgstr ""
2549
2550 #: hgext/mq.py:1036
2551 msgid "trying to pop unknown node %s"
2552 msgstr ""
2553
2554 #: hgext/mq.py:1039
2555 msgid "popping would remove a revision not managed by this patch queue"
2556 msgstr ""
2557
2558 #: hgext/mq.py:1050
2559 msgid "deletions found between repo revs"
2560 msgstr ""
2561
2562 #: hgext/mq.py:1072
2563 msgid "Patch queue now empty\n"
2564 msgstr ""
2565
2566 #: hgext/mq.py:1079 hgext/mq.py:1087 hgext/mq.py:1800 hgext/mq.py:1820
2567 #: hgext/mq.py:1884 hgext/mq.py:2126
2568 #, fuzzy
2569 msgid "No patches applied\n"
2570 msgstr "alle patches er anvendt\n"
2571
2572 #: hgext/mq.py:1100
2573 msgid "cannot refresh a revision with children"
2574 msgstr ""
2575
2576 #: hgext/mq.py:1277
2577 msgid ""
2578 "refresh interrupted while patch was popped! (revert --all, qpush to "
2579 "recover)\n"
2580 msgstr ""
2581
2582 #: hgext/mq.py:1304
2583 msgid "patch queue directory already exists"
2584 msgstr ""
2585
2586 #: hgext/mq.py:1315 hgext/mq.py:1646 hgext/mq.py:1657
2587 msgid "patch %s is not in series file"
2588 msgstr ""
2589
2590 #: hgext/mq.py:1405
2591 msgid "No saved patch data found\n"
2592 msgstr ""
2593
2594 #: hgext/mq.py:1407
2595 msgid "restoring status: %s\n"
2596 msgstr ""
2597
2598 #: hgext/mq.py:1416
2599 msgid "save entry has children, leaving it alone\n"
2600 msgstr ""
2601
2602 #: hgext/mq.py:1418
2603 msgid "removing save entry %s\n"
2604 msgstr ""
2605
2606 #: hgext/mq.py:1426
2607 msgid "saved queue repository parents: %s %s\n"
2608 msgstr ""
2609
2610 #: hgext/mq.py:1429
2611 msgid "queue directory updating\n"
2612 msgstr ""
2613
2614 #: hgext/mq.py:1432
2615 msgid "Unable to load queue repository\n"
2616 msgstr ""
2617
2618 #: hgext/mq.py:1438
2619 msgid "save: no patches applied, exiting\n"
2620 msgstr ""
2621
2622 #: hgext/mq.py:1441
2623 msgid "status is already saved\n"
2624 msgstr ""
2625
2626 #: hgext/mq.py:1446
2627 msgid "hg patches saved state"
2628 msgstr ""
2629
2630 #: hgext/mq.py:1458
2631 msgid "repo commit failed\n"
2632 msgstr ""
2633
2634 #: hgext/mq.py:1474
2635 msgid ""
2636 "If all_patches is False, return the index of the next pushable patch\n"
2637 " in the series, or the series length. If all_patches is True, return "
2638 "the\n"
2639 " index of the first patch past the last applied one.\n"
2640 " "
2641 msgstr ""
2642
2643 #: hgext/mq.py:1511
2644 msgid "patch %s is already in the series file"
2645 msgstr ""
2646
2647 #: hgext/mq.py:1520
2648 msgid "option \"-r\" not valid when importing files"
2649 msgstr ""
2650
2651 #: hgext/mq.py:1525
2652 msgid "option \"-n\" not valid when importing multiple patches"
2653 msgstr ""
2654
2655 #: hgext/mq.py:1535
2656 msgid "revision %d is the root of more than one branch"
2657 msgstr ""
2658
2659 #: hgext/mq.py:1540
2660 msgid "revision %d is already managed"
2661 msgstr ""
2662
2663 #: hgext/mq.py:1543
2664 msgid "revision %d is not the parent of the queue"
2665 msgstr ""
2666
2667 #: hgext/mq.py:1549
2668 msgid "revision %d has unmanaged children"
2669 msgstr ""
2670
2671 #: hgext/mq.py:1560
2672 msgid "cannot import merge revision %d"
2673 msgstr ""
2674
2675 #: hgext/mq.py:1562
2676 msgid "revision %d is not the parent of %d"
2677 msgstr ""
2678
2679 #: hgext/mq.py:1588
2680 msgid "-e is incompatible with import from -"
2681 msgstr ""
2682
2683 #: hgext/mq.py:1593
2684 msgid "patch %s does not exist"
2685 msgstr ""
2686
2687 #: hgext/mq.py:1598
2688 msgid "need --name to import a patch from -"
2689 msgstr ""
2690
2691 #: hgext/mq.py:1616
2692 msgid "adding %s to series file\n"
2693 msgstr "tilføjer %s til series filen\n"
2694
2695 #: hgext/mq.py:1626
2696 msgid ""
2697 "remove patches from queue\n"
2698 "\n"
2699 " The patches must not be applied, unless they are arguments to\n"
2700 " the --rev parameter. At least one patch or revision is required.\n"
2701 "\n"
2702 " With --rev, mq will stop managing the named revisions (converting\n"
2703 " them to regular mercurial changesets). The qfinish command should be\n"
2704 " used as an alternative for qdel -r, as the latter option is deprecated.\n"
2705 "\n"
2706 " With --keep, the patch files are preserved in the patch directory."
2707 msgstr ""
2708
2709 #: hgext/mq.py:1642
2710 msgid "print the patches already applied"
2711 msgstr ""
2712
2713 #: hgext/mq.py:1653
2714 msgid "print the patches not yet applied"
2715 msgstr ""
2716
2717 #: hgext/mq.py:1664
2718 msgid ""
2719 "import a patch\n"
2720 "\n"
2721 " The patch is inserted into the series after the last applied patch.\n"
2722 " If no patches have been applied, qimport prepends the patch\n"
2723 " to the series.\n"
2724 "\n"
2725 " The patch will have the same name as its source file unless you\n"
2726 " give it a new one with --name.\n"
2727 "\n"
2728 " You can register an existing patch inside the patch directory\n"
2729 " with the --existing flag.\n"
2730 "\n"
2731 " With --force, an existing patch of the same name will be overwritten.\n"
2732 "\n"
2733 " An existing changeset may be placed under mq control with --rev\n"
2734 " (e.g. qimport --rev tip -n patch will place tip under mq control).\n"
2735 " With --git, patches imported with --rev will use the git diff\n"
2736 " format. See the diffs help topic for information on why this is\n"
2737 " important for preserving rename/copy information and permission "
2738 "changes.\n"
2739 " "
2740 msgstr ""
2741
2742 #: hgext/mq.py:1692
2743 msgid ""
2744 "init a new queue repository\n"
2745 "\n"
2746 " The queue repository is unversioned by default. If -c is\n"
2747 " specified, qinit will create a separate nested repository\n"
2748 " for patches (qinit -c may also be run later to convert\n"
2749 " an unversioned patch repository into a versioned one).\n"
2750 " You can use qcommit to commit changes to this queue repository."
2751 msgstr ""
2752
2753 #: hgext/mq.py:1718
2754 msgid ""
2755 "clone main and patch repository at same time\n"
2756 "\n"
2757 " If source is local, destination will have no patches applied. If\n"
2758 " source is remote, this command can not check if patches are\n"
2759 " applied in source, so cannot guarantee that patches are not\n"
2760 " applied in destination. If you clone remote repository, be sure\n"
2761 " before that it has no patches applied.\n"
2762 "\n"
2763 " Source patch repository is looked for in <src>/.hg/patches by\n"
2764 " default. Use -p <url> to change.\n"
2765 "\n"
2766 " The patch directory must be a nested mercurial repository, as\n"
2767 " would be created by qinit -c.\n"
2768 " "
2769 msgstr ""
2770
2771 #: hgext/mq.py:1745
2772 msgid "versioned patch repository not found (see qinit -c)"
2773 msgstr ""
2774
2775 #: hgext/mq.py:1762
2776 msgid "cloning main repo\n"
2777 msgstr ""
2778
2779 #: hgext/mq.py:1768
2780 msgid "cloning patch repo\n"
2781 msgstr ""
2782
2783 #: hgext/mq.py:1774
2784 msgid "stripping applied patches from destination repo\n"
2785 msgstr ""
2786
2787 #: hgext/mq.py:1777
2788 msgid "updating destination repo\n"
2789 msgstr ""
2790
2791 #: hgext/mq.py:1781
2792 msgid "commit changes in the queue repository"
2793 msgstr ""
2794
2795 #: hgext/mq.py:1788
2796 msgid "print the entire series file"
2797 msgstr ""
2798
2799 #: hgext/mq.py:1793
2800 msgid "print the name of the current patch"
2801 msgstr ""
2802
2803 #: hgext/mq.py:1804
2804 msgid "print the name of the next patch"
2805 msgstr ""
2806
2807 #: hgext/mq.py:1808
2808 #, fuzzy
2809 msgid "All patches applied\n"
2810 msgstr "alle patches er anvendt\n"
2811
2812 #: hgext/mq.py:1813
2813 msgid "print the name of the previous patch"
2814 msgstr ""
2815
2816 #: hgext/mq.py:1817
2817 #, fuzzy
2818 msgid "Only one patch applied\n"
2819 msgstr "kun en patch anvendt\n"
2820
2821 #: hgext/mq.py:1833
2822 msgid ""
2823 "create a new patch\n"
2824 "\n"
2825 " qnew creates a new patch on top of the currently-applied patch (if "
2826 "any).\n"
2827 " It will refuse to run if there are any outstanding changes unless -f is\n"
2828 " specified, in which case the patch will be initialized with them. You\n"
2829 " may also use -I, -X, and/or a list of files after the patch name to add\n"
2830 " only changes to matching files to the new patch, leaving the rest as\n"
2831 " uncommitted modifications.\n"
2832 "\n"
2833 " -u and -d can be used to set the (given) user and date, respectively.\n"
2834 " -U and -D set user to current user and date to current date.\n"
2835 "\n"
2836 " -e, -m or -l set the patch header as well as the commit message. If "
2837 "none\n"
2838 " is specified, the header is empty and the commit message is '[mq]: "
2839 "PATCH'.\n"
2840 "\n"
2841 " Use the --git option to keep the patch in the git extended diff\n"
2842 " format. Read the diffs help topic for more information on why this\n"
2843 " is important for preserving permission changes and copy/rename\n"
2844 " information.\n"
2845 " "
2846 msgstr ""
2847
2848 #: hgext/mq.py:1867
2849 msgid ""
2850 "update the current patch\n"
2851 "\n"
2852 " If any file patterns are provided, the refreshed patch will contain "
2853 "only\n"
2854 " the modifications that match those patterns; the remaining "
2855 "modifications\n"
2856 " will remain in the working directory.\n"
2857 "\n"
2858 " If --short is specified, files currently included in the patch will\n"
2859 " be refreshed just like matched files and remain in the patch.\n"
2860 "\n"
2861 " hg add/remove/copy/rename work as usual, though you might want to use\n"
2862 " git-style patches (--git or [diff] git=1) to track copies and renames.\n"
2863 " See the diffs help topic for more information on the git diff format.\n"
2864 " "
2865 msgstr ""
2866
2867 #: hgext/mq.py:1887 hgext/mq.py:1933
2868 msgid "option \"-e\" incompatible with \"-m\" or \"-l\""
2869 msgstr ""
2870
2871 #: hgext/mq.py:1897
2872 msgid ""
2873 "diff of the current patch and subsequent modifications\n"
2874 "\n"
2875 " Shows a diff which includes the current patch as well as any changes "
2876 "which\n"
2877 " have been made in the working directory since the last refresh (thus\n"
2878 " showing what the current patch would become after a qrefresh).\n"
2879 "\n"
2880 " Use 'hg diff' if you only want to see the changes made since the last\n"
2881 " qrefresh, or 'hg export qtip' if you want to see changes made by the\n"
2882 " current patch without including changes made since the qrefresh.\n"
2883 " "
2884 msgstr ""
2885
2886 #: hgext/mq.py:1911
2887 msgid ""
2888 "fold the named patches into the current patch\n"
2889 "\n"
2890 " Patches must not yet be applied. Each patch will be successively\n"
2891 " applied to the current patch in the order given. If all the\n"
2892 " patches apply successfully, the current patch will be refreshed\n"
2893 " with the new cumulative patch, and the folded patches will\n"
2894 " be deleted. With -k/--keep, the folded patch files will not\n"
2895 " be removed afterwards.\n"
2896 "\n"
2897 " The header for each folded patch will be concatenated with\n"
2898 " the current patch header, separated by a line of '* * *'."
2899 msgstr ""
2900
2901 #: hgext/mq.py:1926
2902 msgid "qfold requires at least one patch name"
2903 msgstr ""
2904
2905 #: hgext/mq.py:1928
2906 msgid "No patches applied"
2907 msgstr ""
2908
2909 #: hgext/mq.py:1941
2910 msgid "Skipping already folded patch %s"
2911 msgstr ""
2912
2913 #: hgext/mq.py:1943
2914 msgid "qfold cannot fold already applied patch %s"
2915 msgstr ""
2916
2917 #: hgext/mq.py:1954
2918 msgid "Error folding patch %s"
2919 msgstr ""
2920
2921 #: hgext/mq.py:1973
2922 msgid "push or pop patches until named patch is at top of stack"
2923 msgstr ""
2924
2925 #: hgext/mq.py:1984
2926 msgid ""
2927 "set or print guards for a patch\n"
2928 "\n"
2929 " Guards control whether a patch can be pushed. A patch with no\n"
2930 " guards is always pushed. A patch with a positive guard (\"+foo\") is\n"
2931 " pushed only if the qselect command has activated it. A patch with\n"
2932 " a negative guard (\"-foo\") is never pushed if the qselect command\n"
2933 " has activated it.\n"
2934 "\n"
2935 " With no arguments, print the currently active guards.\n"
2936 " With arguments, set guards for the named patch.\n"
2937 "\n"
2938 " To set a negative guard \"-foo\" on topmost patch (\"--\" is needed so\n"
2939 " hg will not interpret \"-foo\" as an option):\n"
2940 " hg qguard -- -foo\n"
2941 "\n"
2942 " To set guards on another patch:\n"
2943 " hg qguard other.patch +2.6.17 -stable\n"
2944 " "
2945 msgstr ""
2946
2947 #: hgext/mq.py:2010
2948 msgid "cannot mix -l/--list with options or arguments"
2949 msgstr ""
2950
2951 #: hgext/mq.py:2021
2952 msgid "no patch to work with"
2953 msgstr ""
2954
2955 #: hgext/mq.py:2025
2956 msgid "no patch named %s"
2957 msgstr "ingen patch ved navn %s"
2958
2959 #: hgext/mq.py:2032
2960 msgid "print the header of the topmost or specified patch"
2961 msgstr ""
2962
2963 #: hgext/mq.py:2071
2964 msgid ""
2965 "push the next patch onto the stack\n"
2966 "\n"
2967 " When --force is applied, all local changes in patched files will be "
2968 "lost.\n"
2969 " "
2970 msgstr ""
2971
2972 #: hgext/mq.py:2084
2973 msgid "no saved queues found, please use -n\n"
2974 msgstr ""
2975
2976 #: hgext/mq.py:2087
2977 msgid "merging with queue at: %s\n"
2978 msgstr ""
2979
2980 #: hgext/mq.py:2093
2981 msgid ""
2982 "pop the current patch off the stack\n"
2983 "\n"
2984 " By default, pops off the top of the patch stack. If given a patch name,\n"
2985 " keeps popping off patches until the named patch is at the top of the "
2986 "stack.\n"
2987 " "
2988 msgstr ""
2989
2990 #: hgext/mq.py:2101
2991 msgid "using patch queue: %s\n"
2992 msgstr ""
2993
2994 #: hgext/mq.py:2111
2995 msgid ""
2996 "rename a patch\n"
2997 "\n"
2998 " With one argument, renames the current patch to PATCH1.\n"
2999 " With two arguments, renames PATCH1 to PATCH2."
3000 msgstr ""
3001
3002 #: hgext/mq.py:2134
3003 msgid "%s already exists"
3004 msgstr "%s eksisterer allerede"
3005
3006 #: hgext/mq.py:2137
3007 msgid "A patch named %s already exists in the series file"
3008 msgstr ""
3009
3010 #: hgext/mq.py:2171
3011 msgid "restore the queue state saved by a rev"
3012 msgstr ""
3013
3014 #: hgext/mq.py:2180
3015 msgid "save current queue state"
3016 msgstr ""
3017
3018 #: hgext/mq.py:2193
3019 msgid "destination %s exists and is not a directory"
3020 msgstr ""
3021
3022 #: hgext/mq.py:2196
3023 msgid "destination %s exists, use -f to force"
3024 msgstr ""
3025
3026 #: hgext/mq.py:2200
3027 msgid "copy %s to %s\n"
3028 msgstr ""
3029
3030 #: hgext/mq.py:2210
3031 msgid ""
3032 "strip a revision and all its descendants from the repository\n"
3033 "\n"
3034 " If one of the working dir's parent revisions is stripped, the working\n"
3035 " directory will be updated to the parent of the stripped revision.\n"
3036 " "
3037 msgstr ""
3038
3039 #: hgext/mq.py:2236
3040 msgid ""
3041 "set or print guarded patches to push\n"
3042 "\n"
3043 " Use the qguard command to set or print guards on patch, then use\n"
3044 " qselect to tell mq which guards to use. A patch will be pushed if it\n"
3045 " has no guards or any positive guards match the currently selected "
3046 "guard,\n"
3047 " but will not be pushed if any negative guards match the current guard.\n"
3048 " For example:\n"
3049 "\n"
3050 " qguard foo.patch -stable (negative guard)\n"
3051 " qguard bar.patch +stable (positive guard)\n"
3052 " qselect stable\n"
3053 "\n"
3054 " This activates the \"stable\" guard. mq will skip foo.patch (because\n"
3055 " it has a negative match) but push bar.patch (because it\n"
3056 " has a positive match).\n"
3057 "\n"
3058 " With no arguments, prints the currently active guards.\n"
3059 " With one argument, sets the active guard.\n"
3060 "\n"
3061 " Use -n/--none to deactivate guards (no other arguments needed).\n"
3062 " When no guards are active, patches with positive guards are skipped\n"
3063 " and patches with negative guards are pushed.\n"
3064 "\n"
3065 " qselect can change the guards on applied patches. It does not pop\n"
3066 " guarded patches by default. Use --pop to pop back to the last applied\n"
3067 " patch that is not guarded. Use --reapply (which implies --pop) to push\n"
3068 " back to the current patch afterwards, but skip guarded patches.\n"
3069 "\n"
3070 " Use -s/--series to print a list of all guards in the series file (no\n"
3071 " other arguments needed). Use -v for more information."
3072 msgstr ""
3073
3074 #: hgext/mq.py:2276
3075 msgid "guards deactivated\n"
3076 msgstr ""
3077
3078 #: hgext/mq.py:2282
3079 msgid "number of unguarded, unapplied patches has changed from %d to %d\n"
3080 msgstr ""
3081
3082 #: hgext/mq.py:2286
3083 msgid "number of guarded, applied patches has changed from %d to %d\n"
3084 msgstr ""
3085
3086 #: hgext/mq.py:2303
3087 msgid "guards in series file:\n"
3088 msgstr ""
3089
3090 #: hgext/mq.py:2308
3091 msgid "no guards in series file\n"
3092 msgstr ""
3093
3094 #: hgext/mq.py:2311
3095 msgid "active guards:\n"
3096 msgstr ""
3097
3098 #: hgext/mq.py:2315
3099 msgid "no active guards\n"
3100 msgstr ""
3101
3102 #: hgext/mq.py:2322
3103 msgid "popping guarded patches\n"
3104 msgstr ""
3105
3106 #: hgext/mq.py:2332
3107 msgid "reapplying unguarded patches\n"
3108 msgstr ""
3109
3110 #: hgext/mq.py:2338
3111 msgid ""
3112 "move applied patches into repository history\n"
3113 "\n"
3114 " Finishes the specified revisions (corresponding to applied patches) by\n"
3115 " moving them out of mq control into regular repository history.\n"
3116 "\n"
3117 " Accepts a revision range or the --applied option. If --applied is\n"
3118 " specified, all applied mq revisions are removed from mq control.\n"
3119 " Otherwise, the given revisions must be at the base of the stack of\n"
3120 " applied patches.\n"
3121 "\n"
3122 " This can be especially useful if your changes have been applied to an\n"
3123 " upstream repository, or if you are about to push your changes to "
3124 "upstream.\n"
3125 " "
3126 msgstr ""
3127
3128 #: hgext/mq.py:2352
3129 msgid "no revisions specified"
3130 msgstr ""
3131
3132 #: hgext/mq.py:2380
3133 msgid "cannot commit over an applied mq patch"
3134 msgstr ""
3135
3136 #: hgext/mq.py:2387
3137 msgid "source has mq patches applied"
3138 msgstr ""
3139
3140 #: hgext/mq.py:2403 hgext/mq.py:2427
3141 msgid "mq status file refers to unknown node %s\n"
3142 msgstr ""
3143
3144 #: hgext/mq.py:2412
3145 msgid "Tag %s overrides mq patch of the same name\n"
3146 msgstr ""
3147
3148 #: hgext/mq.py:2453
3149 msgid "cannot import over an applied patch"
3150 msgstr ""
3151
3152 #: hgext/mq.py:2460
3153 msgid "print first line of patch header"
3154 msgstr ""
3155
3156 #: hgext/mq.py:2463
3157 msgid "hg qapplied [-s] [PATCH]"
3158 msgstr ""
3159
3160 #: hgext/mq.py:2466 mercurial/commands.py:3119
3161 msgid "use pull protocol to copy metadata"
3162 msgstr ""
3163
3164 #: hgext/mq.py:2467
3165 msgid "do not update the new working directories"
3166 msgstr ""
3167
3168 #: hgext/mq.py:2469 mercurial/commands.py:3121
3169 msgid "use uncompressed transfer (fast over LAN)"
3170 msgstr ""
3171
3172 #: hgext/mq.py:2470
3173 msgid "location of source patch repo"
3174 msgstr ""
3175
3176 #: hgext/mq.py:2472
3177 msgid "hg qclone [OPTION]... SOURCE [DEST]"
3178 msgstr ""
3179
3180 #: hgext/mq.py:2476
3181 msgid "hg qcommit [OPTION]... [FILE]..."
3182 msgstr ""
3183
3184 #: hgext/mq.py:2480
3185 msgid "hg qdiff [OPTION]... [FILE]..."
3186 msgstr ""
3187
3188 #: hgext/mq.py:2483
3189 msgid "keep patch file"
3190 msgstr ""
3191
3192 #: hgext/mq.py:2484
3193 msgid "stop managing a revision"
3194 msgstr ""
3195
3196 #: hgext/mq.py:2485
3197 msgid "hg qdelete [-k] [-r REV]... [PATCH]..."
3198 msgstr ""
3199
3200 #: hgext/mq.py:2488
3201 msgid "edit patch header"
3202 msgstr ""
3203
3204 #: hgext/mq.py:2489
3205 msgid "keep folded patch files"
3206 msgstr ""
3207
3208 #: hgext/mq.py:2491
3209 msgid "hg qfold [-e] [-k] [-m TEXT] [-l FILE] PATCH..."
3210 msgstr ""
3211
3212 #: hgext/mq.py:2494
3213 msgid "overwrite any local changes"
3214 msgstr ""
3215
3216 #: hgext/mq.py:2495
3217 msgid "hg qgoto [OPTION]... PATCH"
3218 msgstr ""
3219
3220 #: hgext/mq.py:2498
3221 msgid "list all patches and guards"
3222 msgstr ""
3223
3224 #: hgext/mq.py:2499
3225 msgid "drop all guards"
3226 msgstr ""
3227
3228 #: hgext/mq.py:2500
3229 msgid "hg qguard [-l] [-n] [PATCH] [+GUARD]... [-GUARD]..."
3230 msgstr ""
3231
3232 #: hgext/mq.py:2501
3233 msgid "hg qheader [PATCH]"
3234 msgstr ""
3235
3236 #: hgext/mq.py:2504
3237 msgid "import file in patch dir"
3238 msgstr ""
3239
3240 #: hgext/mq.py:2505
3241 msgid "patch file name"
3242 msgstr "patch navn"
3243
3244 #: hgext/mq.py:2506
3245 msgid "overwrite existing files"
3246 msgstr ""
3247
3248 #: hgext/mq.py:2507
3249 msgid "place existing revisions under mq control"
3250 msgstr ""
3251
3252 #: hgext/mq.py:2508 hgext/mq.py:2518 hgext/mq.py:2544 hgext/patchbomb.py:459
3253 #: mercurial/commands.py:3020
3254 msgid "use git extended diff format"
3255 msgstr ""
3256
3257 #: hgext/mq.py:2509
3258 msgid "hg qimport [-e] [-n NAME] [-f] [-g] [-r REV]... FILE..."
3259 msgstr ""
3260
3261 #: hgext/mq.py:2512
3262 msgid "create queue repository"
3263 msgstr "opret kø-repository"
3264
3265 #: hgext/mq.py:2513
3266 msgid "hg qinit [-c]"
3267 msgstr ""
3268
3269 #: hgext/mq.py:2517
3270 msgid "import uncommitted changes into patch"
3271 msgstr ""
3272
3273 #: hgext/mq.py:2519
3274 msgid "add \"From: <current user>\" to patch"
3275 msgstr ""
3276
3277 #: hgext/mq.py:2520
3278 msgid "add \"From: <given user>\" to patch"
3279 msgstr ""
3280
3281 #: hgext/mq.py:2521
3282 msgid "add \"Date: <current date>\" to patch"
3283 msgstr ""
3284
3285 #: hgext/mq.py:2522
3286 msgid "add \"Date: <given date>\" to patch"
3287 msgstr ""
3288
3289 #: hgext/mq.py:2524
3290 msgid "hg qnew [-e] [-m TEXT] [-l FILE] [-f] PATCH [FILE]..."
3291 msgstr ""
3292
3293 #: hgext/mq.py:2525
3294 msgid "hg qnext [-s]"
3295 msgstr ""
3296
3297 #: hgext/mq.py:2526
3298 msgid "hg qprev [-s]"
3299 msgstr ""
3300
3301 #: hgext/mq.py:2529
3302 msgid "pop all patches"
3303 msgstr ""
3304
3305 #: hgext/mq.py:2530
3306 msgid "queue name to pop"
3307 msgstr ""
3308
3309 #: hgext/mq.py:2531
3310 msgid "forget any local changes"
3311 msgstr ""
3312
3313 #: hgext/mq.py:2532
3314 msgid "hg qpop [-a] [-n NAME] [-f] [PATCH | INDEX]"
3315 msgstr ""
3316
3317 #: hgext/mq.py:2535
3318 msgid "apply if the patch has rejects"
3319 msgstr ""
3320
3321 #: hgext/mq.py:2536
3322 msgid "list patch name in commit text"
3323 msgstr ""
3324
3325 #: hgext/mq.py:2537
3326 msgid "apply all patches"
3327 msgstr ""
3328
3329 #: hgext/mq.py:2538
3330 msgid "merge from another queue"
3331 msgstr ""
3332
3333 #: hgext/mq.py:2539
3334 msgid "merge queue name"
3335 msgstr ""
3336
3337 #: hgext/mq.py:2540
3338 msgid "hg qpush [-f] [-l] [-a] [-m] [-n NAME] [PATCH | INDEX]"
3339 msgstr ""
3340
3341 #: hgext/mq.py:2545
3342 msgid "refresh only files already in the patch and specified files"
3343 msgstr ""
3344
3345 #: hgext/mq.py:2546
3346 msgid "add/update \"From: <current user>\" in patch"
3347 msgstr ""
3348
3349 #: hgext/mq.py:2547
3350 msgid "add/update \"From: <given user>\" in patch"
3351 msgstr ""
3352
3353 #: hgext/mq.py:2548
3354 msgid "update \"Date: <current date>\" in patch (if present)"
3355 msgstr ""
3356
3357 #: hgext/mq.py:2549
3358 msgid "update \"Date: <given date>\" in patch (if present)"
3359 msgstr ""
3360
3361 #: hgext/mq.py:2551
3362 msgid "hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]..."
3363 msgstr ""
3364
3365 #: hgext/mq.py:2553
3366 msgid "hg qrename PATCH1 [PATCH2]"
3367 msgstr ""
3368
3369 #: hgext/mq.py:2556
3370 msgid "delete save entry"
3371 msgstr ""
3372
3373 #: hgext/mq.py:2557
3374 msgid "update queue working dir"
3375 msgstr ""
3376
3377 #: hgext/mq.py:2558
3378 msgid "hg qrestore [-d] [-u] REV"
3379 msgstr ""
3380
3381 #: hgext/mq.py:2561
3382 msgid "copy patch directory"
3383 msgstr ""
3384
3385 #: hgext/mq.py:2562
3386 msgid "copy directory name"
3387 msgstr ""
3388
3389 #: hgext/mq.py:2563
3390 msgid "clear queue status file"
3391 msgstr ""
3392
3393 #: hgext/mq.py:2564
3394 msgid "force copy"
3395 msgstr ""
3396
3397 #: hgext/mq.py:2565
3398 msgid "hg qsave [-m TEXT] [-l FILE] [-c] [-n NAME] [-e] [-f]"
3399 msgstr ""
3400
3401 #: hgext/mq.py:2568
3402 msgid "disable all guards"
3403 msgstr ""
3404
3405 #: hgext/mq.py:2569
3406 msgid "list all guards in series file"
3407 msgstr ""
3408
3409 #: hgext/mq.py:2570
3410 msgid "pop to before first guarded applied patch"
3411 msgstr ""
3412
3413 #: hgext/mq.py:2571
3414 msgid "pop, then reapply patches"
3415 msgstr ""
3416
3417 #: hgext/mq.py:2572
3418 msgid "hg qselect [OPTION]... [GUARD]..."
3419 msgstr ""
3420
3421 #: hgext/mq.py:2575
3422 msgid "print patches not in series"
3423 msgstr ""
3424
3425 #: hgext/mq.py:2577
3426 msgid "hg qseries [-ms]"
3427 msgstr ""
3428
3429 #: hgext/mq.py:2580
3430 msgid "force removal with local changes"
3431 msgstr ""
3432
3433 #: hgext/mq.py:2581
3434 msgid "bundle unrelated changesets"
3435 msgstr ""
3436
3437 #: hgext/mq.py:2582
3438 msgid "no backups"
3439 msgstr ""
3440
3441 #: hgext/mq.py:2583
3442 msgid "hg strip [-f] [-b] [-n] REV"
3443 msgstr ""
3444
3445 #: hgext/mq.py:2584
3446 msgid "hg qtop [-s]"
3447 msgstr ""
3448
3449 #: hgext/mq.py:2585
3450 msgid "hg qunapplied [-s] [PATCH]"
3451 msgstr ""
3452
3453 #: hgext/mq.py:2588
3454 msgid "finish all applied changesets"
3455 msgstr ""
3456
3457 #: hgext/mq.py:2589
3458 msgid "hg qfinish [-a] [REV...]"
3459 msgstr ""
3460
3461 #: hgext/notify.py:8
3462 msgid ""
3463 "hook extension to email notifications on commits/pushes\n"
3464 "\n"
3465 "Subscriptions can be managed through hgrc. Default mode is to print\n"
3466 "messages to stdout, for testing and configuring.\n"
3467 "\n"
3468 "To use, configure notify extension and enable in hgrc like this:\n"
3469 "\n"
3470 " [extensions]\n"
3471 " hgext.notify =\n"
3472 "\n"
3473 " [hooks]\n"
3474 " # one email for each incoming changeset\n"
3475 " incoming.notify = python:hgext.notify.hook\n"
3476 " # batch emails when many changesets incoming at one time\n"
3477 " changegroup.notify = python:hgext.notify.hook\n"
3478 "\n"
3479 " [notify]\n"
3480 " # config items go in here\n"
3481 "\n"
3482 " config items:\n"
3483 "\n"
3484 " REQUIRED:\n"
3485 " config = /path/to/file # file containing subscriptions\n"
3486 "\n"
3487 " OPTIONAL:\n"
3488 " test = True # print messages to stdout for testing\n"
3489 " strip = 3 # number of slashes to strip for url paths\n"
3490 " domain = example.com # domain to use if committer missing domain\n"
3491 " style = ... # style file to use when formatting email\n"
3492 " template = ... # template to use when formatting email\n"
3493 " incoming = ... # template to use when run as incoming hook\n"
3494 " changegroup = ... # template when run as changegroup hook\n"
3495 " maxdiff = 300 # max lines of diffs to include (0=none, -1=all)\n"
3496 " maxsubject = 67 # truncate subject line longer than this\n"
3497 " diffstat = True # add a diffstat before the diff content\n"
3498 " sources = serve # notify if source of incoming changes in this "
3499 "list\n"
3500 " # (serve == ssh or http, push, pull, bundle)\n"
3501 " [email]\n"
3502 " from = user@host.com # email address to send as if none given\n"
3503 " [web]\n"
3504 " baseurl = http://hgserver/... # root of hg web site for browsing commits\n"
3505 "\n"
3506 " notify config file has same format as regular hgrc. it has two\n"
3507 " sections so you can express subscriptions in whatever way is handier\n"
3508 " for you.\n"
3509 "\n"
3510 " [usersubs]\n"
3511 " # key is subscriber email, value is \",\"-separated list of glob "
3512 "patterns\n"
3513 " user@host = pattern\n"
3514 "\n"
3515 " [reposubs]\n"
3516 " # key is glob pattern, value is \",\"-separated list of subscriber "
3517 "emails\n"
3518 " pattern = user@host\n"
3519 "\n"
3520 " glob patterns are matched against path to repo root.\n"
3521 "\n"
3522 " if you like, you can put notify config file in repo that users can\n"
3523 " push changes to, they can manage their own subscriptions."
3524 msgstr ""
3525
3526 #: hgext/notify.py:97
3527 msgid "email notification class."
3528 msgstr ""
3529
3530 #: hgext/notify.py:124
3531 msgid "strip leading slashes from local path, turn into web-safe path."
3532 msgstr ""
3533
3534 #: hgext/notify.py:137
3535 msgid "try to clean up email addresses."
3536 msgstr ""
3537
3538 #: hgext/notify.py:149
3539 msgid "return list of email addresses of subscribers to this repo."
3540 msgstr ""
3541
3542 #: hgext/notify.py:168
3543 msgid "format one changeset."
3544 msgstr ""
3545
3546 #: hgext/notify.py:176
3547 msgid "true if incoming changes from this source should be skipped."
3548 msgstr ""
3549
3550 #: hgext/notify.py:181
3551 msgid "send message."
3552 msgstr ""
3553
3554 #: hgext/notify.py:194
3555 msgid "try to make subject line exist and be useful."
3556 msgstr ""
3557
3558 #: hgext/notify.py:198
3559 msgid "%s: %d new changesets"
3560 msgstr ""
3561
3562 #: hgext/notify.py:210
3563 msgid "try to make message have proper sender."
3564 msgstr ""
3565
3566 #: hgext/notify.py:236
3567 msgid "notify: sending %d subscribers %d changes\n"
3568 msgstr ""
3569
3570 #: hgext/notify.py:256
3571 msgid ""
3572 "\n"
3573 "diffs (truncated from %d to %d lines):\n"
3574 "\n"
3575 msgstr ""
3576
3577 #: hgext/notify.py:260
3578 msgid ""
3579 "\n"
3580 "diffs (%d lines):\n"
3581 "\n"
3582 msgstr ""
3583
3584 #: hgext/notify.py:264
3585 msgid ""
3586 "send email notifications to interested subscribers.\n"
3587 "\n"
3588 " if used as changegroup hook, send one email for all changesets in\n"
3589 " changegroup. else send one email per changeset."
3590 msgstr ""
3591
3592 #: hgext/notify.py:270
3593 msgid "notify: no subscribers to repo %s\n"
3594 msgstr ""
3595
3596 #: hgext/notify.py:273
3597 msgid "notify: changes have source \"%s\" - skipping\n"
3598 msgstr ""
3599
3600 #: hgext/pager.py:15
3601 msgid ""
3602 "browse command output with external pager\n"
3603 "\n"
3604 "To set the pager that should be used, set the application variable:\n"
3605 "\n"
3606 " [pager]\n"
3607 " pager = LESS='FSRX' less\n"
3608 "\n"
3609 "If no pager is set, the pager extensions uses the environment\n"
3610 "variable $PAGER. If neither pager.pager, nor $PAGER is set, no pager\n"
3611 "is used.\n"
3612 "\n"
3613 "If you notice \"BROKEN PIPE\" error messages, you can disable them\n"
3614 "by setting:\n"
3615 "\n"
3616 " [pager]\n"
3617 " quiet = True\n"
3618 "\n"
3619 "You can disable the pager for certain commands by adding them to the\n"
3620 "pager.ignore list:\n"
3621 "\n"
3622 " [pager]\n"
3623 " ignore = version, help, update\n"
3624 "\n"
3625 "You can also enable the pager only for certain commands using pager.attend:\n"
3626 "\n"
3627 " [pager]\n"
3628 " attend = log\n"
3629 "\n"
3630 "If pager.attend is present, pager.ignore will be ignored.\n"
3631 "\n"
3632 "To ignore global commands like \"hg version\" or \"hg help\", you have to "
3633 "specify\n"
3634 "them in the global .hgrc\n"
3635 msgstr ""
3636
3637 #: hgext/parentrevspec.py:7
3638 msgid ""
3639 "use suffixes to refer to ancestor revisions\n"
3640 "\n"
3641 "This extension allows you to use git-style suffixes to refer to\n"
3642 "the ancestors of a specific revision.\n"
3643 "\n"
3644 "For example, if you can refer to a revision as \"foo\", then:\n"
3645 "\n"
3646 "- foo^N = Nth parent of foo:\n"
3647 " foo^0 = foo\n"
3648 " foo^1 = first parent of foo\n"
3649 " foo^2 = second parent of foo\n"
3650 " foo^ = foo^1\n"
3651 "\n"
3652 "- foo~N = Nth first grandparent of foo\n"
3653 " foo~0 = foo\n"
3654 " foo~1 = foo^1 = foo^ = first parent of foo\n"
3655 " foo~2 = foo^1^1 = foo^^ = first parent of first parent of foo\n"
3656 msgstr ""
3657
3658 #: hgext/patchbomb.py:1
3659 msgid ""
3660 "sending Mercurial changesets as a series of patch emails\n"
3661 "\n"
3662 "The series is started off with a \"[PATCH 0 of N]\" introduction,\n"
3663 "which describes the series as a whole.\n"
3664 "\n"
3665 "Each patch email has a Subject line of \"[PATCH M of N] ...\", using\n"
3666 "the first line of the changeset description as the subject text.\n"
3667 "The message contains two or three body parts:\n"
3668 "\n"
3669 " The remainder of the changeset description.\n"
3670 "\n"
3671 " [Optional] The result of running diffstat on the patch.\n"
3672 "\n"
3673 " The patch itself, as generated by \"hg export\".\n"
3674 "\n"
3675 "Each message refers to all of its predecessors using the In-Reply-To\n"
3676 "and References headers, so they will show up as a sequence in\n"
3677 "threaded mail and news readers, and in mail archives.\n"
3678 "\n"
3679 "For each changeset, you will be prompted with a diffstat summary and\n"
3680 "the changeset summary, so you can be sure you are sending the right "
3681 "changes.\n"
3682 "\n"
3683 "To enable this extension:\n"
3684 "\n"
3685 " [extensions]\n"
3686 " hgext.patchbomb =\n"
3687 "\n"
3688 "To configure other defaults, add a section like this to your hgrc file:\n"
3689 "\n"
3690 " [email]\n"
3691 " from = My Name <my@email>\n"
3692 " to = recipient1, recipient2, ...\n"
3693 " cc = cc1, cc2, ...\n"
3694 " bcc = bcc1, bcc2, ...\n"
3695 "\n"
3696 "Then you can use the \"hg email\" command to mail a series of changesets\n"
3697 "as a patchbomb.\n"
3698 "\n"
3699 "To avoid sending patches prematurely, it is a good idea to first run\n"
3700 "the \"email\" command with the \"-n\" option (test only). You will be\n"
3701 "prompted for an email recipient address, a subject an an introductory\n"
3702 "message describing the patches of your patchbomb. Then when all is\n"
3703 "done, patchbomb messages are displayed. If PAGER environment variable\n"
3704 "is set, your pager will be fired up once for each patchbomb message, so\n"
3705 "you can verify everything is alright.\n"
3706 "\n"
3707 "The \"-m\" (mbox) option is also very useful. Instead of previewing\n"
3708 "each patchbomb message in a pager or sending the messages directly,\n"
3709 "it will create a UNIX mailbox file with the patch emails. This\n"
3710 "mailbox file can be previewed with any mail user agent which supports\n"
3711 "UNIX mbox files, i.e. with mutt:\n"
3712 "\n"
3713 " % mutt -R -f mbox\n"
3714 "\n"
3715 "When you are previewing the patchbomb messages, you can use `formail'\n"
3716 "(a utility that is commonly installed as part of the procmail package),\n"
3717 "to send each message out:\n"
3718 "\n"
3719 " % formail -s sendmail -bm -t < mbox\n"
3720 "\n"
3721 "That should be all. Now your patchbomb is on its way out."
3722 msgstr ""
3723
3724 #: hgext/patchbomb.py:84
3725 msgid "Please enter a valid value.\n"
3726 msgstr ""
3727
3728 #: hgext/patchbomb.py:91
3729 msgid "does the diffstat above look okay? "
3730 msgstr ""
3731
3732 #: hgext/patchbomb.py:93
3733 msgid "diffstat rejected"
3734 msgstr "diffstat afvist"
3735
3736 #: hgext/patchbomb.py:167
3737 msgid ""
3738 "send changesets by email\n"
3739 "\n"
3740 " By default, diffs are sent in the format generated by hg export,\n"
3741 " one per message. The series starts with a \"[PATCH 0 of N]\"\n"
3742 " introduction, which describes the series as a whole.\n"
3743 "\n"
3744 " Each patch email has a Subject line of \"[PATCH M of N] ...\", using\n"
3745 " the first line of the changeset description as the subject text.\n"
3746 " The message contains two or three body parts. First, the rest of\n"
3747 " the changeset description. Next, (optionally) if the diffstat\n"
3748 " program is installed, the result of running diffstat on the patch.\n"
3749 " Finally, the patch itself, as generated by \"hg export\".\n"
3750 "\n"
3751 " With --outgoing, emails will be generated for patches not\n"
3752 " found in the destination repository (or only those which are\n"
3753 " ancestors of the specified revisions if any are provided)\n"
3754 "\n"
3755 " With --bundle, changesets are selected as for --outgoing,\n"
3756 " but a single email containing a binary Mercurial bundle as an\n"
3757 " attachment will be sent.\n"
3758 "\n"
3759 " Examples:\n"
3760 "\n"
3761 " hg email -r 3000 # send patch 3000 only\n"
3762 " hg email -r 3000 -r 3001 # send patches 3000 and 3001\n"
3763 " hg email -r 3000:3005 # send patches 3000 through 3005\n"
3764 " hg email 3000 # send patch 3000 (deprecated)\n"
3765 "\n"
3766 " hg email -o # send all patches not in default\n"
3767 " hg email -o DEST # send all patches not in DEST\n"
3768 " hg email -o -r 3000 # send all ancestors of 3000 not in default\n"
3769 " hg email -o -r 3000 DEST # send all ancestors of 3000 not in DEST\n"
3770 "\n"
3771 " hg email -b # send bundle of all patches not in default\n"
3772 " hg email -b DEST # send bundle of all patches not in DEST\n"
3773 " hg email -b -r 3000 # bundle of all ancestors of 3000 not in "
3774 "default\n"
3775 " hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST\n"
3776 "\n"
3777 " Before using this command, you will need to enable email in your hgrc.\n"
3778 " See the [email] section in hgrc(5) for details.\n"
3779 " "
3780 msgstr ""
3781
3782 #: hgext/patchbomb.py:212
3783 msgid "Return the revisions present locally but not in dest"
3784 msgstr ""
3785
3786 #: hgext/patchbomb.py:251
3787 msgid "specify at least one changeset with -r or -o"
3788 msgstr "angiv mindst en ændring med -r eller -o"
3789
3790 #: hgext/patchbomb.py:255
3791 msgid "--outgoing mode always on with --bundle; do not re-specify --outgoing"
3792 msgstr ""
3793
3794 #: hgext/patchbomb.py:260
3795 msgid "too many destinations"
3796 msgstr "for mange destinationer"
3797
3798 #: hgext/patchbomb.py:266
3799 msgid "use only one form to specify the revision"
3800 msgstr ""
3801
3802 #: hgext/patchbomb.py:287
3803 msgid ""
3804 "\n"
3805 "Write the introductory message for the patch series.\n"
3806 "\n"
3807 msgstr ""
3808
3809 #: hgext/patchbomb.py:296
3810 msgid ""
3811 "This patch series consists of %d patches.\n"
3812 "\n"
3813 msgstr ""
3814
3815 #: hgext/patchbomb.py:319
3816 msgid "Final summary:\n"
3817 msgstr ""
3818
3819 #: hgext/patchbomb.py:403
3820 msgid "Displaying "
3821 msgstr ""
3822
3823 #: hgext/patchbomb.py:419
3824 msgid "Writing "
3825 msgstr ""
3826
3827 #: hgext/patchbomb.py:430
3828 msgid "Sending "
3829 msgstr ""
3830
3831 #: hgext/patchbomb.py:439
3832 msgid "send patches as attachments"
3833 msgstr ""
3834
3835 #: hgext/patchbomb.py:440
3836 msgid "send patches as inline attachments"
3837 msgstr ""
3838
3839 #: hgext/patchbomb.py:441
3840 msgid "email addresses of blind copy recipients"
3841 msgstr ""
3842
3843 #: hgext/patchbomb.py:442
3844 msgid "email addresses of copy recipients"
3845 msgstr ""
3846
3847 #: hgext/patchbomb.py:443
3848 msgid "add diffstat output to messages"
3849 msgstr ""
3850
3851 #: hgext/patchbomb.py:444
3852 msgid "use the given date as the sending date"
3853 msgstr ""
3854
3855 #: hgext/patchbomb.py:445
3856 msgid "use the given file as the series description"
3857 msgstr ""
3858
3859 #: hgext/patchbomb.py:446
3860 msgid "email address of sender"
3861 msgstr ""
3862
3863 #: hgext/patchbomb.py:447
3864 msgid "print messages that would be sent"
3865 msgstr ""
3866
3867 #: hgext/patchbomb.py:449
3868 msgid "write messages to mbox file instead of sending them"
3869 msgstr ""
3870
3871 #: hgext/patchbomb.py:451
3872 msgid "subject of first message (intro or single patch)"
3873 msgstr ""
3874
3875 #: hgext/patchbomb.py:452
3876 msgid "email addresses of recipients"
3877 msgstr ""
3878
3879 #: hgext/patchbomb.py:460
3880 msgid "omit hg patch header"
3881 msgstr ""
3882
3883 #: hgext/patchbomb.py:462
3884 msgid "send changes not found in the target repository"
3885 msgstr ""
3886
3887 #: hgext/patchbomb.py:464
3888 msgid "send changes not in target as a binary bundle"
3889 msgstr ""
3890
3891 #: hgext/patchbomb.py:465
3892 msgid "a revision to send"
3893 msgstr ""
3894
3895 #: hgext/patchbomb.py:467
3896 msgid "run even when remote repository is unrelated (with -b)"
3897 msgstr ""
3898
3899 #: hgext/patchbomb.py:469
3900 msgid "a base changeset to specify instead of a destination (with -b)"
3901 msgstr ""
3902
3903 #: hgext/patchbomb.py:471
3904 msgid "send an introduction email for a single patch"
3905 msgstr ""
3906
3907 #: hgext/patchbomb.py:473
3908 msgid "hg email [OPTION]... [DEST]..."
3909 msgstr ""
3910
3911 #: hgext/purge.py:35
3912 msgid ""
3913 "removes files not tracked by Mercurial\n"
3914 "\n"
3915 " Delete files not known to Mercurial. This is useful to test local and\n"
3916 " uncommitted changes in an otherwise-clean source tree.\n"
3917 "\n"
3918 " This means that purge will delete:\n"
3919 " - Unknown files: files marked with \"?\" by \"hg status\"\n"
3920 " - Empty directories: in fact Mercurial ignores directories unless they\n"
3921 " contain files under source control managment\n"
3922 " But it will leave untouched:\n"
3923 " - Modified and unmodified tracked files\n"
3924 " - Ignored files (unless --all is specified)\n"
3925 " - New files added to the repository (with \"hg add\")\n"
3926 "\n"
3927 " If directories are given on the command line, only files in these\n"
3928 " directories are considered.\n"
3929 "\n"
3930 " Be careful with purge, as you could irreversibly delete some files you\n"
3931 " forgot to add to the repository. If you only want to print the list of\n"
3932 " files that this program would delete, use the --print option.\n"
3933 " "
3934 msgstr ""
3935
3936 #: hgext/purge.py:67
3937 msgid "%s cannot be removed"
3938 msgstr ""
3939
3940 #: hgext/purge.py:70 mercurial/simplemerge.py:418
3941 msgid "warning: %s\n"
3942 msgstr ""
3943
3944 #: hgext/purge.py:80
3945 msgid "Removing file %s\n"
3946 msgstr ""
3947
3948 #: hgext/purge.py:85
3949 msgid "Removing directory %s\n"
3950 msgstr ""
3951
3952 #: hgext/purge.py:91
3953 msgid "abort if an error occurs"
3954 msgstr ""
3955
3956 #: hgext/purge.py:92
3957 msgid "purge ignored files too"
3958 msgstr ""
3959
3960 #: hgext/purge.py:93
3961 msgid "print the file names instead of deleting them"
3962 msgstr ""
3963
3964 #: hgext/purge.py:94
3965 msgid "end filenames with NUL, for use with xargs (implies -p)"
3966 msgstr ""
3967
3968 #: hgext/purge.py:97
3969 msgid "hg purge [OPTION]... [DIR]..."
3970 msgstr ""
3971
3972 #: hgext/rebase.py:8
3973 msgid ""
3974 "move sets of revisions to a different ancestor\n"
3975 "\n"
3976 "This extension lets you rebase changesets in an existing Mercurial "
3977 "repository.\n"
3978 "\n"
3979 "For more information:\n"
3980 "http://www.selenic.com/mercurial/wiki/index.cgi/RebaseProject\n"
3981 msgstr ""
3982
3983 #: hgext/rebase.py:24
3984 msgid "return the correct ancestor"
3985 msgstr ""
3986
3987 #: hgext/rebase.py:37
3988 msgid "first revision, do not change ancestor\n"
3989 msgstr ""
3990
3991 #: hgext/rebase.py:42
3992 msgid ""
3993 "move changeset (and descendants) to a different branch\n"
3994 "\n"
3995 " Rebase uses repeated merging to graft changesets from one part of "
3996 "history\n"
3997 " onto another. This can be useful for linearizing local changes relative "
3998 "to\n"
3999 " a master development tree.\n"
4000 "\n"
4001 " If a rebase is interrupted to manually resolve a merge, it can be "
4002 "continued\n"
4003 " with --continue or aborted with --abort.\n"
4004 " "
4005 msgstr ""
4006
4007 #: hgext/rebase.py:71
4008 msgid "cannot use both keepbranches and extrafn"
4009 msgstr ""
4010
4011 #: hgext/rebase.py:78
4012 msgid "cannot use both abort and continue"
4013 msgstr ""
4014
4015 #: hgext/rebase.py:81
4016 msgid "cannot use collapse with continue or abort"
4017 msgstr ""
4018
4019 #: hgext/rebase.py:85
4020 msgid "abort and continue do not allow specifying revisions"
4021 msgstr ""
4022
4023 #: hgext/rebase.py:93
4024 msgid "cannot specify both a revision and a base"
4025 msgstr ""
4026
4027 #: hgext/rebase.py:100
4028 msgid "nothing to rebase\n"
4029 msgstr ""
4030
4031 #: hgext/rebase.py:113
4032 msgid "rebase merging completed\n"
4033 msgstr ""
4034
4035 #: hgext/rebase.py:128
4036 msgid "warning: new changesets detected on source branch, not stripping\n"
4037 msgstr ""
4038
4039 #: hgext/rebase.py:134
4040 msgid "rebase completed\n"
4041 msgstr ""
4042
4043 #: hgext/rebase.py:138
4044 msgid "%d revisions have been skipped\n"
4045 msgstr ""
4046
4047 #: hgext/rebase.py:144
4048 msgid ""
4049 "Skip commit if collapsing has been required and rev is not the last\n"
4050 " revision, commit otherwise\n"
4051 " "
4052 msgstr ""
4053
4054 #: hgext/rebase.py:147
4055 msgid " set parents\n"
4056 msgstr ""
4057
4058 #: hgext/rebase.py:183
4059 msgid "Rebase a single revision"
4060 msgstr ""
4061
4062 #: hgext/rebase.py:184
4063 msgid "rebasing %d:%s\n"
4064 msgstr ""
4065
4066 #: hgext/rebase.py:188
4067 msgid " future parents are %d and %d\n"
4068 msgstr ""
4069
4070 #: hgext/rebase.py:195
4071 msgid " update to %d:%s\n"
4072 msgstr " opdater til %d:%s\n"
4073
4074 #: hgext/rebase.py:198
4075 msgid " already in target\n"
4076 msgstr ""
4077
4078 #: hgext/rebase.py:200
4079 msgid " merge against %d:%s\n"
4080 msgstr ""
4081
4082 #: hgext/rebase.py:205
4083 msgid "fix unresolved conflicts with hg resolve then run hg rebase --continue"
4084 msgstr ""
4085
4086 #: hgext/rebase.py:208
4087 msgid "resuming interrupted rebase\n"
4088 msgstr ""
4089
4090 #: hgext/rebase.py:219
4091 msgid "no changes, revision %d skipped\n"
4092 msgstr ""
4093
4094 #: hgext/rebase.py:220
4095 msgid "next revision set to %s\n"
4096 msgstr ""
4097
4098 #: hgext/rebase.py:225
4099 msgid "Return the new parent relationship of the revision that will be rebased"
4100 msgstr ""
4101
4102 #: hgext/rebase.py:248
4103 msgid "cannot use revision %d as base, result would have 3 parents"
4104 msgstr ""
4105
4106 #: hgext/rebase.py:254
4107 msgid "Update rebased mq patches - finalize and then import them"
4108 msgstr ""
4109
4110 #: hgext/rebase.py:258
4111 msgid "revision %d is an mq patch (%s), finalize it.\n"
4112 msgstr ""
4113
4114 #: hgext/rebase.py:271
4115 msgid "import mq patch %d (%s)\n"
4116 msgstr ""
4117
4118 #: hgext/rebase.py:278
4119 msgid "Store the current status to allow recovery"
4120 msgstr ""
4121
4122 #: hgext/rebase.py:289
4123 msgid "rebase status stored\n"
4124 msgstr ""
4125
4126 #: hgext/rebase.py:292
4127 msgid "Remove the status files"
4128 msgstr ""
4129
4130 #: hgext/rebase.py:297
4131 msgid "Restore a previously stored status"
4132 msgstr ""
4133
4134 #: hgext/rebase.py:316
4135 msgid "rebase status resumed\n"
4136 msgstr ""
4137
4138 #: hgext/rebase.py:321
4139 msgid "no rebase in progress"
4140 msgstr ""
4141
4142 #: hgext/rebase.py:324
4143 msgid "Restore the repository to its original state"
4144 msgstr ""
4145
4146 #: hgext/rebase.py:326
4147 msgid "warning: new changesets detected on target branch, not stripping\n"
4148 msgstr ""
4149
4150 #: hgext/rebase.py:336
4151 msgid "rebase aborted\n"
4152 msgstr ""
4153
4154 #: hgext/rebase.py:339
4155 msgid "Define which revisions are going to be rebased and where"
4156 msgstr ""
4157
4158 #: hgext/rebase.py:350
4159 msgid "cannot rebase onto an applied mq patch"
4160 msgstr ""
4161
4162 #: hgext/rebase.py:356
4163 msgid "cannot rebase an ancestor"
4164 msgstr ""
4165
4166 #: hgext/rebase.py:358
4167 msgid "cannot rebase a descendant"
4168 msgstr ""
4169
4170 #: hgext/rebase.py:367
4171 msgid "already working on current\n"
4172 msgstr ""
4173
4174 #: hgext/rebase.py:372
4175 msgid "already working on the current branch\n"
4176 msgstr ""
4177
4178 #: hgext/rebase.py:380
4179 msgid "rebase onto %d starting from %d\n"
4180 msgstr ""
4181
4182 #: hgext/rebase.py:392
4183 msgid "unable to collapse, there is more than one external parent"
4184 msgstr ""
4185
4186 #: hgext/rebase.py:400
4187 msgid "Call rebase after pull if the latter has been invoked with --rebase"
4188 msgstr ""
4189
4190 #: hgext/rebase.py:403
4191 msgid "--update and --rebase are not compatible"
4192 msgstr ""
4193
4194 #: hgext/rebase.py:415
4195 msgid "Replace pull with a decorator to provide --rebase option"
4196 msgstr ""
4197
4198 #: hgext/rebase.py:418
4199 msgid "rebase working directory to branch head"
4200 msgstr ""
4201
4202 #: hgext/rebase.py:425
4203 msgid "keep original revisions"
4204 msgstr ""
4205
4206 #: hgext/rebase.py:426
4207 msgid "keep original branches"
4208 msgstr ""
4209
4210 #: hgext/rebase.py:427
4211 msgid "rebase from a given revision"
4212 msgstr ""
4213
4214 #: hgext/rebase.py:428
4215 msgid "rebase from the base of a given revision"
4216 msgstr ""
4217
4218 #: hgext/rebase.py:429
4219 msgid "rebase onto a given revision"
4220 msgstr ""
4221
4222 #: hgext/rebase.py:430
4223 msgid "collapse the rebased revisions"
4224 msgstr ""
4225
4226 #: hgext/rebase.py:431
4227 msgid "continue an interrupted rebase"
4228 msgstr ""
4229
4230 #: hgext/rebase.py:432
4231 msgid "abort an interrupted rebase"
4232 msgstr ""
4233
4234 #: hgext/rebase.py:434
4235 msgid ""
4236 "hg rebase [-s rev | -b rev] [-d rev] [--collapse] | [-c] | [-a] | [--keep]"
4237 msgstr ""
4238
4239 #: hgext/record.py:8
4240 msgid "interactive change selection during commit or qrefresh"
4241 msgstr ""
4242
4243 #: hgext/record.py:18
4244 msgid ""
4245 "like patch.iterhunks, but yield different events\n"
4246 "\n"
4247 " - ('file', [header_lines + fromfile + tofile])\n"
4248 " - ('context', [context_lines])\n"
4249 " - ('hunk', [hunk_lines])\n"
4250 " - ('range', (-start,len, +start,len, diffp))\n"
4251 " "
4252 msgstr ""
4253
4254 #: hgext/record.py:28
4255 msgid "scan lr while predicate holds"
4256 msgstr ""
4257
4258 #: hgext/record.py:69
4259 msgid ""
4260 "patch header\n"
4261 "\n"
4262 " XXX shoudn't we move this to mercurial/patch.py ?\n"
4263 " "
4264 msgstr ""
4265
4266 #: hgext/record.py:90
4267 msgid "this modifies a binary file (all or nothing)\n"
4268 msgstr ""
4269
4270 #: hgext/record.py:95
4271 msgid "this is a binary file\n"
4272 msgstr ""
4273
4274 #: hgext/record.py:98
4275 msgid "%d hunks, %d lines changed\n"
4276 msgstr ""
4277
4278 #: hgext/record.py:130
4279 msgid "hunk -> (n+,n-)"
4280 msgstr ""
4281
4282 #: hgext/record.py:136
4283 msgid ""
4284 "patch hunk\n"
4285 "\n"
4286 " XXX shouldn't we merge this with patch.hunk ?\n"
4287 " "
4288 msgstr ""
4289
4290 #: hgext/record.py:176
4291 msgid "patch -> [] of hunks "
4292 msgstr ""
4293
4294 #: hgext/record.py:178
4295 msgid "patch parsing state machine"
4296 msgstr ""
4297
4298 #: hgext/record.py:251
4299 msgid "Interactively filter patch chunks into applied-only chunks"
4300 msgstr ""
4301
4302 #: hgext/record.py:256
4303 msgid ""
4304 "fetch next portion from chunks until a 'header' is seen\n"
4305 " NB: header == new-file mark\n"
4306 " "
4307 msgstr ""
4308
4309 #: hgext/record.py:271
4310 msgid ""
4311 "prompt query, and process base inputs\n"
4312 "\n"
4313 " - y/n for the rest of file\n"
4314 " - y/n for the rest\n"
4315 " - ? (help)\n"
4316 " - q (quit)\n"
4317 "\n"
4318 " else, input is returned to the caller.\n"
4319 " "
4320 msgstr ""
4321
4322 #: hgext/record.py:285
4323 msgid "[Ynsfdaq?]"
4324 msgstr ""
4325
4326 #: hgext/record.py:287 hgext/record.py:320 hgext/record.py:332
4327 #: mercurial/filemerge.py:208
4328 msgid "y"
4329 msgstr ""
4330
4331 #: hgext/record.py:288
4332 msgid "?"
4333 msgstr ""
4334
4335 #: hgext/record.py:290
4336 msgid "y - record this change"
4337 msgstr ""
4338
4339 #: hgext/record.py:294
4340 msgid "s"
4341 msgstr ""
4342
4343 #: hgext/record.py:296
4344 msgid "f"
4345 msgstr ""
4346
4347 #: hgext/record.py:298 mercurial/merge.py:221
4348 msgid "d"
4349 msgstr ""
4350
4351 #: hgext/record.py:300
4352 msgid "a"
4353 msgstr ""
4354
4355 #: hgext/record.py:302
4356 msgid "q"
4357 msgstr ""
4358
4359 #: hgext/record.py:303
4360 msgid "user quit"
4361 msgstr ""
4362
4363 #: hgext/record.py:318
4364 msgid "examine changes to %s?"
4365 msgstr ""
4366
4367 #: hgext/record.py:319
4368 msgid " and "
4369 msgstr ""
4370
4371 #: hgext/record.py:330
4372 msgid "record this change to %r?"
4373 msgstr ""
4374
4375 #: hgext/record.py:343
4376 msgid ""
4377 "interactively select changes to commit\n"
4378 "\n"
4379 " If a list of files is omitted, all changes reported by \"hg status\"\n"
4380 " will be candidates for recording.\n"
4381 "\n"
4382 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
4383 "\n"
4384 " You will be prompted for whether to record changes to each\n"
4385 " modified file, and for files with multiple changes, for each\n"
4386 " change to use. For each query, the following responses are\n"
4387 " possible:\n"
4388 "\n"
4389 " y - record this change\n"
4390 " n - skip this change\n"
4391 "\n"
4392 " s - skip remaining changes to this file\n"
4393 " f - record remaining changes to this file\n"
4394 "\n"
4395 " d - done, skip remaining changes and files\n"
4396 " a - record all changes to all remaining files\n"
4397 " q - quit, recording no changes\n"
4398 "\n"
4399 " ? - display help"
4400 msgstr ""
4401
4402 #: hgext/record.py:374
4403 msgid ""
4404 "interactively record a new patch\n"
4405 "\n"
4406 " see 'hg help qnew' & 'hg help record' for more information and usage\n"
4407 " "
4408 msgstr ""
4409
4410 #: hgext/record.py:382
4411 msgid "'mq' extension not loaded"
4412 msgstr ""
4413
4414 #: hgext/record.py:394
4415 msgid "running non-interactively, use commit instead"
4416 msgstr ""
4417
4418 #: hgext/record.py:397
4419 msgid ""
4420 "This is generic record driver.\n"
4421 "\n"
4422 " It's job is to interactively filter local changes, and accordingly\n"
4423 " prepare working dir into a state, where the job can be delegated to\n"
4424 " non-interactive commit command such as 'commit' or 'qrefresh'.\n"
4425 "\n"
4426 " After the actual job is done by non-interactive command, working "
4427 "dir\n"
4428 " state is restored to original.\n"
4429 "\n"
4430 " In the end we'll record intresting changes, and everything else will "
4431 "be\n"
4432 " left in place, so the user can continue his work.\n"
4433 " "
4434 msgstr ""
4435
4436 #: hgext/record.py:434
4437 msgid "no changes to record\n"
4438 msgstr ""
4439
4440 #: hgext/record.py:458
4441 msgid "backup %r as %r\n"
4442 msgstr ""
4443
4444 #: hgext/record.py:476
4445 msgid "applying patch\n"
4446 msgstr ""
4447
4448 #: hgext/record.py:484 mercurial/patch.py:1152
4449 msgid "patch failed to apply"
4450 msgstr ""
4451
4452 #: hgext/record.py:504
4453 msgid "restoring %r to %r\n"
4454 msgstr ""
4455
4456 #: hgext/record.py:519
4457 msgid "hg record [OPTION]... [FILE]..."
4458 msgstr ""
4459
4460 #: hgext/record.py:536
4461 msgid "hg qrecord [OPTION]... PATCH [FILE]..."
4462 msgstr ""
4463
4464 #: hgext/transplant.py:75
4465 msgid ""
4466 "returns True if a node is already an ancestor of parent\n"
4467 " or has already been transplanted"
4468 msgstr ""
4469
4470 #: hgext/transplant.py:90
4471 msgid "apply the revisions in revmap one by one in revision order"
4472 msgstr ""
4473
4474 #: hgext/transplant.py:106
4475 msgid "skipping already applied revision %s\n"
4476 msgstr ""
4477
4478 #: hgext/transplant.py:135
4479 msgid "skipping merge changeset %s:%s\n"
4480 msgstr ""
4481
4482 #: hgext/transplant.py:155
4483 msgid "%s merged at %s\n"
4484 msgstr ""
4485
4486 #: hgext/transplant.py:158
4487 msgid "%s transplanted to %s\n"
4488 msgstr ""
4489
4490 #: hgext/transplant.py:172
4491 msgid "arbitrarily rewrite changeset before applying it"
4492 msgstr ""
4493
4494 #: hgext/transplant.py:174
4495 msgid "filtering %s\n"
4496 msgstr ""
4497
4498 #: hgext/transplant.py:189
4499 msgid "filter failed"
4500 msgstr ""
4501
4502 #: hgext/transplant.py:198
4503 msgid "apply the patch in patchfile to the repository as a transplant"
4504 msgstr ""
4505
4506 #: hgext/transplant.py:212
4507 msgid "can only omit patchfile if merging"
4508 msgstr ""
4509
4510 #: hgext/transplant.py:220
4511 msgid "%s: empty changeset"
4512 msgstr ""
4513
4514 #: hgext/transplant.py:234
4515 msgid "Fix up the merge and run hg transplant --continue"
4516 msgstr ""
4517
4518 #: hgext/transplant.py:248
4519 msgid "recover last transaction and apply remaining changesets"
4520 msgstr ""
4521
4522 #: hgext/transplant.py:251
4523 msgid "%s transplanted as %s\n"
4524 msgstr ""
4525
4526 #: hgext/transplant.py:266
4527 msgid "commit working directory using journal metadata"
4528 msgstr ""
4529
4530 #: hgext/transplant.py:271
4531 msgid "transplant log file is corrupt"
4532 msgstr ""
4533
4534 #: hgext/transplant.py:279
4535 msgid "working dir not at transplant parent %s"
4536 msgstr ""
4537
4538 #: hgext/transplant.py:285
4539 msgid "commit failed"
4540 msgstr ""
4541
4542 #: hgext/transplant.py:343
4543 msgid "journal changelog metadata for later recover"
4544 msgstr ""
4545
4546 #: hgext/transplant.py:361
4547 msgid "remove changelog journal"
4548 msgstr ""
4549
4550 #: hgext/transplant.py:387
4551 msgid "interactively transplant changesets"
4552 msgstr ""
4553
4554 #: hgext/transplant.py:404
4555 msgid "apply changeset? [ynmpcq?]:"
4556 msgstr ""
4557
4558 #: hgext/transplant.py:429
4559 msgid ""
4560 "transplant changesets from another branch\n"
4561 "\n"
4562 " Selected changesets will be applied on top of the current working\n"
4563 " directory with the log of the original changeset. If --log is\n"
4564 " specified, log messages will have a comment appended of the form:\n"
4565 "\n"
4566 " (transplanted from CHANGESETHASH)\n"
4567 "\n"
4568 " You can rewrite the changelog message with the --filter option.\n"
4569 " Its argument will be invoked with the current changelog message\n"
4570 " as $1 and the patch as $2.\n"
4571 "\n"
4572 " If --source is specified, selects changesets from the named\n"
4573 " repository. If --branch is specified, selects changesets from the\n"
4574 " branch holding the named revision, up to that revision. If --all\n"
4575 " is specified, all changesets on the branch will be transplanted,\n"
4576 " otherwise you will be prompted to select the changesets you want.\n"
4577 "\n"
4578 " hg transplant --branch REVISION --all will rebase the selected branch\n"
4579 " (up to the named revision) onto your current working directory.\n"
4580 "\n"
4581 " You can optionally mark selected transplanted changesets as\n"
4582 " merge changesets. You will not be prompted to transplant any\n"
4583 " ancestors of a merged transplant, and you can merge descendants\n"
4584 " of them normally instead of transplanting them.\n"
4585 "\n"
4586 " If no merges or revisions are provided, hg transplant will start\n"
4587 " an interactive changeset browser.\n"
4588 "\n"
4589 " If a changeset application fails, you can fix the merge by hand and\n"
4590 " then resume where you left off by calling hg transplant --continue.\n"
4591 " "
4592 msgstr ""
4593
4594 #: hgext/transplant.py:499
4595 msgid "--continue is incompatible with branch, all or merge"
4596 msgstr ""
4597
4598 #: hgext/transplant.py:503
4599 msgid "no source URL, branch tag or revision list provided"
4600 msgstr ""
4601
4602 #: hgext/transplant.py:506
4603 msgid "--all requires a branch revision"
4604 msgstr ""
4605
4606 #: hgext/transplant.py:508
4607 msgid "--all is incompatible with a revision list"
4608 msgstr ""
4609
4610 #: hgext/transplant.py:521
4611 msgid "no revision checked out"
4612 msgstr ""
4613
4614 #: hgext/transplant.py:524 mercurial/merge.py:448
4615 msgid "outstanding uncommitted merges"
4616 msgstr ""
4617
4618 #: hgext/transplant.py:527
4619 msgid "outstanding local changes"
4620 msgstr ""
4621
4622 #: hgext/transplant.py:578
4623 msgid "pull patches from REPOSITORY"
4624 msgstr ""
4625
4626 #: hgext/transplant.py:579
4627 msgid "pull patches from branch BRANCH"
4628 msgstr ""
4629
4630 #: hgext/transplant.py:580
4631 msgid "pull all changesets up to BRANCH"
4632 msgstr ""
4633
4634 #: hgext/transplant.py:581
4635 msgid "skip over REV"
4636 msgstr ""
4637
4638 #: hgext/transplant.py:582
4639 msgid "merge at REV"
4640 msgstr ""
4641
4642 #: hgext/transplant.py:583
4643 msgid "append transplant info to log message"
4644 msgstr ""
4645
4646 #: hgext/transplant.py:584
4647 msgid "continue last transplant session after repair"
4648 msgstr ""
4649
4650 #: hgext/transplant.py:585
4651 msgid "filter changesets through FILTER"
4652 msgstr ""
4653
4654 #: hgext/transplant.py:586
4655 msgid ""
4656 "hg transplant [-s REPOSITORY] [-b BRANCH [-a]] [-p REV] [-m REV] [REV]..."
4657 msgstr ""
4658
4659 #: hgext/win32mbcs.py:11
4660 msgid ""
4661 "allow to use MBCS path with problematic encoding.\n"
4662 "\n"
4663 "Some MBCS encodings are not good for some path operations\n"
4664 "(i.e. splitting path, case conversion, etc.) with its encoded bytes.\n"
4665 "We call such a encoding (i.e. shift_jis and big5) as \"problematic\n"
4666 "encoding\". This extension can be used to fix the issue with those\n"
4667 "encodings by wrapping some functions to convert to unicode string\n"
4668 "before path operation.\n"
4669 "\n"
4670 "This extension is usefull for:\n"
4671 " * Japanese Windows users using shift_jis encoding.\n"
4672 " * Chinese Windows users using big5 encoding.\n"
4673 " * All users who use a repository with one of problematic encodings\n"
4674 " on case-insensitive file system.\n"
4675 "\n"
4676 "This extension is not needed for:\n"
4677 " * Any user who use only ascii chars in path.\n"
4678 " * Any user who do not use any of problematic encodings.\n"
4679 "\n"
4680 "Note that there are some limitations on using this extension:\n"
4681 " * You should use single encoding in one repository.\n"
4682 " * You should set same encoding for the repository by locale or HGENCODING.\n"
4683 "\n"
4684 "To use this extension, enable the extension in .hg/hgrc or ~/.hgrc:\n"
4685 "\n"
4686 " [extensions]\n"
4687 " hgext.win32mbcs =\n"
4688 "\n"
4689 "Path encoding conversion are done between unicode and util._encoding\n"
4690 "which is decided by mercurial from current locale setting or HGENCODING.\n"
4691 "\n"
4692 msgstr ""
4693
4694 #: hgext/win32mbcs.py:81
4695 msgid "[win32mbcs] filename conversion fail with %s encoding\n"
4696 msgstr ""
4697
4698 #: hgext/win32mbcs.py:114
4699 msgid "[win32mbcs] cannot activate on this platform.\n"
4700 msgstr ""
4701
4702 #: hgext/win32mbcs.py:121
4703 msgid "[win32mbcs] activated with encoding: %s\n"
4704 msgstr ""
4705
4706 #: hgext/win32text.py:47
4707 msgid ""
4708 "WARNING: %s already has %s line endings\n"
4709 "and does not need EOL conversion by the win32text plugin.\n"
4710 "Before your next commit, please reconsider your encode/decode settings in \n"
4711 "Mercurial.ini or %s.\n"
4712 msgstr ""
4713
4714 #: hgext/win32text.py:109
4715 msgid "Attempt to commit or push text file(s) using %s line endings\n"
4716 msgstr ""
4717
4718 #: hgext/win32text.py:112
4719 msgid "in %s: %s\n"
4720 msgstr ""
4721
4722 #: hgext/win32text.py:117
4723 msgid ""
4724 "\n"
4725 "To prevent this mistake in your local repository,\n"
4726 "add to Mercurial.ini or .hg/hgrc:\n"
4727 "\n"
4728 "[hooks]\n"
4729 "pretxncommit.%s = python:hgext.win32text.forbid%s\n"
4730 "\n"
4731 "and also consider adding:\n"
4732 "\n"
4733 "[extensions]\n"
4734 "hgext.win32text =\n"
4735 "[encode]\n"
4736 "** = %sencode:\n"
4737 "[decode]\n"
4738 "** = %sdecode:\n"
4739 msgstr ""
4740
4741 #: hgext/zeroconf/__init__.py:9
4742 msgid ""
4743 "zeroconf support for mercurial repositories\n"
4744 "\n"
4745 "Zeroconf enabled repositories will be announced in a network without the "
4746 "need\n"
4747 "to configure a server or a service. They can be discovered without knowing\n"
4748 "their actual IP address.\n"
4749 "\n"
4750 "To use the zeroconf extension add the following entry to your hgrc file:\n"
4751 "\n"
4752 "[extensions]\n"
4753 "hgext.zeroconf =\n"
4754 "\n"
4755 "To allow other people to discover your repository using run \"hg serve\" in "
4756 "your\n"
4757 "repository.\n"
4758 "\n"
4759 " $ cd test\n"
4760 " $ hg serve\n"
4761 "\n"
4762 "You can discover zeroconf enabled repositories by running \"hg paths\".\n"
4763 "\n"
4764 " $ hg paths\n"
4765 " zc-test = http://example.com:8000/test\n"
4766 msgstr ""
4767
4768 #: mercurial/commands.py:21
4769 msgid ""
4770 "add the specified files on the next commit\n"
4771 "\n"
4772 " Schedule files to be version controlled and added to the repository.\n"
4773 "\n"
4774 " The files will be added to the repository at the next commit. To\n"
4775 " undo an add before that, see hg revert.\n"
4776 "\n"
4777 " If no names are given, add all files in the repository.\n"
4778 " "
4779 msgstr ""
4780 "tilføj de angivne filer ved næste commit\n"
4781 "\n"
4782 " Opskriv filer til at blive versionsstyret og tilføjet til\n"
4783 " repository'et.\n"
4784 "\n"
4785 " Filerne vil bliver tilføjet til repository'et ved næste commit.\n"
4786 " For at omgøre en tilføjelse før det, se hg revert.\n"
4787 "\n"
4788 " Hvis der ikke er angivet nogen navne tilføjes alle filer i\n"
4789 " repository'et.\n"
4790 " "
4791
4792 #: mercurial/commands.py:39 mercurial/commands.py:43
4793 #: mercurial/commands.py:2485 mercurial/cmdutil.py:297
4794 msgid "adding %s\n"
4795 msgstr "tilføjer %s\n"
4796
4797 #: mercurial/commands.py:51
4798 msgid ""
4799 "add all new files, delete all missing files\n"
4800 "\n"
4801 " Add all new files and remove all missing files from the repository.\n"
4802 "\n"
4803 " New files are ignored if they match any of the patterns in .hgignore. "
4804 "As\n"
4805 " with add, these changes take effect at the next commit.\n"
4806 "\n"
4807 " Use the -s option to detect renamed files. With a parameter > 0,\n"
4808 " this compares every removed file with every added file and records\n"
4809 " those similar enough as renames. This option takes a percentage\n"
4810 " between 0 (disabled) and 100 (files must be identical) as its\n"
4811 " parameter. Detecting renamed files this way can be expensive.\n"
4812 " "
4813 msgstr ""
4814
4815 #: mercurial/commands.py:67 mercurial/commands.py:1607
4816 msgid "similarity must be a number"
4817 msgstr ""
4818
4819 #: mercurial/commands.py:69 mercurial/commands.py:1609
4820 msgid "similarity must be between 0 and 100"
4821 msgstr ""
4822
4823 #: mercurial/commands.py:73
4824 msgid ""
4825 "show changeset information per file line\n"
4826 "\n"
4827 " List changes in files, showing the revision id responsible for each "
4828 "line\n"
4829 "\n"
4830 " This command is useful to discover who did a change or when a change "
4831 "took\n"
4832 " place.\n"
4833 "\n"
4834 " Without the -a option, annotate will avoid processing files it\n"
4835 " detects as binary. With -a, annotate will generate an annotation\n"
4836 " anyway, probably with undesirable results.\n"
4837 " "
4838 msgstr ""
4839
4840 #: mercurial/commands.py:88
4841 msgid "at least one file name or pattern required"
4842 msgstr ""
4843
4844 #: mercurial/commands.py:103
4845 msgid "at least one of -n/-c is required for -l"
4846 msgstr ""
4847
4848 #: mercurial/commands.py:116
4849 msgid "%s: binary file\n"
4850 msgstr ""
4851
4852 #: mercurial/commands.py:134
4853 msgid ""
4854 "create unversioned archive of a repository revision\n"
4855 "\n"
4856 " By default, the revision used is the parent of the working\n"
4857 " directory; use \"-r\" to specify a different revision.\n"
4858 "\n"
4859 " To specify the type of archive to create, use \"-t\". Valid\n"
4860 " types are:\n"
4861 "\n"
4862 " \"files\" (default): a directory full of files\n"
4863 " \"tar\": tar archive, uncompressed\n"
4864 " \"tbz2\": tar archive, compressed using bzip2\n"
4865 " \"tgz\": tar archive, compressed using gzip\n"
4866 " \"uzip\": zip archive, uncompressed\n"
4867 " \"zip\": zip archive, compressed using deflate\n"
4868 "\n"
4869 " The exact name of the destination archive or directory is given\n"
4870 " using a format string; see \"hg help export\" for details.\n"
4871 "\n"
4872 " Each member added to an archive file has a directory prefix\n"
4873 " prepended. Use \"-p\" to specify a format string for the prefix.\n"
4874 " The default is the basename of the archive, with suffixes removed.\n"
4875 " "
4876 msgstr ""
4877
4878 #: mercurial/commands.py:159
4879 msgid "no working directory: please specify a revision"
4880 msgstr ""
4881
4882 #: mercurial/commands.py:163
4883 msgid "repository root cannot be destination"
4884 msgstr ""
4885
4886 #: mercurial/commands.py:169
4887 msgid "cannot archive plain files to stdout"
4888 msgstr ""
4889
4890 #: mercurial/commands.py:177
4891 msgid ""
4892 "reverse effect of earlier changeset\n"
4893 "\n"
4894 " Commit the backed out changes as a new changeset. The new\n"
4895 " changeset is a child of the backed out changeset.\n"
4896 "\n"
4897 " If you back out a changeset other than the tip, a new head is\n"
4898 " created. This head will be the new tip and you should merge this\n"
4899 " backout changeset with another head (current one by default).\n"
4900 "\n"
4901 " The --merge option remembers the parent of the working directory\n"
4902 " before starting the backout, then merges the new head with that\n"
4903 " changeset afterwards. This saves you from doing the merge by\n"
4904 " hand. The result of this merge is not committed, as for a normal\n"
4905 " merge.\n"
4906 "\n"
4907 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
4908 " "
4909 msgstr ""
4910
4911 #: mercurial/commands.py:201
4912 msgid "please specify a revision to backout"
4913 msgstr ""
4914
4915 #: mercurial/commands.py:213
4916 msgid "cannot back out change on a different branch"
4917 msgstr ""
4918
4919 #: mercurial/commands.py:217
4920 msgid "cannot back out a change with no parents"
4921 msgstr ""
4922
4923 #: mercurial/commands.py:220
4924 msgid "cannot back out a merge changeset without --parent"
4925 msgstr ""
4926
4927 #: mercurial/commands.py:224
4928 msgid "%s is not a parent of %s"
4929 msgstr "%s er ikke forældre til %s"
4930
4931 #: mercurial/commands.py:229
4932 msgid "cannot use --parent on non-merge changeset"
4933 msgstr ""
4934
4935 #: mercurial/commands.py:245
4936 msgid "Backed out changeset %s"
4937 msgstr ""
4938
4939 #: mercurial/commands.py:250
4940 msgid "changeset %s backs out changeset %s\n"
4941 msgstr ""
4942
4943 #: mercurial/commands.py:255
4944 msgid "merging with changeset %s\n"
4945 msgstr ""
4946
4947 #: mercurial/commands.py:258
4948 msgid "the backout changeset is a new head - do not forget to merge\n"
4949 msgstr ""
4950
4951 #: mercurial/commands.py:260
4952 msgid "(use \"backout --merge\" if you want to auto-merge)\n"
4953 msgstr ""
4954
4955 #: mercurial/commands.py:265
4956 msgid ""
4957 "subdivision search of changesets\n"
4958 "\n"
4959 " This command helps to find changesets which introduce problems.\n"
4960 " To use, mark the earliest changeset you know exhibits the problem\n"
4961 " as bad, then mark the latest changeset which is free from the\n"
4962 " problem as good. Bisect will update your working directory to a\n"
4963 " revision for testing (unless the --noupdate option is specified).\n"
4964 " Once you have performed tests, mark the working directory as bad\n"
4965 " or good and bisect will either update to another candidate changeset\n"
4966 " or announce that it has found the bad revision.\n"
4967 "\n"
4968 " As a shortcut, you can also use the revision argument to mark a\n"
4969 " revision as good or bad without checking it out first.\n"
4970 "\n"
4971 " If you supply a command it will be used for automatic bisection. Its "
4972 "exit\n"
4973 " status will be used as flag to mark revision as bad or good. In case "
4974 "exit\n"
4975 " status is 0 the revision is marked as good, 125 - skipped, 127 (command "
4976 "not\n"
4977 " found) - bisection will be aborted and any other status bigger than 0 "
4978 "will\n"
4979 " mark revision as bad.\n"
4980 " "
4981 msgstr ""
4982
4983 #: mercurial/commands.py:290
4984 msgid "The first %s revision is:\n"
4985 msgstr "Den første %s revision er:\n"
4986
4987 #: mercurial/commands.py:294
4988 msgid "Due to skipped revisions, the first %s revision could be any of:\n"
4989 msgstr ""
4990
4991 #: mercurial/commands.py:304
4992 msgid "cannot bisect (no known good revisions)"
4993 msgstr ""
4994
4995 #: mercurial/commands.py:306
4996 msgid "cannot bisect (no known bad revisions)"
4997 msgstr ""
4998
4999 #: mercurial/commands.py:311
5000 msgid "(use of 'hg bisect <cmd>' is deprecated)\n"
5001 msgstr ""
5002
5003 #: mercurial/commands.py:320
5004 msgid "incompatible arguments"
5005 msgstr ""
5006
5007 #: mercurial/commands.py:343
5008 msgid "failed to execute %s"
5009 msgstr ""
5010
5011 #: mercurial/commands.py:345
5012 msgid "%s killed"
5013 msgstr "%s dræbt"
5014
5015 #: mercurial/commands.py:350
5016 msgid "Changeset %s: %s\n"
5017 msgstr "Ændring: %s: %s\n"
5018
5019 #: mercurial/commands.py:387
5020 msgid "Testing changeset %s:%s (%s changesets remaining, ~%s tests)\n"
5021 msgstr ""
5022
5023 #: mercurial/commands.py:395
5024 msgid ""
5025 "set or show the current branch name\n"
5026 "\n"
5027 " With no argument, show the current branch name. With one argument,\n"
5028 " set the working directory branch name (the branch does not exist in\n"
5029 " the repository until the next commit).\n"
5030 "\n"
5031 " Unless --force is specified, branch will not let you set a\n"
5032 " branch name that shadows an existing branch.\n"
5033 "\n"
5034 " Use --clean to reset the working directory branch to that of the\n"
5035 " parent of the working directory, negating a previous branch change.\n"
5036 "\n"
5037 " Use the command 'hg update' to switch to an existing branch.\n"
5038 " "
5039 msgstr ""
5040
5041 #: mercurial/commands.py:413
5042 msgid "reset working directory to branch %s\n"
5043 msgstr ""
5044
5045 #: mercurial/commands.py:417
5046 msgid "a branch of the same name already exists (use --force to override)"
5047 msgstr ""
5048
5049 #: mercurial/commands.py:420
5050 msgid "marked working directory as branch %s\n"
5051 msgstr ""
5052
5053 #: mercurial/commands.py:425
5054 msgid ""
5055 "list repository named branches\n"
5056 "\n"
5057 " List the repository's named branches, indicating which ones are\n"
5058 " inactive. If active is specified, only show active branches.\n"
5059 "\n"
5060 " A branch is considered active if it contains repository heads.\n"
5061 "\n"
5062 " Use the command 'hg update' to switch to an existing branch.\n"
5063 " "
5064 msgstr ""
5065
5066 #: mercurial/commands.py:452
5067 msgid ""
5068 "create a changegroup file\n"
5069 "\n"
5070 " Generate a compressed changegroup file collecting changesets not\n"
5071 " found in the other repository.\n"
5072 "\n"
5073 " If no destination repository is specified the destination is\n"
5074 " assumed to have all the nodes specified by one or more --base\n"
5075 " parameters. To create a bundle containing all changesets, use\n"
5076 " --all (or --base null). To change the compression method applied,\n"
5077 " use the -t option (by default, bundles are compressed using bz2).\n"
5078 "\n"
5079 " The bundle file can then be transferred using conventional means and\n"
5080 " applied to another repository with the unbundle or pull command.\n"
5081 " This is useful when direct push and pull are not available or when\n"
5082 " exporting an entire repository is undesirable.\n"
5083 "\n"
5084 " Applying bundles preserves all changeset contents including\n"
5085 " permissions, copy/rename information, and revision history.\n"
5086 " "
5087 msgstr ""
5088
5089 #: mercurial/commands.py:480
5090 msgid "--base is incompatible with specifiying a destination"
5091 msgstr ""
5092
5093 #: mercurial/commands.py:520
5094 msgid "unknown bundle type specified with --type"
5095 msgstr ""
5096
5097 #: mercurial/commands.py:525
5098 msgid ""
5099 "output the current or given revision of files\n"
5100 "\n"
5101 " Print the specified files as they were at the given revision.\n"
5102 " If no revision is given, the parent of the working directory is used,\n"
5103 " or tip if no revision is checked out.\n"
5104 "\n"
5105 " Output may be to a file, in which case the name of the file is\n"
5106 " given using a format string. The formatting rules are the same as\n"
5107 " for the export command, with the following additions:\n"
5108 "\n"
5109 " %s basename of file being printed\n"
5110 " %d dirname of file being printed, or '.' if in repo root\n"
5111 " %p root-relative path name of file being printed\n"
5112 " "
5113 msgstr ""
5114
5115 #: mercurial/commands.py:552
5116 msgid ""
5117 "make a copy of an existing repository\n"
5118 "\n"
5119 " Create a copy of an existing repository in a new directory.\n"
5120 "\n"
5121 " If no destination directory name is specified, it defaults to the\n"
5122 " basename of the source.\n"
5123 "\n"
5124 " The location of the source is added to the new repository's\n"
5125 " .hg/hgrc file, as the default to be used for future pulls.\n"
5126 "\n"
5127 " For efficiency, hardlinks are used for cloning whenever the source\n"
5128 " and destination are on the same filesystem (note this applies only\n"
5129 " to the repository data, not to the checked out files). Some\n"
5130 " filesystems, such as AFS, implement hardlinking incorrectly, but\n"
5131 " do not report errors. In these cases, use the --pull option to\n"
5132 " avoid hardlinking.\n"
5133 "\n"
5134 " In some cases, you can clone repositories and checked out files\n"
5135 " using full hardlinks with\n"
5136 "\n"
5137 " $ cp -al REPO REPOCLONE\n"
5138 "\n"
5139 " This is the fastest way to clone, but it is not always safe. The\n"
5140 " operation is not atomic (making sure REPO is not modified during\n"
5141 " the operation is up to you) and you have to make sure your editor\n"
5142 " breaks hardlinks (Emacs and most Linux Kernel tools do so). Also,\n"
5143 " this is not compatible with certain extensions that place their\n"
5144 " metadata under the .hg directory, such as mq.\n"
5145 "\n"
5146 " If you use the -r option to clone up to a specific revision, no\n"
5147 " subsequent revisions will be present in the cloned repository.\n"
5148 " This option implies --pull, even on local repositories.\n"
5149 "\n"
5150 " If the -U option is used, the new clone will contain only a repository\n"
5151 " (.hg) and no working copy (the working copy parent is the null "
5152 "revision).\n"
5153 "\n"
5154 " See pull for valid source format details.\n"
5155 "\n"
5156 " It is possible to specify an ssh:// URL as the destination, but no\n"
5157 " .hg/hgrc and working directory will be created on the remote side.\n"
5158 " Look at the help text for the pull command for important details\n"
5159 " about ssh:// URLs.\n"
5160 " "
5161 msgstr ""
5162
5163 #: mercurial/commands.py:603
5164 msgid ""
5165 "commit the specified files or all outstanding changes\n"
5166 "\n"
5167 " Commit changes to the given files into the repository.\n"
5168 "\n"
5169 " If a list of files is omitted, all changes reported by \"hg status\"\n"
5170 " will be committed.\n"
5171 "\n"
5172 " If you are committing the result of a merge, do not provide any\n"
5173 " file names or -I/-X filters.\n"
5174 "\n"
5175 " If no commit message is specified, the configured editor is started to\n"
5176 " enter a message.\n"
5177 "\n"
5178 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
5179 " "
5180 msgstr ""
5181
5182 #: mercurial/commands.py:634
5183 msgid "created new head\n"
5184 msgstr "lavede et nyt hoved\n"
5185
5186 #: mercurial/commands.py:637 mercurial/commands.py:639
5187 msgid "committed changeset %d:%s\n"
5188 msgstr ""
5189
5190 #: mercurial/commands.py:642
5191 msgid ""
5192 "mark files as copied for the next commit\n"
5193 "\n"
5194 " Mark dest as having copies of source files. If dest is a\n"
5195 " directory, copies are put in that directory. If dest is a file,\n"
5196 " there can only be one source.\n"
5197 "\n"
5198 " By default, this command copies the contents of files as they\n"
5199 " stand in the working directory. If invoked with --after, the\n"
5200 " operation is recorded, but no copying is performed.\n"
5201 "\n"
5202 " This command takes effect in the next commit. To undo a copy\n"
5203 " before that, see hg revert.\n"
5204 " "
5205 msgstr ""
5206
5207 #: mercurial/commands.py:662
5208 msgid "find the ancestor revision of two revisions in a given index"
5209 msgstr ""
5210
5211 #: mercurial/commands.py:669 mercurial/commands.py:1512
5212 #: mercurial/commands.py:2642 mercurial/commands.py:2657
5213 #: mercurial/dispatch.py:356 mercurial/hgweb/server.py:252
5214 msgid "There is no Mercurial repository here (.hg not found)"
5215 msgstr "Der er ikke noget Mercurial repository her (fandt ikke .hg)"
5216
5217 #: mercurial/commands.py:675
5218 msgid "either two or three arguments required"
5219 msgstr "kræver enten to eller tre argumenter"
5220
5221 #: mercurial/commands.py:680
5222 msgid "returns the completion list associated with the given command"
5223 msgstr ""
5224
5225 #: mercurial/commands.py:710
5226 msgid "rebuild the dirstate as it would look like for the given revision"
5227 msgstr ""
5228
5229 #: mercurial/commands.py:719
5230 msgid "validate the correctness of the current dirstate"
5231 msgstr ""
5232
5233 #: mercurial/commands.py:727
5234 msgid "%s in state %s, but not in manifest1\n"
5235 msgstr ""
5236
5237 #: mercurial/commands.py:730
5238 msgid "%s in state %s, but also in manifest1\n"
5239 msgstr ""
5240
5241 #: mercurial/commands.py:733
5242 msgid "%s in state %s, but not in either manifest\n"
5243 msgstr ""
5244
5245 #: mercurial/commands.py:739
5246 msgid "%s in manifest1, but listed as state %s"
5247 msgstr ""
5248
5249 #: mercurial/commands.py:742
5250 msgid ".hg/dirstate inconsistent with current parent's manifest"
5251 msgstr ""
5252
5253 #: mercurial/commands.py:746
5254 msgid ""
5255 "show combined config settings from all hgrc files\n"
5256 "\n"
5257 " With no args, print names and values of all config items.\n"
5258 "\n"
5259 " With one arg of the form section.name, print just the value of\n"
5260 " that config item.\n"
5261 "\n"
5262 " With multiple args, print names and values of all config items\n"
5263 " with matching section names."
5264 msgstr ""
5265
5266 #: mercurial/commands.py:759
5267 msgid "only one config item permitted"
5268 msgstr ""
5269
5270 #: mercurial/commands.py:772
5271 msgid ""
5272 "manually set the parents of the current working directory\n"
5273 "\n"
5274 " This is useful for writing repository conversion tools, but should\n"
5275 " be used with care.\n"
5276 " "
5277 msgstr ""
5278
5279 #: mercurial/commands.py:788
5280 msgid "show the contents of the current dirstate"
5281 msgstr ""
5282
5283 #: mercurial/commands.py:806
5284 msgid "copy: %s -> %s\n"
5285 msgstr "kopi: %s -> %s\n"
5286
5287 #: mercurial/commands.py:809
5288 msgid "dump the contents of a data file revision"
5289 msgstr ""
5290
5291 #: mercurial/commands.py:814
5292 msgid "invalid revision identifier %s"
5293 msgstr "ugyldig revisionsidentification %s"
5294
5295 #: mercurial/commands.py:817
5296 msgid "parse and display a date"
5297 msgstr ""
5298
5299 #: mercurial/commands.py:829
5300 msgid "dump the contents of an index file"
5301 msgstr ""
5302
5303 #: mercurial/commands.py:844
5304 msgid "dump an index DAG as a .dot file"
5305 msgstr ""
5306
5307 #: mercurial/commands.py:856
5308 msgid "test Mercurial installation"
5309 msgstr ""
5310
5311 #: mercurial/commands.py:868
5312 msgid "Checking encoding (%s)...\n"
5313 msgstr ""
5314
5315 #: mercurial/commands.py:873
5316 msgid " (check that your locale is properly set)\n"
5317 msgstr ""
5318
5319 #: mercurial/commands.py:877
5320 msgid "Checking extensions...\n"
5321 msgstr ""
5322
5323 #: mercurial/commands.py:882
5324 msgid " One or more extensions could not be found"
5325 msgstr ""
5326
5327 #: mercurial/commands.py:883
5328 msgid " (check that you compiled the extensions)\n"
5329 msgstr ""
5330
5331 #: mercurial/commands.py:887
5332 msgid "Checking templates...\n"
5333 msgstr ""
5334
5335 #: mercurial/commands.py:893
5336 msgid " (templates seem to have been installed incorrectly)\n"
5337 msgstr ""
5338
5339 #: mercurial/commands.py:897
5340 msgid "Checking patch...\n"
5341 msgstr ""
5342
5343 #: mercurial/commands.py:910
5344 msgid " patch call failed:\n"
5345 msgstr ""
5346
5347 #: mercurial/commands.py:915
5348 msgid " unexpected patch output!\n"
5349 msgstr ""
5350
5351 #: mercurial/commands.py:919
5352 msgid " patch test failed!\n"
5353 msgstr ""
5354
5355 #: mercurial/commands.py:924
5356 msgid ""
5357 " (Current patch tool may be incompatible with patch, or misconfigured. "
5358 "Please check your .hgrc file)\n"
5359 msgstr ""
5360
5361 #: mercurial/commands.py:927
5362 msgid ""
5363 " Internal patcher failure, please report this error to http://www.selenic."
5364 "com/mercurial/bts\n"
5365 msgstr ""
5366
5367 #: mercurial/commands.py:935
5368 msgid "Checking commit editor...\n"
5369 msgstr ""
5370
5371 #: mercurial/commands.py:940
5372 msgid " No commit editor set and can't find vi in PATH\n"
5373 msgstr ""
5374
5375 #: mercurial/commands.py:941 mercurial/commands.py:944
5376 msgid " (specify a commit editor in your .hgrc file)\n"
5377 msgstr ""
5378
5379 #: mercurial/commands.py:943
5380 msgid " Can't find editor '%s' in PATH\n"
5381 msgstr ""
5382
5383 #: mercurial/commands.py:948
5384 msgid "Checking username...\n"
5385 msgstr ""
5386
5387 #: mercurial/commands.py:957
5388 msgid " (specify a username in your .hgrc file)\n"
5389 msgstr ""
5390
5391 #: mercurial/commands.py:960
5392 msgid "No problems detected\n"
5393 msgstr "Fandt ingen problemer\n"
5394
5395 #: mercurial/commands.py:962
5396 msgid "%s problems detected, please check your install!\n"
5397 msgstr ""
5398
5399 #: mercurial/commands.py:968
5400 msgid "dump rename information"
5401 msgstr ""
5402
5403 #: mercurial/commands.py:977
5404 msgid "%s renamed from %s:%s\n"
5405 msgstr "%s omdøbt fra %s:%s\n"
5406
5407 #: mercurial/commands.py:979
5408 msgid "%s not renamed\n"
5409 msgstr "%s ikke omdøbt\n"
5410
5411 #: mercurial/commands.py:982
5412 msgid "show how files match on given patterns"
5413 msgstr ""
5414
5415 #: mercurial/commands.py:995
5416 msgid ""
5417 "diff repository (or selected files)\n"
5418 "\n"
5419 " Show differences between revisions for the specified files.\n"
5420 "\n"
5421 " Differences between files are shown using the unified diff format.\n"
5422 "\n"
5423 " NOTE: diff may generate unexpected results for merges, as it will\n"
5424 " default to comparing against the working directory's first parent\n"
5425 " changeset if no revisions are specified.\n"
5426 "\n"
5427 " When two revision arguments are given, then changes are shown\n"
5428 " between those revisions. If only one revision is specified then\n"
5429 " that revision is compared to the working directory, and, when no\n"
5430 " revisions are specified, the working directory files are compared\n"
5431 " to its parent.\n"
5432 "\n"
5433 " Without the -a option, diff will avoid generating diffs of files\n"
5434 " it detects as binary. With -a, diff will generate a diff anyway,\n"
5435 " probably with undesirable results.\n"
5436 "\n"
5437 " Use the --git option to generate diffs in the git extended diff\n"
5438 " format. Read the diffs help topic for more information.\n"
5439 " "
5440 msgstr ""
5441
5442 #: mercurial/commands.py:1026
5443 msgid ""
5444 "dump the header and diffs for one or more changesets\n"
5445 "\n"
5446 " Print the changeset header and diffs for one or more revisions.\n"
5447 "\n"
5448 " The information shown in the changeset header is: author,\n"
5449 " changeset hash, parent(s) and commit comment.\n"
5450 "\n"
5451 " NOTE: export may generate unexpected diff output for merge changesets,\n"
5452 " as it will compare the merge changeset against its first parent only.\n"
5453 "\n"
5454 " Output may be to a file, in which case the name of the file is\n"
5455 " given using a format string. The formatting rules are as follows:\n"
5456 "\n"
5457 " %% literal \"%\" character\n"
5458 " %H changeset hash (40 bytes of hexadecimal)\n"
5459 " %N number of patches being generated\n"
5460 " %R changeset revision number\n"
5461 " %b basename of the exporting repository\n"
5462 " %h short-form changeset hash (12 bytes of hexadecimal)\n"
5463 " %n zero-padded sequence number, starting at 1\n"
5464 " %r zero-padded changeset revision number\n"
5465 "\n"
5466 " Without the -a option, export will avoid generating diffs of files\n"
5467 " it detects as binary. With -a, export will generate a diff anyway,\n"
5468 " probably with undesirable results.\n"
5469 "\n"
5470 " Use the --git option to generate diffs in the git extended diff\n"
5471 " format. Read the diffs help topic for more information.\n"
5472 "\n"
5473 " With the --switch-parent option, the diff will be against the second\n"
5474 " parent. It can be useful to review a merge.\n"
5475 " "
5476 msgstr ""
5477
5478 #: mercurial/commands.py:1059
5479 msgid "export requires at least one changeset"
5480 msgstr ""
5481
5482 #: mercurial/commands.py:1062
5483 msgid "exporting patches:\n"
5484 msgstr ""
5485
5486 #: mercurial/commands.py:1064
5487 msgid "exporting patch:\n"
5488 msgstr ""
5489
5490 #: mercurial/commands.py:1070
5491 msgid ""
5492 "search for a pattern in specified files and revisions\n"
5493 "\n"
5494 " Search revisions of files for a regular expression.\n"
5495 "\n"
5496 " This command behaves differently than Unix grep. It only accepts\n"
5497 " Python/Perl regexps. It searches repository history, not the\n"
5498 " working directory. It always prints the revision number in which\n"
5499 " a match appears.\n"
5500 "\n"
5501 " By default, grep only prints output for the first revision of a\n"
5502 " file in which it finds a match. To get it to print every revision\n"
5503 " that contains a change in match status (\"-\" for a match that\n"
5504 " becomes a non-match, or \"+\" for a non-match that becomes a match),\n"
5505 " use the --all flag.\n"
5506 " "
5507 msgstr ""
5508
5509 #: mercurial/commands.py:1091
5510 msgid "grep: invalid match pattern: %s\n"
5511 msgstr ""
5512
5513 #: mercurial/commands.py:1236
5514 msgid ""
5515 "show current repository heads or show branch heads\n"
5516 "\n"
5517 " With no arguments, show all repository head changesets.\n"
5518 "\n"
5519 " If branch or revisions names are given this will show the heads of\n"
5520 " the specified branches or the branches those revisions are tagged\n"
5521 " with.\n"
5522 "\n"
5523 " Repository \"heads\" are changesets that don't have child\n"
5524 " changesets. They are where development generally takes place and\n"
5525 " are the usual targets for update and merge operations.\n"
5526 "\n"
5527 " Branch heads are changesets that have a given branch tag, but have\n"
5528 " no child changesets with that tag. They are usually where\n"
5529 " development on the given branch takes place.\n"
5530 " "
5531 msgstr ""
5532
5533 #: mercurial/commands.py:1270
5534 msgid "no changes on branch %s containing %s are reachable from %s\n"
5535 msgstr ""
5536
5537 #: mercurial/commands.py:1274
5538 msgid "no changes on branch %s are reachable from %s\n"
5539 msgstr ""
5540
5541 #: mercurial/commands.py:1284
5542 msgid ""
5543 "show help for a given topic or a help overview\n"
5544 "\n"
5545 " With no arguments, print a list of commands and short help.\n"
5546 "\n"
5547 " Given a topic, extension, or command name, print help for that topic."
5548 msgstr ""
5549
5550 #: mercurial/commands.py:1293
5551 msgid "global options:"
5552 msgstr ""
5553
5554 #: mercurial/commands.py:1295
5555 msgid "use \"hg help\" for the full list of commands"
5556 msgstr "brug \"hg help\" for den fulde liste af kommandoer"
5557
5558 #: mercurial/commands.py:1299
5559 msgid "use \"hg help\" for the full list of commands or \"hg -v\" for details"
5560 msgstr ""
5561 "brug \"hg help\" for den fulde liste af kommandoer eller \"hg -v\" for "
5562 "detaljer"
5563
5564 #: mercurial/commands.py:1302
5565 msgid "use \"hg -v help%s\" to show aliases and global options"
5566 msgstr "brug \"hg -v help%s\" for at vise aliaser og globale valgmuligheder"
5567
5568 #: mercurial/commands.py:1305
5569 msgid "use \"hg -v help %s\" to show global options"
5570 msgstr "brug \"hg -v help %s\" for at vise globale valgmuligheder"
5571
5572 #: mercurial/commands.py:1317 mercurial/commands.py:1435
5573 #: mercurial/commands.py:1461
5574 msgid ""
5575 "list of commands:\n"
5576 "\n"
5577 msgstr ""
5578 "liste af kommandoer:\n"
5579 "\n"
5580
5581 #: mercurial/commands.py:1331
5582 msgid ""
5583 "\n"
5584 "aliases: %s\n"
5585 msgstr ""
5586 "\n"
5587 "aliaser %s:\n"
5588
5589 #: mercurial/commands.py:1336 mercurial/commands.py:1365
5590 #: mercurial/commands.py:1389 mercurial/commands.py:1408
5591 msgid "(no help text available)"
5592 msgstr "(ingen hjælpetekst tilgængelig)"
5593
5594 #: mercurial/commands.py:1344
5595 msgid "options:\n"
5596 msgstr "valgmuligheder:\n"
5597
5598 #: mercurial/commands.py:1370
5599 msgid "no commands defined\n"
5600 msgstr ""
5601
5602 #: mercurial/commands.py:1385
5603 msgid ""
5604 "\n"
5605 "enabled extensions:\n"
5606 "\n"
5607 msgstr ""
5608
5609 #: mercurial/commands.py:1394
5610 msgid " %s %s\n"
5611 msgstr ""
5612
5613 #: mercurial/commands.py:1421
5614 msgid "no help text available"
5615 msgstr "ingen hjælpetekst tilgængelig"
5616
5617 #: mercurial/commands.py:1423
5618 msgid "%s extension - %s\n"
5619 msgstr ""
5620
5621 #: mercurial/commands.py:1454
5622 msgid "Mercurial Distributed SCM\n"
5623 msgstr "Mercurial Distribueret SCM\n"
5624
5625 #: mercurial/commands.py:1459
5626 msgid ""
5627 "basic commands:\n"
5628 "\n"
5629 msgstr ""
5630 "basale kommandoer:\n"
5631 "\n"
5632
5633 #: mercurial/commands.py:1475 doc/gendoc.py:31
5634 msgid " (default: %s)"
5635 msgstr " (standard: %s)"
5636
5637 #: mercurial/commands.py:1479
5638 msgid ""
5639 "\n"
5640 "additional help topics:\n"
5641 "\n"
5642 msgstr ""
5643 "\n"
5644 "yderligere hjælpeemner:\n"
5645 "\n"
5646
5647 #: mercurial/commands.py:1499
5648 msgid ""
5649 "identify the working copy or specified revision\n"
5650 "\n"
5651 " With no revision, print a summary of the current state of the repo.\n"
5652 "\n"
5653 " With a path, do a lookup in another repository.\n"
5654 "\n"
5655 " This summary identifies the repository state using one or two parent\n"
5656 " hash identifiers, followed by a \"+\" if there are uncommitted changes\n"
5657 " in the working directory, a list of tags for this revision and a branch\n"
5658 " name for non-default branches.\n"
5659 " "
5660 msgstr ""
5661
5662 #: mercurial/commands.py:1568
5663 msgid ""
5664 "import an ordered set of patches\n"
5665 "\n"
5666 " Import a list of patches and commit them individually.\n"
5667 "\n"
5668 " If there are outstanding changes in the working directory, import\n"
5669 " will abort unless given the -f flag.\n"
5670 "\n"
5671 " You can import a patch straight from a mail message. Even patches\n"
5672 " as attachments work (body part must be type text/plain or\n"
5673 " text/x-patch to be used). From and Subject headers of email\n"
5674 " message are used as default committer and commit message. All\n"
5675 " text/plain body parts before first diff are added to commit\n"
5676 " message.\n"
5677 "\n"
5678 " If the imported patch was generated by hg export, user and description\n"
5679 " from patch override values from message headers and body. Values\n"
5680 " given on command line with -m and -u override these.\n"
5681 "\n"
5682 " If --exact is specified, import will set the working directory\n"
5683 " to the parent of each patch before applying it, and will abort\n"
5684 " if the resulting changeset has a different ID than the one\n"
5685 " recorded in the patch. This may happen due to character set\n"
5686 " problems or other deficiencies in the text patch format.\n"
5687 "\n"
5688 " With --similarity, hg will attempt to discover renames and copies\n"
5689 " in the patch in the same way as 'addremove'.\n"
5690 "\n"
5691 " To read a patch from standard input, use patch name \"-\".\n"
5692 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
5693 " "
5694 msgstr ""
5695
5696 #: mercurial/commands.py:1624
5697 msgid "applying patch from stdin\n"
5698 msgstr ""
5699
5700 #: mercurial/commands.py:1633
5701 msgid "no diffs found"
5702 msgstr ""
5703
5704 #: mercurial/commands.py:1646
5705 msgid ""
5706 "message:\n"
5707 "%s\n"
5708 msgstr ""
5709 "meddelse:\n"
5710 "%s\n"
5711
5712 #: mercurial/commands.py:1651
5713 msgid "not a mercurial patch"
5714 msgstr ""
5715
5716 #: mercurial/commands.py:1681
5717 msgid "patch is damaged or loses information"
5718 msgstr ""
5719
5720 #: mercurial/commands.py:1692
5721 msgid ""
5722 "show new changesets found in source\n"
5723 "\n"
5724 " Show new changesets found in the specified path/URL or the default\n"
5725 " pull location. These are the changesets that would be pulled if a pull\n"
5726 " was requested.\n"
5727 "\n"
5728 " For remote repository, using --bundle avoids downloading the changesets\n"
5729 " twice if the incoming is followed by a pull.\n"
5730 "\n"
5731 " See pull for valid source format details.\n"
5732 " "
5733 msgstr ""
5734
5735 #: mercurial/commands.py:1763
5736 msgid ""
5737 "create a new repository in the given directory\n"
5738 "\n"
5739 " Initialize a new repository in the given directory. If the given\n"
5740 " directory does not exist, it is created.\n"
5741 "\n"
5742 " If no directory is given, the current directory is used.\n"
5743 "\n"
5744 " It is possible to specify an ssh:// URL as the destination.\n"
5745 " Look at the help text for the pull command for important details\n"
5746 " about ssh:// URLs.\n"
5747 " "
5748 msgstr ""
5749
5750 #: mercurial/commands.py:1778
5751 msgid ""
5752 "locate files matching specific patterns\n"
5753 "\n"
5754 " Print all files under Mercurial control whose names match the\n"
5755 " given patterns.\n"
5756 "\n"
5757 " This command searches the entire repository by default. To search\n"
5758 " just the current directory and its subdirectories, use\n"
5759 " \"--include .\".\n"
5760 "\n"
5761 " If no patterns are given to match, this command prints all file\n"
5762 " names.\n"
5763 "\n"
5764 " If you want to feed the output of this command into the \"xargs\"\n"
5765 " command, use the \"-0\" option to both this command and \"xargs\".\n"
5766 " This will avoid the problem of \"xargs\" treating single filenames\n"
5767 " that contain white space as multiple filenames.\n"
5768 " "
5769 msgstr ""
5770
5771 #: mercurial/commands.py:1813
5772 msgid ""
5773 "show revision history of entire repository or files\n"
5774 "\n"
5775 " Print the revision history of the specified files or the entire\n"
5776 " project.\n"
5777 "\n"
5778 " File history is shown without following rename or copy history of\n"
5779 " files. Use -f/--follow with a file name to follow history across\n"
5780 " renames and copies. --follow without a file name will only show\n"
5781 " ancestors or descendants of the starting revision. --follow-first\n"
5782 " only follows the first parent of merge revisions.\n"
5783 "\n"
5784 " If no revision range is specified, the default is tip:0 unless\n"
5785 " --follow is set, in which case the working directory parent is\n"
5786 " used as the starting revision.\n"
5787 "\n"
5788 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
5789 "\n"
5790 " By default this command outputs: changeset id and hash, tags,\n"
5791 " non-trivial parents, user, date and time, and a summary for each\n"
5792 " commit. When the -v/--verbose switch is used, the list of changed\n"
5793 " files and full commit message is shown.\n"
5794 "\n"
5795 " NOTE: log -p may generate unexpected diff output for merge\n"
5796 " changesets, as it will compare the merge changeset against its\n"
5797 " first parent only. Also, the files: list will only reflect files\n"
5798 " that are different from BOTH parents.\n"
5799 "\n"
5800 " "
5801 msgstr ""
5802
5803 #: mercurial/commands.py:1855
5804 msgid ""
5805 "looks up all renames for a file (up to endrev) the first\n"
5806 " time the file is given. It indexes on the changerev and only\n"
5807 " parses the manifest if linkrev != changerev.\n"
5808 " Returns rename info for fn at changerev rev."
5809 msgstr ""
5810
5811 #: mercurial/commands.py:1945
5812 msgid ""
5813 "output the current or given revision of the project manifest\n"
5814 "\n"
5815 " Print a list of version controlled files for the given revision.\n"
5816 " If no revision is given, the parent of the working directory is used,\n"
5817 " or tip if no revision is checked out.\n"
5818 "\n"
5819 " The manifest is the list of files being version controlled. If no "
5820 "revision\n"
5821 " is given then the first parent of the working directory is used.\n"
5822 "\n"
5823 " With -v flag, print file permissions, symlink and executable bits. With\n"
5824 " --debug flag, print file revision hashes.\n"
5825 " "
5826 msgstr ""
5827
5828 #: mercurial/commands.py:1974
5829 msgid ""
5830 "merge working directory with another revision\n"
5831 "\n"
5832 " Merge the contents of the current working directory and the\n"
5833 " requested revision. Files that changed between either parent are\n"
5834 " marked as changed for the next commit and a commit must be\n"
5835 " performed before any further updates are allowed.\n"
5836 "\n"
5837 " If no revision is specified, the working directory's parent is a\n"
5838 " head revision, and the current branch contains exactly one other head,\n"
5839 " the other head is merged with by default. Otherwise, an explicit\n"
5840 " revision to merge with must be provided.\n"
5841 " "
5842 msgstr ""
5843
5844 #: mercurial/commands.py:1996
5845 msgid "branch '%s' has %d heads - please merge with an explicit rev"
5846 msgstr ""
5847
5848 #: mercurial/commands.py:2003
5849 msgid "branch '%s' has one head - please merge with an explicit rev"
5850 msgstr ""
5851
5852 #: mercurial/commands.py:2006
5853 msgid "there is nothing to merge"
5854 msgstr ""
5855
5856 #: mercurial/commands.py:2008
5857 msgid "%s - use \"hg update\" instead"
5858 msgstr "%s - brug \"hg update\" istedet"
5859
5860 #: mercurial/commands.py:2012
5861 msgid ""
5862 "working dir not at a head rev - use \"hg update\" or merge with an explicit "
5863 "rev"
5864 msgstr ""
5865
5866 #: mercurial/commands.py:2018
5867 msgid ""
5868 "show changesets not found in destination\n"
5869 "\n"
5870 " Show changesets not found in the specified destination repository or\n"
5871 " the default push location. These are the changesets that would be "
5872 "pushed\n"
5873 " if a push was requested.\n"
5874 "\n"
5875 " See pull for valid destination format details.\n"
5876 " "
5877 msgstr ""
5878
5879 #: mercurial/commands.py:2054
5880 msgid ""
5881 "show the parents of the working dir or revision\n"
5882 "\n"
5883 " Print the working directory's parent revisions. If a\n"
5884 " revision is given via --rev, the parent of that revision\n"
5885 " will be printed. If a file argument is given, revision in\n"
5886 " which the file was last changed (before the working directory\n"
5887 " revision or the argument to --rev if given) is printed.\n"
5888 " "
5889 msgstr ""
5890
5891 #: mercurial/commands.py:2071
5892 msgid "can only specify an explicit file name"
5893 msgstr ""
5894
5895 #: mercurial/commands.py:2082
5896 msgid "'%s' not found in manifest!"
5897 msgstr ""
5898
5899 #: mercurial/commands.py:2094
5900 msgid ""
5901 "show definition of symbolic path names\n"
5902 "\n"
5903 " Show definition of symbolic path name NAME. If no name is given, show\n"
5904 " definition of available names.\n"
5905 "\n"
5906 " Path names are defined in the [paths] section of /etc/mercurial/hgrc\n"
5907 " and $HOME/.hgrc. If run inside a repository, .hg/hgrc is used, too.\n"
5908 " "
5909 msgstr ""
5910
5911 #: mercurial/commands.py:2107
5912 msgid "not found!\n"
5913 msgstr "ikke fundet!\n"
5914
5915 #: mercurial/commands.py:2120
5916 msgid "not updating, since new heads added\n"
5917 msgstr "opdaterer ikke idet nye hoveder er tilføjet\n"
5918
5919 #: mercurial/commands.py:2122
5920 msgid "(run 'hg heads' to see heads, 'hg merge' to merge)\n"
5921 msgstr ""
5922
5923 #: mercurial/commands.py:2124
5924 msgid "(run 'hg update' to get a working copy)\n"
5925 msgstr ""
5926
5927 #: mercurial/commands.py:2127
5928 msgid ""
5929 "pull changes from the specified source\n"
5930 "\n"
5931 " Pull changes from a remote repository to a local one.\n"
5932 "\n"
5933 " This finds all changes from the repository at the specified path\n"
5934 " or URL and adds them to the local repository. By default, this\n"
5935 " does not update the copy of the project in the working directory.\n"
5936 "\n"
5937 " Valid URLs are of the form:\n"
5938 "\n"
5939 " local/filesystem/path (or file://local/filesystem/path)\n"
5940 " http://[user[:pass]@]host[:port]/[path]\n"
5941 " https://[user[:pass]@]host[:port]/[path]\n"
5942 " ssh://[user[:pass]@]host[:port]/[path]\n"
5943 "\n"
5944 " Paths in the local filesystem can either point to Mercurial\n"
5945 " repositories or to bundle files (as created by 'hg bundle' or\n"
5946 " 'hg incoming --bundle').\n"
5947 "\n"
5948 " An optional identifier after # indicates a particular branch, tag,\n"
5949 " or changeset to pull.\n"
5950 "\n"
5951 " Some notes about using SSH with Mercurial:\n"
5952 " - SSH requires an accessible shell account on the destination machine\n"
5953 " and a copy of hg in the remote path or specified with as remotecmd.\n"
5954 " - path is relative to the remote user's home directory by default.\n"
5955 " Use an extra slash at the start of a path to specify an absolute "
5956 "path:\n"
5957 " ssh://example.com//tmp/repository\n"
5958 " - Mercurial doesn't use its own compression via SSH; the right thing\n"
5959 " to do is to configure it in your ~/.ssh/config, e.g.:\n"
5960 " Host *.mylocalnetwork.example.com\n"
5961 " Compression no\n"
5962 " Host *\n"
5963 " Compression yes\n"
5964 " Alternatively specify \"ssh -C\" as your ssh command in your hgrc or\n"
5965 " with the --ssh command line option.\n"
5966 " "
5967 msgstr ""
5968
5969 #: mercurial/commands.py:2173
5970 msgid ""
5971 "Other repository doesn't support revision lookup, so a rev cannot be "
5972 "specified."
5973 msgstr ""
5974
5975 #: mercurial/commands.py:2181
5976 msgid ""
5977 "push changes to the specified destination\n"
5978 "\n"
5979 " Push changes from the local repository to the given destination.\n"
5980 "\n"
5981 " This is the symmetrical operation for pull. It helps to move\n"
5982 " changes from the current repository to a different one. If the\n"
5983 " destination is local this is identical to a pull in that directory\n"
5984 " from the current one.\n"
5985 "\n"
5986 " By default, push will refuse to run if it detects the result would\n"
5987 " increase the number of remote heads. This generally indicates the\n"
5988 " the client has forgotten to pull and merge before pushing.\n"
5989 "\n"
5990 " Valid URLs are of the form:\n"
5991 "\n"
5992 " local/filesystem/path (or file://local/filesystem/path)\n"
5993 " ssh://[user[:pass]@]host[:port]/[path]\n"
5994 " http://[user[:pass]@]host[:port]/[path]\n"
5995 " https://[user[:pass]@]host[:port]/[path]\n"
5996 "\n"
5997 " An optional identifier after # indicates a particular branch, tag,\n"
5998 " or changeset to push. If -r is used, the named changeset and all its\n"
5999 " ancestors will be pushed to the remote repository.\n"
6000 "\n"
6001 " Look at the help text for the pull command for important details\n"
6002 " about ssh:// URLs.\n"
6003 "\n"
6004 " Pushing to http:// and https:// URLs is only possible, if this\n"
6005 " feature is explicitly enabled on the remote Mercurial server.\n"
6006 " "
6007 msgstr ""
6008
6009 #: mercurial/commands.py:2216
6010 msgid "pushing to %s\n"
6011 msgstr "skubber til %s\n"
6012
6013 #: mercurial/commands.py:2223
6014 msgid ""
6015 "raw commit interface (DEPRECATED)\n"
6016 "\n"
6017 " (DEPRECATED)\n"
6018 " Lowlevel commit, for use in helper scripts.\n"
6019 "\n"
6020 " This command is not intended to be used by normal users, as it is\n"
6021 " primarily useful for importing from other SCMs.\n"
6022 "\n"
6023 " This command is now deprecated and will be removed in a future\n"
6024 " release, please use debugsetparents and commit instead.\n"
6025 " "
6026 msgstr ""
6027
6028 #: mercurial/commands.py:2235
6029 msgid "(the rawcommit command is deprecated)\n"
6030 msgstr ""
6031
6032 #: mercurial/commands.py:2251
6033 msgid ""
6034 "roll back an interrupted transaction\n"
6035 "\n"
6036 " Recover from an interrupted commit or pull.\n"
6037 "\n"
6038 " This command tries to fix the repository status after an interrupted\n"
6039 " operation. It should only be necessary when Mercurial suggests it.\n"
6040 " "
6041 msgstr ""
6042
6043 #: mercurial/commands.py:2263
6044 msgid ""
6045 "remove the specified files on the next commit\n"
6046 "\n"
6047 " Schedule the indicated files for removal from the repository.\n"
6048 "\n"
6049 " This only removes files from the current branch, not from the entire\n"
6050 " project history. -A can be used to remove only files that have already\n"
6051 " been deleted, -f can be used to force deletion, and -Af can be used\n"
6052 " to remove files from the next revision without deleting them.\n"
6053 "\n"
6054 " The following table details the behavior of remove for different file\n"
6055 " states (columns) and option combinations (rows). The file states are\n"
6056 " Added, Clean, Modified and Missing (as reported by hg status). The\n"
6057 " actions are Warn, Remove (from branch) and Delete (from disk).\n"
6058 "\n"
6059 " A C M !\n"
6060 " none W RD W R\n"
6061 " -f R RD RD R\n"
6062 " -A W W W R\n"
6063 " -Af R R R R\n"
6064 "\n"
6065 " This command schedules the files to be removed at the next commit.\n"
6066 " To undo a remove before that, see hg revert.\n"
6067 " "
6068 msgstr ""
6069
6070 #: mercurial/commands.py:2289
6071 msgid "no files specified"
6072 msgstr ""
6073
6074 #: mercurial/commands.py:2297
6075 msgid "not removing %s: file %s (use -f to force removal)\n"
6076 msgstr "fjerner ikke %s: filen %s (brug -f for at forcere fjernelsen)\n"
6077
6078 #: mercurial/commands.py:2304
6079 msgid "still exists"
6080 msgstr "eksisterer stadig"
6081
6082 #: mercurial/commands.py:2307
6083 msgid "is modified"
6084 msgstr "er modificeret"
6085
6086 #: mercurial/commands.py:2308
6087 msgid "has been marked for add"
6088 msgstr "er markeret som tilføjet"
6089
6090 #: mercurial/commands.py:2312 mercurial/commands.py:2482
6091 #: mercurial/cmdutil.py:303 mercurial/merge.py:298 mercurial/merge.py:308
6092 #: mercurial/merge.py:329
6093 msgid "removing %s\n"
6094 msgstr "fjerner %s\n"
6095
6096 #: mercurial/commands.py:2318
6097 msgid ""
6098 "rename files; equivalent of copy + remove\n"
6099 "\n"
6100 " Mark dest as copies of sources; mark sources for deletion. If\n"
6101 " dest is a directory, copies are put in that directory. If dest is\n"
6102 " a file, there can only be one source.\n"
6103 "\n"
6104 " By default, this command copies the contents of files as they\n"
6105 " stand in the working directory. If invoked with --after, the\n"
6106 " operation is recorded, but no copying is performed.\n"
6107 "\n"
6108 " This command takes effect in the next commit. To undo a rename\n"
6109 " before that, see hg revert.\n"
6110 " "
6111 msgstr ""
6112
6113 #: mercurial/commands.py:2338
6114 msgid ""
6115 "retry file merges from a merge or update\n"
6116 "\n"
6117 " This command will cleanly retry unresolved file merges using file\n"
6118 " revisions preserved from the last update or merge. To attempt to\n"
6119 " resolve all unresolved files, use the -a switch.\n"
6120 "\n"
6121 " This command will also allow listing resolved files and manually\n"
6122 " marking and unmarking files as resolved.\n"
6123 "\n"
6124 " The codes used to show the status of files are:\n"
6125 " U = unresolved\n"
6126 " R = resolved\n"
6127 " "
6128 msgstr ""
6129
6130 #: mercurial/commands.py:2355
6131 msgid "too many options specified"
6132 msgstr ""
6133
6134 #: mercurial/commands.py:2357
6135 msgid "can't specify --all and patterns"
6136 msgstr ""
6137
6138 #: mercurial/commands.py:2359
6139 msgid "no files or directories specified; use --all to remerge all files"
6140 msgstr ""
6141 "ingen filer eller mapper specificeret; brug --all for at gen-sammenføje alle "
6142 "filerne"
6143
6144 #: mercurial/commands.py:2379
6145 msgid ""
6146 "restore individual files or dirs to an earlier state\n"
6147 "\n"
6148 " (use update -r to check out earlier revisions, revert does not\n"
6149 " change the working dir parents)\n"
6150 "\n"
6151 " With no revision specified, revert the named files or directories\n"
6152 " to the contents they had in the parent of the working directory.\n"
6153 " This restores the contents of the affected files to an unmodified\n"
6154 " state and unschedules adds, removes, copies, and renames. If the\n"
6155 " working directory has two parents, you must explicitly specify the\n"
6156 " revision to revert to.\n"
6157 "\n"
6158 " Using the -r option, revert the given files or directories to their\n"
6159 " contents as of a specific revision. This can be helpful to \"roll\n"
6160 " back\" some or all of an earlier change.\n"
6161 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
6162 "\n"
6163 " Revert modifies the working directory. It does not commit any\n"
6164 " changes, or change the parent of the working directory. If you\n"
6165 " revert to a revision other than the parent of the working\n"
6166 " directory, the reverted files will thus appear modified\n"
6167 " afterwards.\n"
6168 "\n"
6169 " If a file has been deleted, it is restored. If the executable\n"
6170 " mode of a file was changed, it is reset.\n"
6171 "\n"
6172 " If names are given, all files matching the names are reverted.\n"
6173 " If no arguments are given, no files are reverted.\n"
6174 "\n"
6175 " Modified files are saved with a .orig suffix before reverting.\n"
6176 " To disable these backups, use --no-backup.\n"
6177 " "
6178 msgstr ""
6179
6180 #: mercurial/commands.py:2414 mercurial/commands.py:2930
6181 msgid "you can't specify a revision and a date"
6182 msgstr "du kan ikke specificeret en revision og en dato"
6183
6184 #: mercurial/commands.py:2418
6185 msgid "no files or directories specified; use --all to revert the whole repo"
6186 msgstr ""
6187 "ingen filer eller mapper specificeret; brug --all for at føre hele repo'et "
6188 "tilbage"
6189
6190 #: mercurial/commands.py:2481
6191 msgid "forgetting %s\n"
6192 msgstr "glemmer %s\n"
6193
6194 #: mercurial/commands.py:2484
6195 msgid "reverting %s\n"
6196 msgstr "fører %s tilbage\n"
6197
6198 #: mercurial/commands.py:2487
6199 msgid "undeleting %s\n"
6200 msgstr ""
6201
6202 #: mercurial/commands.py:2509
6203 msgid "saving current version of %s as %s\n"
6204 msgstr "gemmer nuværende version af %s som %s\n"
6205
6206 #: mercurial/commands.py:2531
6207 msgid "file not managed: %s\n"
6208 msgstr ""
6209
6210 #: mercurial/commands.py:2535
6211 msgid "no changes needed to %s\n"
6212 msgstr ""
6213
6214 #: mercurial/commands.py:2597
6215 msgid ""
6216 "roll back the last transaction\n"
6217 "\n"
6218 " This command should be used with care. There is only one level of\n"
6219 " rollback, and there is no way to undo a rollback. It will also\n"
6220 " restore the dirstate at the time of the last transaction, losing\n"
6221 " any dirstate changes since that time.\n"
6222 "\n"
6223 " Transactions are used to encapsulate the effects of all commands\n"
6224 " that create new changesets or propagate existing changesets into a\n"
6225 " repository. For example, the following commands are transactional,\n"
6226 " and their effects can be rolled back:\n"
6227 "\n"
6228 " commit\n"
6229 " import\n"
6230 " pull\n"
6231 " push (with this repository as destination)\n"
6232 " unbundle\n"
6233 "\n"
6234 " This command is not intended for use on public repositories. Once\n"
6235 " changes are visible for pull by other users, rolling a transaction\n"
6236 " back locally is ineffective (someone else may already have pulled\n"
6237 " the changes). Furthermore, a race is possible with readers of the\n"
6238 " repository; for example an in-progress pull from the repository\n"
6239 " may fail if a rollback is performed.\n"
6240 " "
6241 msgstr ""
6242
6243 #: mercurial/commands.py:2625
6244 msgid ""
6245 "print the root (top) of the current working dir\n"
6246 "\n"
6247 " Print the root directory of the current repository.\n"
6248 " "
6249 msgstr ""
6250
6251 #: mercurial/commands.py:2632
6252 msgid ""
6253 "export the repository via HTTP\n"
6254 "\n"
6255 " Start a local HTTP repository browser and pull server.\n"
6256 "\n"
6257 " By default, the server logs accesses to stdout and errors to\n"
6258 " stderr. Use the \"-A\" and \"-E\" options to log to files.\n"
6259 " "
6260 msgstr ""
6261
6262 #: mercurial/commands.py:2685
6263 msgid "listening at http://%s%s/%s (bound to %s:%d)\n"
6264 msgstr "lytter på http://%s%s/%s (bundet til %s:%d)\n"
6265
6266 #: mercurial/commands.py:2696
6267 msgid ""
6268 "show changed files in the working directory\n"
6269 "\n"
6270 " Show status of files in the repository. If names are given, only\n"
6271 " files that match are shown. Files that are clean or ignored or\n"
6272 " source of a copy/move operation, are not listed unless -c (clean),\n"
6273 " -i (ignored), -C (copies) or -A is given. Unless options described\n"
6274 " with \"show only ...\" are given, the options -mardu are used.\n"
6275 "\n"
6276 " Option -q/--quiet hides untracked (unknown and ignored) files\n"
6277 " unless explicitly requested with -u/--unknown or -i/-ignored.\n"
6278 "\n"
6279 " NOTE: status may appear to disagree with diff if permissions have\n"
6280 " changed or a merge has occurred. The standard diff format does not\n"
6281 " report permission changes and diff only reports changes relative\n"
6282 " to one merge parent.\n"
6283 "\n"
6284 " If one revision is given, it is used as the base revision.\n"
6285 " If two revisions are given, the difference between them is shown.\n"
6286 "\n"
6287 " The codes used to show the status of files are:\n"
6288 " M = modified\n"
6289 " A = added\n"
6290 " R = removed\n"
6291 " C = clean\n"
6292 " ! = deleted, but still tracked\n"
6293 " ? = not tracked\n"
6294 " I = ignored\n"
6295 " = the previous added file was copied from here\n"
6296 " "
6297 msgstr ""
6298
6299 #: mercurial/commands.py:2767
6300 msgid ""
6301 "add one or more tags for the current or given revision\n"
6302 "\n"
6303 " Name a particular revision using <name>.\n"
6304 "\n"
6305 " Tags are used to name particular revisions of the repository and are\n"
6306 " very useful to compare different revisions, to go back to significant\n"
6307 " earlier versions or to mark branch points as releases, etc.\n"
6308 "\n"
6309 " If no revision is given, the parent of the working directory is used,\n"
6310 " or tip if no revision is checked out.\n"
6311 "\n"
6312 " To facilitate version control, distribution, and merging of tags,\n"
6313 " they are stored as a file named \".hgtags\" which is managed\n"
6314 " similarly to other project files and can be hand-edited if\n"
6315 " necessary. The file '.hg/localtags' is used for local tags (not\n"
6316 " shared among repositories).\n"
6317 "\n"
6318 " See 'hg help dates' for a list of formats valid for -d/--date.\n"
6319 " "
6320 msgstr ""
6321
6322 #: mercurial/commands.py:2790
6323 msgid "tag names must be unique"
6324 msgstr ""
6325
6326 #: mercurial/commands.py:2793
6327 msgid "the name '%s' is reserved"
6328 msgstr ""
6329
6330 #: mercurial/commands.py:2795
6331 msgid "--rev and --remove are incompatible"
6332 msgstr ""
6333
6334 #: mercurial/commands.py:2803
6335 msgid "tag '%s' does not exist"
6336 msgstr ""
6337
6338 #: mercurial/commands.py:2805
6339 msgid "tag '%s' is not a %s tag"
6340 msgstr ""
6341
6342 #: mercurial/commands.py:2809
6343 msgid "Removed tag %s"
6344 msgstr ""
6345
6346 #: mercurial/commands.py:2813
6347 msgid "tag '%s' already exists (use -f to force)"
6348 msgstr ""
6349
6350 #: mercurial/commands.py:2821
6351 msgid "Added tag %s for changeset %s"
6352 msgstr ""
6353
6354 #: mercurial/commands.py:2831
6355 msgid ""
6356 "list repository tags\n"
6357 "\n"
6358 " This lists both regular and local tags. When the -v/--verbose switch\n"
6359 " is used, a third column \"local\" is printed for local tags.\n"
6360 " "
6361 msgstr ""
6362
6363 #: mercurial/commands.py:2862
6364 msgid ""
6365 "show the tip revision\n"
6366 "\n"
6367 " The tip revision (usually just called the tip) is the most\n"
6368 " recently added changeset in the repository, the most recently\n"
6369 " changed head.\n"
6370 "\n"
6371 " If you have just made a commit, that commit will be the tip. If\n"
6372 " you have just pulled changes from another repository, the tip of\n"
6373 " that repository becomes the current tip. The \"tip\" tag is special\n"
6374 " and cannot be renamed or assigned to a different changeset.\n"
6375 " "
6376 msgstr ""
6377
6378 #: mercurial/commands.py:2876
6379 msgid ""
6380 "apply one or more changegroup files\n"
6381 "\n"
6382 " Apply one or more compressed changegroup files generated by the\n"
6383 " bundle command.\n"
6384 " "
6385 msgstr ""
6386
6387 #: mercurial/commands.py:2896
6388 msgid ""
6389 "update working directory\n"
6390 "\n"
6391 " Update the repository's working directory to the specified revision,\n"
6392 " or the tip of the current branch if none is specified. Use null as\n"
6393 " the revision to remove the working copy (like 'hg clone -U').\n"
6394 "\n"
6395 " When the working dir contains no uncommitted changes, it will be\n"
6396 " replaced by the state of the requested revision from the repo. When\n"
6397 " the requested revision is on a different branch, the working dir\n"
6398 " will additionally be switched to that branch.\n"
6399 "\n"
6400 " When there are uncommitted changes, use option -C to discard them,\n"
6401 " forcibly replacing the state of the working dir with the requested\n"
6402 " revision.\n"
6403 "\n"
6404 " When there are uncommitted changes and option -C is not used, and\n"
6405 " the parent revision and requested revision are on the same branch,\n"
6406 " and one of them is an ancestor of the other, then the new working\n"
6407 " directory will contain the requested revision merged with the\n"
6408 " uncommitted changes. Otherwise, the update will fail with a\n"
6409 " suggestion to use 'merge' or 'update -C' instead.\n"
6410 "\n"
6411 " If you want to update just one file to an older revision, use revert.\n"
6412 "\n"
6413 " See 'hg help dates' for a list of formats valid for --date.\n"
6414 " "
6415 msgstr ""
6416
6417 #: mercurial/commands.py:2939
6418 msgid ""
6419 "verify the integrity of the repository\n"
6420 "\n"
6421 " Verify the integrity of the current repository.\n"
6422 "\n"
6423 " This will perform an extensive check of the repository's\n"
6424 " integrity, validating the hashes and checksums of each entry in\n"
6425 " the changelog, manifest, and tracked files, as well as the\n"
6426 " integrity of their crosslinks and indices.\n"
6427 " "
6428 msgstr ""
6429
6430 #: mercurial/commands.py:2951
6431 msgid "output version and copyright information"
6432 msgstr ""
6433
6434 #: mercurial/commands.py:2952
6435 msgid "Mercurial Distributed SCM (version %s)\n"
6436 msgstr "Mercurial Distributed SCM (version %s)\n"
6437
6438 #: mercurial/commands.py:2954
6439 msgid ""
6440 "\n"
6441 "Copyright (C) 2005-2008 Matt Mackall <mpm@selenic.com> and others\n"
6442 "This is free software; see the source for copying conditions. There is NO\n"
6443 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
6444 msgstr ""
6445
6446 #: mercurial/commands.py:2965
6447 msgid "repository root directory or symbolic path name"
6448 msgstr ""
6449
6450 #: mercurial/commands.py:2966
6451 msgid "change working directory"
6452 msgstr "skift arbejdsbibliotek"
6453
6454 #: mercurial/commands.py:2968
6455 msgid "do not prompt, assume 'yes' for any required answers"
6456 msgstr "spørg ikke, antag alle svar er 'ja'"
6457
6458 #: mercurial/commands.py:2969
6459 msgid "suppress output"
6460 msgstr "undertryk output"
6461
6462 #: mercurial/commands.py:2970
6463 msgid "enable additional output"
6464 msgstr ""
6465
6466 #: mercurial/commands.py:2971
6467 msgid "set/override config option"
6468 msgstr ""
6469
6470 #: mercurial/commands.py:2972
6471 msgid "enable debugging output"
6472 msgstr ""
6473
6474 #: mercurial/commands.py:2973
6475 msgid "start debugger"
6476 msgstr ""
6477
6478 #: mercurial/commands.py:2974
6479 msgid "set the charset encoding"
6480 msgstr ""
6481
6482 #: mercurial/commands.py:2975
6483 msgid "set the charset encoding mode"
6484 msgstr ""
6485
6486 #: mercurial/commands.py:2976
6487 msgid "print improved command execution profile"
6488 msgstr ""
6489
6490 #: mercurial/commands.py:2977
6491 msgid "print traceback on exception"
6492 msgstr ""
6493
6494 #: mercurial/commands.py:2978
6495 msgid "time how long the command takes"
6496 msgstr ""
6497
6498 #: mercurial/commands.py:2979
6499 msgid "print command execution profile"
6500 msgstr ""
6501
6502 #: mercurial/commands.py:2980
6503 msgid "output version information and exit"
6504 msgstr ""
6505
6506 #: mercurial/commands.py:2981
6507 msgid "display help and exit"
6508 msgstr ""
6509
6510 #: mercurial/commands.py:2985
6511 msgid "do not perform actions, just print output"
6512 msgstr "udfør ingen handlinger, udskriv kun outputttet"
6513
6514 #: mercurial/commands.py:2988
6515 msgid "specify ssh command to use"
6516 msgstr "specificer ssh kommandoen som skal bruges"
6517
6518 #: mercurial/commands.py:2989
6519 msgid "specify hg command to run on the remote side"
6520 msgstr ""
6521
6522 #: mercurial/commands.py:2993
6523 msgid "include names matching the given patterns"
6524 msgstr "inkluder navne som matcher det givne mønster"
6525
6526 #: mercurial/commands.py:2994
6527 msgid "exclude names matching the given patterns"
6528 msgstr "ekskluder navne som matcher det givne mønster"
6529
6530 #: mercurial/commands.py:2998 mercurial/commands.py:3392
6531 msgid "use <text> as commit message"
6532 msgstr "brug <tekst> som commit-besked"
6533
6534 #: mercurial/commands.py:2999
6535 msgid "read commit message from <file>"
6536 msgstr "læs commit-beskeden fra <fil>"
6537
6538 #: mercurial/commands.py:3003
6539 msgid "record datecode as commit date"
6540 msgstr ""
6541
6542 #: mercurial/commands.py:3004
6543 msgid "record user as committer"
6544 msgstr ""
6545
6546 #: mercurial/commands.py:3008
6547 msgid "display using template map file"
6548 msgstr ""
6549
6550 #: mercurial/commands.py:3009
6551 msgid "display with template"
6552 msgstr ""
6553
6554 #: mercurial/commands.py:3015
6555 msgid "do not show merges"
6556 msgstr ""
6557
6558 #: mercurial/commands.py:3019 mercurial/commands.py:3049
6559 msgid "treat all files as text"
6560 msgstr "behandl alle filer som tekst"
6561
6562 #: mercurial/commands.py:3021
6563 msgid "don't include dates in diff headers"
6564 msgstr ""
6565
6566 #: mercurial/commands.py:3025
6567 msgid "show which function each change is in"
6568 msgstr ""
6569
6570 #: mercurial/commands.py:3027
6571 msgid "ignore white space when comparing lines"
6572 msgstr ""
6573
6574 #: mercurial/commands.py:3029
6575 msgid "ignore changes in the amount of white space"
6576 msgstr ""
6577
6578 #: mercurial/commands.py:3031
6579 msgid "ignore changes whose lines are all blank"
6580 msgstr ""
6581
6582 #: mercurial/commands.py:3032
6583 msgid "number of lines of context to show"
6584 msgstr ""
6585
6586 #: mercurial/commands.py:3037
6587 msgid "guess renamed files by similarity (0<=s<=100)"
6588 msgstr ""
6589
6590 #: mercurial/commands.py:3041 mercurial/commands.py:3044
6591 #: mercurial/commands.py:3129 mercurial/commands.py:3157
6592 #: mercurial/commands.py:3172 mercurial/commands.py:3333
6593 #: mercurial/commands.py:3384
6594 msgid "[OPTION]... [FILE]..."
6595 msgstr ""
6596
6597 #: mercurial/commands.py:3047
6598 msgid "annotate the specified revision"
6599 msgstr ""
6600
6601 #: mercurial/commands.py:3048
6602 msgid "follow file copies and renames"
6603 msgstr ""
6604
6605 #: mercurial/commands.py:3050 mercurial/commands.py:3195
6606 msgid "list the author (long with -v)"
6607 msgstr ""
6608
6609 #: mercurial/commands.py:3051 mercurial/commands.py:3196
6610 msgid "list the date (short with -q)"
6611 msgstr ""
6612
6613 #: mercurial/commands.py:3052
6614 msgid "list the revision number (default)"
6615 msgstr ""
6616
6617 #: mercurial/commands.py:3053
6618 msgid "list the changeset"
6619 msgstr ""
6620
6621 #: mercurial/commands.py:3055
6622 msgid "show line number at the first appearance"
6623 msgstr ""
6624
6625 #: mercurial/commands.py:3057
6626 msgid "[-r REV] [-f] [-a] [-u] [-d] [-n] [-c] [-l] FILE..."
6627 msgstr ""
6628
6629 #: mercurial/commands.py:3060
6630 msgid "do not pass files through decoders"
6631 msgstr ""
6632
6633 #: mercurial/commands.py:3061
6634 msgid "directory prefix for files in archive"
6635 msgstr ""
6636
6637 #: mercurial/commands.py:3062
6638 msgid "revision to distribute"
6639 msgstr ""
6640
6641 #: mercurial/commands.py:3063
6642 msgid "type of distribution to create"
6643 msgstr ""
6644
6645 #: mercurial/commands.py:3065
6646 msgid "[OPTION]... DEST"
6647 msgstr ""
6648
6649 #: mercurial/commands.py:3069
6650 msgid "merge with old dirstate parent after backout"
6651 msgstr ""
6652
6653 #: mercurial/commands.py:3070
6654 msgid "parent to choose when backing out merge"
6655 msgstr ""
6656
6657 #: mercurial/commands.py:3071
6658 msgid "revision to backout"
6659 msgstr ""
6660
6661 #: mercurial/commands.py:3073
6662 msgid "[OPTION]... [-r] REV"
6663 msgstr ""
6664
6665 #: mercurial/commands.py:3076
6666 msgid "reset bisect state"
6667 msgstr "nulstil bisect"
6668
6669 #: mercurial/commands.py:3077
6670 msgid "mark changeset good"
6671 msgstr "marker ændring som god"
6672
6673 #: mercurial/commands.py:3078
6674 msgid "mark changeset bad"
6675 msgstr "marker ændring som dårlig"
6676
6677 #: mercurial/commands.py:3079
6678 msgid "skip testing changeset"
6679 msgstr ""
6680
6681 #: mercurial/commands.py:3080
6682 msgid "use command to check changeset state"
6683 msgstr ""
6684
6685 #: mercurial/commands.py:3081
6686 msgid "do not update to target"
6687 msgstr ""
6688
6689 #: mercurial/commands.py:3082
6690 msgid "[-gbsr] [-c CMD] [REV]"
6691 msgstr ""
6692
6693 #: mercurial/commands.py:3086
6694 msgid "set branch name even if it shadows an existing branch"
6695 msgstr ""
6696
6697 #: mercurial/commands.py:3087
6698 msgid "reset branch name to parent branch name"
6699 msgstr ""
6700
6701 #: mercurial/commands.py:3088
6702 msgid "[-fC] [NAME]"
6703 msgstr ""
6704
6705 #: mercurial/commands.py:3092
6706 msgid "show only branches that have unmerged heads"
6707 msgstr ""
6708
6709 #: mercurial/commands.py:3093
6710 msgid "[-a]"
6711 msgstr ""
6712
6713 #: mercurial/commands.py:3097 mercurial/commands.py:3231
6714 #: mercurial/commands.py:3283 mercurial/commands.py:3300
6715 msgid "run even when remote repository is unrelated"
6716 msgstr ""
6717
6718 #: mercurial/commands.py:3099
6719 msgid "a changeset up to which you would like to bundle"
6720 msgstr ""
6721
6722 #: mercurial/commands.py:3101
6723 msgid "a base changeset to specify instead of a destination"
6724 msgstr ""
6725
6726 #: mercurial/commands.py:3102
6727 msgid "bundle all changesets in the repository"
6728 msgstr ""
6729
6730 #: mercurial/commands.py:3103
6731 msgid "bundle compression type to use"
6732 msgstr ""
6733
6734 #: mercurial/commands.py:3105
6735 msgid "[-f] [-a] [-r REV]... [--base REV]... FILE [DEST]"
6736 msgstr ""
6737
6738 #: mercurial/commands.py:3108 mercurial/commands.py:3180
6739 msgid "print output to file with formatted name"
6740 msgstr ""
6741
6742 #: mercurial/commands.py:3109
6743 msgid "print the given revision"
6744 msgstr ""
6745
6746 #: mercurial/commands.py:3110
6747 msgid "apply any matching decode filter"
6748 msgstr ""
6749
6750 #: mercurial/commands.py:3112 mercurial/commands.py:3319
6751 msgid "[OPTION]... FILE..."
6752 msgstr ""
6753
6754 #: mercurial/commands.py:3116
6755 msgid "the clone will only contain a repository (no working copy)"
6756 msgstr ""
6757
6758 #: mercurial/commands.py:3118
6759 msgid "a changeset you would like to have after cloning"
6760 msgstr ""
6761
6762 #: mercurial/commands.py:3123
6763 msgid "[OPTION]... SOURCE [DEST]"
6764 msgstr ""
6765
6766 #: mercurial/commands.py:3127
6767 msgid "mark new/missing files as added/removed before committing"
6768 msgstr ""
6769
6770 #: mercurial/commands.py:3132
6771 msgid "record a copy that has already occurred"
6772 msgstr ""
6773
6774 #: mercurial/commands.py:3134 mercurial/commands.py:3324
6775 msgid "forcibly copy over an existing managed file"
6776 msgstr ""
6777
6778 #: mercurial/commands.py:3136
6779 msgid "[OPTION]... [SOURCE]... DEST"
6780 msgstr ""
6781
6782 #: mercurial/commands.py:3137
6783 msgid "[INDEX] REV1 REV2"
6784 msgstr ""
6785
6786 #: mercurial/commands.py:3141
6787 msgid "show the command options"
6788 msgstr ""
6789
6790 #: mercurial/commands.py:3142
6791 msgid "[-o] CMD"
6792 msgstr ""
6793
6794 #: mercurial/commands.py:3145
6795 msgid "try extended date formats"
6796 msgstr ""
6797
6798 #: mercurial/commands.py:3146
6799 msgid "[-e] DATE [RANGE]"
6800 msgstr ""
6801
6802 #: mercurial/commands.py:3147
6803 msgid "FILE REV"
6804 msgstr ""
6805
6806 #: mercurial/commands.py:3148
6807 msgid "[PATH]"
6808 msgstr ""
6809
6810 #: mercurial/commands.py:3149 mercurial/commands.py:3150
6811 msgid "FILE"
6812 msgstr ""
6813
6814 #: mercurial/commands.py:3154
6815 msgid "parent"
6816 msgstr ""
6817
6818 #: mercurial/commands.py:3155
6819 msgid "file list"
6820 msgstr ""
6821
6822 #: mercurial/commands.py:3160
6823 msgid "revision to rebuild to"
6824 msgstr ""
6825
6826 #: mercurial/commands.py:3161
6827 msgid "[-r REV] [REV]"
6828 msgstr ""
6829
6830 #: mercurial/commands.py:3164
6831 msgid "revision to debug"
6832 msgstr ""
6833
6834 #: mercurial/commands.py:3165
6835 msgid "[-r REV] FILE"
6836 msgstr ""
6837
6838 #: mercurial/commands.py:3167
6839 msgid "REV1 [REV2]"
6840 msgstr ""
6841
6842 #: mercurial/commands.py:3170
6843 msgid "do not display the saved mtime"
6844 msgstr ""
6845
6846 #: mercurial/commands.py:3171 mercurial/commands.py:3363
6847 msgid "[OPTION]..."
6848 msgstr ""
6849
6850 #: mercurial/commands.py:3177
6851 msgid "[OPTION]... [-r REV1 [-r REV2]] [FILE]..."
6852 msgstr ""
6853
6854 #: mercurial/commands.py:3181
6855 msgid "diff against the second parent"
6856 msgstr ""
6857
6858 #: mercurial/commands.py:3183
6859 msgid "[OPTION]... [-o OUTFILESPEC] REV..."
6860 msgstr ""
6861
6862 #: mercurial/commands.py:3186
6863 msgid "end fields with NUL"
6864 msgstr ""
6865
6866 #: mercurial/commands.py:3187
6867 msgid "print all revisions that match"
6868 msgstr ""
6869
6870 #: mercurial/commands.py:3189 mercurial/commands.py:3255
6871 msgid "follow changeset history, or file history across copies and renames"
6872 msgstr ""
6873
6874 #: mercurial/commands.py:3190
6875 msgid "ignore case when matching"
6876 msgstr ""
6877
6878 #: mercurial/commands.py:3192
6879 msgid "print only filenames and revs that match"
6880 msgstr ""
6881
6882 #: mercurial/commands.py:3193
6883 msgid "print matching line numbers"
6884 msgstr ""
6885
6886 #: mercurial/commands.py:3194
6887 msgid "search in given revision range"
6888 msgstr ""
6889
6890 #: mercurial/commands.py:3198
6891 msgid "[OPTION]... PATTERN [FILE]..."
6892 msgstr ""
6893
6894 #: mercurial/commands.py:3201
6895 msgid "show only heads which are descendants of rev"
6896 msgstr ""
6897
6898 #: mercurial/commands.py:3203
6899 msgid "[-r REV] [REV]..."
6900 msgstr ""
6901
6902 #: mercurial/commands.py:3204
6903 msgid "[TOPIC]"
6904 msgstr ""
6905
6906 #: mercurial/commands.py:3207
6907 msgid "identify the specified rev"
6908 msgstr ""
6909
6910 #: mercurial/commands.py:3208
6911 msgid "show local revision number"
6912 msgstr ""
6913
6914 #: mercurial/commands.py:3209
6915 msgid "show global revision id"
6916 msgstr ""
6917
6918 #: mercurial/commands.py:3210
6919 msgid "show branch"
6920 msgstr ""
6921
6922 #: mercurial/commands.py:3211
6923 msgid "show tags"
6924 msgstr ""
6925
6926 #: mercurial/commands.py:3212
6927 msgid "[-nibt] [-r REV] [SOURCE]"
6928 msgstr ""
6929
6930 #: mercurial/commands.py:3216
6931 msgid ""
6932 "directory strip option for patch. This has the same\n"
6933 "meaning as the corresponding patch option"
6934 msgstr ""
6935
6936 #: mercurial/commands.py:3218
6937 msgid "base path"
6938 msgstr ""
6939
6940 #: mercurial/commands.py:3220
6941 msgid "skip check for outstanding uncommitted changes"
6942 msgstr ""
6943
6944 #: mercurial/commands.py:3221
6945 msgid "don't commit, just update the working directory"
6946 msgstr ""
6947
6948 #: mercurial/commands.py:3223
6949 msgid "apply patch to the nodes from which it was generated"
6950 msgstr ""
6951
6952 #: mercurial/commands.py:3225
6953 msgid "Use any branch information in patch (implied by --exact)"
6954 msgstr ""
6955
6956 #: mercurial/commands.py:3227
6957 msgid "[OPTION]... PATCH..."
6958 msgstr ""
6959
6960 #: mercurial/commands.py:3232 mercurial/commands.py:3286
6961 msgid "show newest record first"
6962 msgstr ""
6963
6964 #: mercurial/commands.py:3233
6965 msgid "file to store the bundles into"
6966 msgstr ""
6967
6968 #: mercurial/commands.py:3235 mercurial/commands.py:3302
6969 msgid "a specific revision up to which you would like to pull"
6970 msgstr ""
6971
6972 #: mercurial/commands.py:3237
6973 msgid "[-p] [-n] [-M] [-f] [-r REV]... [--bundle FILENAME] [SOURCE]"
6974 msgstr ""
6975
6976 #: mercurial/commands.py:3242
6977 msgid "[-e CMD] [--remotecmd CMD] [DEST]"
6978 msgstr ""
6979
6980 #: mercurial/commands.py:3245
6981 msgid "search the repository as it stood at rev"
6982 msgstr ""
6983
6984 #: mercurial/commands.py:3247 mercurial/commands.py:3381
6985 msgid "end filenames with NUL, for use with xargs"
6986 msgstr ""
6987
6988 #: mercurial/commands.py:3249
6989 msgid "print complete paths from the filesystem root"
6990 msgstr ""
6991
6992 #: mercurial/commands.py:3251
6993 msgid "[OPTION]... [PATTERN]..."
6994 msgstr ""
6995
6996 #: mercurial/commands.py:3257
6997 msgid "only follow the first parent of merge changesets"
6998 msgstr ""
6999
7000 #: mercurial/commands.py:3258
7001 msgid "show revs matching date spec"
7002 msgstr ""
7003
7004 #: mercurial/commands.py:3259
7005 msgid "show copied files"
7006 msgstr ""
7007
7008 #: mercurial/commands.py:3260
7009 msgid "do case-insensitive search for a keyword"
7010 msgstr ""
7011
7012 #: mercurial/commands.py:3262
7013 msgid "include revs where files were removed"
7014 msgstr ""
7015
7016 #: mercurial/commands.py:3263
7017 msgid "show only merges"
7018 msgstr ""
7019
7020 #: mercurial/commands.py:3264
7021 msgid "revs committed by user"
7022 msgstr ""
7023
7024 #: mercurial/commands.py:3266
7025 msgid "show only changesets within the given named branch"
7026 msgstr ""
7027
7028 #: mercurial/commands.py:3267
7029 msgid "do not display revision or any of its ancestors"
7030 msgstr ""
7031
7032 #: mercurial/commands.py:3269
7033 msgid "[OPTION]... [FILE]"
7034 msgstr ""
7035
7036 #: mercurial/commands.py:3272
7037 msgid "revision to display"
7038 msgstr ""
7039
7040 #: mercurial/commands.py:3273
7041 msgid "[-r REV]"
7042 msgstr ""
7043
7044 #: mercurial/commands.py:3276
7045 msgid "force a merge with outstanding changes"
7046 msgstr ""
7047
7048 #: mercurial/commands.py:3279
7049 msgid "[-f] [[-r] REV]"
7050 msgstr ""
7051
7052 #: mercurial/commands.py:3285 mercurial/commands.py:3309
7053 msgid "a specific revision up to which you would like to push"
7054 msgstr ""
7055
7056 #: mercurial/commands.py:3288
7057 msgid "[-M] [-p] [-n] [-f] [-r REV]... [DEST]"
7058 msgstr ""
7059
7060 #: mercurial/commands.py:3291
7061 msgid "show parents from the specified rev"
7062 msgstr ""
7063
7064 #: mercurial/commands.py:3293
7065 msgid "hg parents [-r REV] [FILE]"
7066 msgstr ""
7067
7068 #: mercurial/commands.py:3294
7069 msgid "[NAME]"
7070 msgstr ""
7071
7072 #: mercurial/commands.py:3298
7073 msgid "update to new tip if changesets were pulled"
7074 msgstr ""
7075
7076 #: mercurial/commands.py:3304
7077 msgid "[-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]"
7078 msgstr ""
7079
7080 #: mercurial/commands.py:3307
7081 msgid "force push"
7082 msgstr ""
7083
7084 #: mercurial/commands.py:3311
7085 msgid "[-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]"
7086 msgstr ""
7087
7088 #: mercurial/commands.py:3315
7089 msgid "record delete for missing files"
7090 msgstr ""
7091
7092 #: mercurial/commands.py:3317
7093 msgid "remove (and delete) file even if added or modified"
7094 msgstr ""
7095
7096 #: mercurial/commands.py:3322
7097 msgid "record a rename that has already occurred"
7098 msgstr ""
7099
7100 #: mercurial/commands.py:3326
7101 msgid "[OPTION]... SOURCE... DEST"
7102 msgstr ""
7103
7104 #: mercurial/commands.py:3329
7105 msgid "remerge all unresolved files"
7106 msgstr ""
7107
7108 #: mercurial/commands.py:3330
7109 msgid "list state of files needing merge"
7110 msgstr ""
7111
7112 #: mercurial/commands.py:3331
7113 msgid "mark files as resolved"
7114 msgstr ""
7115
7116 #: mercurial/commands.py:3332
7117 msgid "unmark files as resolved"
7118 msgstr ""
7119
7120 #: mercurial/commands.py:3336
7121 msgid "revert all changes when no arguments given"
7122 msgstr ""
7123
7124 #: mercurial/commands.py:3337 mercurial/commands.py:3409
7125 msgid "tipmost revision matching date"
7126 msgstr ""
7127
7128 #: mercurial/commands.py:3338
7129 msgid "revision to revert to"
7130 msgstr ""
7131
7132 #: mercurial/commands.py:3339
7133 msgid "do not save backup copies of files"
7134 msgstr ""
7135
7136 #: mercurial/commands.py:3341
7137 msgid "[OPTION]... [-r REV] [NAME]..."
7138 msgstr ""
7139
7140 #: mercurial/commands.py:3346
7141 msgid "name of access log file to write to"
7142 msgstr ""
7143
7144 #: mercurial/commands.py:3349
7145 msgid "name of error log file to write to"
7146 msgstr ""
7147
7148 #: mercurial/commands.py:3350
7149 msgid "port to listen on (default: 8000)"
7150 msgstr ""
7151
7152 #: mercurial/commands.py:3351
7153 msgid "address to listen on (default: all interfaces)"
7154 msgstr ""
7155
7156 #: mercurial/commands.py:3352
7157 msgid "prefix path to serve from (default: server root)"
7158 msgstr ""
7159
7160 #: mercurial/commands.py:3354
7161 msgid "name to show in web pages (default: working dir)"
7162 msgstr ""
7163
7164 #: mercurial/commands.py:3355
7165 msgid "name of the webdir config file (serve more than one repo)"
7166 msgstr ""
7167
7168 #: mercurial/commands.py:3358
7169 msgid "for remote clients"
7170 msgstr ""
7171
7172 #: mercurial/commands.py:3359
7173 msgid "web templates to use"
7174 msgstr ""
7175
7176 #: mercurial/commands.py:3360
7177 msgid "template style to use"
7178 msgstr ""
7179
7180 #: mercurial/commands.py:3361
7181 msgid "use IPv6 in addition to IPv4"
7182 msgstr ""
7183
7184 #: mercurial/commands.py:3362
7185 msgid "SSL certificate file"
7186 msgstr ""
7187
7188 #: mercurial/commands.py:3366
7189 msgid "show untrusted configuration options"
7190 msgstr ""
7191
7192 #: mercurial/commands.py:3367
7193 msgid "[-u] [NAME]..."
7194 msgstr ""
7195
7196 #: mercurial/commands.py:3370
7197 msgid "show status of all files"
7198 msgstr ""
7199
7200 #: mercurial/commands.py:3371
7201 msgid "show only modified files"
7202 msgstr ""
7203
7204 #: mercurial/commands.py:3372
7205 msgid "show only added files"
7206 msgstr ""
7207
7208 #: mercurial/commands.py:3373
7209 msgid "show only removed files"
7210 msgstr ""
7211
7212 #: mercurial/commands.py:3374
7213 msgid "show only deleted (but tracked) files"
7214 msgstr ""
7215
7216 #: mercurial/commands.py:3375
7217 msgid "show only files without changes"
7218 msgstr ""
7219
7220 #: mercurial/commands.py:3376
7221 msgid "show only unknown (not tracked) files"
7222 msgstr ""
7223
7224 #: mercurial/commands.py:3377
7225 msgid "show only ignored files"
7226 msgstr ""
7227
7228 #: mercurial/commands.py:3379
7229 msgid "show source of copied files"
7230 msgstr ""
7231
7232 #: mercurial/commands.py:3382
7233 msgid "show difference from revision"
7234 msgstr ""
7235
7236 #: mercurial/commands.py:3387
7237 msgid "replace existing tag"
7238 msgstr ""
7239
7240 #: mercurial/commands.py:3388
7241 msgid "make the tag local"
7242 msgstr ""
7243
7244 #: mercurial/commands.py:3389
7245 msgid "revision to tag"
7246 msgstr ""
7247
7248 #: mercurial/commands.py:3390
7249 msgid "remove a tag"
7250 msgstr ""
7251
7252 #: mercurial/commands.py:3394
7253 msgid "[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME..."
7254 msgstr ""
7255
7256 #: mercurial/commands.py:3400
7257 msgid "[-p]"
7258 msgstr ""
7259
7260 #: mercurial/commands.py:3404
7261 msgid "update to new tip if changesets were unbundled"
7262 msgstr ""
7263
7264 #: mercurial/commands.py:3405
7265 msgid "[-u] FILE..."
7266 msgstr ""
7267
7268 #: mercurial/commands.py:3408
7269 msgid "overwrite locally modified files (no backup)"
7270 msgstr ""
7271
7272 #: mercurial/commands.py:3411
7273 msgid "[-C] [-d DATE] [[-r] REV]"
7274 msgstr ""
7275
7276 #: doc/gendoc.py:61
7277 msgid "OPTIONS"
7278 msgstr ""
7279
7280 #: doc/gendoc.py:66
7281 msgid "COMMANDS"
7282 msgstr ""
7283
7284 #: doc/gendoc.py:87
7285 msgid " options:\n"
7286 msgstr ""
7287
7288 #: doc/gendoc.py:99
7289 msgid ""
7290 " aliases: %s\n"
7291 "\n"
7292 msgstr " aliaser %s:\n\n"
7293
7294 #: hgext/convert/bzr.py:67
7295 msgid "%s is not a valid revision in current branch"
7296 msgstr ""
7297
7298 #: hgext/convert/bzr.py:76
7299 msgid "%s is not available in %s anymore"
7300 msgstr ""
7301
7302 #: hgext/convert/common.py:27
7303 msgid "cannot find required \"%s\" tool"
7304 msgstr ""
7305
7306 #: hgext/convert/common.py:239
7307 msgid "running: %s\n"
7308 msgstr "kører: %s\n"
7309
7310 #: hgext/convert/common.py:261
7311 msgid "%s error:\n"
7312 msgstr ""
7313
7314 #: hgext/convert/common.py:264
7315 msgid "%s %s"
7316 msgstr ""
7317
7318 #: hgext/convert/common.py:348
7319 msgid "could not open map file %r: %s"
7320 msgstr ""
7321
7322 #: hgext/convert/convcmd.py:58
7323 msgid "%s: missing or unsupported repository"
7324 msgstr ""
7325
7326 #: hgext/convert/convcmd.py:66
7327 msgid "convert: %s\n"
7328 msgstr ""
7329
7330 #: hgext/convert/convcmd.py:67
7331 msgid "%s: unknown repository type"
7332 msgstr ""
7333
7334 #: hgext/convert/convcmd.py:174
7335 msgid "cycle detected between %s and %s"
7336 msgstr ""
7337
7338 #: hgext/convert/convcmd.py:182
7339 msgid "not all revisions were sorted"
7340 msgstr ""
7341
7342 #: hgext/convert/convcmd.py:189
7343 msgid "Writing author map file %s\n"
7344 msgstr ""
7345
7346 #: hgext/convert/convcmd.py:206
7347 msgid "Overriding mapping for author %s, was %s, will be %s\n"
7348 msgstr ""
7349
7350 #: hgext/convert/convcmd.py:209
7351 msgid "mapping author %s to %s\n"
7352 msgstr ""
7353
7354 #: hgext/convert/convcmd.py:214
7355 msgid "Ignoring bad line in author map file %s: %s\n"
7356 msgstr ""
7357
7358 #: hgext/convert/convcmd.py:246
7359 msgid "spliced in %s as parents of %s\n"
7360 msgstr ""
7361
7362 #: hgext/convert/convcmd.py:261
7363 msgid "scanning source...\n"
7364 msgstr ""
7365
7366 #: hgext/convert/convcmd.py:264
7367 msgid "sorting...\n"
7368 msgstr ""
7369
7370 #: hgext/convert/convcmd.py:269
7371 msgid "converting...\n"
7372 msgstr ""
7373
7374 #: hgext/convert/convcmd.py:279
7375 msgid "source: %s\n"
7376 msgstr ""
7377
7378 #: hgext/convert/convcmd.py:314
7379 msgid "assuming destination %s\n"
7380 msgstr ""
7381
7382 #: hgext/convert/cvs.py:57
7383 msgid "revision %s is not a patchset number or date"
7384 msgstr ""
7385
7386 #: hgext/convert/cvs.py:68
7387 msgid "using builtin cvsps\n"
7388 msgstr ""
7389
7390 #: hgext/convert/cvs.py:184
7391 msgid "connecting to %s\n"
7392 msgstr ""
7393
7394 #: hgext/convert/cvs.py:231
7395 msgid "CVS pserver authentication failed"
7396 msgstr ""
7397
7398 #: hgext/convert/cvs.py:274
7399 msgid "server sucks"
7400 msgstr ""
7401
7402 #: hgext/convert/cvs.py:293
7403 msgid "%d bytes missing from remote file"
7404 msgstr ""
7405
7406 #: hgext/convert/cvs.py:328
7407 msgid "cvs server: %s\n"
7408 msgstr ""
7409
7410 #: hgext/convert/cvs.py:332
7411 msgid "unknown CVS response: %s"
7412 msgstr ""
7413
7414 #: hgext/convert/cvsps.py:92
7415 msgid "collecting CVS rlog\n"
7416 msgstr ""
7417
7418 #: hgext/convert/cvsps.py:161
7419 msgid "reading cvs log cache %s\n"
7420 msgstr ""
7421
7422 #: hgext/convert/cvsps.py:163
7423 msgid "cache has %d log entries\n"
7424 msgstr ""
7425
7426 #: hgext/convert/cvsps.py:165
7427 msgid "error reading cache: %r\n"
7428 msgstr ""
7429
7430 #: hgext/convert/cvsps.py:192
7431 msgid "prefix=%r directory=%r root=%r\n"
7432 msgstr ""
7433
7434 #: hgext/convert/cvsps.py:237
7435 msgid "RCS file must be followed by working file"
7436 msgstr ""
7437
7438 #: hgext/convert/cvsps.py:272
7439 msgid "must have at least some revisions"
7440 msgstr ""
7441
7442 #: hgext/convert/cvsps.py:279
7443 msgid "expected revision number"
7444 msgstr ""
7445
7446 #: hgext/convert/cvsps.py:288
7447 msgid "revision must be followed by date line"
7448 msgstr ""
7449
7450 #: hgext/convert/cvsps.py:383
7451 msgid "writing cvs log cache %s\n"
7452 msgstr ""
7453
7454 #: hgext/convert/cvsps.py:388
7455 msgid "%d log entries\n"
7456 msgstr ""
7457
7458 #: hgext/convert/cvsps.py:409
7459 msgid "creating changesets\n"
7460 msgstr ""
7461
7462 #: hgext/convert/cvsps.py:590
7463 msgid "%d changeset entries\n"
7464 msgstr ""
7465
7466 #: hgext/convert/darcs.py:33
7467 msgid "Python ElementTree module is not available"
7468 msgstr ""
7469
7470 #: hgext/convert/darcs.py:69 hgext/convert/gnuarch.py:121
7471 msgid "cleaning up %s\n"
7472 msgstr ""
7473
7474 #: hgext/convert/darcs.py:118 hgext/convert/gnuarch.py:129
7475 msgid "internal calling inconsistency"
7476 msgstr ""
7477
7478 #: hgext/convert/filemap.py:31
7479 msgid "errors in filemap"
7480 msgstr ""
7481
7482 #: hgext/convert/filemap.py:37
7483 msgid "%s:%d: %r already in %s list\n"
7484 msgstr ""
7485
7486 #: hgext/convert/filemap.py:62
7487 msgid "%s:%d: unknown directive %r\n"
7488 msgstr ""
7489
7490 #: hgext/convert/filemap.py:226
7491 msgid "source repository doesn't support --filemap"
7492 msgstr ""
7493
7494 #: hgext/convert/gnuarch.py:28
7495 msgid "%s does not look like a GNU Arch repo"
7496 msgstr ""
7497
7498 #: hgext/convert/gnuarch.py:38
7499 msgid "cannot find a GNU Arch tool"
7500 msgstr ""
7501
7502 #: hgext/convert/gnuarch.py:76
7503 msgid "analyzing tree version %s...\n"
7504 msgstr ""
7505
7506 #: hgext/convert/gnuarch.py:80
7507 msgid ""
7508 "tree analysis stopped because it points to an unregistered archive %s...\n"
7509 msgstr ""
7510
7511 #: hgext/convert/gnuarch.py:191
7512 msgid "applying revision %s...\n"
7513 msgstr ""
7514
7515 #: hgext/convert/gnuarch.py:201
7516 msgid "computing changeset between %s and %s...\n"
7517 msgstr ""
7518
7519 #: hgext/convert/gnuarch.py:250
7520 msgid "obtaining revision %s...\n"
7521 msgstr ""
7522
7523 #: hgext/convert/gnuarch.py:253
7524 msgid "analysing revision %s...\n"
7525 msgstr ""
7526
7527 #: hgext/convert/gnuarch.py:283
7528 msgid "could not parse cat-log of %s"
7529 msgstr ""
7530
7531 #: hgext/convert/hg.py:35 hgext/convert/hg.py:44
7532 msgid "%s is not a local Mercurial repo"
7533 msgstr ""
7534
7535 #: hgext/convert/hg.py:41
7536 msgid "initializing destination %s repository\n"
7537 msgstr ""
7538
7539 #: hgext/convert/hg.py:54
7540 msgid "run hg sink pre-conversion action\n"
7541 msgstr ""
7542
7543 #: hgext/convert/hg.py:59
7544 msgid "run hg sink post-conversion action\n"
7545 msgstr ""
7546
7547 #: hgext/convert/hg.py:107
7548 msgid "pulling from %s into %s\n"
7549 msgstr ""
7550
7551 #: hgext/convert/hg.py:180
7552 msgid "updating tags\n"
7553 msgstr ""
7554
7555 #: hgext/convert/hg.py:217
7556 msgid "%s is not a valid start revision"
7557 msgstr ""
7558
7559 #: hgext/convert/hg.py:290
7560 msgid "ignoring: %s\n"
7561 msgstr "ignorerer: %s\n"
7562
7563 #: hgext/convert/hg.py:333
7564 msgid "run hg source pre-conversion action\n"
7565 msgstr ""
7566
7567 #: hgext/convert/hg.py:336
7568 msgid "run hg source post-conversion action\n"
7569 msgstr ""
7570
7571 #: hgext/convert/monotone.py:42
7572 msgid "%s does not look like a monotone repo"
7573 msgstr ""
7574
7575 #: hgext/convert/monotone.py:158
7576 msgid "copying file in renamed dir from '%s' to '%s'"
7577 msgstr ""
7578
7579 #: hgext/convert/subversion.py:158
7580 msgid "Subversion python bindings could not be loaded"
7581 msgstr ""
7582
7583 #: hgext/convert/subversion.py:163
7584 msgid "Subversion python bindings %d.%d found, 1.4 or later required"
7585 msgstr ""
7586
7587 #: hgext/convert/subversion.py:166
7588 msgid "Subversion python bindings are too old, 1.4 or later required"
7589 msgstr ""
7590
7591 #: hgext/convert/subversion.py:205
7592 msgid "svn: revision %s is not an integer"
7593 msgstr ""
7594
7595 #: hgext/convert/subversion.py:213
7596 msgid "svn: start revision %s is not an integer"
7597 msgstr ""
7598
7599 #: hgext/convert/subversion.py:223 hgext/convert/subversion.py:284
7600 msgid "no revision found in module %s"
7601 msgstr ""
7602
7603 #: hgext/convert/subversion.py:265
7604 msgid "expected %s to be at %r, but not found"
7605 msgstr ""
7606
7607 #: hgext/convert/subversion.py:268
7608 msgid "found %s at %r\n"
7609 msgstr ""
7610
7611 #: hgext/convert/subversion.py:303
7612 msgid "ignoring empty branch %s\n"
7613 msgstr ""
7614
7615 #: hgext/convert/subversion.py:306
7616 msgid "found branch %s at %d\n"
7617 msgstr ""
7618
7619 #: hgext/convert/subversion.py:312
7620 msgid "svn: start revision is not supported with with more than one branch"
7621 msgstr ""
7622
7623 #: hgext/convert/subversion.py:316
7624 msgid "svn: no revision found after start revision %d"
7625 msgstr ""
7626
7627 #: hgext/convert/subversion.py:442
7628 msgid "no tags found at revision %d\n"
7629 msgstr ""
7630
7631 #: hgext/convert/subversion.py:483 hgext/convert/subversion.py:519
7632 msgid "ignoring foreign branch %r\n"
7633 msgstr ""
7634
7635 #: hgext/convert/subversion.py:495
7636 msgid "%s not found up to revision %d"
7637 msgstr ""
7638
7639 #: hgext/convert/subversion.py:511
7640 msgid "branch renamed from %s to %s at %d\n"
7641 msgstr ""
7642
7643 #: hgext/convert/subversion.py:550
7644 msgid "reparent to %s\n"
7645 msgstr ""
7646
7647 #: hgext/convert/subversion.py:582
7648 msgid "copied to %s from %s@%s\n"
7649 msgstr ""
7650
7651 #: hgext/convert/subversion.py:586
7652 msgid "gone from %s\n"
7653 msgstr ""
7654
7655 #: hgext/convert/subversion.py:604
7656 msgid "found parent directory %s\n"
7657 msgstr ""
7658
7659 #: hgext/convert/subversion.py:608
7660 msgid "base, entry %s %s\n"
7661 msgstr ""
7662
7663 #: hgext/convert/subversion.py:614
7664 msgid "munge-o-matic\n"
7665 msgstr ""
7666
7667 #: hgext/convert/subversion.py:619
7668 msgid "info: %s %s %s %s\n"
7669 msgstr ""
7670
7671 #: hgext/convert/subversion.py:660
7672 msgid "unknown path in revision %d: %s\n"
7673 msgstr ""
7674
7675 #: hgext/convert/subversion.py:706
7676 msgid "mark %s came from %s:%d\n"
7677 msgstr ""
7678
7679 #: hgext/convert/subversion.py:731
7680 msgid "parsing revision %d (%d changes)\n"
7681 msgstr ""
7682
7683 #: hgext/convert/subversion.py:757
7684 msgid "found parent of branch %s at %d: %s\n"
7685 msgstr ""
7686
7687 #: hgext/convert/subversion.py:760
7688 msgid "no copyfrom path, don't know what to do.\n"
7689 msgstr ""
7690
7691 #: hgext/convert/subversion.py:799
7692 msgid "fetching revision log for \"%s\" from %d to %d\n"
7693 msgstr ""
7694
7695 #: hgext/convert/subversion.py:813
7696 msgid "skipping blacklisted revision %d\n"
7697 msgstr ""
7698
7699 #: hgext/convert/subversion.py:817
7700 msgid "revision %d has no entries\n"
7701 msgstr ""
7702
7703 #: hgext/convert/subversion.py:842
7704 msgid "svn: branch has no revision %s"
7705 msgstr ""
7706
7707 #: hgext/convert/subversion.py:899
7708 msgid "%r is not under %r, ignoring\n"
7709 msgstr ""
7710
7711 #: hgext/convert/subversion.py:983
7712 msgid "initializing svn repo %r\n"
7713 msgstr ""
7714
7715 #: hgext/convert/subversion.py:992
7716 msgid "initializing svn wc %r\n"
7717 msgstr ""
7718
7719 #: hgext/convert/subversion.py:1151
7720 msgid "unexpected svn output:\n"
7721 msgstr ""
7722
7723 #: hgext/convert/subversion.py:1153
7724 msgid "unable to cope with svn output"
7725 msgstr ""
7726
7727 #: hgext/convert/subversion.py:1167
7728 msgid "XXX TAGS NOT IMPLEMENTED YET\n"
7729 msgstr ""
7730
7731 #: hgext/inotify/client.py:45
7732 msgid "(inotify: received response from incompatible server version %d)\n"
7733 msgstr ""
7734
7735 #: hgext/inotify/server.py:106
7736 msgid "this system does not seem to support inotify"
7737 msgstr ""
7738
7739 #: hgext/inotify/server.py:108
7740 msgid "*** the current per-user limit on the number of inotify watches is %s\n"
7741 msgstr ""
7742
7743 #: hgext/inotify/server.py:110
7744 msgid "*** this limit is too low to watch every directory in this repository\n"
7745 msgstr ""
7746
7747 #: hgext/inotify/server.py:112
7748 msgid "*** counting directories: "
7749 msgstr ""
7750
7751 #: hgext/inotify/server.py:114
7752 msgid "found %d\n"
7753 msgstr ""
7754
7755 #: hgext/inotify/server.py:118
7756 msgid "*** to raise the limit from %d to %d (run as root):\n"
7757 msgstr ""
7758
7759 #: hgext/inotify/server.py:120
7760 msgid "*** echo %d > %s\n"
7761 msgstr ""
7762
7763 #: hgext/inotify/server.py:121
7764 msgid "cannot watch %s until inotify watch limit is raised"
7765 msgstr ""
7766
7767 #: hgext/inotify/server.py:149
7768 msgid "inotify service not available: %s"
7769 msgstr ""
7770
7771 #: hgext/inotify/server.py:198
7772 msgid "watching %r\n"
7773 msgstr ""
7774
7775 #: hgext/inotify/server.py:210
7776 msgid "watching directories under %r\n"
7777 msgstr ""
7778
7779 #: hgext/inotify/server.py:293
7780 msgid "status: %r dir(%d) -> %s\n"
7781 msgstr ""
7782
7783 #: hgext/inotify/server.py:296
7784 msgid "status: %r %s -> %s\n"
7785 msgstr ""
7786
7787 #: hgext/inotify/server.py:356
7788 msgid "%s dirstate reload\n"
7789 msgstr ""
7790
7791 #: hgext/inotify/server.py:359
7792 msgid "%s end dirstate reload\n"
7793 msgstr ""
7794
7795 #: hgext/inotify/server.py:386
7796 msgid "rescanning due to .hgignore change\n"
7797 msgstr ""
7798
7799 #: hgext/inotify/server.py:461
7800 msgid "%s event: created %s\n"
7801 msgstr ""
7802
7803 #: hgext/inotify/server.py:471
7804 msgid "%s event: deleted %s\n"
7805 msgstr ""
7806
7807 #: hgext/inotify/server.py:481
7808 msgid "%s event: modified %s\n"
7809 msgstr ""
7810
7811 #: hgext/inotify/server.py:488
7812 msgid "filesystem containing %s was unmounted\n"
7813 msgstr ""
7814
7815 #: hgext/inotify/server.py:494
7816 msgid "%s readable: %d bytes\n"
7817 msgstr ""
7818
7819 #: hgext/inotify/server.py:499
7820 msgid "%s below threshold - unhooking\n"
7821 msgstr ""
7822
7823 #: hgext/inotify/server.py:510
7824 msgid "%s reading %d events\n"
7825 msgstr ""
7826
7827 #: hgext/inotify/server.py:527
7828 msgid "%s hooking back up with %d bytes readable\n"
7829 msgstr ""
7830
7831 #: hgext/inotify/server.py:535
7832 msgid "%s processing %d deferred events as %d\n"
7833 msgstr ""
7834
7835 #: hgext/inotify/server.py:563 hgext/inotify/server.py:578
7836 msgid "could not start server: %s"
7837 msgstr ""
7838
7839 #: hgext/inotify/server.py:598
7840 msgid "received query from incompatible client version %d\n"
7841 msgstr ""
7842
7843 #: hgext/inotify/server.py:606
7844 msgid "answering query for %r\n"
7845 msgstr ""
7846
7847 #: hgext/inotify/server.py:684
7848 msgid "finished setup\n"
7849 msgstr ""
7850
7851 #: hgext/inotify/server.py:696
7852 msgid "polling: no timeout\n"
7853 msgstr ""
7854
7855 #: hgext/inotify/server.py:698
7856 msgid "polling: %sms timeout\n"
7857 msgstr ""
7858
7859 #: mercurial/archival.py:33
7860 msgid "archive prefix contains illegal components"
7861 msgstr "arkivpræfix indeholder ugyldige komponenter"
7862
7863 #: mercurial/archival.py:162
7864 msgid "cannot give prefix when archiving to files"
7865 msgstr "kan ikke give præfix ved arkivering til filer"
7866
7867 #: mercurial/archival.py:212
7868 msgid "unknown archive type '%s'"
7869 msgstr "ukendt arkivtype '%s'"
7870
7871 #: mercurial/bundlerepo.py:42
7872 msgid "invalid changegroup"
7873 msgstr ""
7874
7875 #: mercurial/bundlerepo.py:52 mercurial/revlog.py:1214
7876 msgid "unknown parent"
7877 msgstr "ukendt forældre"
7878
7879 #: mercurial/bundlerepo.py:122 mercurial/revlog.py:989
7880 msgid "integrity check failed on %s:%d"
7881 msgstr "integritetstjek fejlede på %s:%d"
7882
7883 #: mercurial/bundlerepo.py:173 mercurial/changegroup.py:136
7884 msgid "%s: not a Mercurial bundle file"
7885 msgstr "%s er ikke en Mercurial bundle fil"
7886
7887 #: mercurial/bundlerepo.py:175 mercurial/changegroup.py:138
7888 msgid "%s: unknown bundle version"
7889 msgstr "%s: ukendt bundle version"
7890
7891 #: mercurial/bundlerepo.py:206 mercurial/changegroup.py:140
7892 msgid "%s: unknown bundle compression type"
7893 msgstr "%s: ukendt bundle kompressionstype"
7894
7895 #: mercurial/bundlerepo.py:276
7896 msgid "cannot create new bundle repository"
7897 msgstr ""
7898
7899 #: mercurial/changegroup.py:23
7900 msgid "premature EOF reading chunk (got %d bytes, expected %d)"
7901 msgstr "for tidlig EOF ved læsning af chunk (fik %d bytes, forventede %d)"
7902
7903 #: mercurial/changelog.py:182
7904 msgid "username %s contains a newline"
7905 msgstr "brugernavn %s indeholder et linieskift"
7906
7907 #: mercurial/cmdutil.py:80
7908 msgid "options --message and --logfile are mutually exclusive"
7909 msgstr ""
7910
7911 #: mercurial/cmdutil.py:89
7912 msgid "can't read commit message '%s': %s"
7913 msgstr "Kan ikke lase commit besked '%s': %s"
7914
7915 #: mercurial/cmdutil.py:134 mercurial/cmdutil.py:138
7916 msgid "too many revisions specified"
7917 msgstr "der er specificeret for mange revisioner"
7918
7919 #: mercurial/cmdutil.py:212
7920 msgid "invalid format spec '%%%s' in output file name"
7921 msgstr ""
7922
7923 #: mercurial/cmdutil.py:312
7924 msgid "recording removal of %s as rename to %s (%d%% similar)\n"
7925 msgstr "noterer fjernelse af %s som en omdøbning til %s (%d%% lighed)\n"
7926
7927 #: mercurial/cmdutil.py:337
7928 msgid "%s: not copying - file is not managed\n"
7929 msgstr "%s: kopierer ikke - filen er ikke versionsstyret\n"
7930
7931 #: mercurial/cmdutil.py:339
7932 msgid "%s: not copying - file has been marked for remove\n"
7933 msgstr "%s: kopierer ikke - filen er markeret til sletning\n"
7934
7935 #: mercurial/cmdutil.py:360
7936 msgid "%s: not overwriting - %s collides with %s\n"
7937 msgstr "%s: overskriver ikke - %s kolliderer med %s\n"
7938
7939 #: mercurial/cmdutil.py:369
7940 msgid "%s: not overwriting - file exists\n"
7941 msgstr "%s: overskriver ikke - filen eksisterer\n"
7942
7943 #: mercurial/cmdutil.py:386
7944 msgid "%s: deleted in working copy\n"
7945 msgstr "%s: slettet i arbejdskopien\n"
7946
7947 #: mercurial/cmdutil.py:388
7948 msgid "%s: cannot copy - %s\n"
7949 msgstr "%s: kan ikke kopiere - %s\n"
7950
7951 #: mercurial/cmdutil.py:394
7952 msgid "%s %s to %s\n"
7953 msgstr "%s: %s til %s\n"
7954
7955 #: mercurial/cmdutil.py:406
7956 msgid "%s has not been committed yet, so no copy data will be stored for %s.\n"
7957 msgstr ""
7958 "%s er endnu ikke comitted, så der vil ikke blive gemt kopieringsdata for %"
7959 "s.\n"
7960
7961 #: mercurial/cmdutil.py:486
7962 msgid "no source or destination specified"
7963 msgstr "ingen kilde eller destination angivet"
7964
7965 #: mercurial/cmdutil.py:488
7966 msgid "no destination specified"
7967 msgstr "ingen destination angivet"
7968
7969 #: mercurial/cmdutil.py:493
7970 msgid "with multiple sources, destination must be an existing directory"
7971 msgstr ""
7972 "destinationen skal være en eksisterende mappe når der angivet flere kilder"
7973
7974 #: mercurial/cmdutil.py:496
7975 msgid "destination %s is not a directory"
7976 msgstr "destinationen %s er ikke en mappe"
7977
7978 #: mercurial/cmdutil.py:508
7979 msgid "no files to copy"
7980 msgstr "ingen filer at kopiere"
7981
7982 #: mercurial/cmdutil.py:517
7983 msgid "(consider using --after)\n"
7984 msgstr "(overvej at bruge --after)\n"
7985
7986 #: mercurial/cmdutil.py:627
7987 msgid "changeset: %d:%s\n"
7988 msgstr "ændring: %d:%s\n"
7989
7990 #: mercurial/cmdutil.py:632
7991 msgid "branch: %s\n"
7992 msgstr "gren: %s\n"
7993
7994 #: mercurial/cmdutil.py:634
7995 msgid "tag: %s\n"
7996 msgstr "mærkat: %s\n"
7997
7998 #: mercurial/cmdutil.py:636
7999 msgid "parent: %d:%s\n"
8000 msgstr "forældre: %d:%s\n"
8001
8002 #: mercurial/cmdutil.py:639
8003 msgid "manifest: %d:%s\n"
8004 msgstr ""
8005
8006 #: mercurial/cmdutil.py:641
8007 msgid "user: %s\n"
8008 msgstr "bruger: %s\n"
8009
8010 #: mercurial/cmdutil.py:642
8011 msgid "date: %s\n"
8012 msgstr "dato: %s\n"
8013
8014 #: mercurial/cmdutil.py:646
8015 msgid "files+:"
8016 msgstr "filer+:"
8017
8018 #: mercurial/cmdutil.py:646
8019 msgid "files-:"
8020 msgstr "filer-:"
8021
8022 #: mercurial/cmdutil.py:646
8023 msgid "files:"
8024 msgstr ""
8025
8026 #: mercurial/cmdutil.py:651
8027 msgid "files: %s\n"
8028 msgstr "filer: %s\n"
8029
8030 #: mercurial/cmdutil.py:654
8031 msgid "copies: %s\n"
8032 msgstr "kopier: %s\n"
8033
8034 #: mercurial/cmdutil.py:658
8035 msgid "extra: %s=%s\n"
8036 msgstr "ekstra: %s=%s\n"
8037
8038 #: mercurial/cmdutil.py:664
8039 msgid "description:\n"
8040 msgstr "beskrivelse:\n"
8041
8042 #: mercurial/cmdutil.py:668
8043 msgid "summary: %s\n"
8044 msgstr "uddrag: %s\n"
8045
8046 #: mercurial/cmdutil.py:878
8047 msgid "%s: no key named '%s'"
8048 msgstr ""
8049
8050 #: mercurial/cmdutil.py:881
8051 msgid "%s: %s"
8052 msgstr ""
8053
8054 #: mercurial/cmdutil.py:940
8055 msgid "Found revision %s from %s\n"
8056 msgstr ""
8057
8058 #: mercurial/cmdutil.py:944
8059 msgid "revision matching date not found"
8060 msgstr ""
8061
8062 #: mercurial/cmdutil.py:1037
8063 msgid "cannot follow nonexistent file: \"%s\""
8064 msgstr ""
8065
8066 #: mercurial/cmdutil.py:1041
8067 msgid "%s:%s copy source revision cannot be found!\n"
8068 msgstr ""
8069
8070 #: mercurial/cmdutil.py:1055
8071 msgid "can only follow copies/renames for explicit file names"
8072 msgstr ""
8073
8074 #: mercurial/cmdutil.py:1177
8075 msgid "file %s not found!"
8076 msgstr "filen %s blev ikke fundet!"
8077
8078 #: mercurial/cmdutil.py:1180
8079 msgid "no match under directory %s!"
8080 msgstr ""
8081
8082 #: mercurial/cmdutil.py:1183
8083 msgid "can't commit %s: unsupported file type!"
8084 msgstr ""
8085
8086 #: mercurial/cmdutil.py:1186
8087 msgid "file %s not tracked!"
8088 msgstr ""
8089
8090 #: mercurial/context.py:129 mercurial/context.py:136
8091 msgid "not found in manifest"
8092 msgstr ""
8093
8094 #: mercurial/context.py:504
8095 msgid "branch name not in UTF-8!"
8096 msgstr ""
8097
8098 #: mercurial/copies.py:147
8099 msgid " searching for copies back to rev %d\n"
8100 msgstr ""
8101
8102 #: mercurial/copies.py:153
8103 msgid ""
8104 " unmatched files in local:\n"
8105 " %s\n"
8106 msgstr ""
8107
8108 #: mercurial/copies.py:156
8109 msgid ""
8110 " unmatched files in other:\n"
8111 " %s\n"
8112 msgstr ""
8113
8114 #: mercurial/copies.py:172
8115 msgid " all copies found (* = to merge, ! = divergent):\n"
8116 msgstr ""
8117
8118 #: mercurial/copies.py:177
8119 msgid " %s -> %s %s\n"
8120 msgstr ""
8121
8122 #: mercurial/copies.py:183
8123 msgid " checking for directory renames\n"
8124 msgstr ""
8125
8126 #: mercurial/copies.py:219
8127 msgid " dir %s -> %s\n"
8128 msgstr ""
8129
8130 #: mercurial/copies.py:230
8131 msgid " file %s -> %s\n"
8132 msgstr ""
8133
8134 #: mercurial/dirstate.py:244
8135 msgid "'\\n' and '\\r' disallowed in filenames: %r"
8136 msgstr ""
8137
8138 #: mercurial/dirstate.py:246
8139 msgid "directory %r already in dirstate"
8140 msgstr ""
8141
8142 #: mercurial/dirstate.py:253
8143 msgid "file %r in dirstate clashes with %r"
8144 msgstr ""
8145
8146 #: mercurial/dirstate.py:336
8147 msgid "not in dirstate: %s\n"
8148 msgstr ""
8149
8150 #: mercurial/dirstate.py:425
8151 msgid "character device"
8152 msgstr ""
8153
8154 #: mercurial/dirstate.py:426
8155 msgid "block device"
8156 msgstr ""
8157
8158 #: mercurial/dirstate.py:427
8159 msgid "fifo"
8160 msgstr ""
8161
8162 #: mercurial/dirstate.py:428
8163 msgid "socket"
8164 msgstr ""
8165
8166 #: mercurial/dirstate.py:429
8167 msgid "directory"
8168 msgstr ""
8169
8170 #: mercurial/dirstate.py:430
8171 msgid "%s: unsupported file type (type is %s)\n"
8172 msgstr ""
8173
8174 #: mercurial/dispatch.py:27 mercurial/dispatch.py:93 mercurial/dispatch.py:96
8175 #: mercurial/dispatch.py:110 mercurial/dispatch.py:117
8176 #: mercurial/dispatch.py:135
8177 msgid "abort: %s\n"
8178 msgstr "afbrudt: %s\n"
8179
8180 #: mercurial/dispatch.py:57
8181 msgid "hg %s: %s\n"
8182 msgstr "hg %s: %s\n"
8183
8184 #: mercurial/dispatch.py:60
8185 msgid "hg: %s\n"
8186 msgstr "hg: %s\n"
8187
8188 #: mercurial/dispatch.py:63
8189 msgid ""
8190 "hg: command '%s' is ambiguous:\n"
8191 " %s\n"
8192 msgstr ""
8193 "hg: kommandoen '%s' is tvetydig:\n"
8194 " %s\n"
8195
8196 #: mercurial/dispatch.py:66
8197 msgid "hg: unknown command '%s'\n"
8198 msgstr "hg: ukendt kommando '%s'\n"
8199
8200 #: mercurial/dispatch.py:69 mercurial/dispatch.py:80
8201 msgid "abort: %s!\n"
8202 msgstr "afbrudt: %s!\n"
8203
8204 #: mercurial/dispatch.py:72
8205 msgid "timed out waiting for lock held by %s"
8206 msgstr ""
8207
8208 #: mercurial/dispatch.py:74
8209 msgid "lock held by %s"
8210 msgstr ""
8211
8212 #: mercurial/dispatch.py:75 mercurial/dispatch.py:108
8213 #: mercurial/dispatch.py:115
8214 msgid "abort: %s: %s\n"
8215 msgstr "afbrudt: %s: %s\n"
8216
8217 #: mercurial/dispatch.py:77
8218 msgid "abort: could not lock %s: %s\n"
8219 msgstr "afbrudt: kunne ikke låse %s: %s\n"
8220
8221 #: mercurial/dispatch.py:82
8222 msgid "killed!\n"
8223 msgstr "dræbt!\n"
8224
8225 #: mercurial/dispatch.py:85
8226 msgid "interrupted!\n"
8227 msgstr "standset!\n"
8228
8229 #: mercurial/dispatch.py:89
8230 msgid ""
8231 "\n"
8232 "broken pipe\n"
8233 msgstr ""
8234
8235 #: mercurial/dispatch.py:102
8236 msgid "abort: error: %s\n"
8237 msgstr ""
8238
8239 #: mercurial/dispatch.py:105
8240 msgid "broken pipe\n"
8241 msgstr ""
8242
8243 #: mercurial/dispatch.py:119
8244 msgid "abort: %s"
8245 msgstr "afbrudt: %s"
8246
8247 #: mercurial/dispatch.py:123
8248 msgid " empty string\n"
8249 msgstr " tom streng\n"
8250
8251 #: mercurial/dispatch.py:128
8252 msgid "abort: could not import module %s!\n"
8253 msgstr "afbrudt: kunne ikke importere modul %s!\n"
8254
8255 #: mercurial/dispatch.py:130
8256 msgid "(did you forget to compile extensions?)\n"
8257 msgstr "(glemte du at kompilere udvidelserne?)\n"
8258
8259 #: mercurial/dispatch.py:132
8260 msgid "(is your Python install correct?)\n"
8261 msgstr "(er din Python installeret korrekt?)\n"
8262
8263 #: mercurial/dispatch.py:137
8264 msgid "abort: out of memory\n"
8265 msgstr "afbrudt: løbet tør for hukommelse\n"
8266
8267 #: mercurial/dispatch.py:143
8268 msgid "** unknown exception encountered, details follow\n"
8269 msgstr "** der opstod en ukendt fejl, detaljer følger\n"
8270
8271 #: mercurial/dispatch.py:144
8272 msgid "** report bug details to http://www.selenic.com/mercurial/bts\n"
8273 msgstr "** angiv fejldetaljer på http://www.selenic.com/mercurial/bts\n"
8274
8275 #: mercurial/dispatch.py:146
8276 msgid "** or mercurial@selenic.com\n"
8277 msgstr "** eller mercurial@selenic.com\n"
8278
8279 #: mercurial/dispatch.py:147
8280 msgid "** Mercurial Distributed SCM (version %s)\n"
8281 msgstr "** Mercurial Distributed SCM (version %s)\n"
8282
8283 #: mercurial/dispatch.py:149
8284 msgid "** Extensions loaded: %s\n"
8285 msgstr ""
8286
8287 #: mercurial/dispatch.py:213
8288 msgid "malformed --config option: %s"
8289 msgstr ""
8290
8291 #: mercurial/dispatch.py:292
8292 msgid "extension '%s' overrides commands: %s\n"
8293 msgstr ""
8294
8295 #: mercurial/dispatch.py:305
8296 msgid "Option --config may not be abbreviated!"
8297 msgstr ""
8298
8299 #: mercurial/dispatch.py:307
8300 msgid "Option --cwd may not be abbreviated!"
8301 msgstr ""
8302
8303 #: mercurial/dispatch.py:309
8304 msgid ""
8305 "Option -R has to be separated from other options (i.e. not -qR) and --"
8306 "repository may only be abbreviated as --repo!"
8307 msgstr ""
8308
8309 #: mercurial/dispatch.py:326
8310 msgid "Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n"
8311 msgstr ""
8312
8313 #: mercurial/dispatch.py:346
8314 msgid "repository '%s' is not local"
8315 msgstr ""
8316
8317 #: mercurial/dispatch.py:378
8318 msgid "invalid arguments"
8319 msgstr ""
8320
8321 #: mercurial/dispatch.py:388
8322 msgid "exception raised - generating profile anyway\n"
8323 msgstr ""
8324
8325 #: mercurial/dispatch.py:403
8326 msgid ""
8327 "lsprof not available - install from http://codespeak.net/svn/user/arigo/hack/"
8328 "misc/lsprof/"
8329 msgstr ""
8330
8331 #: mercurial/extensions.py:82
8332 msgid "*** failed to import extension %s from %s: %s\n"
8333 msgstr ""
8334
8335 #: mercurial/extensions.py:85
8336 msgid "*** failed to import extension %s: %s\n"
8337 msgstr ""
8338
8339 #: mercurial/filemerge.py:37 mercurial/filemerge.py:39
8340 msgid "couldn't find merge tool %s\n"
8341 msgstr ""
8342
8343 #: mercurial/filemerge.py:41
8344 msgid "tool %s can't handle symlinks\n"
8345 msgstr ""
8346
8347 #: mercurial/filemerge.py:43
8348 msgid "tool %s can't handle binary\n"
8349 msgstr ""
8350
8351 #: mercurial/filemerge.py:45
8352 msgid "tool %s requires a GUI\n"
8353 msgstr ""
8354
8355 #: mercurial/filemerge.py:139
8356 msgid "picked tool '%s' for %s (binary %s symlink %s)\n"
8357 msgstr ""
8358
8359 #: mercurial/filemerge.py:144
8360 msgid ""
8361 " no tool found to merge %s\n"
8362 "keep (l)ocal or take (o)ther?"
8363 msgstr ""
8364
8365 #: mercurial/filemerge.py:146
8366 msgid "[lo]"
8367 msgstr ""
8368
8369 #: mercurial/filemerge.py:146
8370 msgid "l"
8371 msgstr ""
8372
8373 #: mercurial/filemerge.py:165
8374 msgid "merging %s and %s to %s\n"
8375 msgstr ""
8376
8377 #: mercurial/filemerge.py:167
8378 msgid "merging %s\n"
8379 msgstr ""
8380
8381 #: mercurial/filemerge.py:169
8382 msgid "my %s other %s ancestor %s\n"
8383 msgstr ""
8384
8385 #: mercurial/filemerge.py:175
8386 msgid " premerge successful\n"
8387 msgstr ""
8388
8389 #: mercurial/filemerge.py:206
8390 msgid ""
8391 " output file %s appears unchanged\n"
8392 "was merge successful (yn)?"
8393 msgstr ""
8394
8395 #: mercurial/filemerge.py:208
8396 msgid "[yn]"
8397 msgstr ""
8398
8399 #: mercurial/filemerge.py:208
8400 msgid "n"
8401 msgstr ""
8402
8403 #: mercurial/filemerge.py:215
8404 msgid "merging %s failed!\n"
8405 msgstr ""
8406
8407 #: mercurial/hbisect.py:55
8408 msgid "Inconsistent state, %s:%s is good and bad"
8409 msgstr ""
8410
8411 #: mercurial/hbisect.py:129
8412 msgid "unknown bisect kind %s"
8413 msgstr ""
8414
8415 #: mercurial/help.py:11
8416 msgid "Date Formats"
8417 msgstr "Datoformater"
8418
8419 #: mercurial/help.py:12
8420 msgid ""
8421 "\n"
8422 " Some commands allow the user to specify a date:\n"
8423 " backout, commit, import, tag: Specify the commit date.\n"
8424 " log, revert, update: Select revision(s) by date.\n"
8425 "\n"
8426 " Many date formats are valid. Here are some examples:\n"
8427 "\n"
8428 " \"Wed Dec 6 13:18:29 2006\" (local timezone assumed)\n"
8429 " \"Dec 6 13:18 -0600\" (year assumed, time offset provided)\n"
8430 " \"Dec 6 13:18 UTC\" (UTC and GMT are aliases for +0000)\n"
8431 " \"Dec 6\" (midnight)\n"
8432 " \"13:18\" (today assumed)\n"
8433 " \"3:39\" (3:39AM assumed)\n"
8434 " \"3:39pm\" (15:39)\n"
8435 " \"2006-12-06 13:18:29\" (ISO 8601 format)\n"
8436 " \"2006-12-6 13:18\"\n"
8437 " \"2006-12-6\"\n"
8438 " \"12-6\"\n"
8439 " \"12/6\"\n"
8440 " \"12/6/6\" (Dec 6 2006)\n"
8441 "\n"
8442 " Lastly, there is Mercurial's internal format:\n"
8443 "\n"
8444 " \"1165432709 0\" (Wed Dec 6 13:18:29 2006 UTC)\n"
8445 "\n"
8446 " This is the internal representation format for dates. unixtime is\n"
8447 " the number of seconds since the epoch (1970-01-01 00:00 UTC). offset\n"
8448 " is the offset of the local timezone, in seconds west of UTC (negative\n"
8449 " if the timezone is east of UTC).\n"
8450 "\n"
8451 " The log command also accepts date ranges:\n"
8452 "\n"
8453 " \"<{date}\" - on or before a given date\n"
8454 " \">{date}\" - on or after a given date\n"
8455 " \"{date} to {date}\" - a date range, inclusive\n"
8456 " \"-{days}\" - within a given number of days of today\n"
8457 " "
8458 msgstr ""
8459 "\n"
8460 " Nogle kommandoer tillader brugeren at specificere en dato:\n"
8461 " backout, commit, import, tag: specificer commit-datøn.\n"
8462 " log, revert, update: vælg revisioner eftre dato.\n"
8463 "\n"
8464 " Der er mange gyldige datoformater. Her er nogle eksempler:\n"
8465 "\n"
8466 " \"Wed Dec 6 13:18:29 2006\" (antager lokal tidszone)\n"
8467 " \"Dec 6 13:18 -0600\" (antager år, tidszone er angivet)\n"
8468 " \"Dec 6 13:18 UTC\" (UTC og GMT er aliaser for +0000)\n"
8469 " \"Dec 6\" (midnat)\n"
8470 " \"13:18\" (antager dags dato)\n"
8471 " \"3:39\"\n"
8472 " \"3:39pm\" (15:39)\n"
8473 " \"2006-12-06 13:18:29\" (ISO 8601 format)\n"
8474 " \"2006-12-6 13:18\"\n"
8475 " \"2006-12-6\"\n"
8476 " \"12-6\"\n"
8477 " \"12/6\"\n"
8478 " \"12/6/6\" (6. dec. 2006)\n"
8479 "\n"
8480 " Endelig er der Mercurials interne format:\n"
8481 "\n"
8482 " \"1165432709 0\" (Ons 6. dec. 13:18:29 2006 UTC)\n"
8483 "\n"
8484 " Dette er den interne representation af datoer. unixtime er\n"
8485 " antallet af sekunder siden begyndelsen af epoken (1970-01-01 00:00\n"
8486 " UTC). offset er den lokale tidszone, angivet i antal sekunder vest\n"
8487 " for UTC (negativ hvis tidszonen er øst for UTC).\n"
8488 "\n"
8489 " Kommandoen log accepterer også datointervaller:\n"
8490 "\n"
8491 " \"<{date}\" - på eller før den angivne dato\n"
8492 " \">{date}\" - på eller efter den angivne dato\n"
8493 " \"{date} to {date}\" - et datointerval, inklusiv endepunkterne\n"
8494 " \"-{days}\" - indenfor et angivet antal date, fra dags dato\n"
8495 " "
8496
8497 #: mercurial/help.py:50
8498 msgid "File Name Patterns"
8499 msgstr ""
8500
8501 #: mercurial/help.py:51
8502 msgid ""
8503 "\n"
8504 " Mercurial accepts several notations for identifying one or more\n"
8505 " files at a time.\n"
8506 "\n"
8507 " By default, Mercurial treats filenames as shell-style extended\n"
8508 " glob patterns.\n"
8509 "\n"
8510 " Alternate pattern notations must be specified explicitly.\n"
8511 "\n"
8512 " To use a plain path name without any pattern matching, start a\n"
8513 " name with \"path:\". These path names must match completely, from\n"
8514 " the root of the current repository.\n"
8515 "\n"
8516 " To use an extended glob, start a name with \"glob:\". Globs are\n"
8517 " rooted at the current directory; a glob such as \"*.c\" will match\n"
8518 " files ending in \".c\" in the current directory only.\n"
8519 "\n"
8520 " The supported glob syntax extensions are \"**\" to match any string\n"
8521 " across path separators, and \"{a,b}\" to mean \"a or b\".\n"
8522 "\n"
8523 " To use a Perl/Python regular expression, start a name with \"re:\".\n"
8524 " Regexp pattern matching is anchored at the root of the repository.\n"
8525 "\n"
8526 " Plain examples:\n"
8527 "\n"
8528 " path:foo/bar a name bar in a directory named foo in the root of\n"
8529 " the repository\n"
8530 " path:path:name a file or directory named \"path:name\"\n"
8531 "\n"
8532 " Glob examples:\n"
8533 "\n"
8534 " glob:*.c any name ending in \".c\" in the current directory\n"
8535 " *.c any name ending in \".c\" in the current directory\n"
8536 " **.c any name ending in \".c\" in the current directory, or\n"
8537 " any subdirectory\n"
8538 " foo/*.c any name ending in \".c\" in the directory foo\n"
8539 " foo/**.c any name ending in \".c\" in the directory foo, or any\n"
8540 " subdirectory\n"
8541 "\n"
8542 " Regexp examples:\n"
8543 "\n"
8544 " re:.*\\.c$ any name ending in \".c\", anywhere in the repository\n"
8545 "\n"
8546 " "
8547 msgstr ""
8548
8549 #: mercurial/help.py:96
8550 msgid "Environment Variables"
8551 msgstr "Miljøvariable"
8552
8553 #: mercurial/help.py:97
8554 msgid ""
8555 "\n"
8556 "HG::\n"
8557 " Path to the 'hg' executable, automatically passed when running hooks,\n"
8558 " extensions or external tools. If unset or empty, an executable named\n"
8559 " 'hg' (with com/exe/bat/cmd extension on Windows) is searched.\n"
8560 "\n"
8561 "HGEDITOR::\n"
8562 " This is the name of the editor to use when committing. See EDITOR.\n"
8563 "\n"
8564 " (deprecated, use .hgrc)\n"
8565 "\n"
8566 "HGENCODING::\n"
8567 " This overrides the default locale setting detected by Mercurial.\n"
8568 " This setting is used to convert data including usernames,\n"
8569 " changeset descriptions, tag names, and branches. This setting can\n"
8570 " be overridden with the --encoding command-line option.\n"
8571 "\n"
8572 "HGENCODINGMODE::\n"
8573 " This sets Mercurial's behavior for handling unknown characters\n"
8574 " while transcoding user inputs. The default is \"strict\", which\n"
8575 " causes Mercurial to abort if it can't translate a character. Other\n"
8576 " settings include \"replace\", which replaces unknown characters, and\n"
8577 " \"ignore\", which drops them. This setting can be overridden with\n"
8578 " the --encodingmode command-line option.\n"
8579 "\n"
8580 "HGMERGE::\n"
8581 " An executable to use for resolving merge conflicts. The program\n"
8582 " will be executed with three arguments: local file, remote file,\n"
8583 " ancestor file.\n"
8584 "\n"
8585 " (deprecated, use .hgrc)\n"
8586 "\n"
8587 "HGRCPATH::\n"
8588 " A list of files or directories to search for hgrc files. Item\n"
8589 " separator is \":\" on Unix, \";\" on Windows. If HGRCPATH is not set,\n"
8590 " platform default search path is used. If empty, only .hg/hgrc of\n"
8591 " current repository is read.\n"
8592 "\n"
8593 " For each element in path, if a directory, all entries in directory\n"
8594 " ending with \".rc\" are added to path. Else, element itself is\n"
8595 " added to path.\n"
8596 "\n"
8597 "HGUSER::\n"
8598 " This is the string used for the author of a commit.\n"
8599 "\n"
8600 " (deprecated, use .hgrc)\n"
8601 "\n"
8602 "EMAIL::\n"
8603 " If HGUSER is not set, this will be used as the author for a commit.\n"
8604 "\n"
8605 "LOGNAME::\n"
8606 " If neither HGUSER nor EMAIL is set, LOGNAME will be used (with\n"
8607 " '@hostname' appended) as the author value for a commit.\n"
8608 "\n"
8609 "VISUAL::\n"
8610 " This is the name of the editor to use when committing. See EDITOR.\n"
8611 "\n"
8612 "EDITOR::\n"
8613 " Sometimes Mercurial needs to open a text file in an editor\n"
8614 " for a user to modify, for example when writing commit messages.\n"
8615 " The editor it uses is determined by looking at the environment\n"
8616 " variables HGEDITOR, VISUAL and EDITOR, in that order. The first\n"
8617 " non-empty one is chosen. If all of them are empty, the editor\n"
8618 " defaults to 'vi'.\n"
8619 "\n"
8620 "PYTHONPATH::\n"
8621 " This is used by Python to find imported modules and may need to be set\n"
8622 " appropriately if Mercurial is not installed system-wide.\n"
8623 " "
8624 msgstr ""
8625
8626 #: mercurial/help.py:167
8627 msgid "Specifying Single Revisions"
8628 msgstr "Angivning af en enkelt revision"
8629
8630 #: mercurial/help.py:168
8631 msgid ""
8632 "\n"
8633 " Mercurial accepts several notations for identifying individual\n"
8634 " revisions.\n"
8635 "\n"
8636 " A plain integer is treated as a revision number. Negative\n"
8637 " integers are treated as offsets from the tip, with -1 denoting the\n"
8638 " tip.\n"
8639 "\n"
8640 " A 40-digit hexadecimal string is treated as a unique revision\n"
8641 " identifier.\n"
8642 "\n"
8643 " A hexadecimal string less than 40 characters long is treated as a\n"
8644 " unique revision identifier, and referred to as a short-form\n"
8645 " identifier. A short-form identifier is only valid if it is the\n"
8646 " prefix of one full-length identifier.\n"
8647 "\n"
8648 " Any other string is treated as a tag name, which is a symbolic\n"
8649 " name associated with a revision identifier. Tag names may not\n"
8650 " contain the \":\" character.\n"
8651 "\n"
8652 " The reserved name \"tip\" is a special tag that always identifies\n"
8653 " the most recent revision.\n"
8654 "\n"
8655 " The reserved name \"null\" indicates the null revision. This is the\n"
8656 " revision of an empty repository, and the parent of revision 0.\n"
8657 "\n"
8658 " The reserved name \".\" indicates the working directory parent. If\n"
8659 " no working directory is checked out, it is equivalent to null.\n"
8660 " If an uncommitted merge is in progress, \".\" is the revision of\n"
8661 " the first parent.\n"
8662 " "
8663 msgstr ""
8664
8665 #: mercurial/help.py:200
8666 msgid "Specifying Multiple Revisions"
8667 msgstr "Angivning af flere revisioner"
8668
8669 #: mercurial/help.py:201
8670 msgid ""
8671 "\n"
8672 " When Mercurial accepts more than one revision, they may be\n"
8673 " specified individually, or provided as a continuous range,\n"
8674 " separated by the \":\" character.\n"
8675 "\n"
8676 " The syntax of range notation is [BEGIN]:[END], where BEGIN and END\n"
8677 " are revision identifiers. Both BEGIN and END are optional. If\n"
8678 " BEGIN is not specified, it defaults to revision number 0. If END\n"
8679 " is not specified, it defaults to the tip. The range \":\" thus\n"
8680 " means \"all revisions\".\n"
8681 "\n"
8682 " If BEGIN is greater than END, revisions are treated in reverse\n"
8683 " order.\n"
8684 "\n"
8685 " A range acts as a closed interval. This means that a range of 3:5\n"
8686 " gives 3, 4 and 5. Similarly, a range of 4:2 gives 4, 3, and 2.\n"
8687 " "
8688 msgstr ""
8689
8690 #: mercurial/help.py:219
8691 msgid "Diff Formats"
8692 msgstr ""
8693
8694 #: mercurial/help.py:220
8695 msgid ""
8696 "\n"
8697 " Mercurial's default format for showing changes between two versions\n"
8698 " of a file is compatible with the unified format of GNU diff, which\n"
8699 " can be used by GNU patch and many other standard tools.\n"
8700 "\n"
8701 " While this standard format is often enough, it does not encode the\n"
8702 " following information:\n"
8703 "\n"
8704 " - executable status\n"
8705 " - copy or rename information\n"
8706 " - changes in binary files\n"
8707 " - creation or deletion of empty files\n"
8708 "\n"
8709 " Mercurial also supports the extended diff format from the git VCS\n"
8710 " which addresses these limitations. The git diff format is not\n"
8711 " produced by default because there are very few tools which\n"
8712 " understand this format.\n"
8713 "\n"
8714 " This means that when generating diffs from a Mercurial repository\n"
8715 " (e.g. with \"hg export\"), you should be careful about things like\n"
8716 " file copies and renames or other things mentioned above, because\n"
8717 " when applying a standard diff to a different repository, this extra\n"
8718 " information is lost. Mercurial's internal operations (like push and\n"
8719 " pull) are not affected by this, because they use an internal binary\n"
8720 " format for communicating changes.\n"
8721 "\n"
8722 " To make Mercurial produce the git extended diff format, use the\n"
8723 " --git option available for many commands, or set 'git = True' in the\n"
8724 " [diff] section of your hgrc. You do not need to set this option when\n"
8725 " importing diffs in this format or using them in the mq extension.\n"
8726 " "
8727 msgstr ""
8728
8729 #: mercurial/hg.py:128
8730 msgid "destination directory: %s\n"
8731 msgstr ""
8732
8733 #: mercurial/hg.py:134 mercurial/hg.py:176 mercurial/hg.py:202
8734 msgid "destination '%s' already exists"
8735 msgstr ""
8736
8737 #: mercurial/hg.py:209
8738 msgid ""
8739 "src repository does not support revision lookup and so doesn't support clone "
8740 "by revision"
8741 msgstr ""
8742
8743 #: mercurial/hg.py:219
8744 msgid "clone from remote to remote not supported"
8745 msgstr ""
8746
8747 #: mercurial/hg.py:232
8748 msgid "updating working directory\n"
8749 msgstr ""
8750
8751 #: mercurial/hg.py:248
8752 msgid "updated"
8753 msgstr "opdateret"
8754
8755 #: mercurial/hg.py:249
8756 msgid "merged"
8757 msgstr "sammenføjet"
8758
8759 #: mercurial/hg.py:250
8760 msgid "removed"
8761 msgstr "fjernet"
8762
8763 #: mercurial/hg.py:251
8764 msgid "unresolved"
8765 msgstr ""
8766
8767 #: mercurial/hg.py:252
8768 msgid "%d files %s"
8769 msgstr "%d filer %s"
8770
8771 #: mercurial/hg.py:260 mercurial/hg.py:277
8772 msgid "use 'hg resolve' to retry unresolved file merges\n"
8773 msgstr ""
8774
8775 #: mercurial/hg.py:279
8776 msgid "(branch merge, don't forget to commit)\n"
8777 msgstr ""
8778
8779 #: mercurial/hgweb/hgwebdir_mod.py:211
8780 msgid "error reading %s/.hg/hgrc: %s\n"
8781 msgstr ""
8782
8783 #: mercurial/hgweb/server.py:262
8784 msgid "SSL support is unavailable"
8785 msgstr "understøttelse for SSL er ikke tilstede"
8786
8787 #: mercurial/hgweb/server.py:279
8788 msgid "IPv6 not available on this system"
8789 msgstr "IPv6 er ikke til rådighed på dette system"
8790
8791 #: mercurial/hgweb/server.py:293
8792 msgid "cannot start server at '%s:%d': %s"
8793 msgstr "kan ikke starte server på '%s:%d': %s"
8794
8795 #: mercurial/hook.py:21
8796 msgid "calling hook %s: %s\n"
8797 msgstr ""
8798
8799 #: mercurial/hook.py:26
8800 msgid "%s hook is invalid (\"%s\" not in a module)"
8801 msgstr ""
8802
8803 #: mercurial/hook.py:36
8804 msgid "%s hook is invalid (import of \"%s\" failed)"
8805 msgstr ""
8806
8807 #: mercurial/hook.py:43
8808 msgid "%s hook is invalid (\"%s\" is not defined)"
8809 msgstr ""
8810
8811 #: mercurial/hook.py:47
8812 msgid "%s hook is invalid (\"%s\" is not callable)"
8813 msgstr ""
8814
8815 #: mercurial/hook.py:56
8816 msgid "error: %s hook failed: %s\n"
8817 msgstr ""
8818
8819 #: mercurial/hook.py:59
8820 msgid "error: %s hook raised an exception: %s\n"
8821 msgstr ""
8822
8823 #: mercurial/hook.py:67
8824 msgid "%s hook failed"
8825 msgstr ""
8826
8827 #: mercurial/hook.py:68
8828 msgid "warning: %s hook failed\n"
8829 msgstr ""
8830
8831 #: mercurial/hook.py:72
8832 msgid "running hook %s: %s\n"
8833 msgstr ""
8834
8835 #: mercurial/hook.py:82
8836 msgid "%s hook %s"
8837 msgstr ""
8838
8839 #: mercurial/hook.py:83
8840 msgid "warning: %s hook %s\n"
8841 msgstr ""
8842
8843 #: mercurial/httprepo.py:21
8844 msgid "connection ended unexpectedly"
8845 msgstr ""
8846
8847 #: mercurial/httprepo.py:31
8848 msgid "unsupported URL component: \"%s\""
8849 msgstr ""
8850
8851 #: mercurial/httprepo.py:38
8852 msgid "using %s\n"
8853 msgstr "bruger %s\n"
8854
8855 #: mercurial/httprepo.py:53
8856 msgid "capabilities: %s\n"
8857 msgstr ""
8858
8859 #: mercurial/httprepo.py:60
8860 msgid "operation not supported over http"
8861 msgstr ""
8862
8863 #: mercurial/httprepo.py:65 mercurial/sshrepo.py:116
8864 msgid "sending %s command\n"
8865 msgstr "sender %s kommando\n"
8866
8867 #: mercurial/httprepo.py:72
8868 msgid "sending %s bytes\n"
8869 msgstr "sender %s bytes\n"
8870
8871 #: mercurial/httprepo.py:76
8872 msgid "authorization failed"
8873 msgstr "autorisation fejlede"
8874
8875 #: mercurial/httprepo.py:79
8876 msgid "http error while sending %s command\n"
8877 msgstr ""
8878
8879 #: mercurial/httprepo.py:84
8880 msgid "http error, possibly caused by proxy setting"
8881 msgstr ""
8882
8883 #: mercurial/httprepo.py:90
8884 msgid "real URL is %s\n"
8885 msgstr "den rigtige URL er %s\n"
8886
8887 #: mercurial/httprepo.py:101
8888 msgid "Requested URL: '%s'\n"
8889 msgstr ""
8890
8891 #: mercurial/httprepo.py:102 mercurial/statichttprepo.py:81
8892 msgid "'%s' does not appear to be an hg repository"
8893 msgstr ""
8894
8895 #: mercurial/httprepo.py:110
8896 msgid "'%s' sent a broken Content-Type header (%s)"
8897 msgstr ""
8898
8899 #: mercurial/httprepo.py:113
8900 msgid "'%s' uses newer protocol %s"
8901 msgstr "'%s' bruger nyere protokol %s"
8902
8903 #: mercurial/httprepo.py:127 mercurial/sshrepo.py:154
8904 msgid "look up remote revision"
8905 msgstr ""
8906
8907 #: mercurial/httprepo.py:139 mercurial/httprepo.py:148
8908 #: mercurial/httprepo.py:159 mercurial/sshrepo.py:135 mercurial/sshrepo.py:167
8909 #: mercurial/sshrepo.py:176 mercurial/sshrepo.py:185 mercurial/sshrepo.py:220
8910 #: mercurial/sshrepo.py:242
8911 msgid "unexpected response:"
8912 msgstr ""
8913
8914 #: mercurial/httprepo.py:168 mercurial/sshrepo.py:192
8915 msgid "look up remote changes"
8916 msgstr ""
8917
8918 #: mercurial/httprepo.py:205
8919 msgid "push failed (unexpected response):"
8920 msgstr ""
8921
8922 #: mercurial/httprepo.py:210 mercurial/sshrepo.py:214
8923 msgid "push failed: %s"
8924 msgstr "skub fejlede: %s"
8925
8926 #: mercurial/httprepo.py:222
8927 msgid "Python support for SSL and HTTPS is not installed"
8928 msgstr ""
8929
8930 #: mercurial/httprepo.py:228
8931 msgid "cannot create new http repository"
8932 msgstr "kan ikke lave nyt http repository"
8933
8934 #: mercurial/ignore.py:60
8935 msgid "%s: ignoring invalid syntax '%s'\n"
8936 msgstr "%s: ignorerer ugyldig syntaks '%s'\n"
8937
8938 #: mercurial/ignore.py:73
8939 msgid "skipping unreadable ignore file '%s': %s\n"
8940 msgstr ""
8941
8942 #: mercurial/localrepo.py:50
8943 msgid "repository %s not found"
8944 msgstr "repository'et %s blev ikke fundet"
8945
8946 #: mercurial/localrepo.py:52
8947 msgid "repository %s already exists"
8948 msgstr ""
8949
8950 #: mercurial/localrepo.py:60 mercurial/statichttprepo.py:88
8951 msgid "requirement '%s' not supported"
8952 msgstr ""
8953
8954 #: mercurial/localrepo.py:137
8955 msgid "%r cannot be used in a tag name"
8956 msgstr ""
8957
8958 #: mercurial/localrepo.py:223
8959 msgid "working copy of .hgtags is changed (please commit .hgtags manually)"
8960 msgstr ""
8961
8962 #: mercurial/localrepo.py:241
8963 msgid "%s, line %s: %s\n"
8964 msgstr "%s, linie %s: %s\n"
8965
8966 #: mercurial/localrepo.py:249
8967 msgid "cannot parse entry"
8968 msgstr ""
8969
8970 #: mercurial/localrepo.py:256
8971 msgid "node '%s' is not well formed"
8972 msgstr ""
8973
8974 #: mercurial/localrepo.py:259
8975 msgid "tag '%s' refers to unknown node"
8976 msgstr ""
8977
8978 #: mercurial/localrepo.py:463
8979 msgid "unknown revision '%s'"
8980 msgstr ""
8981
8982 #: mercurial/localrepo.py:531
8983 msgid "filtering %s through %s\n"
8984 msgstr ""
8985
8986 #: mercurial/localrepo.py:569
8987 msgid "journal already exists - run hg recover"
8988 msgstr ""
8989
8990 #: mercurial/localrepo.py:593
8991 msgid "rolling back interrupted transaction\n"
8992 msgstr ""
8993
8994 #: mercurial/localrepo.py:598
8995 msgid "no interrupted transaction available\n"
8996 msgstr ""
8997
8998 #: mercurial/localrepo.py:609
8999 msgid "rolling back last transaction\n"
9000 msgstr ""
9001
9002 #: mercurial/localrepo.py:616
9003 msgid "Named branch could not be reset, current branch still is: %s\n"
9004 msgstr ""
9005
9006 #: mercurial/localrepo.py:622
9007 msgid "no rollback information available\n"
9008 msgstr ""
9009
9010 #: mercurial/localrepo.py:643
9011 msgid "waiting for lock on %s held by %r\n"
9012 msgstr ""
9013
9014 #: mercurial/localrepo.py:657
9015 msgid "repository %s"
9016 msgstr ""
9017
9018 #: mercurial/localrepo.py:666
9019 msgid "working directory of %s"
9020 msgstr ""
9021
9022 #: mercurial/localrepo.py:716
9023 msgid " %s: searching for copy revision for %s\n"
9024 msgstr ""
9025
9026 #: mercurial/localrepo.py:723
9027 msgid " %s: copy %s:%s\n"
9028 msgstr ""
9029
9030 #: mercurial/localrepo.py:765
9031 msgid "cannot partially commit a merge (do not specify files or patterns)"
9032 msgstr ""
9033
9034 #: mercurial/localrepo.py:777 mercurial/localrepo.py:1125
9035 msgid "%s not tracked!\n"
9036 msgstr ""
9037
9038 #: mercurial/localrepo.py:789
9039 msgid "unresolved merge conflicts (see hg resolve)"
9040 msgstr ""
9041
9042 #: mercurial/localrepo.py:836
9043 msgid "nothing changed\n"
9044 msgstr ""
9045
9046 #: mercurial/localrepo.py:871
9047 msgid "trouble committing %s!\n"
9048 msgstr ""
9049
9050 #: mercurial/localrepo.py:902
9051 msgid "HG: Enter commit message. Lines beginning with 'HG:' are removed."
9052 msgstr ""
9053
9054 #: mercurial/localrepo.py:926
9055 msgid "empty commit message"
9056 msgstr ""
9057
9058 #: mercurial/localrepo.py:1075 mercurial/localrepo.py:1153
9059 msgid "%s does not exist!\n"
9060 msgstr ""
9061
9062 #: mercurial/localrepo.py:1079
9063 msgid ""
9064 "%s: files over 10MB may cause memory and performance problems\n"
9065 "(use 'hg revert %s' to unadd the file)\n"
9066 msgstr ""
9067
9068 #: mercurial/localrepo.py:1084
9069 msgid "%s not added: only files and symlinks supported currently\n"
9070 msgstr ""
9071
9072 #: mercurial/localrepo.py:1088
9073 msgid "%s already tracked!\n"
9074 msgstr ""
9075
9076 #: mercurial/localrepo.py:1102
9077 msgid "%s not added!\n"
9078 msgstr ""
9079
9080 #: mercurial/localrepo.py:1121
9081 msgid "%s still exists!\n"
9082 msgstr ""
9083
9084 #: mercurial/localrepo.py:1139
9085 msgid "%s not removed!\n"
9086 msgstr ""
9087
9088 #: mercurial/localrepo.py:1155
9089 msgid "copy failed: %s is not a file or a symbolic link\n"
9090 msgstr ""
9091
9092 #: mercurial/localrepo.py:1303
9093 msgid "searching for changes\n"
9094 msgstr "leder efter ændringer\n"
9095
9096 #: mercurial/localrepo.py:1331
9097 msgid "examining %s:%s\n"
9098 msgstr "undersøger %s:%s\n"
9099
9100 #: mercurial/localrepo.py:1336
9101 msgid "branch already found\n"
9102 msgstr "gren er allerede fundet\n"
9103
9104 #: mercurial/localrepo.py:1339
9105 msgid "found incomplete branch %s:%s\n"
9106 msgstr "fandt ukomplet gren %s:%s\n"
9107
9108 #: mercurial/localrepo.py:1346
9109 msgid "found new changeset %s\n"
9110 msgstr "fandt ny ændring %s\n"
9111
9112 #: mercurial/localrepo.py:1361
9113 msgid "request %d: %s\n"
9114 msgstr ""
9115
9116 #: mercurial/localrepo.py:1365
9117 msgid "received %s:%s\n"
9118 msgstr "modtog %s:%s\n"
9119
9120 #: mercurial/localrepo.py:1378
9121 msgid "narrowing %d:%d %s\n"
9122 msgstr ""
9123
9124 #: mercurial/localrepo.py:1381
9125 msgid "found new branch changeset %s\n"
9126 msgstr ""
9127
9128 #: mercurial/localrepo.py:1386
9129 msgid "narrowed branch search to %s:%s\n"
9130 msgstr ""
9131
9132 #: mercurial/localrepo.py:1396
9133 msgid "already have changeset "
9134 msgstr ""
9135
9136 #: mercurial/localrepo.py:1400
9137 msgid "warning: repository is unrelated\n"
9138 msgstr ""
9139
9140 #: mercurial/localrepo.py:1402
9141 msgid "repository is unrelated"
9142 msgstr ""
9143
9144 #: mercurial/localrepo.py:1404
9145 msgid "found new changesets starting at "
9146 msgstr ""
9147
9148 #: mercurial/localrepo.py:1407
9149 msgid "%d total queries\n"
9150 msgstr ""
9151
9152 #: mercurial/localrepo.py:1424
9153 msgid "common changesets up to "
9154 msgstr ""
9155
9156 #: mercurial/localrepo.py:1465
9157 msgid "requesting all changes\n"
9158 msgstr ""
9159
9160 #: mercurial/localrepo.py:1478
9161 msgid ""
9162 "Partial pull cannot be done because other repository doesn't support "
9163 "changegroupsubset."
9164 msgstr ""
9165
9166 #: mercurial/localrepo.py:1539
9167 msgid "abort: push creates new remote heads!\n"
9168 msgstr ""
9169
9170 #: mercurial/localrepo.py:1540
9171 msgid "(did you forget to merge? use push -f to force)\n"
9172 msgstr ""
9173
9174 #: mercurial/localrepo.py:1544
9175 msgid "note: unsynced remote changes!\n"
9176 msgstr ""
9177
9178 #: mercurial/localrepo.py:1580
9179 msgid "%d changesets found\n"
9180 msgstr ""
9181
9182 #: mercurial/localrepo.py:1582
9183 msgid "list of changesets:\n"
9184 msgstr ""
9185
9186 #: mercurial/localrepo.py:1861 mercurial/localrepo.py:1951
9187 msgid "empty or missing revlog for %s"
9188 msgstr ""
9189
9190 #: mercurial/localrepo.py:1978
9191 msgid "add changeset %s\n"
9192 msgstr ""
9193
9194 #: mercurial/localrepo.py:2001
9195 msgid "adding changesets\n"
9196 msgstr ""
9197
9198 #: mercurial/localrepo.py:2005
9199 msgid "received changelog group is empty"
9200 msgstr ""
9201
9202 #: mercurial/localrepo.py:2010
9203 msgid "adding manifests\n"
9204 msgstr ""
9205
9206 #: mercurial/localrepo.py:2019
9207 msgid "adding file changes\n"
9208 msgstr ""
9209
9210 #: mercurial/localrepo.py:2024
9211 msgid "adding %s revisions\n"
9212 msgstr ""
9213
9214 #: mercurial/localrepo.py:2029
9215 msgid "received file revlog group is empty"
9216 msgstr ""
9217
9218 #: mercurial/localrepo.py:2039
9219 msgid " (%+d heads)"
9220 msgstr ""
9221
9222 #: mercurial/localrepo.py:2041
9223 msgid "added %d changesets with %d changes to %d files%s\n"
9224 msgstr ""
9225
9226 #: mercurial/localrepo.py:2056
9227 msgid "updating the branch cache\n"
9228 msgstr ""
9229
9230 #: mercurial/localrepo.py:2079 mercurial/localrepo.py:2092
9231 #: mercurial/localrepo.py:2104
9232 msgid "Unexpected response from remote server:"
9233 msgstr ""
9234
9235 #: mercurial/localrepo.py:2081
9236 msgid "operation forbidden by server"
9237 msgstr ""
9238
9239 #: mercurial/localrepo.py:2083
9240 msgid "locking the remote repository failed"
9241 msgstr ""
9242
9243 #: mercurial/localrepo.py:2085
9244 msgid "the server sent an unknown error code"
9245 msgstr ""
9246
9247 #: mercurial/localrepo.py:2086
9248 msgid "streaming all changes\n"
9249 msgstr ""
9250
9251 #: mercurial/localrepo.py:2093
9252 msgid "%d files to transfer, %s of data\n"
9253 msgstr ""
9254
9255 #: mercurial/localrepo.py:2105
9256 msgid "adding %s (%s)\n"
9257 msgstr "tilføjer %s (%s)\n"
9258
9259 #: mercurial/localrepo.py:2113
9260 msgid "transferred %s in %.1f seconds (%s/sec)\n"
9261 msgstr ""
9262
9263 #: mercurial/mail.py:19
9264 msgid "no [smtp]host in hgrc - cannot send mail"
9265 msgstr ""
9266
9267 #: mercurial/mail.py:21
9268 msgid "sending mail: smtp host %s, port %s\n"
9269 msgstr ""
9270
9271 #: mercurial/mail.py:26
9272 msgid "can't use TLS: Python SSL support not installed"
9273 msgstr ""
9274
9275 #: mercurial/mail.py:28
9276 msgid "(using tls)\n"
9277 msgstr ""
9278
9279 #: mercurial/mail.py:37
9280 msgid "(authenticating to mail server as %s)\n"
9281 msgstr ""
9282
9283 #: mercurial/mail.py:57
9284 msgid "sending mail: %s\n"
9285 msgstr ""
9286
9287 #: mercurial/mail.py:82
9288 msgid "smtp specified as email transport, but no smtp host configured"
9289 msgstr ""
9290
9291 #: mercurial/mail.py:86
9292 msgid "%r specified as email transport, but not in PATH"
9293 msgstr ""
9294
9295 #: mercurial/mail.py:131
9296 msgid "ignoring invalid sendcharset: %s\n"
9297 msgstr ""
9298
9299 #: mercurial/mail.py:155
9300 msgid "invalid email address: %s"
9301 msgstr ""
9302
9303 #: mercurial/mail.py:161
9304 msgid "invalid local address: %s"
9305 msgstr ""
9306
9307 #: mercurial/manifest.py:128
9308 msgid "'\\n' and '\\r' disallowed in filenames"
9309 msgstr ""
9310
9311 #: mercurial/manifest.py:172
9312 msgid "failed to remove %s from manifest"
9313 msgstr ""
9314
9315 #: mercurial/mdiff.py:54
9316 msgid "diff context lines count must be an integer, not %r"
9317 msgstr ""
9318
9319 #: mercurial/merge.py:77
9320 msgid ""
9321 "untracked file in working directory differs from file in requested revision: "
9322 "'%s'"
9323 msgstr ""
9324
9325 #: mercurial/merge.py:86
9326 msgid "case-folding collision between %s and %s"
9327 msgstr ""
9328
9329 #: mercurial/merge.py:126
9330 msgid "resolving manifests\n"
9331 msgstr ""
9332
9333 #: mercurial/merge.py:127
9334 msgid " overwrite %s partial %s\n"
9335 msgstr ""
9336
9337 #: mercurial/merge.py:128
9338 msgid " ancestor %s local %s remote %s\n"
9339 msgstr ""
9340
9341 #: mercurial/merge.py:148
9342 msgid ""
9343 " conflicting flags for %s\n"
9344 "(n)one, e(x)ec or sym(l)ink?"
9345 msgstr ""
9346
9347 #: mercurial/merge.py:219
9348 msgid ""
9349 " local changed %s which remote deleted\n"
9350 "use (c)hanged version or (d)elete?"
9351 msgstr ""
9352
9353 #: mercurial/merge.py:221 mercurial/merge.py:255
9354 msgid "[cd]"
9355 msgstr ""
9356
9357 #: mercurial/merge.py:221 mercurial/merge.py:255
9358 msgid "c"
9359 msgstr ""
9360
9361 #: mercurial/merge.py:253
9362 msgid ""
9363 "remote changed %s which local deleted\n"
9364 "use (c)hanged version or leave (d)eleted?"
9365 msgstr ""
9366
9367 #: mercurial/merge.py:287
9368 msgid "preserving %s for resolve of %s\n"
9369 msgstr ""
9370
9371 #: mercurial/merge.py:314
9372 msgid "update failed to remove %s: %s!\n"
9373 msgstr ""
9374
9375 #: mercurial/merge.py:333
9376 msgid "getting %s\n"
9377 msgstr ""
9378
9379 #: mercurial/merge.py:340
9380 msgid "moving %s to %s\n"
9381 msgstr ""
9382
9383 #: mercurial/merge.py:345
9384 msgid "getting %s to %s\n"
9385 msgstr ""
9386
9387 #: mercurial/merge.py:351
9388 msgid "warning: detected divergent renames of %s to:\n"
9389 msgstr ""
9390
9391 #: mercurial/merge.py:438
9392 msgid "branch %s not found"
9393 msgstr ""
9394
9395 #: mercurial/merge.py:451
9396 msgid "can't merge with ancestor"
9397 msgstr ""
9398
9399 #: mercurial/merge.py:456
9400 msgid "nothing to merge (use 'hg update' or check 'hg heads')"
9401 msgstr ""
9402
9403 #: mercurial/merge.py:465
9404 msgid "crosses branches (use 'hg merge' or 'hg update -C' to discard changes)"
9405 msgstr ""
9406
9407 #: mercurial/merge.py:467
9408 msgid "crosses branches (use 'hg merge' or 'hg update -C')"
9409 msgstr ""
9410
9411 #: mercurial/merge.py:470
9412 msgid "crosses named branches (use 'hg update -C' to discard changes)"
9413 msgstr ""
9414
9415 #: mercurial/patch.py:28
9416 msgid "cannot create %s: destination already exists"
9417 msgstr ""
9418
9419 #: mercurial/patch.py:37
9420 msgid "cannot create %s: unable to create destination directory"
9421 msgstr ""
9422
9423 #: mercurial/patch.py:96
9424 msgid "found patch at byte %d\n"
9425 msgstr ""
9426
9427 #: mercurial/patch.py:101
9428 msgid "patch generated by hg export\n"
9429 msgstr ""
9430
9431 #: mercurial/patch.py:250
9432 msgid "unable to find '%s' for patching\n"
9433 msgstr ""
9434
9435 #: mercurial/patch.py:282
9436 msgid "patching file %s\n"
9437 msgstr ""
9438
9439 #: mercurial/patch.py:325
9440 msgid "%d out of %d hunks FAILED -- saving rejects to file %s\n"
9441 msgstr ""
9442
9443 #: mercurial/patch.py:352
9444 msgid "bad hunk #%d %s (%d %d %d %d)"
9445 msgstr ""
9446
9447 #: mercurial/patch.py:365
9448 msgid "file %s already exists\n"
9449 msgstr ""
9450
9451 #: mercurial/patch.py:427
9452 msgid "Hunk #%d succeeded at %d %s(offset %d %s).\n"
9453 msgstr ""
9454
9455 #: mercurial/patch.py:431
9456 msgid "Hunk #%d FAILED at %d\n"
9457 msgstr ""
9458
9459 #: mercurial/patch.py:452 mercurial/patch.py:478 mercurial/patch.py:510
9460 msgid "bad hunk #%d"
9461 msgstr ""
9462
9463 #: mercurial/patch.py:497 mercurial/patch.py:539
9464 msgid "bad hunk #%d old text line %d"
9465 msgstr ""
9466
9467 #: mercurial/patch.py:691
9468 msgid "could not extract binary patch"
9469 msgstr ""
9470
9471 #: mercurial/patch.py:707
9472 msgid "binary patch is %d bytes, not %d"
9473 msgstr ""
9474
9475 #: mercurial/patch.py:742
9476 msgid "unable to strip away %d dirs from %s"
9477 msgstr ""
9478
9479 #: mercurial/patch.py:781
9480 msgid "undefined source and destination files"
9481 msgstr ""
9482
9483 #: mercurial/patch.py:951
9484 msgid "malformed patch %s %s"
9485 msgstr ""
9486
9487 #: mercurial/patch.py:1008
9488 msgid "unsupported parser state: %s"
9489 msgstr ""
9490
9491 #: mercurial/patch.py:1104
9492 msgid "patch command failed: %s"
9493 msgstr ""
9494
9495 #: mercurial/patch.py:1141
9496 msgid "no valid hunks found; trying with %r instead\n"
9497 msgstr ""
9498
9499 #: mercurial/repair.py:20
9500 msgid "saving bundle to %s\n"
9501 msgstr ""
9502
9503 #: mercurial/repair.py:128
9504 msgid "adding branch\n"
9505 msgstr "tilføjer gren\n"
9506
9507 #: mercurial/repo.py:34
9508 msgid "cannot %s; remote repository does not support the %r capability"
9509 msgstr ""
9510
9511 #: mercurial/revlog.py:40
9512 msgid "%s@%s: %s"
9513 msgstr ""
9514
9515 #: mercurial/revlog.py:108
9516 msgid "unknown compression type %r"
9517 msgstr ""
9518
9519 #: mercurial/revlog.py:450
9520 msgid "index %s unknown flags %#04x for format v0"
9521 msgstr ""
9522
9523 #: mercurial/revlog.py:453
9524 msgid "index %s unknown flags %#04x for revlogng"
9525 msgstr ""
9526
9527 #: mercurial/revlog.py:456
9528 msgid "index %s unknown format %d"
9529 msgstr ""
9530
9531 #: mercurial/revlog.py:500
9532 msgid "no node"
9533 msgstr ""
9534
9535 #: mercurial/revlog.py:884
9536 msgid "ambiguous identifier"
9537 msgstr ""
9538
9539 #: mercurial/revlog.py:901
9540 msgid "no match found"
9541 msgstr ""
9542
9543 #: mercurial/revlog.py:967
9544 msgid "incompatible revision flag %x"
9545 msgstr ""
9546
9547 #: mercurial/revlog.py:1006
9548 msgid "%s not found in the transaction"
9549 msgstr ""
9550
9551 #: mercurial/revlog.py:1220
9552 msgid "unknown base"
9553 msgstr ""
9554
9555 #: mercurial/revlog.py:1253
9556 msgid "consistency error adding group"
9557 msgstr ""
9558
9559 #: mercurial/simplemerge.py:414
9560 msgid "%s looks like a binary file."
9561 msgstr ""
9562
9563 #: mercurial/simplemerge.py:429
9564 msgid "can only specify two labels."
9565 msgstr ""
9566
9567 #: mercurial/simplemerge.py:454
9568 msgid "warning: conflicts during merge.\n"
9569 msgstr ""
9570
9571 #: mercurial/sshrepo.py:29
9572 msgid "couldn't parse location %s"
9573 msgstr ""
9574
9575 #: mercurial/sshrepo.py:48
9576 msgid "could not create remote repo"
9577 msgstr ""
9578
9579 #: mercurial/sshrepo.py:77 mercurial/sshrepo.py:96 mercurial/sshrepo.py:108
9580 msgid "remote: "
9581 msgstr ""
9582
9583 #: mercurial/sshrepo.py:81
9584 msgid "no suitable response from remote hg"
9585 msgstr ""
9586
9587 #: mercurial/sshrepo.py:201 mercurial/sshrepo.py:225
9588 msgid "push refused: %s"
9589 msgstr ""
9590
9591 #: mercurial/sshserver.py:164 mercurial/sshserver.py:187
9592 msgid "unsynced changes"
9593 msgstr ""
9594
9595 #: mercurial/statichttprepo.py:112
9596 msgid "cannot lock static-http repository"
9597 msgstr ""
9598
9599 #: mercurial/statichttprepo.py:116
9600 msgid "cannot create new static-http repository"
9601 msgstr ""
9602
9603 #: mercurial/store.py:227
9604 msgid "invalid entry in fncache, line %s"
9605 msgstr ""
9606
9607 #: mercurial/streamclone.py:46
9608 msgid "scanning\n"
9609 msgstr ""
9610
9611 #: mercurial/streamclone.py:58
9612 msgid "%d files, %d bytes to transfer\n"
9613 msgstr "%d filer, skal overføre %d bytes\n"
9614
9615 #: mercurial/streamclone.py:62
9616 msgid "sending %s (%d bytes)\n"
9617 msgstr ""
9618
9619 #: mercurial/templater.py:19
9620 msgid "unmatched quotes"
9621 msgstr ""
9622
9623 #: mercurial/templater.py:64
9624 msgid "style not found: %s"
9625 msgstr ""
9626
9627 #: mercurial/templater.py:83
9628 msgid "%s:%s: parse error"
9629 msgstr ""
9630
9631 #: mercurial/templater.py:94
9632 msgid "template file %s: %s"
9633 msgstr ""
9634
9635 #: mercurial/templater.py:121
9636 msgid "Error expanding '%s%%%s'"
9637 msgstr ""
9638
9639 #: mercurial/transaction.py:83
9640 msgid "transaction abort!\n"
9641 msgstr ""
9642
9643 #: mercurial/transaction.py:89
9644 msgid "failed to truncate %s\n"
9645 msgstr ""
9646
9647 #: mercurial/transaction.py:93
9648 msgid "rollback completed\n"
9649 msgstr ""
9650
9651 #: mercurial/ui.py:124
9652 msgid "Not trusting file %s from untrusted user %s, group %s\n"
9653 msgstr ""
9654
9655 #: mercurial/ui.py:151
9656 msgid ""
9657 "Failed to parse %s\n"
9658 "%s"
9659 msgstr ""
9660
9661 #: mercurial/ui.py:154 mercurial/ui.py:262 mercurial/ui.py:308
9662 msgid "Ignored: %s\n"
9663 msgstr "Ignoreret: %s\n"
9664
9665 #: mercurial/ui.py:181
9666 msgid "unable to open %s: %s"
9667 msgstr "kunne ikke åbne %s: %s"
9668
9669 #: mercurial/ui.py:188
9670 msgid ""
9671 "failed to parse %s\n"
9672 "%s"
9673 msgstr ""
9674
9675 #: mercurial/ui.py:258
9676 msgid ""
9677 "Error in configuration section [%s] parameter '%s':\n"
9678 "%s"
9679 msgstr ""
9680
9681 #: mercurial/ui.py:272 mercurial/ui.py:317
9682 msgid "Ignoring untrusted configuration option %s.%s = %s\n"
9683 msgstr ""
9684
9685 #: mercurial/ui.py:304
9686 msgid ""
9687 "Error in configuration section [%s]:\n"
9688 "%s"
9689 msgstr ""
9690
9691 #: mercurial/ui.py:343
9692 msgid "enter a commit username:"
9693 msgstr "angiv et commit brugernavn:"
9694
9695 #: mercurial/ui.py:347
9696 msgid "No username found, using '%s' instead\n"
9697 msgstr "Fandt intet brugernavn, bruger '%s' istedet\n"
9698
9699 #: mercurial/ui.py:351
9700 msgid "Please specify a username."
9701 msgstr "Angiv venligst et brugernavn."
9702
9703 #: mercurial/ui.py:353
9704 msgid "username %s contains a newline\n"
9705 msgstr "brugernavn %s indeholder et linieskift\n"
9706
9707 #: mercurial/ui.py:436
9708 msgid "unrecognized response\n"
9709 msgstr ""
9710
9711 #: mercurial/ui.py:438
9712 msgid "response expected"
9713 msgstr ""
9714
9715 #: mercurial/ui.py:442
9716 msgid "password: "
9717 msgstr "kodeord: "
9718
9719 #: mercurial/ui.py:463
9720 msgid "edit failed"
9721 msgstr "redigering fejlede"
9722
9723 #: mercurial/url.py:111
9724 msgid "http authorization required"
9725 msgstr ""
9726
9727 #: mercurial/url.py:113
9728 msgid "http authorization required\n"
9729 msgstr ""
9730
9731 #: mercurial/url.py:114
9732 msgid "realm: %s\n"
9733 msgstr ""
9734
9735 #: mercurial/url.py:116
9736 msgid "user: %s\n"
9737 msgstr ""
9738
9739 #: mercurial/url.py:118
9740 msgid "user:"
9741 msgstr ""
9742
9743 #: mercurial/url.py:163
9744 msgid "proxying through http://%s:%s\n"
9745 msgstr ""
9746
9747 #: mercurial/url.py:289
9748 msgid "http auth: user %s, password %s\n"
9749 msgstr ""
9750
9751 #: mercurial/util.py:117 mercurial/util.py:139
9752 msgid "%s, please check your locale settings"
9753 msgstr "%s, tjek venligst dine sprogindstillinger"
9754
9755 #: mercurial/util.py:257
9756 msgid "command '%s' failed: %s"
9757 msgstr "kommandoen '%s' fejlede: %s"
9758
9759 #: mercurial/util.py:819
9760 msgid "path contains illegal component: %s"
9761 msgstr "stien indeholder ugyldig komponent: %s"
9762
9763 #: mercurial/util.py:825 mercurial/util.py:841
9764 msgid "path %r is inside repo %r"
9765 msgstr "stien %r er inde i repo %r"
9766
9767 #: mercurial/util.py:837
9768 msgid "path %r traverses symbolic link %r"
9769 msgstr "stien %r følger symbolsk link %r"
9770
9771 #: mercurial/util.py:874
9772 msgid "Hardlinks not supported"
9773 msgstr "Hardlinks er ikke supporteret"
9774
9775 #: mercurial/util.py:948
9776 msgid "user name not available - set USERNAME environment variable"
9777 msgstr "der er ikke noget brugernavn - sæt USERNAME miljøvariabel"
9778
9779 #: mercurial/util.py:1263 mercurial/util.py:1440
9780 msgid "exited with status %d"
9781 msgstr "afsluttede med status %d"
9782
9783 #: mercurial/util.py:1443
9784 msgid "killed by signal %d"
9785 msgstr "dræbt af signal %d"
9786
9787 #: mercurial/util.py:1446
9788 msgid "stopped by signal %d"
9789 msgstr "stoppet af signal %d"
9790
9791 #: mercurial/util.py:1447
9792 msgid "invalid exit code"
9793 msgstr "ugyldig returkode"
9794
9795 #: mercurial/util.py:1640
9796 msgid "could not symlink to %r: %s"
9797 msgstr "kunne ikke lave et symbolsk link til %r: %s"
9798
9799 #: mercurial/util.py:1796
9800 msgid "invalid date: %r "
9801 msgstr "ugyldig dato: %r "
9802
9803 #: mercurial/util.py:1802
9804 msgid "date exceeds 32 bits: %d"
9805 msgstr "dato overskrider 32 bit: %d"
9806
9807 #: mercurial/util.py:1804
9808 msgid "impossible time zone offset: %d"
9809 msgstr "umuligt tidszone: %d"
9810
9811 #: mercurial/util.py:1845
9812 msgid "invalid day spec: %s"
9813 msgstr ""
9814
9815 #: mercurial/util.py:1966
9816 msgid "%.0f GB"
9817 msgstr "%.0f GB"
9818
9819 #: mercurial/util.py:1967
9820 msgid "%.1f GB"
9821 msgstr "%.1f GB"
9822
9823 #: mercurial/util.py:1968
9824 msgid "%.2f GB"
9825 msgstr "%.2f GB"
9826
9827 #: mercurial/util.py:1969
9828 msgid "%.0f MB"
9829 msgstr "%.0f MB"
9830
9831 #: mercurial/util.py:1970
9832 msgid "%.1f MB"
9833 msgstr "%.1f MB"
9834
9835 #: mercurial/util.py:1971
9836 msgid "%.2f MB"
9837 msgstr "%.2f MB"
9838
9839 #: mercurial/util.py:1972
9840 msgid "%.0f KB"
9841 msgstr "%.0f KB"
9842
9843 #: mercurial/util.py:1973
9844 msgid "%.1f KB"
9845 msgstr "%.1f KB"
9846
9847 #: mercurial/util.py:1974
9848 msgid "%.2f KB"
9849 msgstr "%.2f KB"
9850
9851 #: mercurial/util.py:1975
9852 msgid "%.0f bytes"
9853 msgstr "%.0f bytes"
9854
9855 #: mercurial/verify.py:32
9856 msgid "cannot verify bundle or remote repos"
9857 msgstr ""
9858
9859 #: mercurial/verify.py:47
9860 msgid "interrupted"
9861 msgstr "afbrudt"
9862
9863 #: mercurial/verify.py:57
9864 msgid "empty or missing %s"
9865 msgstr "tom eller mangler"
9866
9867 #: mercurial/verify.py:62
9868 msgid "data length off by %d bytes"
9869 msgstr ""
9870
9871 #: mercurial/verify.py:64
9872 msgid "index contains %d extra bytes"
9873 msgstr "indekset indeholder %d ekstra bytes"
9874
9875 #: mercurial/verify.py:68
9876 msgid "warning: `%s' uses revlog format 1"
9877 msgstr "advarsel: '%s' bruger revlog format 1"
9878
9879 #: mercurial/verify.py:70
9880 msgid "warning: `%s' uses revlog format 0"
9881 msgstr "advarsel: '%s' bruger revlog format 0"
9882
9883 #: mercurial/verify.py:78
9884 msgid "rev %d point to %s changeset %d"
9885 msgstr ""
9886
9887 #: mercurial/verify.py:80
9888 msgid " (expected %s)"
9889 msgstr " (forventede %s)"
9890
9891 #: mercurial/verify.py:86
9892 msgid "unknown parent 1 %s of %s"
9893 msgstr "ukendt forældre 1 %s til %s"
9894
9895 #: mercurial/verify.py:89
9896 msgid "unknown parent 2 %s of %s"
9897 msgstr "ukendt forældre 2 %s til %s"
9898
9899 #: mercurial/verify.py:92
9900 msgid "checking parents of %s"
9901 msgstr "tjekkre forældrene til %s"
9902
9903 #: mercurial/verify.py:95
9904 msgid "duplicate revision %d (%d)"
9905 msgstr "duplikeret revision %d (%d)"
9906
9907 #: mercurial/verify.py:101
9908 msgid "repository uses revlog format %d\n"
9909 msgstr "repository bruger revlog format %d\n"
9910
9911 #: mercurial/verify.py:107
9912 msgid "checking changesets\n"
9913 msgstr "tjekker ændringer\n"
9914
9915 #: mercurial/verify.py:120
9916 msgid "unpacking changeset %s"
9917 msgstr "udpakker ændring %s"
9918
9919 #: mercurial/verify.py:122
9920 msgid "checking manifests\n"
9921 msgstr ""
9922
9923 #: mercurial/verify.py:134
9924 msgid "file without name in manifest"
9925 msgstr ""
9926
9927 #: mercurial/verify.py:140
9928 msgid "reading manifest delta %s"
9929 msgstr ""
9930
9931 #: mercurial/verify.py:142
9932 msgid "crosschecking files in changesets and manifests\n"
9933 msgstr ""
9934
9935 #: mercurial/verify.py:146
9936 msgid "changeset refers to unknown manifest %s"
9937 msgstr ""
9938
9939 #: mercurial/verify.py:152
9940 msgid "in changeset but not in manifest"
9941 msgstr ""
9942
9943 #: mercurial/verify.py:162
9944 msgid "in manifest but not in changeset"
9945 msgstr ""
9946
9947 #: mercurial/verify.py:164
9948 msgid "checking files\n"
9949 msgstr "tjekker filer\n"
9950
9951 #: mercurial/verify.py:169
9952 msgid "cannot decode filename '%s'"
9953 msgstr "kan ikke dekode filnavn '%s'"
9954
9955 #: mercurial/verify.py:181
9956 msgid "missing revlog!"
9957 msgstr "manglende revlog!"
9958
9959 #: mercurial/verify.py:191
9960 msgid "%s not in manifests"
9961 msgstr ""
9962
9963 #: mercurial/verify.py:201
9964 msgid "unpacked size is %s, %s expected"
9965 msgstr "udpakket størrelse er %s, forventede %s"
9966
9967 #: mercurial/verify.py:204
9968 msgid "unpacking %s"
9969 msgstr "udpakker %s"
9970
9971 #: mercurial/verify.py:211
9972 msgid "empty or missing copy source revlog %s:%s"
9973 msgstr ""
9974
9975 #: mercurial/verify.py:214
9976 msgid "warning: %s@%s: copy source revision is nullid %s:%s"
9977 msgstr ""
9978
9979 #: mercurial/verify.py:219
9980 msgid "checking rename of %s"
9981 msgstr "tjekker omdøbning af %s"
9982
9983 #: mercurial/verify.py:225
9984 msgid "%s in manifests not found"
9985 msgstr ""
9986
9987 #: mercurial/verify.py:228
9988 msgid "warning: orphan revlog '%s'"
9989 msgstr "advarsel: forældreløs revlog '%s'"
9990
9991 #: mercurial/verify.py:230
9992 msgid "%d files, %d changesets, %d total revisions\n"
9993 msgstr "%d filer, %d ændringer, ialt %d revisioner\n"
9994
9995 #: mercurial/verify.py:233
9996 msgid "%d warnings encountered!\n"
9997 msgstr "mødte %d advarsler!\n"
9998
9999 #: mercurial/verify.py:235
10000 msgid "%d integrity errors encountered!\n"
10001 msgstr "fandt %d integritetsfejl!\n"
10002
10003 #: mercurial/verify.py:237
10004 msgid "(first damaged changeset appears to be %d)\n"
10005 msgstr "(første beskadigede ændring er tilsyneladende %d)\n"
General Comments 0
You need to be logged in to leave comments. Login now