diff options
| -rw-r--r-- | Documentation/RelNotes/2.2.3.txt | 9 | ||||
| -rw-r--r-- | Documentation/RelNotes/2.3.9.txt | 9 | ||||
| -rw-r--r-- | Documentation/RelNotes/2.4.9.txt | 9 | ||||
| -rw-r--r-- | Documentation/RelNotes/2.5.2.txt | 63 | ||||
| -rw-r--r-- | Documentation/RelNotes/2.6.0.txt | 10 | ||||
| -rw-r--r-- | Documentation/git.txt | 12 | ||||
| -rw-r--r-- | Documentation/technical/pack-protocol.txt | 46 | ||||
| -rw-r--r-- | Documentation/technical/protocol-common.txt | 5 | ||||
| -rwxr-xr-x | GIT-VERSION-GEN | 2 | ||||
| -rw-r--r-- | builtin/apply.c | 2 | ||||
| -rw-r--r-- | builtin/show-branch.c | 6 | ||||
| -rwxr-xr-x | git-svn.perl | 2 | ||||
| -rwxr-xr-x | gitk-git/gitk | 268 | ||||
| -rw-r--r-- | gitk-git/po/bg.po | 591 | ||||
| -rw-r--r-- | gitk-git/po/ca.po | 576 | ||||
| -rw-r--r-- | gitk-git/po/de.po | 576 | ||||
| -rw-r--r-- | gitk-git/po/es.po | 584 | ||||
| -rw-r--r-- | gitk-git/po/fr.po | 584 | ||||
| -rw-r--r-- | gitk-git/po/hu.po | 585 | ||||
| -rw-r--r-- | gitk-git/po/it.po | 575 | ||||
| -rw-r--r-- | gitk-git/po/ja.po | 576 | ||||
| -rw-r--r-- | gitk-git/po/pt_br.po | 576 | ||||
| -rw-r--r-- | gitk-git/po/ru.po | 584 | ||||
| -rw-r--r-- | gitk-git/po/sv.po | 613 | ||||
| -rw-r--r-- | gitk-git/po/vi.po | 576 | ||||
| -rw-r--r-- | notes.c | 19 | ||||
| -rw-r--r-- | sha1_file.c | 9 | ||||
| -rwxr-xr-x | t/t7060-wtstatus.sh | 2 | ||||
| -rw-r--r-- | unpack-trees.c | 17 |
29 files changed, 3917 insertions, 3569 deletions
diff --git a/Documentation/RelNotes/2.2.3.txt b/Documentation/RelNotes/2.2.3.txt new file mode 100644 index 0000000000..5bfffa4106 --- /dev/null +++ b/Documentation/RelNotes/2.2.3.txt @@ -0,0 +1,9 @@ +Git v2.2.3 Release Notes +======================== + +Fixes since v2.2.2 +------------------ + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. diff --git a/Documentation/RelNotes/2.3.9.txt b/Documentation/RelNotes/2.3.9.txt new file mode 100644 index 0000000000..1a2ad3235a --- /dev/null +++ b/Documentation/RelNotes/2.3.9.txt @@ -0,0 +1,9 @@ +Git v2.3.9 Release Notes +======================== + +Fixes since v2.3.8 +------------------ + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. diff --git a/Documentation/RelNotes/2.4.9.txt b/Documentation/RelNotes/2.4.9.txt new file mode 100644 index 0000000000..09af9ddbc7 --- /dev/null +++ b/Documentation/RelNotes/2.4.9.txt @@ -0,0 +1,9 @@ +Git v2.4.9 Release Notes +======================== + +Fixes since v2.4.9 +------------------ + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. diff --git a/Documentation/RelNotes/2.5.2.txt b/Documentation/RelNotes/2.5.2.txt new file mode 100644 index 0000000000..3f749398bb --- /dev/null +++ b/Documentation/RelNotes/2.5.2.txt @@ -0,0 +1,63 @@ +Git v2.5.2 Release Notes +======================== + +Fixes since v2.5.1 +------------------ + + * "git init empty && git -C empty log" said "bad default revision 'HEAD'", + which was found to be a bit confusing to new users. + + * The "interpret-trailers" helper mistook a multi-paragraph title of + a commit log message with a colon in it as the end of the trailer + block. + + * When re-priming the cache-tree opportunistically while committing + the in-core index as-is, we mistakenly invalidated the in-core + index too aggressively, causing the experimental split-index code + to unnecessarily rewrite the on-disk index file(s). + + * "git archive" did not use zip64 extension when creating an archive + with more than 64k entries, which nobody should need, right ;-)? + + * The code in "multiple-worktree" support that attempted to recover + from an inconsistent state updated an incorrect file. + + * "git rev-list" does not take "--notes" option, but did not complain + when one is given. + + * Because the configuration system does not allow "alias.0foo" and + "pager.0foo" as the configuration key, the user cannot use '0foo' + as a custom command name anyway, but "git 0foo" tried to look these + keys up and emitted useless warnings before saying '0foo is not a + git command'. These warning messages have been squelched. + + * We recently rewrote one of the build scripts in Perl, which made it + necessary to have Perl to build Git. Reduced Perl dependency by + rewriting it again using sed. + + * t1509 test that requires a dedicated VM environment had some + bitrot, which has been corrected. + + * strbuf_read() used to have one extra iteration (and an unnecessary + strbuf_grow() of 8kB), which was eliminated. + + * The codepath to produce error messages had a hard-coded limit to + the size of the message, primarily to avoid memory allocation while + calling die(). + + * When trying to see that an object does not exist, a state errno + leaked from our "first try to open a packfile with O_NOATIME and + then if it fails retry without it" logic on a system that refuses + O_NOATIME. This confused us and caused us to die, saying that the + packfile is unreadable, when we should have just reported that the + object does not exist in that packfile to the caller. + + * An off-by-one error made "git remote" to mishandle a remote with a + single letter nickname. + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. + +Also contains typofixes, documentation updates and trivial code +clean-ups. diff --git a/Documentation/RelNotes/2.6.0.txt b/Documentation/RelNotes/2.6.0.txt index eb79a1815d..7d65c163da 100644 --- a/Documentation/RelNotes/2.6.0.txt +++ b/Documentation/RelNotes/2.6.0.txt @@ -56,7 +56,7 @@ UI, Workflows & Features * A negative !ref entry in multi-value transfer.hideRefs configuration can be used to say "don't hide this one". - * After "git am" without "-3" stops, running "git am -" pays attention + * After "git am" without "-3" stops, running "git am -3" pays attention to "-3" only for the patch that caused the original invocation to stop. @@ -84,6 +84,12 @@ UI, Workflows & Features * "git config --list" output was hard to parse when values consist of multiple lines. "--name-only" option is added to help this. + * A handful of usability & cosmetic fixes to gitk and l10n updates. + + * A completely empty e-mail address <> is now allowed in the authors + file used by git-svn, to match the way it accepts the output from + authors-prog. + Performance, Internal Implementation, Development Support etc. @@ -349,3 +355,5 @@ notes for details). (merge b8c1d27 ah/pack-objects-usage-strings later to maint). (merge 486e1e1 br/svn-doc-include-paths-config later to maint). (merge 1733ed3 ee/clean-test-fixes later to maint). + (merge 5fcadc3 gb/apply-comment-typofix later to maint). + (merge b894d3e mp/t7060-diff-index-test later to maint). diff --git a/Documentation/git.txt b/Documentation/git.txt index 4e5d55be6a..75ffb16d96 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -43,15 +43,17 @@ unreleased) version of Git, that is available from the 'master' branch of the `git.git` repository. Documentation for older releases are available here: -* link:v2.5.1/git.html[documentation for release 2.5.1] +* link:v2.5.2/git.html[documentation for release 2.5.2] * release notes for + link:RelNotes/2.5.2.txt[2.5.2], link:RelNotes/2.5.1.txt[2.5.1], link:RelNotes/2.5.0.txt[2.5]. -* link:v2.4.8/git.html[documentation for release 2.4.8] +* link:v2.4.9/git.html[documentation for release 2.4.9] * release notes for + link:RelNotes/2.4.9.txt[2.4.9], link:RelNotes/2.4.8.txt[2.4.8], link:RelNotes/2.4.7.txt[2.4.7], link:RelNotes/2.4.6.txt[2.4.6], @@ -62,9 +64,10 @@ Documentation for older releases are available here: link:RelNotes/2.4.1.txt[2.4.1], link:RelNotes/2.4.0.txt[2.4]. -* link:v2.3.8/git.html[documentation for release 2.3.8] +* link:v2.3.9/git.html[documentation for release 2.3.9] * release notes for + link:RelNotes/2.3.9.txt[2.3.9], link:RelNotes/2.3.8.txt[2.3.8], link:RelNotes/2.3.7.txt[2.3.7], link:RelNotes/2.3.6.txt[2.3.6], @@ -75,9 +78,10 @@ Documentation for older releases are available here: link:RelNotes/2.3.1.txt[2.3.1], link:RelNotes/2.3.0.txt[2.3]. -* link:v2.2.2/git.html[documentation for release 2.2.2] +* link:v2.2.3/git.html[documentation for release 2.2.3] * release notes for + link:RelNotes/2.2.3.txt[2.2.3], link:RelNotes/2.2.2.txt[2.2.2], link:RelNotes/2.2.1.txt[2.2.1], link:RelNotes/2.2.0.txt[2.2]. diff --git a/Documentation/technical/pack-protocol.txt b/Documentation/technical/pack-protocol.txt index 4064fc796f..c6977bbc5a 100644 --- a/Documentation/technical/pack-protocol.txt +++ b/Documentation/technical/pack-protocol.txt @@ -14,6 +14,14 @@ data. The protocol functions to have a server tell a client what is currently on the server, then for the two to negotiate the smallest amount of data to send in order to fully update one or the other. +pkt-line Format +--------------- + +The descriptions below build on the pkt-line format described in +protocol-common.txt. When the grammar indicate `PKT-LINE(...)`, unless +otherwise noted the usual pkt-line LF rules apply: the sender SHOULD +include a LF, but the receiver MUST NOT complain if it is not present. + Transports ---------- There are three transports over which the packfile protocol is @@ -143,9 +151,6 @@ with the object name that each reference currently points to. 003fe92df48743b7bc7d26bcaabfddde0a1e20cae47c refs/tags/v1.0^{} 0000 -Server SHOULD terminate each non-flush line using LF ("\n") terminator; -client MUST NOT complain if there is no terminator. - The returned response is a pkt-line stream describing each ref and its current value. The stream MUST be sorted by name according to the C locale ordering. @@ -165,15 +170,15 @@ MUST peel the ref if it's an annotated tag. flush-pkt no-refs = PKT-LINE(zero-id SP "capabilities^{}" - NUL capability-list LF) + NUL capability-list) list-of-refs = first-ref *other-ref first-ref = PKT-LINE(obj-id SP refname - NUL capability-list LF) + NUL capability-list) other-ref = PKT-LINE(other-tip / other-peeled) - other-tip = obj-id SP refname LF - other-peeled = obj-id SP refname "^{}" LF + other-tip = obj-id SP refname + other-peeled = obj-id SP refname "^{}" shallow = PKT-LINE("shallow" SP obj-id) @@ -216,8 +221,8 @@ out of what the server said it could do with the first 'want' line. depth-request = PKT-LINE("deepen" SP depth) - first-want = PKT-LINE("want" SP obj-id SP capability-list LF) - additional-want = PKT-LINE("want" SP obj-id LF) + first-want = PKT-LINE("want" SP obj-id SP capability-list) + additional-want = PKT-LINE("want" SP obj-id) depth = 1*DIGIT ---- @@ -284,7 +289,7 @@ so that there is always a block of 32 "in-flight on the wire" at a time. compute-end have-list = *have-line - have-line = PKT-LINE("have" SP obj-id LF) + have-line = PKT-LINE("have" SP obj-id) compute-end = flush-pkt / PKT-LINE("done") ---- @@ -348,10 +353,10 @@ Then the server will start sending its packfile data. ---- server-response = *ack_multi ack / nak - ack_multi = PKT-LINE("ACK" SP obj-id ack_status LF) + ack_multi = PKT-LINE("ACK" SP obj-id ack_status) ack_status = "continue" / "common" / "ready" - ack = PKT-LINE("ACK SP obj-id LF) - nak = PKT-LINE("NAK" LF) + ack = PKT-LINE("ACK" SP obj-id) + nak = PKT-LINE("NAK") ---- A simple clone may look like this (with no 'have' lines): @@ -467,10 +472,10 @@ references. ---- update-request = *shallow ( command-list | push-cert ) [packfile] - shallow = PKT-LINE("shallow" SP obj-id LF) + shallow = PKT-LINE("shallow" SP obj-id) - command-list = PKT-LINE(command NUL capability-list LF) - *PKT-LINE(command LF) + command-list = PKT-LINE(command NUL capability-list) + *PKT-LINE(command) flush-pkt command = create / delete / update @@ -521,7 +526,8 @@ Push Certificate A push certificate begins with a set of header lines. After the header and an empty line, the protocol commands follow, one per -line. +line. Note that the the trailing LF in push-cert PKT-LINEs is _not_ +optional; it must be present. Currently, the following header fields are defined: @@ -560,12 +566,12 @@ update was successful, or 'ng [refname] [error]' if the update was not. 1*(command-status) flush-pkt - unpack-status = PKT-LINE("unpack" SP unpack-result LF) + unpack-status = PKT-LINE("unpack" SP unpack-result) unpack-result = "ok" / error-msg command-status = command-ok / command-fail - command-ok = PKT-LINE("ok" SP refname LF) - command-fail = PKT-LINE("ng" SP refname SP error-msg LF) + command-ok = PKT-LINE("ok" SP refname) + command-fail = PKT-LINE("ng" SP refname SP error-msg) error-msg = 1*(OCTECT) ; where not "ok" ---- diff --git a/Documentation/technical/protocol-common.txt b/Documentation/technical/protocol-common.txt index 889985f707..bf30167ae3 100644 --- a/Documentation/technical/protocol-common.txt +++ b/Documentation/technical/protocol-common.txt @@ -62,7 +62,10 @@ A pkt-line MAY contain binary data, so implementors MUST ensure pkt-line parsing/formatting routines are 8-bit clean. A non-binary line SHOULD BE terminated by an LF, which if present -MUST be included in the total length. +MUST be included in the total length. Receivers MUST treat pkt-lines +with non-binary data the same whether or not they contain the trailing +LF (stripping the LF if present, and not complaining when it is +missing). The maximum length of a pkt-line's data component is 65520 bytes. Implementations MUST NOT send pkt-line whose length exceeds 65524 diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 181f397bd4..037c57e94d 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v2.6.0-rc1 +DEF_VER=v2.6.0-rc2 LF=' ' diff --git a/builtin/apply.c b/builtin/apply.c index 54aba4e351..4aa53f7fd8 100644 --- a/builtin/apply.c +++ b/builtin/apply.c @@ -785,7 +785,7 @@ static int guess_p_value(const char *nameline) } /* - * Does the ---/+++ line has the POSIX timestamp after the last HT? + * Does the ---/+++ line have the POSIX timestamp after the last HT? * GNU diff puts epoch there to signal a creation/deletion event. Is * this such a timestamp? */ diff --git a/builtin/show-branch.c b/builtin/show-branch.c index c87c46eb38..408ce70307 100644 --- a/builtin/show-branch.c +++ b/builtin/show-branch.c @@ -730,7 +730,6 @@ int cmd_show_branch(int ac, const char **av, const char *prefix) if (reflog) { struct object_id oid; - char nth_desc[256]; char *ref; int base = 0; unsigned int flags = 0; @@ -769,6 +768,7 @@ int cmd_show_branch(int ac, const char **av, const char *prefix) for (i = 0; i < reflog; i++) { char *logmsg; + char *nth_desc; const char *msg; unsigned long timestamp; int tz; @@ -788,8 +788,10 @@ int cmd_show_branch(int ac, const char **av, const char *prefix) DATE_MODE(RELATIVE)), msg); free(logmsg); - sprintf(nth_desc, "%s@{%d}", *av, base+i); + + nth_desc = xstrfmt("%s@{%d}", *av, base+i); append_ref(nth_desc, &oid, 1); + free(nth_desc); } free(ref); } diff --git a/git-svn.perl b/git-svn.perl index 36f7240c99..fa5f253065 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -1924,7 +1924,7 @@ sub load_authors { my $log = $cmd eq 'log'; while (<$authors>) { chomp; - next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/; + next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.*)>\s*$/; my ($user, $name, $email) = ($1, $2, $3); if ($log) { $Git::SVN::Log::rusers{"$name <$email>"} = $user; diff --git a/gitk-git/gitk b/gitk-git/gitk index 9a2daf3c55..2028b554f4 100755 --- a/gitk-git/gitk +++ b/gitk-git/gitk @@ -600,18 +600,18 @@ proc reloadcommits {} { } resetvarcs $curview set selectedline {} - catch {unset currentid} - catch {unset thickerline} - catch {unset treediffs} + unset -nocomplain currentid + unset -nocomplain thickerline + unset -nocomplain treediffs readrefs changedrefs if {$showneartags} { getallcommits } clear_display - catch {unset commitinterest} - catch {unset cached_commitrow} - catch {unset targetid} + unset -nocomplain commitinterest + unset -nocomplain cached_commitrow + unset -nocomplain targetid setcanvscroll getcommits $selid return 0 @@ -673,7 +673,7 @@ proc resetvarcs {view} { foreach vd [array names vseedcount $view,*] { unset vseedcount($vd) } - catch {unset ordertok} + unset -nocomplain ordertok } # returns a list of the commits with no children @@ -966,7 +966,7 @@ proc insertrow {id p v} { set vp $v,$p if {[llength [lappend children($vp) $id]] > 1} { set children($vp) [lsort -command [list vtokcmp $v] $children($vp)] - catch {unset ordertok} + unset -nocomplain ordertok } fix_reversal $p $a $v incr commitidx($v) @@ -1136,7 +1136,7 @@ proc update_arcrows {v} { set displayorder [lrange $displayorder 0 [expr {$vrowmod($v) - 1}]] set parentlist [lrange $parentlist 0 [expr {$vrowmod($v) - 1}]] } - catch {unset cached_commitrow} + unset -nocomplain cached_commitrow } set narctot [expr {[llength $varctok($v)] - 1}] set a $varcmod($v) @@ -1442,7 +1442,7 @@ proc getcommitlines {fd inst view updating} { if {[string range $err 0 4] == "usage"} { set err "Gitk: error reading commits$fv:\ bad arguments to git log." - if {$viewname($view) eq "Command line"} { + if {$viewname($view) eq [mc "Command line"]} { append err \ " (Note: arguments to gitk are passed to git log\ to allow selection of commits to be displayed.)" @@ -1579,7 +1579,7 @@ proc getcommitlines {fd inst view updating} { [vtokcmp $view [lindex $children($vp) end-1] $id] > 0} { set children($vp) [lsort -command [list vtokcmp $view] \ $children($vp)] - catch {unset ordertok} + unset -nocomplain ordertok } if {[info exists varcid($view,$p)]} { fix_reversal $p $a $view @@ -1778,7 +1778,7 @@ proc readrefs {} { global hideremotes foreach v {tagids idtags headids idheads otherrefids idotherrefs} { - catch {unset $v} + unset -nocomplain $v } set refd [open [list | git show-ref -d] r] while {[gets $refd line] >= 0} { @@ -1894,13 +1894,13 @@ proc make_transient {window origin} { } } -proc show_error {w top msg {mc mc}} { +proc show_error {w top msg} { global NS if {![info exists NS]} {set NS ""} if {[wm state $top] eq "withdrawn"} { wm deiconify $top } message $w.m -text $msg -justify center -aspect 400 pack $w.m -side top -fill x -padx 20 -pady 20 - ${NS}::button $w.ok -default active -text [$mc OK] -command "destroy $top" + ${NS}::button $w.ok -default active -text [mc OK] -command "destroy $top" pack $w.ok -side bottom -fill x bind $top <Visibility> "grab $top; focus $top" bind $top <Key-Return> "destroy $top" @@ -2065,33 +2065,33 @@ proc makewindow {} { # The "mc" arguments here are purely so that xgettext # sees the following string as needing to be translated set file { - mc "File" cascade { - {mc "Update" command updatecommits -accelerator F5} - {mc "Reload" command reloadcommits -accelerator Shift-F5} - {mc "Reread references" command rereadrefs} - {mc "List references" command showrefs -accelerator F2} + mc "&File" cascade { + {mc "&Update" command updatecommits -accelerator F5} + {mc "&Reload" command reloadcommits -accelerator Shift-F5} + {mc "Reread re&ferences" command rereadrefs} + {mc "&List references" command showrefs -accelerator F2} {xx "" separator} - {mc "Start git gui" command {exec git gui &}} + {mc "Start git &gui" command {exec git gui &}} {xx "" separator} - {mc "Quit" command doquit -accelerator Meta1-Q} + {mc "&Quit" command doquit -accelerator Meta1-Q} }} set edit { - mc "Edit" cascade { - {mc "Preferences" command doprefs} + mc "&Edit" cascade { + {mc "&Preferences" command doprefs} }} set view { - mc "View" cascade { - {mc "New view..." command {newview 0} -accelerator Shift-F4} - {mc "Edit view..." command editview -state disabled -accelerator F4} - {mc "Delete view" command delview -state disabled} + mc "&View" cascade { + {mc "&New view..." command {newview 0} -accelerator Shift-F4} + {mc "&Edit view..." command editview -state disabled -accelerator F4} + {mc "&Delete view" command delview -state disabled} {xx "" separator} - {mc "All files" radiobutton {selectedview 0} -command {showview 0}} + {mc "&All files" radiobutton {selectedview 0} -command {showview 0}} }} if {[tk windowingsystem] ne "aqua"} { set help { - mc "Help" cascade { - {mc "About gitk" command about} - {mc "Key bindings" command keys} + mc "&Help" cascade { + {mc "&About gitk" command about} + {mc "&Key bindings" command keys} }} set bar [list $file $edit $view $help] } else { @@ -2099,13 +2099,13 @@ proc makewindow {} { proc ::tk::mac::Quit {} {doquit} lset file end [lreplace [lindex $file end] end-1 end] set apple { - xx "Apple" cascade { - {mc "About gitk" command about} + xx "&Apple" cascade { + {mc "&About gitk" command about} {xx "" separator} }} set help { - mc "Help" cascade { - {mc "Key bindings" command keys} + mc "&Help" cascade { + {mc "&Key bindings" command keys} }} set bar [list $apple $file $view $help] } @@ -2568,6 +2568,7 @@ proc makewindow {} { bindkey b prevfile bindkey d "$ctext yview scroll 18 units" bindkey u "$ctext yview scroll -18 units" + bindkey g {$sha1entry delete 0 end; focus $sha1entry} bindkey / {focus $fstring} bindkey <Key-KP_Divide> {focus $fstring} bindkey <Key-Return> {dofind 1 1} @@ -2617,6 +2618,7 @@ proc makewindow {} { {mc "Diff selected -> this" command {diffvssel 1}} {mc "Make patch" command mkpatch} {mc "Create tag" command mktag} + {mc "Copy commit summary" command copysummary} {mc "Write commit to file" command writecommit} {mc "Create new branch" command mkbranch} {mc "Cherry-pick this commit" command cherrypick} @@ -2645,6 +2647,7 @@ proc makewindow {} { makemenu $headctxmenu { {mc "Check out this branch" command cobranch} {mc "Remove this branch" command rmbranch} + {mc "Copy branch name" command {clipboard clear; clipboard append $headmenuhead}} } $headctxmenu configure -tearoff 0 @@ -2655,6 +2658,7 @@ proc makewindow {} { {mc "Highlight this only" command {flist_hl 1}} {mc "External diff" command {external_diff}} {mc "Blame parent commit" command {external_blame 1}} + {mc "Copy path" command {clipboard clear; clipboard append $flist_menu_file}} } $flist_menu configure -tearoff 0 @@ -3069,6 +3073,7 @@ proc keys {} { [mc "<%s-F> Find" $M1T] [mc "<%s-G> Move to next find hit" $M1T] [mc "<Return> Move to next find hit"] +[mc "g Go to commit"] [mc "/ Focus the search box"] [mc "? Move to previous find hit"] [mc "f Scroll diff view to next file"] @@ -3389,7 +3394,7 @@ proc init_flist {first} { set cflist_top 1 $cflist tag add highlight 1.0 "1.0 lineend" } else { - catch {unset cflist_top} + unset -nocomplain cflist_top } $cflist conf -state disabled set difffilestart {} @@ -4034,6 +4039,19 @@ proc shellsplit {str} { return $l } +proc set_window_title {} { + global appname curview viewname vrevs + set rev [mc "All files"] + if {$curview ne 0} { + if {$viewname($curview) eq [mc "Command line"]} { + set rev [string map {"--gitk-symmetric-diff-marker" "--merge"} $vrevs($curview)] + } else { + set rev $viewname($curview) + } + } + wm title . "[reponame]: $rev - $appname" +} + # Code to implement multiple views proc newview {ishighlight} { @@ -4066,7 +4084,7 @@ set known_view_options { {committer t15 . "--committer=*" {mc "Committer:"}} {loginfo t15 .. "--grep=*" {mc "Commit Message:"}} {allmatch b .. "--all-match" {mc "Matches all Commit Info criteria"}} - {igrep b .. "--invert-grep" {mc "Matches none Commit Info criteria"}} + {igrep b .. "--invert-grep" {mc "Matches no Commit Info criteria"}} {changes_l l + {} {mc "Changes to Files:"}} {pickaxe_s r0 . {} {mc "Fixed String"}} {pickaxe_t r1 . "--pickaxe-regex" {mc "Regular Expression"}} @@ -4438,20 +4456,20 @@ proc showview {n} { } unselectline normalline - catch {unset treediffs} + unset -nocomplain treediffs clear_display if {[info exists hlview] && $hlview == $n} { unset hlview set selectedhlview [mc "None"] } - catch {unset commitinterest} - catch {unset cached_commitrow} - catch {unset ordertok} + unset -nocomplain commitinterest + unset -nocomplain cached_commitrow + unset -nocomplain ordertok set curview $n set selectedview $n - .bar.view entryconf [mca "Edit view..."] -state [expr {$n == 0? "disabled": "normal"}] - .bar.view entryconf [mca "Delete view"] -state [expr {$n == 0? "disabled": "normal"}] + .bar.view entryconf [mca "&Edit view..."] -state [expr {$n == 0? "disabled": "normal"}] + .bar.view entryconf [mca "&Delete view"] -state [expr {$n == 0? "disabled": "normal"}] run refill_reflist if {![info exists viewcomplete($n)]} { @@ -4466,8 +4484,8 @@ proc showview {n} { set rowfinal {} set numcommits $commitidx($n) - catch {unset colormap} - catch {unset rowtextx} + unset -nocomplain colormap + unset -nocomplain rowtextx set nextcolor 0 set canvxmax [$canv cget -width] set curview $n @@ -4510,6 +4528,7 @@ proc showview {n} { } elseif {$numcommits == 0} { show_status [mc "No commits selected"] } + set_window_title } # Stuff relating to the highlighting facility @@ -4601,7 +4620,7 @@ proc delvhighlight {} { if {![info exists hlview]} return unset hlview - catch {unset vhighlights} + unset -nocomplain vhighlights unbolden } @@ -4649,7 +4668,7 @@ proc hfiles_change {} { # delete previous highlights catch {close $filehighlight} unset filehighlight - catch {unset fhighlights} + unset -nocomplain fhighlights unbolden unhighlight_filelist } @@ -4710,7 +4729,7 @@ proc findcom_change args { bolden_name $id mainfont } set boldnameids {} - catch {unset nhighlights} + unset -nocomplain nhighlights unbolden unmarkmatches if {$gdttype ne [mc "containing:"] || $findstring eq {}} { @@ -4913,9 +4932,9 @@ proc rhighlight_sel {a} { global descendent desc_todo ancestor anc_todo global highlight_related - catch {unset descendent} + unset -nocomplain descendent set desc_todo [list $a] - catch {unset ancestor} + unset -nocomplain ancestor set anc_todo [list $a] if {$highlight_related ne [mc "None"]} { rhighlight_none @@ -4926,7 +4945,7 @@ proc rhighlight_sel {a} { proc rhighlight_none {} { global rhighlights - catch {unset rhighlights} + unset -nocomplain rhighlights unbolden } @@ -5134,8 +5153,8 @@ proc initlayout {} { set rowisopt {} set rowfinal {} set canvxmax [$canv cget -width] - catch {unset colormap} - catch {unset rowtextx} + unset -nocomplain colormap + unset -nocomplain rowtextx setcanvscroll } @@ -6368,17 +6387,17 @@ proc clear_display {} { global linehtag linentag linedtag boldids boldnameids allcanvs delete all - catch {unset iddrawn} - catch {unset linesegs} - catch {unset linehtag} - catch {unset linentag} - catch {unset linedtag} + unset -nocomplain iddrawn + unset -nocomplain linesegs + unset -nocomplain linehtag + unset -nocomplain linentag + unset -nocomplain linedtag set boldids {} set boldnameids {} - catch {unset vhighlights} - catch {unset fhighlights} - catch {unset nhighlights} - catch {unset rhighlights} + unset -nocomplain vhighlights + unset -nocomplain fhighlights + unset -nocomplain nhighlights + unset -nocomplain rhighlights set need_redisplay 0 set nrows_drawn 0 } @@ -6650,6 +6669,7 @@ proc show_status {msg} { global canv fgcolor clear_display + set_window_title $canv create text 3 3 -anchor nw -text $msg -font mainfont \ -tags text -fill $fgcolor } @@ -7226,7 +7246,7 @@ proc selectline {l isnew {desired_loc {}} {switch_to_patch 0}} { global autoselect autosellen jump_to_here global vinlinediff - catch {unset pending_select} + unset -nocomplain pending_select $canv delete hover normalline unsel_reflist @@ -7424,7 +7444,7 @@ proc unselectline {} { global selectedline currentid set selectedline {} - catch {unset currentid} + unset -nocomplain currentid allcanvs delete secsel rhighlight_none } @@ -7480,7 +7500,7 @@ proc unset_posvars {} { if {[info exists last_posvars]} { foreach {var val} $last_posvars { global $var - catch {unset $var} + unset -nocomplain $var } unset last_posvars } @@ -7548,7 +7568,7 @@ proc gettree {id} { global nullid nullid2 set diffids $id - catch {unset diffmergeid} + unset -nocomplain diffmergeid if {![info exists treefilelist($id)]} { if {![info exists treepending]} { if {$id eq $nullid} { @@ -7704,7 +7724,7 @@ proc startdiff {ids} { settabs 1 set diffids $ids - catch {unset diffmergeid} + unset -nocomplain diffmergeid if {![info exists treediffs($ids)] || [lsearch -exact $ids $nullid] >= 0 || [lsearch -exact $ids $nullid2] >= 0} { @@ -8325,7 +8345,7 @@ proc clear_ctext {{first 1.0}} { } $ctext delete $first end if {$first eq "1.0"} { - catch {unset pendinglinks} + unset -nocomplain pendinglinks } set ctext_file_names {} set ctext_file_lines {} @@ -8501,7 +8521,7 @@ proc scrolltext {f0 f1} { highlightfile_for_scrollpos $topidx } - catch {unset suppress_highlighting_file_for_this_scrollpos} + unset -nocomplain suppress_highlighting_file_for_this_scrollpos .bleft.bottom.sb set $f0 $f1 if {$searchstring ne {}} { @@ -8876,13 +8896,13 @@ proc rowmenu {x y id} { if {$id ne $nullid && $id ne $nullid2} { set menu $rowctxmenu if {$mainhead ne {}} { - $menu entryconfigure 7 -label [mc "Reset %s branch to here" $mainhead] -state normal + $menu entryconfigure 8 -label [mc "Reset %s branch to here" $mainhead] -state normal } else { - $menu entryconfigure 7 -label [mc "Detached head: can't reset" $mainhead] -state disabled + $menu entryconfigure 8 -label [mc "Detached head: can't reset" $mainhead] -state disabled } - $menu entryconfigure 9 -state $mstate $menu entryconfigure 10 -state $mstate $menu entryconfigure 11 -state $mstate + $menu entryconfigure 12 -state $mstate } else { set menu $fakerowmenu } @@ -9341,6 +9361,20 @@ proc mktaggo {} { mktagcan } +proc copysummary {} { + global rowmenuid autosellen + + set format "%h (\"%s\", %ad)" + set cmd [list git show -s --pretty=format:$format --date=short] + if {$autosellen < 40} { + lappend cmd --abbrev=$autosellen + } + set summary [eval exec $cmd $rowmenuid] + + clipboard clear + clipboard append $summary +} + proc writecommit {} { global rowmenuid wrcomtop commitinfo wrcomcmd NS @@ -9819,8 +9853,10 @@ proc showrefs {} { -width 30 -height 20 -cursor $maincursor \ -spacing1 1 -spacing3 1 -state disabled $top.list tag configure highlight -background $selectbgcolor - lappend bglist $top.list - lappend fglist $top.list + if {![lsearch -exact $bglist $top.list]} { + lappend bglist $top.list + lappend fglist $top.list + } ${NS}::scrollbar $top.ysb -command "$top.list yview" -orient vertical ${NS}::scrollbar $top.xsb -command "$top.list xview" -orient horizontal grid $top.list $top.ysb -sticky nsew @@ -10103,9 +10139,9 @@ proc getallclines {fd} { } if {$nid > 0} { global cached_dheads cached_dtags cached_atags - catch {unset cached_dheads} - catch {unset cached_dtags} - catch {unset cached_atags} + unset -nocomplain cached_dheads + unset -nocomplain cached_dtags + unset -nocomplain cached_atags } if {![eof $fd]} { return [expr {$nid >= 1000? 2: 1}] @@ -10345,7 +10381,7 @@ proc dropcache {err} { foreach v {arcnos arcout arcids arcstart arcend growing \ arctags archeads allparents allchildren} { global $v - catch {unset $v} + unset -nocomplain $v } set allcwait 0 set nextarc 0 @@ -10996,8 +11032,8 @@ proc addedtag {id} { if {![info exists arcout($id)]} { recalcarc [lindex $arcnos($id) 0] } - catch {unset cached_dtags} - catch {unset cached_atags} + unset -nocomplain cached_dtags + unset -nocomplain cached_atags } proc addedhead {hid head} { @@ -11007,13 +11043,13 @@ proc addedhead {hid head} { if {![info exists arcout($hid)]} { recalcarc [lindex $arcnos($hid) 0] } - catch {unset cached_dheads} + unset -nocomplain cached_dheads } proc removedhead {hid head} { global cached_dheads - catch {unset cached_dheads} + unset -nocomplain cached_dheads } proc movedhead {hid head} { @@ -11023,7 +11059,7 @@ proc movedhead {hid head} { if {![info exists arcout($hid)]} { recalcarc [lindex $arcnos($hid) 0] } - catch {unset cached_dheads} + unset -nocomplain cached_dheads } proc changedrefs {} { @@ -11039,10 +11075,10 @@ proc changedrefs {} { } } } - catch {unset cached_tagcontent} - catch {unset cached_dtags} - catch {unset cached_atags} - catch {unset cached_dheads} + unset -nocomplain cached_tagcontent + unset -nocomplain cached_dtags + unset -nocomplain cached_atags + unset -nocomplain cached_dheads } proc rereadrefs {} { @@ -11532,7 +11568,9 @@ proc choosecolor {v vi w x cmd} { proc setselbg {c} { global bglist cflist foreach w $bglist { - $w configure -selectbackground $c + if {[winfo exists $w]} { + $w configure -selectbackground $c + } } $cflist tag configure highlight \ -background [$cflist cget -selectbackground] @@ -11558,7 +11596,9 @@ proc setbg {c} { global bglist foreach w $bglist { - $w conf -background $c + if {[winfo exists $w]} { + $w conf -background $c + } } } @@ -11566,7 +11606,9 @@ proc setfg {c} { global fglist canv foreach w $fglist { - $w conf -foreground $c + if {[winfo exists $w]} { + $w conf -foreground $c + } } allcanvs itemconf text -fill $c $canv itemconf circle -outline $c @@ -11628,7 +11670,7 @@ proc prefsok {} { ($perfile_attrs && !$oldprefs(perfile_attrs))} { # treediffs elements are limited by path; # won't have encodings cached if perfile_attrs was just turned on - catch {unset treediffs} + unset -nocomplain treediffs } if {$fontchanged || $maxwidth != $oldprefs(maxwidth) || $maxgraphpct != $oldprefs(maxgraphpct)} { @@ -12008,10 +12050,29 @@ proc get_path_encoding {path} { return $tcl_enc } +## For msgcat loading, first locate the installation location. +if { [info exists ::env(GITK_MSGSDIR)] } { + ## Msgsdir was manually set in the environment. + set gitk_msgsdir $::env(GITK_MSGSDIR) +} else { + ## Let's guess the prefix from argv0. + set gitk_prefix [file dirname [file dirname [file normalize $argv0]]] + set gitk_libdir [file join $gitk_prefix share gitk lib] + set gitk_msgsdir [file join $gitk_libdir msgs] + unset gitk_prefix +} + +## Internationalization (i18n) through msgcat and gettext. See +## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html +package require msgcat +namespace import ::msgcat::mc +## And eventually load the actual message catalog +::msgcat::mcload $gitk_msgsdir + # First check that Tcl/Tk is recent enough if {[catch {package require Tk 8.4} err]} { - show_error {} . "Sorry, gitk cannot run with this version of Tcl/Tk.\n\ - Gitk requires at least Tcl/Tk 8.4." list + show_error {} . [mc "Sorry, gitk cannot run with this version of Tcl/Tk.\n\ + Gitk requires at least Tcl/Tk 8.4."] exit 1 } @@ -12161,25 +12222,6 @@ if {[tk windowingsystem] eq "aqua"} { set ctxbut <Button-3> } -## For msgcat loading, first locate the installation location. -if { [info exists ::env(GITK_MSGSDIR)] } { - ## Msgsdir was manually set in the environment. - set gitk_msgsdir $::env(GITK_MSGSDIR) -} else { - ## Let's guess the prefix from argv0. - set gitk_prefix [file dirname [file dirname [file normalize $argv0]]] - set gitk_libdir [file join $gitk_prefix share gitk lib] - set gitk_msgsdir [file join $gitk_libdir msgs] - unset gitk_prefix -} - -## Internationalization (i18n) through msgcat and gettext. See -## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html -package require msgcat -namespace import ::msgcat::mc -## And eventually load the actual message catalog -::msgcat::mcload $gitk_msgsdir - catch { # follow the XDG base directory specification by default. See # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html @@ -12393,7 +12435,7 @@ catch { } # wait for the window to become visible tkwait visibility . -wm title . "$appname: [reponame]" +set_window_title update readrefs diff --git a/gitk-git/po/bg.po b/gitk-git/po/bg.po index 1df0716c38..61073ebf6b 100644 --- a/gitk-git/po/bg.po +++ b/gitk-git/po/bg.po @@ -1,15 +1,15 @@ # Bulgarian translation of gitk po-file. -# Copyright (C) 2014 Alexander Shopov <ash@kambanaria.org>. +# Copyright (C) 2014, 2015 Alexander Shopov <ash@kambanaria.org>. # This file is distributed under the same license as the git package. -# Alexander Shopov <ash@kambanaria.org>, 2014. +# Alexander Shopov <ash@kambanaria.org>, 2014, 2015. # # msgid "" msgstr "" "Project-Id-Version: gitk master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" -"PO-Revision-Date: 2014-07-28 07:32+0300\n" +"POT-Creation-Date: 2015-06-27 20:44+0300\n" +"PO-Revision-Date: 2015-06-27 20:46+0300\n" "Last-Translator: Alexander Shopov <ash@kambanaria.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" "Language: bg\n" @@ -26,7 +26,7 @@ msgstr "СпиÑъкът Ñ Ð½ÐµÑлети файлове не може да Ð±Ñ msgid "Color words" msgstr "ОцветÑване на думите" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "ОтбелÑзване на думите" @@ -59,14 +59,18 @@ msgstr "Грешка при изпълнение на „git log“:" msgid "Reading" msgstr "Прочитане" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Прочитане на подаваниÑта…" -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Ðе Ñа избрани подаваниÑ" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Команден ред" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Изходът от „git log“ не може да Ñе анализира:" @@ -75,16 +79,12 @@ msgstr "Изходът от „git log“ не може да Ñе анализи msgid "No commit information available" msgstr "ЛипÑва Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° подаваниÑ" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "Добре" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Отказ" @@ -136,15 +136,15 @@ msgstr "Редактиране на изгледа…" msgid "Delete view" msgstr "Изтриване на изгледа" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Ð’Ñички файлове" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Изглед" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "ОтноÑно gitk" @@ -156,7 +156,7 @@ msgstr "Клавишни комбинации" msgid "Help" msgstr "Помощ" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1:" @@ -172,53 +172,53 @@ msgstr "ТърÑене" msgid "commit" msgstr "подаване" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "Ñъдържащо:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "заÑÑгащо пътищата:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "добавÑщо/премахващо низ" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "променÑщо редове напаÑващи:" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Точно" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Без региÑтър" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Рег. израз" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Ð’Ñички полета" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Първи ред" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Коментари" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Ðвтор" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Подаващ" @@ -246,7 +246,7 @@ msgstr "КонтекÑÑ‚ в редове" msgid "Ignore space change" msgstr "Празните знаци без значение" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "Поредови разлики" @@ -258,99 +258,107 @@ msgstr "Кръпка" msgid "Tree" msgstr "Дърво" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Разлики между това и избраното" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Разлики между избраното и това" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Създаване на кръпка" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Създаване на етикет" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Запазване на подаването във файл" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Създаване на нов клон" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Отбиране на това подаване" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Привеждане на върха на клона към текущото подаване" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "ОтбелÑзване на това подаване" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Връщане към отбелÑзаното подаване" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Откриване и отбелÑзване на наÑледниците" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Сравнение Ñ Ð¾Ñ‚Ð±ÐµÐ»Ñзаното подаване" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 msgid "Diff this -> marked commit" msgstr "Разлики между това и отбелÑзаното" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 msgid "Diff marked commit -> this" msgstr "Разлики между отбелÑзаното и това" -#: gitk:2630 +#: gitk:2631 msgid "Revert this commit" msgstr "ОтмÑна на това подаване" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "ИзтеглÑне на този клон" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Изтриване на този клон" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "Копиране на името на клона" + +#: gitk:2656 msgid "Highlight this too" msgstr "ОтбелÑзване и на това" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "ОтбелÑзване Ñамо на това" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Външна програма за разлики" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Ðнотиране на родителÑкото подаване" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "Копиране на пътÑ" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Показване на произхода на този ред" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Изпълнение на „git gui blame“ върху този ред" -#: gitk:3011 +#: gitk:3014 msgid "" "\n" "Gitk - a commit viewer for git\n" @@ -366,313 +374,316 @@ msgstr "" "\n" "Използвайте и разпроÑтранÑвайте при уÑловиÑта на ОПЛ на ГÐУ" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "ЗатварÑне" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Клавишни комбинации" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Клавишни комбинации:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tСпиране на програмата" -#: gitk:3046 +#: gitk:3049 #, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-W>\t\tЗатварÑне на прозореца" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tКъм първото подаване" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tКъм поÑледното подаване" -#: gitk:3049 +#: gitk:3052 msgid "<Up>, p, k\tMove up one commit" msgstr "<Up>, p, k\tЕдно подаване нагоре" -#: gitk:3050 +#: gitk:3053 msgid "<Down>, n, j\tMove down one commit" msgstr "<Down>, n, j\tЕдно подаване надолу" -#: gitk:3051 +#: gitk:3054 msgid "<Left>, z, h\tGo back in history list" msgstr "<Left>, z, h\tÐазад в иÑториÑта" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Right>, x, l\tÐапред в иÑториÑта" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" -msgstr "" +msgstr "<%s-n>\tКъм n-Ñ‚Ð¸Ñ Ñ€Ð¾Ð´Ð¸Ñ‚ÐµÐ» на текущото подаване в иÑториÑта" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tСтраница нагоре в ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñта" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tСтраница надолу в ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñта" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tКъм началото на ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñта" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tКъм ÐºÑ€Ð°Ñ Ð½Ð° ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñта" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tРед нагоре в ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñ" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tРед надолу в ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñ" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tСтраница нагоре в ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñ" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tСтраница надолу в ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñ" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Up>\tТърÑене назад (визуално нагоре, иÑторичеÑки — поÑледващи)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "" "<Shift-Down>\tТърÑене напред (визуално надолу, иÑторичеÑки — предхождащи)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tСтраница нагоре в изгледа за разлики" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tСтраница надолу в изгледа за разлики" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Space>\t\tСтраница надолу в изгледа за разлики" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\t18 реда нагоре в изгледа за разлики" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\t18 реда надолу в изгледа за разлики" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tТърÑене" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tКъм Ñледващата поÑва" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\tКъм Ñледващата поÑва" -#: gitk:3072 +#: gitk:3075 +msgid "g\t\tGo to commit" +msgstr "g\t\tКъм поÑледното подаване" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tÐ¤Ð¾ÐºÑƒÑ Ð²ÑŠÑ€Ñ…Ñƒ полето за търÑене" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tКъм предишната поÑва" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tСледващ файл в изгледа за разлики" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tТърÑене на Ñледващата поÑва в изгледа за разлики" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tТърÑене на предишната поÑва в изгледа за разлики" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tПо-голÑм размер на шрифта" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tПо-голÑм размер на шрифта" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tПо-малък размер на шрифта" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tПо-малък размер на шрифта" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tОбновÑване" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Грешка при Ñъздаването на временната Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ â€ž%s“:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Грешка при получаването на „%s“ от %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "неуÑпешно изпълнение на команда:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Такова подаване нÑма" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "„git gui blame“: неуÑпешно изпълнение на команда:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Върхът за Ñливане не може да бъде прочетен: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Грешка при прочитане на индекÑа: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Командата „git blame“ не може да бъде Ñтартирана: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "ТърÑене" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Грешка при изпълнението на „git blame“: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" -msgstr "Този ред идва от подаването %s, което не е в изгледа" +msgstr "Този ред идва от подаването %s, което не е в изгледа" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "ÐеуÑпешно изпълнение на външната програма за разлики:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Ð”ÐµÑ„Ð¸Ð½Ð¸Ñ†Ð¸Ñ Ð½Ð° изглед в Gitk" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Запазване на този изглед" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Указатели (ÑпиÑък Ñ Ñ€Ð°Ð·Ð´ÐµÐ»Ð¸Ñ‚ÐµÐ» интервал):" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Клони и етикети:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Ð’Ñички указатели" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Ð’Ñички (локални) клони" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Ð’Ñички етикети" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Ð’Ñички ÑледÑщи клони" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° подаване (рег. изр.):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Ðвтор:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Подал:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Съобщение при подаване:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" -msgstr "Съвпадение по ÐºÐ¾Ñ Ð´Ð° е Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° подаването" +msgstr "Съвпадение по вÑички характериÑтики на подаването" -#: gitk:4069 -#, fuzzy -msgid "Matches none Commit Info criteria" -msgstr "Съвпадение по ÐºÐ¾Ñ Ð´Ð° е Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° подаването" +#: gitk:4086 +msgid "Matches no Commit Info criteria" +msgstr "Ðе Ñъвпада по Ð½Ð¸ÐºÐ¾Ñ Ð¾Ñ‚ характериÑтиките на подаването" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Промени по файловете:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "ДоÑловен низ" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "РегулÑрен израз" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Ðиз за търÑене:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -680,204 +691,204 @@ msgstr "" "Дата на подаване („2 weeks ago“ (преди 2 Ñедмици), „2009-03-17 15:27:38“, " "„March 17, 2009 15:27:38“):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "От:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "До:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "" "Ограничаване и/или преÑкачане на определен брой верÑии (неотрицателно цÑло " "чиÑло):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Брой показани:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Брой преÑкочени:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Разни:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Подреждане по дата" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "ОтбелÑзване на Ñтраните по клона" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Само Ð¿ÑŠÑ€Ð²Ð¸Ñ Ñ€Ð¾Ð´Ð¸Ñ‚ÐµÐ»" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "ОпроÑтена иÑториÑ" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Допълнителни аргументи към „git log“:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Въведете файловете и директориите за включване, по елемент на ред" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "" "Команда за генерирането на допълнителни подаваниÑ, които да бъдат включени:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: редактиране на изглед" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "— критерии за избор на верÑии" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Име на изглед" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Прилагане (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Грешка в аргументите за избор на подаваниÑ:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "ÐÑма" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "ÐаÑледник" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Ðе е наÑледник" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "ПредшеÑтвеник" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Ðе е предшеÑтвеник" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Локални промени добавени към индекÑа, но неподадени" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Локални промени извън индекÑа" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "и още много" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "много" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Етикети:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Родител" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Дете" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Клон" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Следва" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "ПредшеÑтва" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Грешка при получаването на разликите: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Към ред:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Съкратената Ñума по SHA1 %s не е еднозначна" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "Ðепозната верÑÐ¸Ñ %s" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "Ðепозната Ñума по SHA1 %s" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "ВерÑÐ¸Ñ %s не е в Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Дата" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Деца" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "ЗанулÑване на клона „%s“ към текущото подаване" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "ÐеÑвързан връх: невъзможно занулÑване" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "ПропуÑкане на подаването на Ñливането" -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Грешка при получаването на идентификатора на " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " — Ñпиране\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Подаване" -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -885,7 +896,7 @@ msgstr "" " е Ñъщата кръпка като\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -893,7 +904,7 @@ msgstr "" " Ñе различава от\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -901,130 +912,130 @@ msgstr "" "Разлика между подаваниÑта:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " има %s деца — Ñпиране\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Грешка при запазването на подаването във файл: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Грешка при изчиÑлÑването на разликите между подаваниÑта: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Ðай-горе" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "От" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "До" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Генериране на кръпка" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "От:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "До:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Обръщане" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Запазване във файла:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Генериране" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Грешка при Ñъздаването на кръпка:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "Идентификатор:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Име на етикет:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "Съобщението за етикет е незадължително" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Съобщение за етикет:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Създаване" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "ЛипÑва име на етикет" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Етикетът „%s“ вече ÑъщеÑтвува" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Грешка при Ñъздаването на етикет:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Команда:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Запазване" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Грешка при запазването на подаването:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Име:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Укажете име за Ð½Ð¾Ð²Ð¸Ñ ÐºÐ»Ð¾Ð½" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "Клонът „%s“ вече ÑъщеÑтвува. Да бъде ли презапиÑан?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "Подаването „%s“ вече е включено в клона „%s“ — да бъде ли приложено отново?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Отбиране" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1033,7 +1044,7 @@ msgstr "" "ÐеуÑпешно отбиране, защото във файла „%s“ има локални промени.\n" "Подайте, занулете или ги Ñкатайте и пробвайте отново." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1041,20 +1052,20 @@ msgstr "" "ÐеуÑпешно отбиране поради конфликти при Ñливане.\n" "ИÑкате ли да ги коригирате чрез „git citool“?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Ðе Ñа подадени промени" -#: gitk:9574 +#: gitk:9593 #, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "Подаването „%s“ не е включено в клона „%s“. Да бъде ли отменено?" -#: gitk:9579 +#: gitk:9598 msgid "Reverting" msgstr "ОтмÑна" -#: gitk:9587 +#: gitk:9606 #, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1063,7 +1074,7 @@ msgstr "" "ÐеуÑпешна отмÑна, защото във файла „%s“ има локални промени.\n" "Подайте, занулете или ги Ñкатайте и пробвайте отново.<" -#: gitk:9591 +#: gitk:9610 msgid "" "Revert failed because of merge conflict.\n" " Do you wish to run git citool to resolve it?" @@ -1071,28 +1082,28 @@ msgstr "" "ÐеуÑпешно отмÑна поради конфликти при Ñливане.\n" "ИÑкате ли да ги коригирате чрез „git citool“?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Потвърждаване на занулÑването" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Да Ñе занули ли клонът „%s“ към „%s“?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Вид занулÑване:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Слабо: работното дърво и индекÑа оÑтават Ñъщите" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "СмеÑено: работното дърво оÑтава Ñъщото, индекÑÑŠÑ‚ Ñе занулÑва" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1100,19 +1111,19 @@ msgstr "" "Силно: занулÑване и на работното дърво, и на индекÑа\n" "(*ВСИЧКИ* локални промени ще бъдат безвъзвратно загубени)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "ЗанулÑване" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "ИзтеглÑне" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "Текущо изтеглениÑÑ‚ клон не може да бъде изтрит" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1121,16 +1132,16 @@ msgstr "" "ПодаваниÑта на клона „%s“ не Ñа на никой друг клон.\n" "ÐаиÑтина ли да Ñе изтрие клонът „%s“?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Етикети и върхове: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Филтриране" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1138,213 +1149,217 @@ msgstr "" "Грешка при прочитането на топологиÑта на подаваниÑта. ИнформациÑта за клона " "и предшеÑтващите/Ñледващите етикети ще е непълна." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Етикет" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Идентификатор" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Избор на шрифт за Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "Ч" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "К" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "ÐаÑтройки на ÑпиÑъка Ñ Ð¿Ð¾Ð´Ð°Ð²Ð°Ð½Ð¸Ñ" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "МакÑимална широчина на графа (в редове)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "МакÑимална широчина на графа (% от панела)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Показване на локалните промени" -#: gitk:11340 +#: gitk:11361 msgid "Auto-select SHA1 (length)" msgstr "Ðвтоматично избиране на SHA1 (дължина)" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Скриване на отдалечените указатели" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "ÐаÑтройки на показването на разликите" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Широчина на табулатора" -#: gitk:11353 +#: gitk:11374 msgid "Display nearby tags/heads" msgstr "Извеждане на близките етикети и върхове" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "МакÑимален брой етикети/върхове за показване" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Разлика Ñамо в избраните пътища" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Поддръжка на различни ÐºÐ¾Ð´Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð·Ð° вÑеки файл" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Външен инÑтрумент за разлики" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Избор…" -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Общи наÑтройки" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Използване на тема за графичните обекти" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(промÑната изиÑква реÑтартиране на Gitk)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(в момента недоÑтъпно)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Цветове: избира Ñе Ñ Ð½Ð°Ñ‚Ð¸Ñкане" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "ИнтерфейÑ" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "интерфейÑ" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Фон" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "фон" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Знаци" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "знаци" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Разлика: Ñтари редове" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "разлика, Ñтари редове" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Разлика: нови редове" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "разлика, нови редове" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Разлика: начало на парче" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "разлика, начало на парче" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Фон на отбелÑзан ред" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "фон на отбелÑзан ред" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Избор на фон" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Шрифтове: избира Ñе Ñ Ð½Ð°Ñ‚Ð¸Ñкане" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "ОÑновен шрифт" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Шрифт за разликите" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Шрифт на интерфейÑа" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "ÐаÑтройки на Gitk" -#: gitk:11473 +#: gitk:11494 msgid "General" msgstr "Общи" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "Цветове" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "Шрифтове" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: избор на цвÑÑ‚ на „%s“" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" +"Тази верÑÐ¸Ñ Ð½Ð° Tcl/Tk не Ñе поддържа от Gitk.\n" +" Ðеобходима ви е поне Tcl/Tk 8.4." + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Тук липÑва хранилище на Git." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Ðееднозначен аргумент „%s“: има и такава верÑиÑ, и такъв файл" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Ðеправилни аргументи на gitk:" - -#: gitk:12405 -msgid "Command line" -msgstr "Команден ред" diff --git a/gitk-git/po/ca.po b/gitk-git/po/ca.po index 2c1f60683c..976037a645 100644 --- a/gitk-git/po/ca.po +++ b/gitk-git/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2015-02-01 22:49-0700\n" "Last-Translator: Alex Henrie <alexhenrie24@gmail.com>\n" "Language-Team: Catalan\n" @@ -27,7 +27,7 @@ msgstr "No s'ha pogut obtenir la llista de fitxers no fusionats:" msgid "Color words" msgstr "Colora les paraules" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "Marca les paraules" @@ -61,14 +61,18 @@ msgstr "Error en executar git log:" msgid "Reading" msgstr "Llegint" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Llegint les revisions..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Cap comissió seleccionada" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "LÃnia d'ordres" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "No es pot analitzar la sortida del git log:" @@ -77,16 +81,12 @@ msgstr "No es pot analitzar la sortida del git log:" msgid "No commit information available" msgstr "Cap informació de comissió disponible" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "D'acord" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Cancel·la" @@ -138,15 +138,15 @@ msgstr "Edita la vista..." msgid "Delete view" msgstr "Suprimeix vista" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Tots els fitxers" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Vista" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Quant al gitk" @@ -158,7 +158,7 @@ msgstr "Associacions de tecles" msgid "Help" msgstr "Ajuda" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "ID SHA1:" @@ -174,53 +174,53 @@ msgstr "Cerca" msgid "commit" msgstr "comissió" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "que contingui:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "que toqui els camins:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "que afegeixi/elimini la cadena:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "que tingui lÃnies canviades coincidents amb:" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Exacte" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Ignora majúscula i minúscula" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Regexp" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Tots els camps" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Titular" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Comentaris" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Autor" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Comitent" @@ -248,7 +248,7 @@ msgstr "LÃnies de context" msgid "Ignore space change" msgstr "Ignora canvis d'espai" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "Diferència de lÃnies" @@ -260,99 +260,107 @@ msgstr "Pedaç" msgid "Tree" msgstr "Arbre" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Diferencia aquesta -> la seleccionada" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Diferencia la seleccionada -> aquesta" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Fes pedaç" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Crea etiqueta" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Escriu la comissió a un fitxer" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Crea una branca nova" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Recull aquesta comissió com a cirera" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Restableix la branca HEAD aquÃ" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Marca aquesta comissió" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Torna a la marca" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Troba la descendent d'aquesta i marca-la" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Compara amb la comissió marcada" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 msgid "Diff this -> marked commit" msgstr "Diferencia aquesta -> la comissió marcada" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 msgid "Diff marked commit -> this" msgstr "Diferencia la comissió seleccionada -> aquesta" -#: gitk:2630 +#: gitk:2631 msgid "Revert this commit" msgstr "Reverteix aquesta comissió" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Agafa aquesta branca" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Elimina aquesta branca" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Ressalta aquest també" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Ressalta només aquest" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Diferència externa" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Culpabilitat de la comissió mare" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Mostra l'origen d'aquesta lÃnia" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Executa git gui blame en aquesta lÃnia" -#: gitk:3011 +#: gitk:3014 msgid "" "\n" "Gitk - a commit viewer for git\n" @@ -368,314 +376,319 @@ msgstr "" "\n" "Useu-lo i redistribuïu-lo sota els termes de la Llicència Pública General GNU" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Tanca" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Associacions de tecles del Gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Associacions de tecles del Gitk:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tSurt" -#: gitk:3046 +#: gitk:3049 #, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-W>\t\tTanca la finestra" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Inici>\t\tVés a la primera comissió" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<Fi>\t\tVés a l'última comissió" -#: gitk:3049 +#: gitk:3052 msgid "<Up>, p, k\tMove up one commit" msgstr "<Amunt>, p, k\tMou-te una comissió amunt" -#: gitk:3050 +#: gitk:3053 msgid "<Down>, n, j\tMove down one commit" msgstr "<Avall>, n, j\tMou-te una comissió avall" -#: gitk:3051 +#: gitk:3054 msgid "<Left>, z, h\tGo back in history list" msgstr "<Esquerra>, z, h\tRetrocedeix en la llista d'història" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Dreta>, x, l\tAvança en la llista d'història" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" "<%s-n>\tVés a l'enèsima mare de la comissió actual en la llista d'història" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<RePà g>\tBaixa una pà gina en la llista de comissions" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<AvPà g>\tBaixa per una pà gina en la llista de comissions" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Inici>\tDesplaça't a la part superior de la llista de comissions" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-Fi>\tDesplaça't a la part inferior de la llista de comissions" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Amunt>\tDesplaça la llista de comissions una lÃnia cap amunt" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Avall>\tDesplaça la llista de comissions una lÃnia cap avall" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-RePà g>\tDesplaça la llista de comissions amunt per una pà gina" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-AvPà g>\tDesplaça la llista de comissions una pà gina cap avall" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Maj-Amunt>\tCerca cap enrere (amunt, les comissions més noves)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Maj-Avall>\tCerca cap endavant (avall, les comissions més velles)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Supr>, b\tDesplaça la vista de diferència una pà gina cap amunt" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Retrocés>\tDesplaça la vista de diferència una pà gina cap amunt" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Espai>\t\tDesplaça la vista de diferència una pà gina cap avall" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tDesplaça la vista de diferència 18 lÃnies cap amunt" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tDesplaça la vista de diferència 18 lÃnies cap avall " -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tCerca" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tMou-te a la propera coincidència de la cerca" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Retorn>\tMou-te a la propera coincidència de la cerca" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<Fi>\t\tVés a l'última comissió" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tPosa el focus a la caixa de cerca" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tMou a la coincidència prèvia de la cerca" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tDesplaça la vista de diferència al proper fitxer" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tCerca la propera coincidència en la vista de diferència" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tCerca la coincidència prèvia en la vista de diferència" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tAugmenta la mida de lletra" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-més>\tAugmenta la mida de lletra" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tDisminueix la mida de lletra" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-menys>\tDisminueix la mida de lletra" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tActualitza" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Error en crear el directori temporal %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Error en obtenir \"%s\" de %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "l'ordre ha fallat:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Cap comissió aixÃ" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: l'ordre ha fallat:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "No s'ha pogut llegir el cap de fusió: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Error en llegir l'Ãndex: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "No s'ha pogut iniciar el git blame: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Cercant" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Error en executar el git blame: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "" "Aquella lÃnia ve de la comissió %s, la qual no és en aquesta visualització" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "El visualitzador de diferència extern ha fallat:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Definició de vista del Gitk" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Recorda aquesta vista" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Referències (llista separada per espais)" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Branques i etiquetes:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Totes les referències" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Totes les branques (locals)" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Totes les etiquetes" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Totes les branques amb seguiment remot" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Informació de comissió (expressions regulars):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Autor:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Comitent:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Missatge de comissió:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Coincideix amb tots els criteris d'informació de comissió" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Coincideix amb tots els criteris d'informació de comissió" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Canvis als fitxers:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Cadena fixa" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Expressió regular" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Cadena de cerca:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -683,201 +696,201 @@ msgstr "" "Dates de comissió (\"fa 2 setmanes\", \"2009-03-17 15:27:38\", \"17 abr 2009 " "15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "Des de:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Fins:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Limita o salta un nombre de revisions (nombre enter positiu)" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Nombre a mostrar:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Nombre a saltar:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Opcions miscel·là nies:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Ordena estrictament per data" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Marca els costats de les branques" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Limita a la primera mare" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Història senzilla" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Parà metres addicionals al git log:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Introduïu els fitxers i directoris a incloure, un per lÃnia:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Ordre per a generar més comissions a incloure:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: vista d'edició" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- criteris per a seleccionar les revisions" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Nom de vista" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Aplica (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Error en els parà metres de selecció de comissions:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Cap" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Descendent" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "No descendent" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Avantpassat" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "No avantpassat" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Canvis locals registrats en l'Ãndex però no comesos" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Canvis locals sense cometre, no registrats en l'Ãndex" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "i moltes més" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "moltes" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Etiquetes:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Mare" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Filla" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Branca" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Segueix" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Precedeix" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Error en obtenir les diferències: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Vés a:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "L'id SHA1 curta %s és ambigua" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "La revisió %s és desconeguda" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "L'id SHA1 %s és desconeguda" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "La revisió %s no és en la vista actual" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Data" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Filles" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Restableix la branca %s aquÃ" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "Cap separat: no es pot restablir" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Saltant la comissió de fusió " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Error en obtenir l'ID de pedaç de " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - aturant\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Comissió " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -885,7 +898,7 @@ msgstr "" " és el mateix pedaç que\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -893,7 +906,7 @@ msgstr "" " difereix de\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -901,131 +914,131 @@ msgstr "" "Diferència entre comissions:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " té %s filles - aturant\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Error en escriure la comissió al fitxer: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Error en diferenciar les comissions: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Part superior" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "De" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "A" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Genera pedaç" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "De:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "A:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Inverteix" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Fitxer de sortida:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Genera" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Error en crear el pedaç:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Nom d'etiqueta:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "El missatge d'etiqueta és opcional" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Missatge d'etiqueta:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Crea" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "No s'ha especificat cap nom d'etiqueta" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "L'etiqueta \"%s\" ja existeix" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Error en crear l'etiqueta:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Ordre:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Escriu" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Error en escriure la comissió:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Nom:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Si us plau, especifiqueu un nom per a la branca nova" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "La branca '%s' ja existeix. Voleu sobreescriure?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "La comissió %s ja està inclosa en la branca %s -- realment voleu tornar a " "aplicar-la?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Recollint cireres" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1035,7 +1048,7 @@ msgstr "" "Si us plau, cometeu, restabliu o emmagatzemeu els vostres canvis i torneu a " "intentar." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1043,21 +1056,21 @@ msgstr "" "El recull de cireres ha fallat a causa d'un conflicte de fusió.\n" "Voleu executar el git citool per a resoldre'l?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Cap canvi comès" -#: gitk:9574 +#: gitk:9593 #, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "" "La comissió %s no s'inclou en la branca %s -- realment voleu revertir-la?" -#: gitk:9579 +#: gitk:9598 msgid "Reverting" msgstr "Revertint" -#: gitk:9587 +#: gitk:9606 #, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1067,7 +1080,7 @@ msgstr "" "plau, cometeu, restabliu o emmagatzemeu els vostres canvis i torneu-ho a " "intentar." -#: gitk:9591 +#: gitk:9610 msgid "" "Revert failed because of merge conflict.\n" " Do you wish to run git citool to resolve it?" @@ -1075,28 +1088,28 @@ msgstr "" "La reversió ha fallat a causa d'un conflicte de fusió.\n" " Voleu executar el git citool per a resoldre'l?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Confirma el restabliment" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Voleu restablir la branca %s a %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Tipus de restabliment:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Suau: Deixa l'arbre de treball i l'Ãndex sense tocar" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Mixt: Deixa l'arbre de treball sense tocar, restableix l'Ãndex" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1104,19 +1117,19 @@ msgstr "" "Dur: Restableix l'arbre de treball i l'Ãndex\n" "(descarta TOTS els canvis locals)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Restablint" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Agafant" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "No es pot suprimir la branca actualment agafada" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1125,16 +1138,16 @@ msgstr "" "Les comissions en la branca %s no són en cap altra branca.\n" "Realment voleu suprimir la branca %s?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Etiquetes i caps: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filtre" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1142,213 +1155,218 @@ msgstr "" "Error en llegir la informació de topologia de comissió; la informació sobre " "branques i etiquetes precedents/següents serà incompleta." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Etiqueta" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Selector de tipus de lletra del Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Opcions de visualització de la llista de comissions" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Amplada mà xima del grà fic (lÃnies)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Amplada mà xima del grà fic (% del panell)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Mostra els canvis locals" -#: gitk:11340 +#: gitk:11361 msgid "Auto-select SHA1 (length)" msgstr "Selecciona automà ticament l'SHA1 (longitud)" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Amaga les referències remotes" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Opcions de visualització de diferència" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Espaiat de tabulació" -#: gitk:11353 +#: gitk:11374 msgid "Display nearby tags/heads" msgstr "Mostra etiquetes/caps propers" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "Nombre mà xim d'etiquetes/caps a mostrar" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Limita les diferències als camins llistats" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Admet codificacions especÃfiques per a cada fitxer" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Eina de diferència externa" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Trieu..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Opcions generals" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Usa els ginys tematitzats" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(el canvi requereix reiniciar)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(actualment no disponible)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Colors: pressiona per a triar" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "InterfÃcie" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "interfÃcie" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Fons" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "fons" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Primer pla" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "primer pla" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diferència: lÃnies velles" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "diferencia les lÃnies velles" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diferència: lÃnies noves" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "diferencia les lÃnies noves" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diferència: capçalera de tros" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "diferencia la capçalera de tros" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Fons de la lÃnia marcada" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "fons de la lÃnia marcada" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "fons de la selecció" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Tipus de lletra: pressiona per a triar" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Tipus de lletra principal" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Tipus de lletra de visualització de diferència" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Tipus de lletra de la interfÃcie d'usuari" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Preferències del Gitk" -#: gitk:11473 +#: gitk:11494 msgid "General" msgstr "General" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "Colors" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "Tipus de lletra" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: tria el color per a %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "No es pot trobar cap dipòsit de git aquÃ." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Parà metre ambigu '%s': és tant revisió com nom de fitxer" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Parà metres dolents al gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "LÃnia d'ordres" +#~ msgid "mc" +#~ msgstr "mc" diff --git a/gitk-git/po/de.po b/gitk-git/po/de.po index dabd4eefb5..1a3264b2b0 100644 --- a/gitk-git/po/de.po +++ b/gitk-git/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: git-gui\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2010-01-27 20:27+0100\n" "Last-Translator: Christian Stimming <stimming@tuhh.de>\n" "Language-Team: German\n" @@ -25,7 +25,7 @@ msgstr "Liste der nicht zusammengeführten Dateien nicht gefunden:" msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -59,14 +59,18 @@ msgstr "Fehler beim Ausführen von »git log«:" msgid "Reading" msgstr "Lesen" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Versionen werden gelesen ..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Keine Versionen ausgewählt" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Kommandozeile" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Ausgabe von »git log« kann nicht erkannt werden:" @@ -75,16 +79,12 @@ msgstr "Ausgabe von »git log« kann nicht erkannt werden:" msgid "No commit information available" msgstr "Keine Versionsinformation verfügbar" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "Ok" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Abbrechen" @@ -136,15 +136,15 @@ msgstr "Ansicht bearbeiten ..." msgid "Delete view" msgstr "Ansicht entfernen" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Alle Dateien" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Ansicht" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Über gitk" @@ -156,7 +156,7 @@ msgstr "Tastenkürzel" msgid "Help" msgstr "Hilfe" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -172,53 +172,53 @@ msgstr "Suche" msgid "commit" msgstr "Version nach" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "Beschreibung:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "Dateien:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "Änderungen:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Exakt" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Kein Groß/Klein" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Regexp" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Alle Felder" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Überschrift" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Beschreibung" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Autor" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Eintragender" @@ -246,7 +246,7 @@ msgstr "Kontextzeilen" msgid "Ignore space change" msgstr "Leerzeichenänderungen ignorieren" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -258,102 +258,110 @@ msgstr "Patch" msgid "Tree" msgstr "Baum" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Vergleich: diese -> gewählte" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Vergleich: gewählte -> diese" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Patch erstellen" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Markierung erstellen" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Version in Datei schreiben" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Neuen Zweig erstellen" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Diese Version pflücken" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "HEAD-Zweig auf diese Version zurücksetzen" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Lesezeichen setzen" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Zum Lesezeichen" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Abkömmling von Lesezeichen und dieser Version finden" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Mit Lesezeichen vergleichen" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Vergleich: diese -> gewählte" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Vergleich: gewählte -> diese" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Lesezeichen setzen" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Auf diesen Zweig umstellen" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Zweig löschen" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Diesen auch hervorheben" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Nur diesen hervorheben" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Externes Diff-Programm" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Annotieren der Elternversion" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Herkunft dieser Zeile anzeigen" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Diese Zeile annotieren (»git gui blame«)" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -371,517 +379,522 @@ msgstr "" "Benutzung und Weiterverbreitung gemäß den Bedingungen der GNU General Public " "License" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Schließen" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Gitk-Tastaturbelegung" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Gitk-Tastaturbelegung:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tBeenden" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\tSuchen" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Pos1>\t\tZur neuesten Version springen" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<Ende>\t\tZur ältesten Version springen" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Hoch>, p, i\tNächste neuere Version" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Runter>, n, k\tNächste ältere Version" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Links>, z, j\tEine Version zurückgehen" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Rechts>, x, l\tEine Version weitergehen" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<BildHoch>\tEine Seite nach oben blättern" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<BildRunter>\tEine Seite nach unten blättern" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Pos1>\tZum oberen Ende der Versionsliste blättern" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-Ende>\tZum unteren Ende der Versionsliste blättern" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Hoch>\tVersionsliste eine Zeile nach oben blättern" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Runter>\tVersionsliste eine Zeile nach unten blättern" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-BildHoch>\tVersionsliste eine Seite nach oben blättern" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-BildRunter>\tVersionsliste eine Seite nach unten blättern" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Umschalt-Hoch>\tRückwärts suchen (nach oben; neuere Versionen)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Umschalt-Runter> Suchen (nach unten; ältere Versionen)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Entf>, b\t\tVergleich eine Seite nach oben blättern" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Löschtaste>\tVergleich eine Seite nach oben blättern" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Leertaste>\tVergleich eine Seite nach unten blättern" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tVergleich um 18 Zeilen nach oben blättern" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tVergleich um 18 Zeilen nach unten blättern" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tSuchen" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tWeitersuchen" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Eingabetaste>\tWeitersuchen" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<Ende>\t\tZur ältesten Version springen" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tTastaturfokus ins Suchfeld" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tRückwärts weitersuchen" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tVergleich zur nächsten Datei blättern" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tWeitersuchen im Vergleich" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tRückwärts weitersuchen im Vergleich" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-Nummerblock-Plus>\tSchrift vergrößern" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-Plus>\tSchrift vergrößern" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-Nummernblock-Minus> Schrift verkleinern" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-Minus>\tSchrift verkleinern" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tAktualisieren" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Fehler beim Erzeugen des temporären Verzeichnisses »%s«:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Fehler beim Holen von »%s« von »%s«:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "Kommando fehlgeschlagen:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Version nicht gefunden" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: Kommando fehlgeschlagen:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Zusammenführungs-Spitze konnte nicht gelesen werden: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Fehler beim Lesen der Bereitstellung (»index«): %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "»git blame« konnte nicht gestartet werden: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Suchen" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Fehler beim Ausführen von »git blame«: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "" "Diese Zeile stammt aus Version %s, die nicht in dieser Ansicht gezeigt wird" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Externes Diff-Programm fehlgeschlagen:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Gitk-Ansichten" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Diese Ansicht speichern" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Zweige/Markierungen (durch Leerzeichen getrennte Liste):" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Zweige/Markierungen:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Alle Markierungen und Zweige" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Alle (lokalen) Zweige" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Alle Markierungen" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Alle Übernahmezweige" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Versionsinformationen (reguläre Ausdrücke):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Autor:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Eintragender:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Versionsbeschreibung:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Alle Versionsinformationen-Kriterien erfüllen" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Alle Versionsinformationen-Kriterien erfüllen" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Dateien:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Zeichenkette" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Regulärer Ausdruck" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Suchausdruck:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" msgstr "" "Datum (»2 weeks ago«, »2009-03-17 15:27:38«, »March 17, 2009 15:27:38«)" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "Von:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Bis:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Versionsanzahl begrenzen oder einige überspringen (ganzzahliger Wert):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Anzeigen:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Überspringen:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Sonstiges:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Streng nach Datum sortieren" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Zweig-Seiten markieren" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Auf erste Elternversion beschränken" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Einfache Historie" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Zusätzliche Argumente für »git log«:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Folgende Dateien und Verzeichnisse anzeigen (eine pro Zeile):" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Versionsliste durch folgendes Kommando erzeugen lassen:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: Ansicht bearbeiten" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- Auswahl der angezeigten Versionen" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Ansichtsname" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Anwenden (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Fehler in den ausgewählten Versionen:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Keine" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Abkömmling" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Kein Abkömmling" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Vorgänger" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Kein Vorgänger" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Lokale Änderungen bereitgestellt, aber nicht eingetragen" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Lokale Änderungen, nicht bereitgestellt" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "viele" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Markierungen:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Eltern" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Kind" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Zweig" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Folgt auf" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Vorgänger von" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Fehler beim Laden des Vergleichs: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Gehe zu:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Kurzer SHA1-Hashwert »%s« ist mehrdeutig" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "Version »%s« ist unbekannt" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "SHA1-Hashwert »%s« ist unbekannt" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "Version »%s« wird in der aktuellen Ansicht nicht angezeigt" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Datum" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Kinder" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Zweig »%s« hierher zurücksetzen" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "Zweigspitze ist abgetrennt: Zurücksetzen nicht möglich" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Überspringe Zusammenführungs-Version " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Fehler beim Holen der Patch-ID für " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - Abbruch.\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Version " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -889,7 +902,7 @@ msgstr "" " ist das gleiche Patch wie\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -897,7 +910,7 @@ msgstr "" " ist unterschiedlich von\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -905,131 +918,131 @@ msgstr "" "Vergleich der Versionen:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " hat %s Kinder. Abbruch\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Fehler beim Schreiben der Version in Datei: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Fehler beim Vergleichen der Versionen: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Oben" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "Von" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "bis" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Patch erstellen" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "Von:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "bis:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Umgekehrt" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Ausgabedatei:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Erzeugen" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Fehler beim Erzeugen des Patches:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Markierungsname:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "Eine Markierungsbeschreibung ist optional" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Markierungsbeschreibung:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Erstellen" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Kein Markierungsname angegeben" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Markierung »%s« existiert bereits." -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Fehler beim Erstellen der Markierung:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Kommando:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Schreiben" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Fehler beim Schreiben der Version:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Name:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Bitte geben Sie einen Namen für den neuen Zweig an." -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "Zweig »%s« existiert bereits. Soll er überschrieben werden?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "Version »%s« ist bereits im Zweig »%s« enthalten -- trotzdem erneut " "eintragen?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Version pflücken" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1039,7 +1052,7 @@ msgstr "" "vorliegen. Bitte diese Änderungen eintragen, zurücksetzen oder\n" "zwischenspeichern (»git stash«) und dann erneut versuchen." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1048,23 +1061,23 @@ msgstr "" "ist. Soll das Zusammenführungs-Werkzeug (»git citool«) aufgerufen\n" "werden, um diesen Konflikt aufzulösen?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Keine Änderungen eingetragen" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "" "Version »%s« ist bereits im Zweig »%s« enthalten -- trotzdem erneut " "eintragen?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "Zurücksetzen" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1074,7 +1087,7 @@ msgstr "" "vorliegen. Bitte diese Änderungen eintragen, zurücksetzen oder\n" "zwischenspeichern (»git stash«) und dann erneut versuchen." -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1084,30 +1097,30 @@ msgstr "" "ist. Soll das Zusammenführungs-Werkzeug (»git citool«) aufgerufen\n" "werden, um diesen Konflikt aufzulösen?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Zurücksetzen bestätigen" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Zweig »%s« auf »%s« zurücksetzen?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Art des Zurücksetzens:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Harmlos: Arbeitskopie und Bereitstellung unverändert" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "" "Gemischt: Arbeitskopie unverändert,\n" "Bereitstellung zurückgesetzt" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1115,21 +1128,21 @@ msgstr "" "Hart: Arbeitskopie und Bereitstellung\n" "(Alle lokalen Änderungen werden gelöscht)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Zurücksetzen" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Umstellen" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "" "Der Zweig, auf den die Arbeitskopie momentan umgestellt ist, kann nicht " "gelöscht werden." -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1138,16 +1151,16 @@ msgstr "" "Die Versionen auf Zweig »%s« existieren auf keinem anderen Zweig.\n" "Zweig »%s« trotzdem löschen?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Markierungen und Zweige: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filtern" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1155,219 +1168,224 @@ msgstr "" "Fehler beim Lesen der Strukturinformationen; Zweige und Informationen zu " "Vorgänger/Nachfolger werden unvollständig sein." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Markierung" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Gitk-Schriften wählen" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "F" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "K" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Anzeige der Versionsliste" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Maximale Graphenbreite (Zeilen)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Maximale Graphenbreite (% des Fensters)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Lokale Änderungen anzeigen" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "SHA1-Hashwert automatisch auswählen" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Entfernte Zweige/Markierungen ausblenden" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Anzeige des Vergleichs" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Tabulatorbreite" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Naheliegende Markierungen anzeigen" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Vergleich nur für angezeigte Pfade" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Zeichenkodierung pro Datei ermitteln" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Externes Diff-Programm" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Wählen ..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Allgemeine Optionen" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Aussehen der Benutzeroberfläche durch Thema bestimmen" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(Änderungen werden erst nach Neustart wirksam)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(Momentan nicht verfügbar)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Farben: Klicken zum Wählen" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "Benutzeroberfläche" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "Benutzeroberfläche" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Hintergrund" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "Hintergrund" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Vordergrund" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "Vordergrund" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Vergleich: Alte Zeilen" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "Vergleich - Alte Zeilen" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Vergleich: Neue Zeilen" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "Vergleich - Neue Zeilen" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Vergleich: Änderungstitel" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "Vergleich - Änderungstitel" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Hintergrund für markierte Zeile" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "Hintergrund für markierte Zeile" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Hintergrundfarbe auswählen" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Schriftart: Klicken zum Wählen" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Programmschriftart" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Schriftart für Vergleich" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Beschriftungen" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Gitk-Einstellungen" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Erzeugen" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: Farbe wählen für %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Kein Git-Projektarchiv gefunden." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Mehrdeutige Angabe »%s«: Sowohl Version als auch Dateiname existiert." -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Falsche Kommandozeilen-Parameter für gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "Kommandozeile" +#~ msgid "mc" +#~ msgstr "mc" #~ msgid "next" #~ msgstr "nächste" diff --git a/gitk-git/po/es.po b/gitk-git/po/es.po index cfc10e13ea..6402a411a6 100644 --- a/gitk-git/po/es.po +++ b/gitk-git/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2008-03-25 11:20+0100\n" "Last-Translator: Santiago Gala <santiago.gala@gmail.com>\n" "Language-Team: Spanish\n" @@ -25,7 +25,7 @@ msgstr "Imposible obtener la lista de archivos pendientes de fusión:" msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -61,14 +61,18 @@ msgstr "Error al crear la etiqueta:" msgid "Reading" msgstr "Leyendo" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Leyendo revisiones..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "No se seleccionaron revisiones" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "LÃnea de comandos" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Error analizando la salida de git log:" @@ -77,16 +81,12 @@ msgstr "Error analizando la salida de git log:" msgid "No commit information available" msgstr "Falta información sobre las revisiones" -#: gitk:1897 -msgid "mc" -msgstr "" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "Aceptar" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Cancelar" @@ -138,15 +138,15 @@ msgstr "Modificar vista..." msgid "Delete view" msgstr "Eliminar vista" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Todos los archivos" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Vista" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Acerca de gitk" @@ -158,7 +158,7 @@ msgstr "Combinaciones de teclas" msgid "Help" msgstr "Ayuda" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -174,53 +174,53 @@ msgstr "Buscar" msgid "commit" msgstr "revisión" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "que contiene:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "que modifica la ruta:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "que añade/elimina cadena:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Exacto" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "NoMayús" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Regex" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Todos los campos" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "TÃtulo" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Comentarios" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Autor" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "" @@ -248,7 +248,7 @@ msgstr "LÃneas de contexto" msgid "Ignore space change" msgstr "Ignora cambios de espaciado" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -260,103 +260,111 @@ msgstr "Parche" msgid "Tree" msgstr "Ãrbol" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Diferencia de esta -> seleccionada" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Diferencia de seleccionada -> esta" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Crear patch" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Crear etiqueta" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Escribir revisiones a archivo" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Crear nueva rama" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Añadir esta revisión a la rama actual (cherry-pick)" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Traer la rama HEAD aquÃ" -#: gitk:2624 +#: gitk:2625 #, fuzzy msgid "Mark this commit" msgstr "Añadir esta revisión a la rama actual (cherry-pick)" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Diferencia de esta -> seleccionada" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Diferencia de seleccionada -> esta" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Añadir esta revisión a la rama actual (cherry-pick)" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Cambiar a esta rama" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Eliminar esta rama" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Seleccionar también" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Seleccionar sólo" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -374,728 +382,733 @@ msgstr "" "Uso y redistribución permitidos según los términos de la Licencia Pública " "General de GNU (GNU GPL)" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Cerrar" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Combinaciones de tecla de Gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Combinaciones de tecla de Gitk:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tSalir" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\tBuscar" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tIr a la primera revisión" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tIr a la última revisión" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Up>, p, i\tSubir una revisión" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Down>, n, k\tBajar una revisión" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Left>, z, j\tRetroceder en la historia" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Right>, x, l\tAvanzar en la historia" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tSubir una página en la lista de revisiones" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tBajar una página en la lista de revisiones" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tDesplazarse al inicio de la lista de revisiones" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tDesplazarse al final de la lista de revisiones" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tDesplazar una lÃnea hacia arriba la lista de revisiones" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tDesplazar una lÃnea hacia abajo la lista de revisiones" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tDesplazar una página hacia arriba la lista de revisiones" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tDesplazar una página hacia abajo la lista de revisiones" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Up>\tBuscar hacia atrás (arriba, revisiones siguientes)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Shift-Down>\tBuscar hacia adelante (abajo, revisiones anteriores)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tDesplaza hacia arriba una página la vista de diferencias" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tDesplaza hacia arriba una página la vista de diferencias" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Space>\t\tDesplaza hacia abajo una página la vista de diferencias" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tDesplaza hacia arriba 18 lÃneas la vista de diferencias" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tDesplaza hacia abajo 18 lÃneas la vista de diferencias" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tBuscar" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tBuscar el siguiente" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\tBuscar el siguiente" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\tIr a la última revisión" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tBuscar el anterior" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tDesplazar la vista de diferencias al archivo siguiente" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tBuscar siguiente en la vista de diferencias" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tBuscar anterior en la vista de diferencias" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tAumentar tamaño del texto" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tAumentar tamaño del texto" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tDisminuir tamaño del texto" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tDisminuir tamaño del texto" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tActualizar" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, fuzzy, tcl-format msgid "Error creating temporary directory %s:" msgstr "Error en la creación del parche:" -#: gitk:3568 +#: gitk:3572 #, fuzzy, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Error al leer las diferencias de fusión:" -#: gitk:3631 +#: gitk:3635 #, fuzzy msgid "command failed:" msgstr "LÃnea de comandos" -#: gitk:3780 +#: gitk:3784 #, fuzzy msgid "No such commit" msgstr "No se han guardado cambios" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "" -#: gitk:3833 +#: gitk:3837 #, fuzzy, tcl-format msgid "Error reading index: %s" msgstr "Error al crear la etiqueta:" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Buscando" -#: gitk:3893 +#: gitk:3897 #, fuzzy, tcl-format msgid "Error running git blame: %s" msgstr "Error al crear la etiqueta:" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "" -#: gitk:3935 +#: gitk:3939 #, fuzzy msgid "External diff viewer failed:" msgstr "f\t\tDesplazar la vista de diferencias al archivo siguiente" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Definición de vistas de Gitk" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Recordar esta vista" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "" -#: gitk:4060 +#: gitk:4077 #, fuzzy msgid "All refs" msgstr "Todos los archivos" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "" -#: gitk:4065 +#: gitk:4082 #, fuzzy msgid "Author:" msgstr "Autor" -#: gitk:4066 +#: gitk:4083 #, fuzzy msgid "Committer:" msgstr "revisión" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "" -#: gitk:4069 -msgid "Matches none Commit Info criteria" +#: gitk:4086 +msgid "Matches no Commit Info criteria" msgstr "" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "" -#: gitk:4073 +#: gitk:4090 #, fuzzy msgid "Search string:" msgstr "Buscando" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" msgstr "" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "" -#: gitk:4083 +#: gitk:4100 #, fuzzy msgid "Limit to first parent" msgstr "Limitar las diferencias a las rutas seleccionadas" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "" -#: gitk:4085 +#: gitk:4102 #, fuzzy msgid "Additional arguments to git log:" msgstr "Revisiones a incluir (argumentos a git log):" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Introducir archivos y directorios a incluir, uno por lÃnea:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Comando que genera más revisiones a incluir:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "" -#: gitk:4224 +#: gitk:4241 #, fuzzy msgid "View Name" msgstr "Vista" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Error en los argumentos de selección de las revisiones:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Ninguno" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Descendiente" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "No descendiente" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Antepasado" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "No antepasado" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Cambios locales añadidos al Ãndice pero sin completar revisión" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Cambios locales sin añadir al Ãndice" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Etiquetas:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Padre" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Hija" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Rama" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Sigue-a" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Precede-a" -#: gitk:7947 +#: gitk:7966 #, fuzzy, tcl-format msgid "Error getting diffs: %s" msgstr "Error al leer las diferencias de fusión:" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Ir a:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "La id SHA1 abreviada %s es ambigua" -#: gitk:8659 +#: gitk:8678 #, fuzzy, tcl-format msgid "Revision %s is not known" msgstr "La id SHA1 %s es desconocida" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "La id SHA1 %s es desconocida" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Fecha" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Hijas" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Poner la rama %s en esta revisión" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "" -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 #, fuzzy msgid "Error getting patch ID for " msgstr "Error en la creación del parche:" -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr "" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 #, fuzzy msgid "Commit " msgstr "revisión" -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " msgstr "" -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " msgstr "" -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" msgstr "" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr "" -#: gitk:9066 +#: gitk:9085 #, fuzzy, tcl-format msgid "Error writing commit to file: %s" msgstr "Error al escribir revisión:" -#: gitk:9072 +#: gitk:9091 #, fuzzy, tcl-format msgid "Error diffing commits: %s" msgstr "Error al escribir revisión:" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Origen" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "De" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "A" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Generar parche" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "De:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "Para:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Invertir" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Escribir a archivo:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Generar" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Error en la creación del parche:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Nombre de etiqueta:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "" -#: gitk:9251 +#: gitk:9270 #, fuzzy msgid "Tag message:" msgstr "Nombre de etiqueta:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Crear" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "No se ha especificado etiqueta" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "La etiqueta \"%s\" ya existe" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Error al crear la etiqueta:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Comando:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Escribir" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Error al escribir revisión:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Nombre:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Especifique un nombre para la nueva rama" -#: gitk:9444 +#: gitk:9463 #, fuzzy, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "La etiqueta \"%s\" ya existe" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "La revisión %s ya está incluida en la rama %s -- ¿Volver a aplicarla?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Eligiendo revisiones (cherry-picking)" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" "Please commit, reset or stash your changes and try again." msgstr "" -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" msgstr "" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "No se han guardado cambios" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "La revisión %s ya está incluida en la rama %s -- ¿Volver a aplicarla?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "Reponiendo" -#: gitk:9587 +#: gitk:9606 #, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " "commit, reset or stash your changes and try again." msgstr "" -#: gitk:9591 +#: gitk:9610 msgid "" "Revert failed because of merge conflict.\n" " Do you wish to run git citool to resolve it?" msgstr "" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Confirmar git reset" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "¿Reponer la rama %s a %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Tipo de reposición:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Suave: No altera la copia de trabajo ni el Ãndice" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Mixta: Actualiza el Ãndice, no altera la copia de trabajo" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1103,19 +1116,19 @@ msgstr "" "Dura: Actualiza el Ãndice y la copia de trabajo\n" "(abandona TODAS las modificaciones locales)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Reponiendo" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Creando copia de trabajo" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "No se puede borrar la rama actual" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1124,16 +1137,16 @@ msgstr "" "Las revisiones de la rama %s no están presentes en otras ramas.\n" "¿Borrar la rama %s?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Etiquetas y ramas: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filtro" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1141,228 +1154,232 @@ msgstr "" "Error al leer la topologÃa de revisiones: la información sobre las ramas y " "etiquetas precedentes y siguientes será incompleta." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Etiqueta" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Selector de tipografÃas gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Opciones de visualización de la lista de revisiones" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Ancho máximo del gráfico (en lÃneas)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Ancho máximo del gráfico (en % del panel)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Mostrar cambios locales" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "Seleccionar automáticamente SHA1 hash" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Opciones de visualización de diferencias" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Espaciado de tabulador" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Mostrar etiquetas cercanas" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Limitar las diferencias a las rutas seleccionadas" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "" -#: gitk:11374 +#: gitk:11395 #, fuzzy msgid "General options" msgstr "Generar parche" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Colores: pulse para seleccionar" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "" -#: gitk:11396 +#: gitk:11417 #, fuzzy msgid "interface" msgstr "TipografÃa para interfaz de usuario" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Fondo" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 #, fuzzy msgid "background" msgstr "Fondo" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Primer plano" -#: gitk:11404 +#: gitk:11425 #, fuzzy msgid "foreground" msgstr "Primer plano" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff: lÃneas viejas" -#: gitk:11408 +#: gitk:11429 #, fuzzy msgid "diff old lines" msgstr "Diff: lÃneas viejas" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff: lÃneas nuevas" -#: gitk:11413 +#: gitk:11434 #, fuzzy msgid "diff new lines" msgstr "Diff: lÃneas nuevas" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff: cabecera de fragmento" -#: gitk:11419 +#: gitk:11440 #, fuzzy msgid "diff hunk header" msgstr "Diff: cabecera de fragmento" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Color de fondo de la selección" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "TipografÃas: pulse para elegir" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "TipografÃa principal" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "TipografÃa para diferencias" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "TipografÃa para interfaz de usuario" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Preferencias de gitk" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Generar" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: elegir color para %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" +"Esta versión de Tcl/Tk es demasiado antigua.\n" +" Gitk requiere Tcl/Tk versión 8.4 o superior." + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "No hay un repositorio git aquÃ." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "" "Argumento ambiguo: '%s' es tanto una revisión como un nombre de archivo" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Argumentos incorrectos a Gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "LÃnea de comandos" - #~ msgid "SHA1 ID: " #~ msgstr "SHA1 ID: " @@ -1384,12 +1401,5 @@ msgstr "LÃnea de comandos" #~ msgid "Tag/Head %s is not known" #~ msgstr "La etiqueta/rama %s es deconocida" -#~ msgid "" -#~ "Sorry, gitk cannot run with this version of Tcl/Tk.\n" -#~ " Gitk requires at least Tcl/Tk 8.4." -#~ msgstr "" -#~ "Esta versión de Tcl/Tk es demasiado antigua.\n" -#~ " Gitk requiere Tcl/Tk versión 8.4 o superior." - #~ msgid "Cannot find the git directory \"%s\"." #~ msgstr "No hay directorio git \"%s\"." diff --git a/gitk-git/po/fr.po b/gitk-git/po/fr.po index 747ee190f2..6b1f05c6b9 100644 --- a/gitk-git/po/fr.po +++ b/gitk-git/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2009-11-19 22:13+0100\n" "Last-Translator: Emmanuel Trillaud <etrillaud@gmail.com>\n" "Language-Team: git@vger.kernel.org\n" @@ -27,7 +27,7 @@ msgstr "Impossible de récupérer la liste des fichiers non fusionnés :" msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -63,14 +63,18 @@ msgstr "Erreur à l'exécution de git log :" msgid "Reading" msgstr "Lecture en cours" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Lecture des commits..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Aucun commit sélectionné" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Ligne de commande" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Impossible de lire la sortie de git log :" @@ -79,16 +83,12 @@ msgstr "Impossible de lire la sortie de git log :" msgid "No commit information available" msgstr "Aucune information disponible sur le commit" -#: gitk:1897 -msgid "mc" -msgstr "" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "OK" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Annuler" @@ -140,15 +140,15 @@ msgstr "Éditer la vue..." msgid "Delete view" msgstr "Supprimer la vue" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Tous les fichiers" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Vue" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "À propos de gitk" @@ -160,7 +160,7 @@ msgstr "Raccourcis clavier" msgid "Help" msgstr "Aide" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "Id SHA1 :" @@ -176,53 +176,53 @@ msgstr "Recherche" msgid "commit" msgstr "commit" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "contient :" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "chemins modifiés :" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "ajoute/supprime la chaîne :" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Exact" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Ignorer la casse" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Expression régulière" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Tous les champs" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Surligner" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Commentaires" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Auteur" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Auteur du commit" @@ -250,7 +250,7 @@ msgstr "Lignes de contexte" msgid "Ignore space change" msgstr "Ignorer les modifications d'espace" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -262,102 +262,110 @@ msgstr "Patch" msgid "Tree" msgstr "Arbre" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Diff entre ceci et la sélection" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Diff entre sélection et ceci" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Créer patch" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Créer tag" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Écrire le commit dans un fichier" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Créer une nouvelle branche" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Cueillir (cherry-pick) ce commit" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Réinitialiser la branche HEAD vers cet état" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Marquer ce commit" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Retourner à la marque" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Chercher le descendant de ceci et le marquer" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Comparer avec le commit marqué" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Diff entre ceci et la sélection" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Diff entre sélection et ceci" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Marquer ce commit" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Récupérer cette branche" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Supprimer cette branche" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Surligner également ceci" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Surligner seulement ceci" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Diff externe" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Blâmer le commit parent" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Montrer l'origine de cette ligne" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Exécuter git gui blame sur cette ligne" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -375,317 +383,322 @@ msgstr "" "Utilisation et redistribution soumises aux termes de la GNU General Public " "License" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Fermer" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Raccourcis clavier de Gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Raccourcis clavier de Gitk :" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tQuitter" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\tRechercher" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Début>\t\tAller au premier commit" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<Fin>\t\tAller au dernier commit" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Haut>, p, i\t Aller au commit suivant" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Bas>, n, k\t Aller au commit précédent" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Gauche>, z, j\tReculer dans l'historique" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Droite>, x, l\tAvancer dans l'historique" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tMonter d'une page dans la liste des commits" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tDescendre d'une page dans la liste des commits" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Début>\tAller en haut de la liste des commits" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tAller en bas de la liste des commits" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tMonter d'une ligne dans la liste des commits" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tDescendre d'une ligne dans la liste des commits" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tMonter d'une page dans la liste des commits" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tDescendre d'une page dans la liste des commits" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "" "<Shift-Up>\tRecherche en arrière (vers l'avant, commits les plus anciens)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "" "<Shift-Down>\tRecherche en avant (vers l'arrière, commit les plus récents)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Supprimer>, b\tMonter d'une page dans la vue des diff" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tMonter d'une page dans la vue des diff" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Espace>\t\tDescendre d'une page dans la vue des diff" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tMonter de 18 lignes dans la vue des diff" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tDescendre de 18 lignes dans la vue des diff" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tRechercher" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tAller au résultat de recherche suivant" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\t\tAller au résultat de recherche suivant" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<Fin>\t\tAller au dernier commit" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tFocus sur la zone de recherche" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tAller au résultat de recherche précédent" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tAller au prochain fichier dans la vue des diff" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tAller au résultat suivant dans la vue des diff" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tAller au résultat précédent dans la vue des diff" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tAugmenter la taille de la police" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tAugmenter la taille de la police" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tDiminuer la taille de la police" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tDiminuer la taille de la police" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tMise à jour" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Erreur lors de la création du répertoire temporaire %s :" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Erreur en obtenant \"%s\" de %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "échec de la commande :" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Commit inexistant" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame : échec de la commande :" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Impossible de lire le head de la fusion : %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Erreur à la lecture de l'index : %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Impossible de démarrer git blame : %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Recherche en cours" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Erreur à l'exécution de git blame : %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "Cette ligne est issue du commit %s, qui n'est pas dans cette vue" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Échec de l'outil externe de visualisation des diff" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Définition des vues de Gitk" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Se souvenir de cette vue" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Références (liste d'éléments séparés par des espaces) :" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Branches & tags :" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Toutes les références" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Toutes les branches (locales)" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Tous les tags" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Toutes les branches de suivi à distance" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Info sur les commits (expressions régulières) :" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Auteur :" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Commiteur :" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Message de commit :" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Correspond à tous les critères d'Info sur les commits" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Correspond à tous les critères d'Info sur les commits" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Changements des fichiers :" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Chaîne Figée" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Expression Régulière" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Recherche de la chaîne :" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -693,204 +706,204 @@ msgstr "" "Dates des commits (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, " "2009 15:27:38\") :" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "De :" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Jusqu'au :" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Limiter et/ou sauter un certain nombre (entier positif) de révisions :" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Nombre à afficher :" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Nombre à sauter :" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Options diverses :" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Trier par date" # FIXME : traduction de "branch sides" -#: gitk:4082 +#: gitk:4099 #, fuzzy msgid "Mark branch sides" msgstr "Marquer les extrémités des branches" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Limiter au premier ancêtre" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Historique simple" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Arguments supplémentaires de git log :" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Saisir les fichiers et répertoires à inclure, un par ligne :" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Commande pour générer plus de commits à inclure :" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk : éditer la vue" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- critère pour la sélection des révisions" -#: gitk:4224 +#: gitk:4241 #, fuzzy msgid "View Name" msgstr "Nom de la vue :" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Appliquer (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Erreur dans les arguments de sélection des commits :" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Aucun" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Descendant" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Pas un descendant" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Ancêtre" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Pas un ancêtre" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Modifications locales enregistrées dans l'index mais non commitées" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Modifications locales non enregistrées dans l'index et non commitées" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "nombreux" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Tags :" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Parent" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Enfant" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Branche" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Suit" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Précède" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Erreur lors de la récupération des diff : %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Aller à :" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Id SHA1 court %s est ambigu" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "Id SHA1 %s est inconnu" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "Id SHA1 %s est inconnu" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "La révision %s n'est pas dans la vue courante" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Date" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Enfants" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Réinitialiser la branche %s vers cet état" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "Head détaché : impossible de réinitialiser" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Éviter le commit de la fusion " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Erreur à l'obtention de l'ID du patch pour " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - arrêt en cours\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Commit " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -898,7 +911,7 @@ msgstr "" "est le même patch que \n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -906,138 +919,138 @@ msgstr "" " diffère de\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" msgstr "" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr "a %s enfants - arrêt en cours\n" -#: gitk:9066 +#: gitk:9085 #, fuzzy, tcl-format msgid "Error writing commit to file: %s" msgstr "Erreur à l'ecriture du commit :" -#: gitk:9072 +#: gitk:9091 #, fuzzy, tcl-format msgid "Error diffing commits: %s" msgstr "Erreur à l'ecriture du commit :" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Haut" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "De" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "À" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Générer le patch" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "De :" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "À :" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Inverser" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Fichier de sortie :" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Générer" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Erreur à la création du patch :" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID :" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Nom du Tag :" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "" -#: gitk:9251 +#: gitk:9270 #, fuzzy msgid "Tag message:" msgstr "Nom du Tag :" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Créer" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Aucun nom de tag spécifié" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Le tag \"%s\" existe déjà " -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Erreur à la création du tag :" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Commande :" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Écrire" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Erreur à l'ecriture du commit :" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Nom :" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Veuillez spécifier un nom pour la nouvelle branche" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "La branche '%s' existe déjà . Écraser?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "Le Commit %s est déjà inclus dans la branche %s -- le ré-appliquer malgré " "tout?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Cueillir (Cherry-picking)" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1048,7 +1061,7 @@ msgstr "" "Veuillez commiter, réinitialiser ou stasher vos changements et essayer de " "nouveau." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1057,23 +1070,23 @@ msgstr "" "fusion.\n" "Souhaitez-vous exécuter git citool pour le résoudre ?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Aucun changement commité" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "" "Le Commit %s est déjà inclus dans la branche %s -- le ré-appliquer malgré " "tout?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "Réinitialisation" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1084,7 +1097,7 @@ msgstr "" "Veuillez commiter, réinitialiser ou stasher vos changements et essayer de " "nouveau." -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1094,30 +1107,30 @@ msgstr "" "fusion.\n" "Souhaitez-vous exécuter git citool pour le résoudre ?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Confirmer la réinitialisation" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Réinitialiser la branche %s à %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Type de réinitialisation :" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Douce : Laisse le répertoire de travail et l'index intacts" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "" "Hybride : Laisse le répertoire de travail dans son état courant, " "réinitialise l'index" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1125,21 +1138,21 @@ msgstr "" "Dure : Réinitialise le répertoire de travail et l'index\n" "(abandonne TOUS les changements locaux)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Réinitialisation" # Fixme: Récupération est-il vraiment une mauvaise traduction? -#: gitk:9724 +#: gitk:9743 #, fuzzy msgid "Checking out" msgstr "Récupération" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "Impossible de supprimer la branche en cours" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1148,16 +1161,16 @@ msgstr "" "Les commits de la branche %s ne sont dans aucune autre branche.\n" "Voulez-vous vraiment supprimer cette branche %s ?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Tags et heads : %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filtrer" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1166,223 +1179,227 @@ msgstr "" "informations sur les branches et les tags précédents/suivants seront " "incomplètes." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Tag" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Sélecteur de police de Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Options d'affichage de la liste des commits" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Longueur maximum du graphe (lignes)" # FIXME : Traduction standard de "pane"? -#: gitk:11334 +#: gitk:11355 #, fuzzy, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Longueur maximum du graphe (% du panneau)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Montrer les changements locaux" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "Sélection auto. du SHA1" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Cacher les refs distantes" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Options d'affichage des diff" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Taille des tabulations" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Afficher les tags les plus proches" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Limiter les différences aux chemins listés" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Support pour un encodage des caractères par fichier" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Outil diff externe" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Choisir..." -#: gitk:11374 +#: gitk:11395 #, fuzzy msgid "General options" msgstr "Générer le patch" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Couleurs : cliquer pour choisir" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "" -#: gitk:11396 +#: gitk:11417 #, fuzzy msgid "interface" msgstr "Police de l'interface utilisateur" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Arrière-plan" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "arrière-plan" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Premier plan" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "premier plan" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff : anciennes lignes" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "diff anciennes lignes" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff : nouvelles lignes" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "diff nouvelles lignes" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff : entête du hunk" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "diff : entête du hunk" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Arrière-plan de la ligne marquée" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "Arrière-plan de la ligne marquée" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Sélectionner l'arrière-plan" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Polices : cliquer pour choisir" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Police principale" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Police d'affichage des diff" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Police de l'interface utilisateur" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Préférences de Gitk" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Générer" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk : choisir la couleur de %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" +"Désolé, gitk ne peut être exécuté avec cette version de Tcl/Tk.\n" +" Gitk requiert Tcl/Tk version 8.4 ou supérieur." + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Impossible de trouver un dépôt git ici." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Argument '%s' ambigu : à la fois une révision et un nom de fichier" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Arguments invalides pour gitk :" -#: gitk:12405 -msgid "Command line" -msgstr "Ligne de commande" - #~ msgid "SHA1 ID: " #~ msgstr "ID SHA1 :" @@ -1398,12 +1415,5 @@ msgstr "Ligne de commande" #~ msgid "- stopping\n" #~ msgstr "- arrêt en cours\n" -#~ msgid "" -#~ "Sorry, gitk cannot run with this version of Tcl/Tk.\n" -#~ " Gitk requires at least Tcl/Tk 8.4." -#~ msgstr "" -#~ "Désolé, gitk ne peut être exécuté avec cette version de Tcl/Tk.\n" -#~ " Gitk requiert Tcl/Tk version 8.4 ou supérieur." - #~ msgid "Cannot find the git directory \"%s\"." #~ msgstr "Impossible de trouver le répertoire git \"%s\"." diff --git a/gitk-git/po/hu.po b/gitk-git/po/hu.po index 5e3e9468c0..00023f1cab 100644 --- a/gitk-git/po/hu.po +++ b/gitk-git/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: git-gui\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2009-12-14 14:04+0100\n" "Last-Translator: Laszlo Papp <djszapi@archlinux.us>\n" "Language-Team: Hungarian\n" @@ -25,7 +25,7 @@ msgstr "Nem sikerült letölteni az unmerged fájl listát:" msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -58,14 +58,18 @@ msgstr "Hiba történt a git log végrehajtása közben:" msgid "Reading" msgstr "Olvasás" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Commitok olvasása ..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Nincsen commit kiválasztva" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Parancs sor" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Nem lehet értelmezni a git log kimenetét:" @@ -74,16 +78,12 @@ msgstr "Nem lehet értelmezni a git log kimenetét:" msgid "No commit information available" msgstr "Nincsen elérhetÅ‘ commit információ" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "OK" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Visszavonás" @@ -135,15 +135,15 @@ msgstr "Nézet szerkesztése ..." msgid "Delete view" msgstr "Nézet törlése" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Minden fájl" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Nézet" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Gitk névjegy" @@ -155,7 +155,7 @@ msgstr "Billentyűkombináció" msgid "Help" msgstr "SegÃtség" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -171,53 +171,53 @@ msgstr "Keresés" msgid "commit" msgstr "commit" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "tartalmazás:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "érintendÅ‘ útvonalak:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "string hozzáadása/törlése:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Pontos" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Kis/nagy betű nem számÃt" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Regexp" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Minden mezÅ‘" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "FÅ‘cÃm" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Megjegyzések" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "SzerzÅ‘" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Commitoló" @@ -245,7 +245,7 @@ msgstr "Tartalmi sorok" msgid "Ignore space change" msgstr "Space váltás mellÅ‘zése" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -257,102 +257,110 @@ msgstr "Patch" msgid "Tree" msgstr "Tree" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Diff ezeket -> kiválasztott" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Diff kiválasztottakat -> ezt" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Patch készÃtése" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Tag készÃtése" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Commit fáljba Ãrása" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Új branch készÃtése" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Cherry-pick erre a commitra" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "HEAD branch újraindÃtása ide" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Ezen commit megjelölése" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Visszatérés a megjelöléshez" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Találd meg ezen utódokat és jelöld meg" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "ÖsszehasonlÃtás a megjelölt commit-tal" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Diff ezeket -> kiválasztott" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Diff kiválasztottakat -> ezt" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Ezen commit megjelölése" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Check out ezt a branchot" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Töröld ezt a branch-ot" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Emeld ki ezt is" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Csak ezt emeld ki" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "KülsÅ‘ diff" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Blame szülÅ‘ kommitra" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Mutasd meg ennek a sornak az eredetét" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Futtasd a git gui blame-t ezen a soron" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -369,316 +377,321 @@ msgstr "" "\n" "Használd és terjeszd a GNU General Public License feltételei mellett" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Bezárás" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Gitk-billentyű hozzárendelés" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Gitk-billentyű hozzaárendelés:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tKilépés" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\tKeresés" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Pos1>\t\tElsÅ‘ commithoz" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<Ende>\t\tUtolsó commithoz" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Hoch>, p, i\tEgy committal feljebb" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Runter>, n, k\tEgy committal lejjebb" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Links>, z, j\tVissza a history listába" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Rechts>, x, l\tElÅ‘re a history listába" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<BildHoch>\tEgy lappal feljebb a commit listába" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<BildRunter>\tEgy lappal lejjebb a commit listába" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Pos1>\tGörgetés a commit lista tetejéhez" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-Ende>\tGörgetés a commit lista aljához" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Hoch>\tEgy sorral feljebb görgetés a commit listában" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Runter>\tEgy sorral lejjebb görgetés a commit listában" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-BildHoch>\tEgy lappal feljebb görgetés a commit listában" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-BildRunter>\tEgy sorral lejjebb görgetés a commit listában" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Umschalt-Hoch>\tKeresés visszafele (felfele, utolsó commitok)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Umschalt-Runter>\tKeresés elÅ‘re (lefelé; korábbi commitok)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Entf>, b\t\tEgy lappal feljebb görgetés a diff nézetben" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Löschtaste>\tEgy lappal feljebb görgetés a diff nézetben" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Leertaste>\tEgy lappal lejjebb görgetés a diff nézetben" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\t18 sorral felfelé görgetés diff nézetben" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\t18 sorral lejjebb görgetés a diff nézetben" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tKeresés" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tKövetkezÅ‘ találathoz" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Eingabetaste>\tKövetkezÅ‘ találathoz" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<Ende>\t\tUtolsó commithoz" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tLépj a keresési mezÅ‘re" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tElÅ‘zÅ‘ találathoz" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tKövetkezÅ‘ fájlra görgetés diff nézetben" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tKövetkezÅ‘ találatra keresés diff nézetben" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tElÅ‘zÅ‘ találatra keresés diff nézetben" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-Nummerblock-Plus>\tBetűméret növelése" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-Plus>\tBetűméret növelése" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-Nummernblock-Minus> Betűméret csökkentése" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-Minus>\tBetűméret csökkentése" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tFrissÃtés" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Hiba történt az ideiglenes könyvtár létrehozása közben %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Hiba történt \"%s\" letöltése közben %s-rÅ‘l:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "parancs hiba:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Nincs ilyen commit" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: parancs hiba:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Nem sikerült a Merge head olvasása: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Hiba történt az index olvasása közben: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Nem sikerült a git blame indÃtása: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Keresés" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Hiba történt a git blame futtatása közben: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "" "A %s commitból származik az a sor, amelyik nem található ebben a nézetben" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "KülsÅ‘ diff nézegetÅ‘ hiba:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Gitk nézet meghatározása" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Maradj ennél a nézetnél" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Referenciák (szóközzel tagolt lista" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Branch-ek & tagek:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Minden ref" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Minden (helyi) branch" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Minden tag" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Minden távoli követÅ‘ branch" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Commit Infó (reguláris kifejezés):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "SzerzÅ‘:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Commitoló:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Commit üzenet:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Egyezik minen Commit Infó feltétellel" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Egyezik minen Commit Infó feltétellel" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Fájl változások:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Fix String" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Reguláris kifejezés" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Keresés szöveg:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -686,203 +699,203 @@ msgstr "" "Commit Dátumok (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "EttÅ‘l:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Eddig:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Limitálva és/vagy kihagyva egy adott számú revÃziót (pozitÃv egész):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Mutatandó szám:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Kihagyandó szám:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Különféle opciók:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Szigorú rendezás dátum alapján" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Jelölje meg az ágakat" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Korlátozás az elsÅ‘ szülÅ‘re" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Egyszerű history" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "További argumentok a git log-hoz:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Fájlok és könyvtárak bejegyzése amiket tartalmaz, soronként:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Parancs több tartalmazó commit generálására:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: szerkesztés nézet" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- kritériumok a revÃziók kiválasztásához" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Nézet neve" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Alkalmaz (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Hiba történt a commit argumentumok kiválasztása közben:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Keine" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Leszármazott" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Nem leszármazott" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "ElÅ‘d" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Nem elÅ‘d" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "" "Lokális változtatások, melyek be vannak téve az indexbe, de még nincsenek " "commitolva" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Lokális nem commitolt változások, nincsenek betéve az indexbe" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "sok" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Tagek:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Eltern" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Gyerek" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Ãg" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "KövetkezÅ‘k" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "MegelÅ‘zÅ‘k" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Hiba történt a diff-ek letöltése közben: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Menj:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Rövid SHA1 id %s félreérthetÅ‘" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "A(z) %s revÃzió nem ismert" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "SHA1 id %s nem ismert" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "A(z) %s revÃzió nincs a jelenlegi nézetben" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Dátum" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Gyerekek" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "ÃllÃtsd vissza a %s branch-ot ide" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "ElkülönÃtett head: nem lehet visszaállÃtani" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Merge commit kihagyása " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Hiba történt a patch ID megszerzése közben a következÅ‘nél " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - abbahagyás\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Commit " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -890,7 +903,7 @@ msgstr "" " Ugyanaz a patch mint\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -898,7 +911,7 @@ msgstr "" " különbözik innentÅ‘l\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -906,132 +919,132 @@ msgstr "" "A commitok diffje:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " %s gyereke van. abbahagyás\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Hiba történt a commit fájlba Ãrása közben: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Hiba történt a commitok diffelése közben: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Teteje" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "Innen" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "Ide" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Patch generálása" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "Innen:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "Ide:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Visszafele" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Kimeneti fájl:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Generálás" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Hiba törtét a patch készÃtése közben:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Tag név:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "" -#: gitk:9251 +#: gitk:9270 #, fuzzy msgid "Tag message:" msgstr "Tag név:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Létrehozás" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "A tag neve nincsen megadva" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "%s Tag már létezik" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Hiba történt a tag létrehozása közben:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Parancs:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Ãrás" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Hiba történt a commit Ãrása közben:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Név:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Kérem adja meg a nevét az új branchhoz" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "%s branch már létezik. FelülÃrja?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "%s commit már benne van a %s branchban -- biztos hogy újra csinálja ?" "eintragen?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Cherry-picking" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1041,7 +1054,7 @@ msgstr "" "Kérem commitolja, indÃtsa újra vagy rejtse el a változtatásait és próbálja " "újra." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1049,23 +1062,23 @@ msgstr "" "Cherry-pick hiba történt merge konfliktus miatt.\n" "KÃvánja futtatni a git citool-t a probléma megoldásához?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Nincsen változás commitolva" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "" "%s commit már benne van a %s branchban -- biztos hogy újra csinálja ?" "eintragen?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "ÚjraindÃtás" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1075,7 +1088,7 @@ msgstr "" "Kérem commitolja, indÃtsa újra vagy rejtse el a változtatásait és próbálja " "újra." -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1084,28 +1097,28 @@ msgstr "" "Cherry-pick hiba történt merge konfliktus miatt.\n" "KÃvánja futtatni a git citool-t a probléma megoldásához?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "ÚjraindÃtás megerÅ‘sÃtése" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "ÚjraindÃtja a %s branchot %s-ig?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "ÚjraindÃtás tÃpusa:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Soft: Hagyd a working tree-t és az indexet érintetlenül" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Kevert: Hagyd a working tree-t érintetlenül, töröld az indexet" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1113,19 +1126,19 @@ msgstr "" "Hard: IndÃtsd újra a working tree-t és az indexet\n" "(MINDEN lokális változás eldobása)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "ÚjraindÃtás" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Kivesz" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "Nem lehet a jelenleg kivett branch-ot törölni" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1134,16 +1147,16 @@ msgstr "" "A %s branchon található commit nem található meg semelyik másik branchon.\n" "Tényleg törli a %s branchot?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Tagek és headek: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "SzűrÅ‘" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1151,219 +1164,226 @@ msgstr "" "Hiba történt a commit topológiai információ olvasása közben; branch ésa " "megelÅ‘zÅ‘/következÅ‘ információ nem lesz teljes." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Tag" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Gitk-betű kiválasztó" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "F" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "K" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Commit lista kijelzési opciók" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Maximális grafikon szélesség (sorok)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Maximális grafikon szélesség (táble %-je)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Mutasd a lokális változtatásokat" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "SHA1 Automatikus kiválasztása" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "A távoli refek elrejtése" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Diff kijelzÅ‘ opciók" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Tab sorköz" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Szomszédos tagek kijelzése" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Korlátozott diffek a kilistázott útvonalakhoz" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Fájlonkénti kódolás támgatása" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "KülsÅ‘ diff alkalmazás" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Válaszd ..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Ãltalános opciók" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Témázott vezérlÅ‘k használata" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(a változás újraindÃtást igényel)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(jelenleg nem elérhetÅ‘)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "SzÃnek: nyomja meg a kiválasztáshoz" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "Interfész" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "interfész" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Háttér" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "háttér" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "ElÅ‘tér" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "elÅ‘tér" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff: régi sorok" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "diff régi sorok" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff: új sorok" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "diff - új sorok" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff: nagy headerök" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "diff - nagy headerök" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Megjelölt sor háttér" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "megjelölt sor háttér" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Válasszon hátteret" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Betű: nyomja meg a kiválasztáshoz" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "FÅ‘ betű" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Diff kijelzÅ‘ betű" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Felhasználói interfész betű" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Gitk beállÃtások" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Generálás" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: válasszon szÃnt a %s-ra" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" +"Sajnáljuk, de a gitk nem futtatható ezzel a Tcl/Tk verzióval.\n" +"Gitk futtatásához legalább Tcl/Tk 8.4 szükséges." + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Nem találhatü git repository itt." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "FélreérthetÅ‘ argumentum '%s': revÃzió és fájlnév is" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Rossz gitk argumentumok:" -#: gitk:12405 -msgid "Command line" -msgstr "Parancs sor" +#~ msgid "mc" +#~ msgstr "mc" #~ msgid "SHA1 ID: " #~ msgstr "SHA1 ID: " @@ -1397,10 +1417,3 @@ msgstr "Parancs sor" #~ msgid "- stopping\n" #~ msgstr "- abbahagyás.\n" - -#~ msgid "" -#~ "Sorry, gitk cannot run with this version of Tcl/Tk.\n" -#~ " Gitk requires at least Tcl/Tk 8.4." -#~ msgstr "" -#~ "Sajnáljuk, de a gitk nem futtatható ezzel a Tcl/Tk verzióval.\n" -#~ "Gitk futtatásához legalább Tcl/Tk 8.4 szükséges." diff --git a/gitk-git/po/it.po b/gitk-git/po/it.po index d630bb086d..b8212b1700 100644 --- a/gitk-git/po/it.po +++ b/gitk-git/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2010-01-28 18:41+0100\n" "Last-Translator: Michele Ballabio <barra_cuda@katamail.com>\n" "Language-Team: Italian\n" @@ -25,7 +25,7 @@ msgstr "Impossibile ottenere l'elenco dei file in attesa di fusione:" msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -59,14 +59,18 @@ msgstr "Errore nell'esecuzione di git log:" msgid "Reading" msgstr "Lettura in corso" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Lettura delle revisioni in corso..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Nessuna revisione selezionata" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Linea di comando" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Impossibile elaborare i dati di git log:" @@ -75,16 +79,12 @@ msgstr "Impossibile elaborare i dati di git log:" msgid "No commit information available" msgstr "Nessuna informazione disponibile sulle revisioni" -#: gitk:1897 -msgid "mc" -msgstr "" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "OK" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Annulla" @@ -136,15 +136,15 @@ msgstr "Modifica vista..." msgid "Delete view" msgstr "Elimina vista" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Tutti i file" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Vista" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Informazioni su gitk" @@ -156,7 +156,7 @@ msgstr "Scorciatoie da tastiera" msgid "Help" msgstr "Aiuto" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -172,53 +172,53 @@ msgstr "Trova" msgid "commit" msgstr "revisione" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "contenente:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "che riguarda i percorsi:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "che aggiunge/rimuove la stringa:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Esatto" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Tutti i campi" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Titolo" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Commenti" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Autore" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Revisione creata da" @@ -246,7 +246,7 @@ msgstr "Linee di contesto" msgid "Ignore space change" msgstr "Ignora modifiche agli spazi" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -258,102 +258,110 @@ msgstr "Modifiche" msgid "Tree" msgstr "Directory" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Diff questo -> selezionato" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Diff selezionato -> questo" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Crea patch" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Crea etichetta" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Scrivi revisione in un file" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Crea un nuovo ramo" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Porta questa revisione in cima al ramo attuale" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Aggiorna il ramo HEAD a questa revisione" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Segna questa revisione" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Torna alla revisione segnata" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Trova il discendente di questa revisione e di quella segnata" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Confronta con la revisione segnata" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Diff questo -> selezionato" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Diff selezionato -> questo" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Segna questa revisione" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Attiva questo ramo" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Elimina questo ramo" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Evidenzia anche questo" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Evidenzia solo questo" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Visualizza differenze in un altro programma" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Annota la revisione precedente" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Mostra la provenienza di questa riga" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Esegui git gui blame su questa riga" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -371,316 +379,321 @@ msgstr "" "Utilizzo e redistribuzione permessi sotto i termini della GNU General Public " "License" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Chiudi" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Scorciatoie da tastiera di Gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Scorciatoie da tastiera di Gitk:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tEsci" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\tTrova" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tVai alla prima revisione" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tVai all'ultima revisione" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Su>, p, i\tVai più in alto di una revisione" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Giù>, n, k\tVai più in basso di una revisione" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Sinistra>, z, j\tTorna indietro nella cronologia" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Destra>, x, l\tVai avanti nella cronologia" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PaginaSu>\tVai più in alto di una pagina nella lista delle revisioni" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "" "<PaginaGiù>\tVai più in basso di una pagina nella lista delle revisioni" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tScorri alla cima della lista delle revisioni" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tScorri alla fine della lista delle revisioni" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Su>\tScorri la lista delle revisioni in alto di una riga" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Giù>\tScorri la lista delle revisioni in basso di una riga" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PaginaSu>\tScorri la lista delle revisioni in alto di una pagina" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PaginaGiù>\tScorri la lista delle revisioni in basso di una pagina" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Su>\tTrova all'indietro (verso l'alto, revisioni successive)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Shift-Giù>\tTrova in avanti (verso il basso, revisioni precedenti)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tScorri la vista delle differenze in alto di una pagina" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tScorri la vista delle differenze in alto di una pagina" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Spazio>\t\tScorri la vista delle differenze in basso di una pagina" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tScorri la vista delle differenze in alto di 18 linee" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tScorri la vista delle differenze in basso di 18 linee" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tTrova" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tTrova in avanti" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Invio>\tTrova in avanti" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\tVai all'ultima revisione" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tCursore nel box di ricerca" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tTrova all'indietro" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tScorri la vista delle differenze al file successivo" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tCerca in avanti nella vista delle differenze" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tCerca all'indietro nella vista delle differenze" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tAumenta dimensione carattere" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-più>\tAumenta dimensione carattere" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tDiminuisci dimensione carattere" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-meno>\tDiminuisci dimensione carattere" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tAggiorna" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Errore durante la creazione della directory temporanea %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Errore nella lettura di \"%s\" da %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "impossibile eseguire il comando:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Revisione inesistente" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: impossibile eseguire il comando:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Impossibile leggere merge head: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Errore nella lettura dell'indice: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Impossibile eseguire git blame: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Ricerca in corso" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Errore nell'esecuzione di git blame: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "Quella riga proviene dalla revisione %s, non presente in questa vista" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Impossibile eseguire il visualizzatore di differenze:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Scelta vista Gitk" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Ricorda questa vista" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Riferimenti (lista di elementi separati da spazi)" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Rami ed etichette" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Tutti i riferimenti" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Tutti i rami (locali)" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Tutte le etichette" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Tutti i rami remoti" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Informazioni sulla revisione (espressioni regolari):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Autore:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Revisione creata da:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Messaggio di revisione:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Risponde a tutti i criteri di ricerca sulle revisioni" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Risponde a tutti i criteri di ricerca sulle revisioni" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Modifiche ai file:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Stringa fissa" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Espressione regolare" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Cerca stringa:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -688,201 +701,201 @@ msgstr "" "Date di revisione (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, " "2009 15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "Da:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "A:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Limita e/o salta N revisioni (intero positivo):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Numero di revisioni da mostrare:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Numero di revisioni da saltare:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Altre opzioni:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Ordina solo per data" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Segna i lati del ramo" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Limita al primo genitore" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Cronologia semplificata" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Ulteriori argomenti da passare a git log:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Inserire file e directory da includere, uno per riga:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Comando che genera altre revisioni da visualizzare:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: modifica vista" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- criteri per la scelta delle revisioni" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Nome vista" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Applica (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Errore negli argomenti di selezione delle revisioni:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Nessuno" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Discendente" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Non discendente" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Ascendente" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Non ascendente" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Modifiche locali presenti nell'indice ma non nell'archivio" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Modifiche locali non presenti né nell'archivio né nell'indice" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "molti" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Etichette:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Genitore" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Figlio" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Ramo" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Segue" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Precede" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Errore nella lettura delle differenze:" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Vai a:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "La SHA1 id abbreviata %s è ambigua" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "La revisione %s è sconosciuta" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "La SHA1 id %s è sconosciuta" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "La revisione %s non è presente nella vista attuale" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Data" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Figli" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Aggiorna il ramo %s a questa revisione" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "Nessun ramo attivo: reset impossibile" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Salto la revisione di fusione " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Errore nella identificazione della patch per " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - fine\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "La revisione " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -890,7 +903,7 @@ msgstr "" " ha le stesse differenze di\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -898,7 +911,7 @@ msgstr "" " è diversa da\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -906,129 +919,129 @@ msgstr "" "Differenze tra le revisioni:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " ha %s figli - fine\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Errore nella scrittura della revisione nel file: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Errore nelle differenze tra le revisioni: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Inizio" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "Da" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "A" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Genera patch" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "Da:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "A:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Inverti" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Scrivi sul file:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Genera" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Errore nella creazione della patch:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Nome etichetta:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "Il messaggio dell'etichetta è opzionale" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Messaggio dell'etichetta:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Crea" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Nessuna etichetta specificata" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "L'etichetta \"%s\" esiste già " -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Errore nella creazione dell'etichetta:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Comando:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Scrivi" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Errore nella scrittura della revisione:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Nome:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Specificare un nome per il nuovo ramo" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "Il ramo '%s' esiste già . Sovrascrivere?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "La revisione %s è già inclusa nel ramo %s -- applicarla di nuovo?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1039,7 +1052,7 @@ msgstr "" "Prima di riprovare, bisogna creare una nuova revisione, annullare le " "modifiche o usare 'git stash'." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1047,21 +1060,21 @@ msgstr "" "Impossibile eseguire cherry-pick a causa di un conflitto nella fusione.\n" "Vuoi avviare git citool per risolverlo?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Nessuna modifica archiviata" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "La revisione %s è già inclusa nel ramo %s -- applicarla di nuovo?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "git reset in corso" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1072,7 +1085,7 @@ msgstr "" "Prima di riprovare, bisogna creare una nuova revisione, annullare le " "modifiche o usare 'git stash'." -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1081,28 +1094,28 @@ msgstr "" "Impossibile eseguire cherry-pick a causa di un conflitto nella fusione.\n" "Vuoi avviare git citool per risolverlo?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Conferma git reset" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Aggiornare il ramo %s a %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Tipo di aggiornamento:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Soft: Lascia la direcory di lavoro e l'indice come sono" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Mixed: Lascia la directory di lavoro come è, aggiorna l'indice" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1110,19 +1123,19 @@ msgstr "" "Hard: Aggiorna la directory di lavoro e l'indice\n" "(abbandona TUTTE le modifiche locali)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "git reset in corso" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Attivazione in corso" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "Impossibile cancellare il ramo attualmente attivo" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1131,16 +1144,16 @@ msgstr "" "Le revisioni nel ramo %s non sono presenti su altri rami.\n" "Cancellare il ramo %s?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Etichette e rami: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filtro" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1148,220 +1161,222 @@ msgstr "" "Errore nella lettura della topologia delle revisioni: le informazioni sul " "ramo e le etichette precedenti e seguenti saranno incomplete." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Etichetta" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Scelta caratteri gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Opzioni visualizzazione dell'elenco revisioni" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Larghezza massima del grafico (in linee)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Larghezza massima del grafico (% del pannello)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Mostra modifiche locali" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "Seleziona automaticamente SHA1 hash" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Nascondi i riferimenti remoti" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Opzioni di visualizzazione delle differenze" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Spaziatura tabulazioni" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Mostra etichette vicine" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Limita le differenze ai percorsi elencati" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Attiva codifica file per file" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Visualizzatore di differenze" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Scegli..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Opzioni generali" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Utilizza interfaccia a tema" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(una modifica richiede il riavvio)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(momentaneamente non disponibile)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Colori: premere per scegliere" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "Interfaccia" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "interfaccia" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Sfondo" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "sfondo" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Primo piano" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "primo piano" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff: vecchie linee" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "vecchie linee" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff: nuove linee" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "nuove linee" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff: intestazione della sezione" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "intestazione della sezione" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Sfondo riga selezionata" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "sfondo riga selezionata" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Sfondo" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Carattere: premere per scegliere" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Carattere principale" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Carattere per differenze" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Carattere per interfaccia utente" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Preferenze gitk" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Genera" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: scegliere un colore per %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Archivio git non trovato." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Argomento ambiguo: '%s' è sia revisione che nome di file" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Gitk: argomenti errati:" -#: gitk:12405 -msgid "Command line" -msgstr "Linea di comando" - #~ msgid "next" #~ msgstr "succ" diff --git a/gitk-git/po/ja.po b/gitk-git/po/ja.po index db47a4c2b6..8bbc67f6b5 100644 --- a/gitk-git/po/ja.po +++ b/gitk-git/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2009-11-06 01:45+0900\n" "Last-Translator: Mizar <mizar.jp@gmail.com>\n" "Language-Team: Japanese\n" @@ -26,7 +26,7 @@ msgstr "マージã•れã¦ã„ãªã„ファイルã®ãƒªã‚¹ãƒˆã‚’å–å¾—ã§ãã¾ã› msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -60,14 +60,18 @@ msgstr "git log 実行エラー:" msgid "Reading" msgstr "èªã¿è¾¼ã¿ä¸" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "コミットèªã¿è¾¼ã¿ä¸..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "コミットãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "コマンド行" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "git log ã®å‡ºåŠ›ã‚’è§£æžã§ãã¾ã›ã‚“:" @@ -76,16 +80,12 @@ msgstr "git log ã®å‡ºåŠ›ã‚’è§£æžã§ãã¾ã›ã‚“:" msgid "No commit information available" msgstr "有効ãªã‚³ãƒŸãƒƒãƒˆã®æƒ…å ±ãŒã‚りã¾ã›ã‚“" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "OK" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "ã‚ャンセル" @@ -137,15 +137,15 @@ msgstr "ビュー編集..." msgid "Delete view" msgstr "ビュー削除" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "å…¨ã¦ã®ãƒ•ァイル" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "ビュー" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "gitk ã«ã¤ã„ã¦" @@ -157,7 +157,7 @@ msgstr "ã‚ーãƒã‚¤ãƒ³ãƒ‡ã‚£ãƒ³ã‚°" msgid "Help" msgstr "ヘルプ" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -173,53 +173,53 @@ msgstr "検索" msgid "commit" msgstr "コミット" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "å«ã‚€:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "パスã®ä¸€éƒ¨:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "è¿½åŠ /除去ã™ã‚‹æ–‡å—列:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "英å—ã®å¤§å°ã‚’区別ã™ã‚‹" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "英å—ã®å¤§å°ã‚’区別ã—ãªã„" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "æ£è¦è¡¨ç¾" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "å…¨ã¦ã®é …ç›®" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "ヘッドライン" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "コメント" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "作者" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "コミット者" @@ -247,7 +247,7 @@ msgstr "文脈行数" msgid "Ignore space change" msgstr "空白ã®é•ã„を無視" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -259,102 +259,110 @@ msgstr "パッãƒ" msgid "Tree" msgstr "ツリー" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "ã“れã¨é¸æŠžã—ãŸã‚³ãƒŸãƒƒãƒˆã®diffを見る" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "é¸æŠžã—ãŸã‚³ãƒŸãƒƒãƒˆã¨ã“れã®diffを見る" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "パッãƒä½œæˆ" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "タグ生æˆ" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "ã‚³ãƒŸãƒƒãƒˆã‚’ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã出ã™" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "æ–°è¦ãƒ–ランãƒç”Ÿæˆ" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "ã“ã®ã‚³ãƒŸãƒƒãƒˆã‚’ãƒã‚§ãƒªãƒ¼ãƒ”ックã™ã‚‹" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "ブランãƒã®HEADã‚’ã“ã“ã«ãƒªã‚»ãƒƒãƒˆã™ã‚‹" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "ã“ã®ã‚³ãƒŸãƒƒãƒˆã«ãƒžãƒ¼ã‚¯ã‚’ã¤ã‘ã‚‹" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "マークを付ã‘ãŸæ‰€ã«æˆ»ã‚‹" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "ã“れã¨ãƒžãƒ¼ã‚¯ã‚’ã¤ã‘ãŸæ‰€ã¨ã®åå«ã‚’見ã¤ã‘ã‚‹" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "マークを付ã‘ãŸã‚³ãƒŸãƒƒãƒˆã¨æ¯”較ã™ã‚‹" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "ã“れã¨é¸æŠžã—ãŸã‚³ãƒŸãƒƒãƒˆã®diffを見る" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "é¸æŠžã—ãŸã‚³ãƒŸãƒƒãƒˆã¨ã“れã®diffを見る" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "ã“ã®ã‚³ãƒŸãƒƒãƒˆã«ãƒžãƒ¼ã‚¯ã‚’ã¤ã‘ã‚‹" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "ã“ã®ãƒ–ランãƒã‚’ãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆã™ã‚‹" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "ã“ã®ãƒ–ランãƒã‚’除去ã™ã‚‹" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "ã“れもãƒã‚¤ãƒ©ã‚¤ãƒˆã•ã›ã‚‹" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "ã“れã ã‘ã‚’ãƒã‚¤ãƒ©ã‚¤ãƒˆã•ã›ã‚‹" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "外部diffツール" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "親コミットã‹ã‚‰ blame ã‚’ã‹ã‘ã‚‹" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "ã“ã®è¡Œã®å‡ºè‡ªã‚’表示ã™ã‚‹" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "ã“ã®è¡Œã« git gui ã§ blame ã‚’ã‹ã‘ã‚‹" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -371,315 +379,320 @@ msgstr "" "\n" "使用ãŠã‚ˆã³å†é…布㯠GNU General Public License ã«å¾“ã£ã¦ãã ã•ã„" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "é–‰ã˜ã‚‹" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Gitk ã‚ーãƒã‚¤ãƒ³ãƒ‡ã‚£ãƒ³ã‚°" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Gitk ã‚ーãƒã‚¤ãƒ³ãƒ‡ã‚£ãƒ³ã‚°:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\t終了" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\t検索" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\t最åˆã®ã‚³ãƒŸãƒƒãƒˆã«ç§»å‹•" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\t最後ã®ã‚³ãƒŸãƒƒãƒˆã«ç§»å‹•" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Up>, p, i\t一ã¤ä¸Šã®ã‚³ãƒŸãƒƒãƒˆã«ç§»å‹•" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Down>, n, k\t一ã¤ä¸‹ã®ã‚³ãƒŸãƒƒãƒˆã«ç§»å‹•" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Left>, z, j\tå±¥æ´ã®å‰ã«æˆ»ã‚‹" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Right>, x, l\tå±¥æ´ã®æ¬¡ã¸é€²ã‚€" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tコミットリストã®ä¸€ã¤ä¸Šã®ãƒšãƒ¼ã‚¸ã«ç§»å‹•" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tコミットリストã®ä¸€ã¤ä¸‹ã®ãƒšãƒ¼ã‚¸ã«ç§»å‹•" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tコミットリストã®ä¸€ç•ªä¸Šã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tコミットリストã®ä¸€ç•ªä¸‹ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tコミットリストã®ä¸€ã¤ä¸‹ã®è¡Œã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tコミットリストã®ä¸€ã¤ä¸‹ã®è¡Œã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tコミットリストã®ä¸Šã®ãƒšãƒ¼ã‚¸ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tコミットリストã®ä¸‹ã®ãƒšãƒ¼ã‚¸ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Up>\t後方を検索 (上方ã®ãƒ»æ–°ã—ã„コミット)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Shift-Down>\t剿–¹ã‚’検索(下方ã®ãƒ»å¤ã„コミット)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tdiffç”»é¢ã‚’上ã®ãƒšãƒ¼ã‚¸ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tdiffç”»é¢ã‚’上ã®ãƒšãƒ¼ã‚¸ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Space>\t\tdiffç”»é¢ã‚’下ã®ãƒšãƒ¼ã‚¸ã«ã‚¹ã‚¯ãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tdiffç”»é¢ã‚’上ã«18行スクãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tdiffç”»é¢ã‚’下ã«18行スクãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\t検索" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\t次を検索ã—ã¦ç§»å‹•" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\t次を検索ã—ã¦ç§»å‹•" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\t最後ã®ã‚³ãƒŸãƒƒãƒˆã«ç§»å‹•" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\t検索ボックスã«ãƒ•ォーカス" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tå‰ã‚’検索ã—ã¦ç§»å‹•" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\t次ã®ãƒ•ァイルã«diffç”»é¢ã‚’スクãƒãƒ¼ãƒ«ã™ã‚‹" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tdiffç”»é¢ã®æ¬¡ã‚’検索" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tdiffç”»é¢ã®å‰ã‚’検索" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tæ–‡å—サイズを拡大" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tæ–‡å—サイズを拡大" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tæ–‡å—サイズを縮å°" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tæ–‡å—サイズを縮å°" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tæ›´æ–°" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "一時ディレクトリ %s ç”Ÿæˆæ™‚エラー:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "\"%s\" ã®ã‚¨ãƒ©ãƒ¼ãŒ %s ã«ç™ºç”Ÿ:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "コマンド失敗:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "ãã®ã‚ˆã†ãªã‚³ãƒŸãƒƒãƒˆã¯ã‚りã¾ã›ã‚“" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: コマンド失敗:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "マージã™ã‚‹ HEAD ã‚’èªã¿è¾¼ã‚ã¾ã›ã‚“: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "インデックスèªã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "git blame ã‚’å§‹ã‚られã¾ã›ã‚“: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "検索ä¸" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "git blame 実行エラー: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "コミット %s ã«ç”±æ¥ã™ã‚‹ãã®è¡Œã¯ã€ã“ã®ãƒ“ューã«è¡¨ç¤ºã•れã¦ã„ã¾ã›ã‚“" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "外部diffビューアãŒå¤±æ•—:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Gitk ビュー定義" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "ã“ã®ãƒ“ューを記憶ã™ã‚‹" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "リファレンス(スペース区切りã®ãƒªã‚¹ãƒˆï¼‰:" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "ブランãƒï¼†ã‚¿ã‚°:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "å…¨ã¦ã®ãƒªãƒ•ァレンス" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "å…¨ã¦ã®ï¼ˆãƒãƒ¼ã‚«ãƒ«ãªï¼‰ãƒ–ランãƒ" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "å…¨ã¦ã®ã‚¿ã‚°" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "å…¨ã¦ã®ãƒªãƒ¢ãƒ¼ãƒˆè¿½è·¡ãƒ–ランãƒ" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "ã‚³ãƒŸãƒƒãƒˆæƒ…å ±ï¼ˆæ£è¦è¡¨ç¾ï¼‰:" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "作者:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "コミット者:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "コミットメッセージ:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "ã‚³ãƒŸãƒƒãƒˆæƒ…å ±ã®å…¨ã¦ã®æ¡ä»¶ã«ä¸€è‡´" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "ã‚³ãƒŸãƒƒãƒˆæƒ…å ±ã®å…¨ã¦ã®æ¡ä»¶ã«ä¸€è‡´" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "変更ã—ãŸãƒ•ァイル:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "固定文å—列" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "æ£è¦è¡¨ç¾" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "検索文å—列:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -687,202 +700,202 @@ msgstr "" "コミット日時 (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "期間ã®å§‹ã‚:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "期間ã®çµ‚ã‚り:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "制é™ãƒ»çœç•¥ã™ã‚‹ãƒªãƒ“ã‚¸ãƒ§ãƒ³ã®æ•°ï¼ˆæ£ã®æ•´æ•°ï¼‰:" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "表示ã™ã‚‹æ•°:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "çœç•¥ã™ã‚‹æ•°:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "ãã®ä»–ã®ã‚ªãƒ—ション:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "åŽ³å¯†ã«æ—¥ä»˜é †ã§ä¸¦ã³æ›¿ãˆ" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "å´æžãƒžãƒ¼ã‚¯" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "最åˆã®è¦ªã«åˆ¶é™" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "簡易ãªå±¥æ´" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "git log ã¸ã®è¿½åŠ ã®å¼•æ•°:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "å«ã¾ã‚Œã‚‹ãƒ•ァイル・ディレクトリを一行ã”ã¨ã«å…¥åŠ›:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "ã‚³ãƒŸãƒƒãƒˆè¿½åŠ ã‚³ãƒžãƒ³ãƒ‰:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: ビュー編集" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "― リビジョンã®é¸æŠžæ¡ä»¶" -#: gitk:4224 +#: gitk:4241 #, fuzzy msgid "View Name" msgstr "ビューå:" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "é©ç”¨ (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "ã‚³ãƒŸãƒƒãƒˆé¸æŠžå¼•æ•°ã®ã‚¨ãƒ©ãƒ¼:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "ç„¡ã—" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "åå«" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "éžåå«" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "祖先" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "éžç¥–å…ˆ" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "ステージã•れãŸã€ã‚³ãƒŸãƒƒãƒˆå‰ã®ãƒãƒ¼ã‚«ãƒ«ãªå¤‰æ›´" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "ステージã•れã¦ã„ãªã„ã€ã‚³ãƒŸãƒƒãƒˆå‰ã®ãƒãƒ¼ã‚«ãƒ«ãªå¤‰æ›´" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "多数" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "ã‚¿ã‚°:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "親" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "å" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "ブランãƒ" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "下ä½" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "上ä½" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "diffå–得エラー: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Goto:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "%s ã‚’å«ã‚€ SHA1 ID ã¯è¤‡æ•°å˜åœ¨ã—ã¾ã™" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "リビジョン %s ã¯ä¸æ˜Žã§ã™" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "SHA1 id %s ã¯ä¸æ˜Žã§ã™" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "リビジョン %s ã¯ç¾åœ¨ã®ãƒ“ューã«ã¯ã‚りã¾ã›ã‚“" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "日付" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "å" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "%s ブランãƒã‚’ã“ã“ã«ãƒªã‚»ãƒƒãƒˆã™ã‚‹" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "切り離ã•れãŸHEAD: リセットã§ãã¾ã›ã‚“" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "コミットマージをスã‚ップ: " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "パッãƒå–得エラー: ID " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - åœæ¢\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "コミット " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -890,7 +903,7 @@ msgstr "" " ã¯ä¸‹è¨˜ã®ãƒ‘ッãƒã¨åŒç‰\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -898,7 +911,7 @@ msgstr "" " 下記ã‹ã‚‰ã®diff\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -906,131 +919,131 @@ msgstr "" "コミットã®diff:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " ã«ã¯ %s ã®åãŒã‚りã¾ã™ - åœæ¢\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "ファイルã¸ã®ã‚³ãƒŸãƒƒãƒˆæ›¸ã出ã—エラー: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "コミットã®diff実行エラー: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Top" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "From" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "To" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "パッãƒç”Ÿæˆ" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "From:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "To:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "逆" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "出力ファイル:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "生æˆ" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "パッãƒç”Ÿæˆã‚¨ãƒ©ãƒ¼:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "ã‚¿ã‚°å:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "" -#: gitk:9251 +#: gitk:9270 #, fuzzy msgid "Tag message:" msgstr "ã‚¿ã‚°å:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "生æˆ" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "ã‚¿ã‚°ã®åç§°ãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "ã‚¿ã‚° \"%s\" ã¯æ—¢ã«å˜åœ¨ã—ã¾ã™" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "タグ生æˆã‚¨ãƒ©ãƒ¼:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "コマンド:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "書ã出ã—" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "コミット書ã出ã—エラー:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "åå‰:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "æ–°ã—ã„ブランãƒã®åå‰ã‚’指定ã—ã¦ãã ã•ã„" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "ブランム'%s' ã¯æ—¢ã«å˜åœ¨ã—ã¾ã™ã€‚上書ãã—ã¾ã™ã‹ï¼Ÿ" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "コミット %s ã¯æ—¢ã«ãƒ–ランム%s ã«å«ã¾ã‚Œã¦ã„ã¾ã™ ― 本当ã«ã“れをå†é©ç”¨ã—ã¾ã™ã‹ï¼Ÿ" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "ãƒã‚§ãƒªãƒ¼ãƒ”ックä¸" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1040,7 +1053,7 @@ msgstr "" "ã‚ãªãŸã®å¤‰æ›´ã« commit, reset, stash ã®ã„ãšã‚Œã‹ã‚’行ã£ã¦ã‹ã‚‰ã‚„り直ã—ã¦ãã ã•" "ã„。" -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1048,22 +1061,22 @@ msgstr "" "マージã®è¡çªã«ã‚ˆã£ã¦ãƒã‚§ãƒªãƒ¼ãƒ”ックã¯å¤±æ•—ã—ã¾ã—ãŸã€‚\n" "ã“ã®è§£æ±ºã®ãŸã‚ã« git citool を実行ã—ãŸã„ã§ã™ã‹ï¼Ÿ" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "何ã®å¤‰æ›´ã‚‚コミットã•れã¦ã„ã¾ã›ã‚“" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "" "コミット %s ã¯æ—¢ã«ãƒ–ランム%s ã«å«ã¾ã‚Œã¦ã„ã¾ã™ ― 本当ã«ã“れをå†é©ç”¨ã—ã¾ã™ã‹ï¼Ÿ" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "リセットä¸" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1073,7 +1086,7 @@ msgstr "" "ã‚ãªãŸã®å¤‰æ›´ã« commit, reset, stash ã®ã„ãšã‚Œã‹ã‚’行ã£ã¦ã‹ã‚‰ã‚„り直ã—ã¦ãã ã•" "ã„。" -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1082,28 +1095,28 @@ msgstr "" "マージã®è¡çªã«ã‚ˆã£ã¦ãƒã‚§ãƒªãƒ¼ãƒ”ックã¯å¤±æ•—ã—ã¾ã—ãŸã€‚\n" "ã“ã®è§£æ±ºã®ãŸã‚ã« git citool を実行ã—ãŸã„ã§ã™ã‹ï¼Ÿ" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "確èªã‚’å–り消ã™" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "ブランム%s ã‚’ %s ã«ãƒªã‚»ãƒƒãƒˆã—ã¾ã™ã‹ï¼Ÿ" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Reset タイプ:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Soft: 作æ¥ãƒ„リーもインデックスもãã®ã¾ã¾ã«ã™ã‚‹" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Mixed: 作æ¥ãƒ„リーをãã®ã¾ã¾ã«ã—ã¦ã€ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚’リセット" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1111,19 +1124,19 @@ msgstr "" "Hard: 作æ¥ãƒ„リーやインデックスをリセット\n" "(「全ã¦ã®ã€ãƒãƒ¼ã‚«ãƒ«ãªå¤‰æ›´ã‚’ç ´æ£„ï¼‰" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "リセットä¸" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "ãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆ" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "ç¾åœ¨ãƒã‚§ãƒƒã‚¯ã‚¢ã‚¦ãƒˆã•れã¦ã„るブランãƒã‚’削除ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1132,16 +1145,16 @@ msgstr "" "ブランム%s ã«ã¯ä»–ã®ãƒ–ランãƒã«å˜åœ¨ã—ãªã„コミットãŒã‚りã¾ã™ã€‚\n" "本当ã«ãƒ–ランム%s を削除ã—ã¾ã™ã‹ï¼Ÿ" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "ã‚¿ã‚°ã¨HEAD: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "フィルター" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1149,220 +1162,225 @@ msgstr "" "ã‚³ãƒŸãƒƒãƒˆæ§‹é€ æƒ…å ±èªã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼; ブランãƒåŠã³ä¸Šä½/下ä½ã®ã‚¿ã‚°æƒ…å ±ãŒä¸å®Œå…¨ã§ã‚ã‚‹" "よã†ã§ã™ã€‚" -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "ã‚¿ã‚°" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "ID" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Gitk ãƒ•ã‚©ãƒ³ãƒˆé¸æŠž" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "コミットリスト表示オプション" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "æœ€å¤§ã‚°ãƒ©ãƒ•å¹…ï¼ˆç·šã®æœ¬æ•°ï¼‰" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "最大グラフ幅(ペインã«å¯¾ã™ã‚‹ï¼…)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "ãƒãƒ¼ã‚«ãƒ«ãªå¤‰æ›´ã‚’表示" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "SHA1 ã®è‡ªå‹•é¸æŠž" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "ãƒªãƒ¢ãƒ¼ãƒˆãƒªãƒ•ã‚¡ãƒ¬ãƒ³ã‚¹ã‚’éš ã™" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "diff表示オプション" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "タブ空白幅" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "è¿‘ãã®ã‚¿ã‚°ã‚’表示ã™ã‚‹" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "diff をリストã®ãƒ‘スã«åˆ¶é™" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "ファイルã”ã¨ã®ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã®ã‚µãƒãƒ¼ãƒˆ" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "外部diffツール" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "é¸æŠž..." -#: gitk:11374 +#: gitk:11395 #, fuzzy msgid "General options" msgstr "パッãƒç”Ÿæˆ" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "色: ボタンを押ã—ã¦é¸æŠž" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "インターフェイス" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "インターフェイス" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "背景" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "背景" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "剿™¯" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "剿™¯" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff: æ—§ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "diff æ—§ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff: æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "diff æ–°ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff: hunkヘッダ" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "diff hunkヘッダ" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "マーク行ã®èƒŒæ™¯" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "マーク行ã®èƒŒæ™¯" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "é¸æŠžã®èƒŒæ™¯" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "フォント: ボタンを押ã—ã¦é¸æŠž" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "主フォント" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Diff表示用フォント" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "UI用フォント" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Gitk è¨å®š" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "生æˆ" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: 「%s〠ã®è‰²ã‚’é¸æŠž" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "ã“ã“ã«ã¯gitリãƒã‚¸ãƒˆãƒªãŒã‚りã¾ã›ã‚“。" -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "ã‚ã„ã¾ã„ãªå¼•æ•° '%s': リビジョンã¨ãƒ•ァイルåã®ä¸¡æ–¹ã«è§£é‡ˆã§ãã¾ã™" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "gitkã¸ã®ä¸æ£ãªå¼•æ•°:" -#: gitk:12405 -msgid "Command line" -msgstr "コマンド行" +#~ msgid "mc" +#~ msgstr "mc" #~ msgid "SHA1 ID: " #~ msgstr "SHA1 ID: " diff --git a/gitk-git/po/pt_br.po b/gitk-git/po/pt_br.po index 80d24bcad8..07e5d63b65 100644 --- a/gitk-git/po/pt_br.po +++ b/gitk-git/po/pt_br.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2010-12-06 23:39-0200\n" "Last-Translator: Alexandre Erwin Ittner <alexandre@ittner.com.br>\n" "Language-Team: Brazilian Portuguese <>\n" @@ -26,7 +26,7 @@ msgstr "Não foi possÃvel obter a lista dos arquivos não mesclados:" msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -60,14 +60,18 @@ msgstr "Erro ao executar git log:" msgid "Reading" msgstr "Lendo" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Lendo revisões..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Nenhuma revisão foi selecionada" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Linha de comando" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Não foi possÃvel interpretar a saÃda do \"git log\":" @@ -76,16 +80,12 @@ msgstr "Não foi possÃvel interpretar a saÃda do \"git log\":" msgid "No commit information available" msgstr "Não há informações disponÃveis sobre a revisão" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "Ok" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Cancelar" @@ -137,15 +137,15 @@ msgstr "Editar vista..." msgid "Delete view" msgstr "Apagar vista" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Todos os arquivos" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Exibir" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Sobre o gitk" @@ -157,7 +157,7 @@ msgstr "Atalhos de teclado" msgid "Help" msgstr "Ajuda" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -173,53 +173,53 @@ msgstr "Encontrar" msgid "commit" msgstr "Revisão" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "contendo:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "envolvendo os caminhos:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "Adicionando/removendo texto:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Exatamente" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Ignorar maiúsculas/minúsculas" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Expressão regular" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Todos os campos" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Assunto" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Descrição da revisão" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Autor" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Revisor" @@ -247,7 +247,7 @@ msgstr "Número de linhas de contexto" msgid "Ignore space change" msgstr "Ignorar mudanças de caixa" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -259,102 +259,110 @@ msgstr "Diferenças" msgid "Tree" msgstr "Ãrvore" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Comparar esta revisão com a selecionada" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Comparar a revisão selecionada com esta" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Criar patch" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Criar etiqueta" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Salvar revisão para um arquivo" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Criar novo ramo" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Fazer cherry-pick desta revisão" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Redefinir HEAD para cá" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Marcar esta revisão" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Voltar à marca" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Encontrar descendente e marcar" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Comparar com a revisão marcada" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Comparar esta revisão com a selecionada" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Comparar a revisão selecionada com esta" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Marcar esta revisão" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Efetuar checkout deste ramo" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Excluir este ramo" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Marcar este também" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Marcar apenas este" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Diff externo" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Anotar revisão anterior" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Exibir origem desta linha" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Executar 'git blame' nesta linha" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -371,315 +379,320 @@ msgstr "" "\n" "Uso e distribuição segundo os termos da Licença Pública Geral GNU" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Fechar" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Atalhos de teclado" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Atalhos de teclado:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tSair" -#: gitk:3046 +#: gitk:3049 #, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-W>\t\tFechar janela" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tIr para a primeira revisão" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tIr para a última revisão" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Up>, p, i\tIr para uma revisão acima" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Down>, n, k\tIr para uma revisão abaixo" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Left>, z, j\tVoltar no histórico" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Right>, x, l\tAvançar no histórico" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tSubir uma página na lista de revisões" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tDescer uma página na lista de revisões" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tRolar para o inÃcio da lista de revisões" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tRolar para o final da lista de revisões" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tRolar uma linha acima na lista de revisões" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tRolar uma linha abaixo na lista de revisões" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tRolar uma página acima na lista de revisões" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tRolar uma página abaixo na lista de revisões" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Up>\tProcurar próxima (revisões mas recentes)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Shift-Down>\tProcurar anterior (revisões mais antigas)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tRola alterações uma página acima" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tRolar alterações uma página abaixo" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Space>\t\tRolar alterações uma página abaixo" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tRolar alterações 18 linhas acima" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tRolar alterações 18 linhas abaixo" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tProcurar" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tIr para a próxima ocorrência" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\tIr para a próxima ocorrência" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\tIr para a última revisão" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tPor foco na caixa de busca" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tIr para a ocorrência anterior" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tRolar alterações para o próximo arquivo" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tProcurar a próxima ocorrência na lista de alterações" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tProcurar ocorrência anterior na lista de alterações" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tAumentar tamanho da fonte" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tAumentar tamanho da fonte" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tReduzir tamanho da fonte" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tReduzir tamanho da fonte" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tAtualizar" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Erro ao criar o diretório temporário %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Erro ao ler \"%s\" de %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "O comando falhou:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Revisão não encontrada" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "Comando 'git gui blame' falhou:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "ImpossÃvel ler merge head: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Erro ao ler o Ãndice: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Não foi possÃvel inciar o 'git blame': %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Procurando" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Erro ao executar 'git blame': %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "Esta linha vem da revisão %s, que não está nesta vista" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Erro do visualizador de alterações externo:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Definir vista" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Lembrar esta vista" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Referências (separar a lista com um espaço):" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Ramos & etiquetas:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Todas as referências" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Todos os ramos locais" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Todas as etiquetas" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Todos os ramos de rastreio" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Informações da revisão (expressões regulares):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Autor:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Revisor:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Descrição da revisão:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Coincidir todos os critérios de informações da revisão" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Coincidir todos os critérios de informações da revisão" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Mudanças para os arquivos:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Texto fixo" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Expressão regular" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Texto de busca" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -687,201 +700,201 @@ msgstr "" "Datas de revisão (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "Desde:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Até:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Limitar e/ou ignorar um número de revisões (inteiro positivo):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Número para mostrar:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Número para ignorar:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Opções diversas:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Ordenar estritamente pela data" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Marcar os dois lados do ramo" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Limitar ao primeiro antecessor" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Histórico simplificado" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Argumentos adicionais para o 'git log':" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Arquivos e diretórios para incluir, um por linha" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Comando para gerar mais revisões para incluir:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: editar vista" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- critérios para selecionar revisões" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Nome da vista" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Aplicar (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Erro nos argumentos de seleção de revisões:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Nenhum" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Descendente de" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Não descendente de" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Antecessor de" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Não antecessor de" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Mudanças locais marcadas, porém não salvas" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Mudanças locais não marcadas" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "muitas" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Etiquetas:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Antecessor" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Descendente" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Ramo" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Segue" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Precede" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Erro ao obter diferenças: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Ir para:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "O id SHA1 %s é ambÃguo" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "Revisão %s desconhecida" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "Id SHA1 %s desconhecido" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "A revisão %s não está na vista atual" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Data" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Descendentes" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Redefinir ramo %s para este ponto" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "Detached head: impossÃvel redefinir" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Saltando revisão de mesclagem" -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Erro ao obter patch ID para" -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr "- parando\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Revisão" -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -889,13 +902,13 @@ msgstr "" "é o mesmo patch que\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " msgstr "difere de" -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -903,129 +916,129 @@ msgstr "" "Diferença de revisões:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr "possui %s descendentes - parando\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Erro ao salvar revisão para o arquivo: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Erro ao comparar revisões: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "InÃcio" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "De" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "Para" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Gerar patch" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "De:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "Para:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Inverter" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Arquivo de saÃda:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Gerar" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Erro ao criar patch:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Nome da etiqueta:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "A descrição da etiqueta é opcional" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Descrição da etiqueta" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Criar" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Nome da etiqueta não indicado" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Etiqueta \"%s\" já existe" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Erro ao criar etiqueta:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Comando:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Exportar" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Erro ao exportar revisão" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Nome:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Indique um nome para o novo ramo" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "O ramo \"%s\" já existe. Sobrescrever?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "Revisão %s já inclusa no ramo %s -- você realmente deseja reaplicá-la?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Cherry-picking" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1035,7 +1048,7 @@ msgstr "" "Salve a uma revisão, redefina ou armazene (stash) suas mudanças e tente " "novamente." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1043,21 +1056,21 @@ msgstr "" "O cherry-pick falhou porque houve um conflito na mesclagem.\n" "Executar o 'git citool' para resolvê-lo?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Nenhuma revisão foi salva" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "Revisão %s já inclusa no ramo %s -- você realmente deseja reaplicá-la?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "Redefinindo" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1067,7 +1080,7 @@ msgstr "" "Salve a uma revisão, redefina ou armazene (stash) suas mudanças e tente " "novamente." -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1076,28 +1089,28 @@ msgstr "" "O cherry-pick falhou porque houve um conflito na mesclagem.\n" "Executar o 'git citool' para resolvê-lo?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Confirmar redefinição" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Você realmente deseja redefinir o ramo %s para %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Tipo de redefinição" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Soft: deixa a árvore de trabalho e o Ãndice intocados" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Misto: Deixa a árvore de trabalho intocada, redefine o Ãndice" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1105,19 +1118,19 @@ msgstr "" "Hard: Redefine a árvore de trabalho e o Ãndice\n" "(descarta TODAS as mudanças locais)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Redefinindo" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Abrindo" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "ImpossÃvel excluir o ramo atualmente aberto" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1126,16 +1139,16 @@ msgstr "" "As revisões do ramo \"%s\" não existem em nenhum outro ramo.\n" "Você realmente deseja excluir ramo \"%s\"?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Referências: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filtro" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1143,221 +1156,226 @@ msgstr "" "Erro ao ler a topologia das revisões; as informações dos ramos e etiquetas " "antecessoras/sucessoras estarão incompletas" -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Etiqueta" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Selecionar fontes do Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Opções da lista de revisões" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Largura máxima do grafo (linhas)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Largura máxima do grafo (% do painel)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Exibir mudanças locais" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "Selecionar o SHA1 automaticamente" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Ocultar referências remotas" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Opções de exibição das alterações" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Espaços por tabulação" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Exibir etiquetas próximas" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Limitar diferenças aos caminhos listados" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Usar codificações distintas por arquivo" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Ferramenta 'diff' externa" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Selecionar..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Opções gerais" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Usar temas para as janelas" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(exige reinicialização)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(atualmente indisponÃvel)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Cores: clique para escolher" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "Interface" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "interface" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Segundo plano" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "segundo plano" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Primeiro plano" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "primeiro plano" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff: linhas excluÃdas" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "linhas excluÃdas" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff: linhas adicionadas" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "linhas adicionadas" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff: cabeçalho do bloco" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "cabeçalho do bloco" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "2º plano da linha marcada" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "segundo plano da linha marcada" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "2º plano da seleção" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Fontes: clique para escolher" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Fonte principal" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Fonte da lista de mudanças" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Fonte da interface" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Preferências do Gitk" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Gerar" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: selecionar cor para %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Não há nenhum repositório git aqui." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "" "O argumento \"%s\" é ambÃguo (especifica tanto uma revisão e um nome de " "arquivo)" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Argumentos incorretos para o gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "Linha de comando" +#~ msgid "mc" +#~ msgstr "mc" #~ msgid "next" #~ msgstr "Próximo" diff --git a/gitk-git/po/ru.po b/gitk-git/po/ru.po index faba6721c1..f1bac879e3 100644 --- a/gitk-git/po/ru.po +++ b/gitk-git/po/ru.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2009-04-24 16:00+0200\n" "Last-Translator: Alex Riesen <raa.lkml@gmail.com>\n" "Language-Team: Russian\n" @@ -22,7 +22,7 @@ msgstr "Ðевозможно получить ÑпиÑок файлов неза msgid "Color words" msgstr "" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "" @@ -56,14 +56,18 @@ msgstr "Ошибка запуÑка git log:" msgid "Reading" msgstr "Чтение" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Чтение верÑий..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Ðичего не выбрано" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "ÐšÐ¾Ð¼Ð°Ð½Ð´Ð½Ð°Ñ Ñтрока" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Ошибка обработки вывода команды git log:" @@ -72,16 +76,12 @@ msgstr "Ошибка обработки вывода команды git log:" msgid "No commit information available" msgstr "Ðет информации о ÑоÑтоÑнии" -#: gitk:1897 -msgid "mc" -msgstr "" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "Ok" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Отмена" @@ -133,15 +133,15 @@ msgstr "Редактировать предÑтавление..." msgid "Delete view" msgstr "Удалить предÑтавление" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Ð’Ñе файлы" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "ПредÑтавление" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "О gitk" @@ -153,7 +153,7 @@ msgstr "ÐÐ°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ ÐºÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ñ‹" msgid "Help" msgstr "ПодÑказка" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -169,53 +169,53 @@ msgstr "ПоиÑк" msgid "commit" msgstr "ÑоÑтоÑние" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "Ñодержащее:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "каÑательно файлов:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "добавив/удалив Ñтроку:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Точно" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "Игнорировать большие/маленькие" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "РегулÑрные выражениÑ" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Во вÑех полÑÑ…" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Заголовок" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Комментарии" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Ðвтор" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Сохранивший ÑоÑтоÑние" @@ -243,7 +243,7 @@ msgstr "Строк контекÑта" msgid "Ignore space change" msgstr "Игнорировать пробелы" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "" @@ -255,103 +255,111 @@ msgstr "Патч" msgid "Tree" msgstr "Файлы" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Сравнить Ñто ÑоÑтоÑние Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ð¼" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Сравнить выделенное Ñ Ñтим ÑоÑтоÑнием" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Создать патч" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Создать метку" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Сохранить Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² файл" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Создать ветвь" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Скопировать Ñто ÑоÑтоÑние" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "УÑтановить HEAD на Ñто ÑоÑтоÑние" -#: gitk:2624 +#: gitk:2625 #, fuzzy msgid "Mark this commit" msgstr "Скопировать Ñто ÑоÑтоÑние" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 #, fuzzy msgid "Diff this -> marked commit" msgstr "Сравнить Ñто ÑоÑтоÑние Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ñ‹Ð¼" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 #, fuzzy msgid "Diff marked commit -> this" msgstr "Сравнить выделенное Ñ Ñтим ÑоÑтоÑнием" -#: gitk:2630 +#: gitk:2631 #, fuzzy msgid "Revert this commit" msgstr "Скопировать Ñто ÑоÑтоÑние" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Перейти на Ñту ветвь" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Удалить Ñту ветвь" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "ПодÑветить Ñтот тоже" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "ПодÑветить только Ñтот" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Программа ÑравнениÑ" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Ðннотировать родительÑкое ÑоÑтоÑние" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Показать иÑточник Ñтой Ñтроки" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "ЗапуÑтить git gui blame Ð´Ð»Ñ Ñтой Ñтроки" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -368,667 +376,672 @@ msgstr "" "\n" "ИÑпользование и раÑпроÑтранение ÑоглаÑно уÑловиÑм GNU General Public License" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Закрыть" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "ÐÐ°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ ÐºÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ñ‹ в Gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "ÐÐ°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ ÐºÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ñ‹ в Gitk:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tЗавершить" -#: gitk:3046 +#: gitk:3049 #, fuzzy, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-F>\t\tПоиÑк" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tПерейти к первому ÑоÑтоÑнию" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tПерейти к поÑледнему ÑоÑтоÑнию" -#: gitk:3049 +#: gitk:3052 #, fuzzy msgid "<Up>, p, k\tMove up one commit" msgstr "<Up>, p, i\tПерейти к Ñледующему ÑоÑтоÑнию" -#: gitk:3050 +#: gitk:3053 #, fuzzy msgid "<Down>, n, j\tMove down one commit" msgstr "<Down>, n, k\tПерейти к предыдущему ÑоÑтоÑнию" -#: gitk:3051 +#: gitk:3054 #, fuzzy msgid "<Left>, z, h\tGo back in history list" msgstr "<Left>, z, j\tПоказать ранее поÑещённое ÑоÑтоÑние" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Right>, x, l\tПоказать Ñледующее поÑещённое ÑоÑтоÑние" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tПерейти на Ñтраницу выше в ÑпиÑке ÑоÑтоÑний" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tПерейти на Ñтраницу ниже в ÑпиÑке ÑоÑтоÑний" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tПоказать начало ÑпиÑка ÑоÑтоÑний" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tПоказать конец ÑпиÑка ÑоÑтоÑний" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tПровернуть ÑпиÑок ÑоÑтоÑний вверх" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tПровернуть ÑпиÑок ÑоÑтоÑний вниз" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tПровернуть ÑпиÑок ÑоÑтоÑний на Ñтраницу вверх" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tПровернуть ÑпиÑок ÑоÑтоÑний на Ñтраницу вниз" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Up>\tПоиÑк в обратном порÑдке (вверх, Ñреди новых ÑоÑтоÑний)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Shift-Down>\tПоиÑк (вниз, Ñреди Ñтарых ÑоÑтоÑний)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tПрокрутить ÑпиÑок изменений на Ñтраницу выше" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tПрокрутить ÑпиÑок изменений на Ñтраницу выше" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Leertaste>\t\tПрокрутить ÑпиÑок изменений на Ñтраницу ниже" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tПрокрутить ÑпиÑок изменений на 18 Ñтрок вверх" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tПрокрутить ÑпиÑок изменений на 18 Ñтрок вниз" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tПоиÑк" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tПерейти к Ñледующему найденному ÑоÑтоÑнию" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\tПерейти к Ñледующему найденному ÑоÑтоÑнию" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\tПерейти к поÑледнему ÑоÑтоÑнию" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tПерейти к полю поиÑка" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tПерейти к предыдущему найденному ÑоÑтоÑнию" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tПрокрутить ÑпиÑок изменений к Ñледующему файлу" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tПродолжить поиÑк в ÑпиÑке изменений" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tПерейти к предыдущему найденному текÑту в ÑпиÑке изменений" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tУвеличить размер шрифта" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tУвеличить размер шрифта" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tУменьшить размер шрифта" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tУменьшить размер шрифта" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tОбновить" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð³Ð¾ каталога %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Ошибка Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ \"%s\" из %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "ошибка Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ñ‹:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "СоÑтоÑние не найдено" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: ошибка Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ñ‹:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ MERGE_HEAD: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ð¸Ð½Ð´ÐµÐºÑа: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Ошибка запуÑка git blame: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "ПоиÑк" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Ошибка Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ git blame: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "" "Ðта Ñтрока принадлежит ÑоÑтоÑнию %s, которое не показано в Ñтом предÑтавлении" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Ошибка Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ñ‹ ÑравнениÑ:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Gitk определение предÑтавлений" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Запомнить предÑтавление" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "" -#: gitk:4060 +#: gitk:4077 #, fuzzy msgid "All refs" msgstr "Ð’Ñе файлы" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "" -#: gitk:4065 +#: gitk:4082 #, fuzzy msgid "Author:" msgstr "Ðвтор" -#: gitk:4066 +#: gitk:4083 #, fuzzy msgid "Committer:" msgstr "Сохранивший ÑоÑтоÑние" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "" -#: gitk:4069 -msgid "Matches none Commit Info criteria" +#: gitk:4086 +msgid "Matches no Commit Info criteria" msgstr "" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "" -#: gitk:4073 +#: gitk:4090 #, fuzzy msgid "Search string:" msgstr "ПоиÑк" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" msgstr "" -#: gitk:4075 +#: gitk:4092 #, fuzzy msgid "Since:" msgstr "С даты:" -#: gitk:4076 +#: gitk:4093 #, fuzzy msgid "Until:" msgstr "По дату:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Ð¡Ñ‚Ñ€Ð¾Ð³Ð°Ñ Ñортировка по дате" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Отметить Ñтороны ветвей" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Ограничить первым предком" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "" -#: gitk:4085 +#: gitk:4102 #, fuzzy msgid "Additional arguments to git log:" msgstr "Включить ÑоÑтоÑÐ½Ð¸Ñ (аргументы Ð´Ð»Ñ git-log):" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Файлы и каталоги Ð´Ð»Ñ Ð¾Ð³Ñ€Ð°Ð½Ð¸Ñ‡ÐµÐ½Ð¸Ñ Ð¸Ñтории, по одному на Ñтроку:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð° Ð´Ð»Ñ ÑпиÑка ÑоÑтоÑний:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "" -#: gitk:4219 +#: gitk:4236 #, fuzzy msgid "-- criteria for selecting revisions" msgstr "Ошибка в идентификаторе верÑии:" -#: gitk:4224 +#: gitk:4241 #, fuzzy msgid "View Name" msgstr "ПредÑтавление" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Применить (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Ошибка в параметрах выбора ÑоÑтоÑний:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Ðи одного" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Порождённое" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Ðе порождённое" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Предок" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Ðе предок" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð·Ð°Ñ€ÐµÐ³Ð¸Ñтрированные в индекÑе, но не Ñохранённые" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² рабочем каталоге, не зарегиÑтрированные в индекÑе" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Таги:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Предок" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Потомок" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Ветвь" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Следует за" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "ПредшеÑтвует" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Ошибка Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ð¹: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Перейти к:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Сокращённый SHA1 идентификатор %s неоднозначен" -#: gitk:8659 +#: gitk:8678 #, fuzzy, tcl-format msgid "Revision %s is not known" msgstr "SHA1 идентификатор %s не найден" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "SHA1 идентификатор %s не найден" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Дата" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Потомки" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "УÑтановить ветвь %s на Ñто ÑоÑтоÑние" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "СоÑтоÑние не принадлежит ни одной ветви, переход невозможен" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "" -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 #, fuzzy msgid "Error getting patch ID for " msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¿Ð°Ñ‚Ñ‡Ð°:" -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr "" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 #, fuzzy msgid "Commit " msgstr "ÑоÑтоÑние" -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " msgstr "" -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " msgstr "" -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" msgstr "" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr "" -#: gitk:9066 +#: gitk:9085 #, fuzzy, tcl-format msgid "Error writing commit to file: %s" msgstr "Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ ÑоÑтоÑниÑ:" -#: gitk:9072 +#: gitk:9091 #, fuzzy, tcl-format msgid "Error diffing commits: %s" msgstr "Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ ÑоÑтоÑниÑ:" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Верх" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "От" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "До" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Создать патч" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "От:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "До:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Ð’ обратном порÑдке" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Файл Ð´Ð»Ñ ÑохранениÑ:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Создать" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¿Ð°Ñ‚Ñ‡Ð°:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Ð˜Ð¼Ñ Ð¼ÐµÑ‚ÐºÐ¸:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "" -#: gitk:9251 +#: gitk:9270 #, fuzzy msgid "Tag message:" msgstr "Ð˜Ð¼Ñ Ð¼ÐµÑ‚ÐºÐ¸:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Создать" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Ðе задано Ð¸Ð¼Ñ Ð¼ÐµÑ‚ÐºÐ¸" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Метка \"%s\" уже ÑущеÑтвует" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¼ÐµÑ‚ÐºÐ¸:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Команда:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "ЗапиÑÑŒ" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ ÑоÑтоÑниÑ:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "ИмÑ:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Укажите Ð¸Ð¼Ñ Ð´Ð»Ñ Ð½Ð¾Ð²Ð¾Ð¹ ветви" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "Ветвь '%s' уже ÑущеÑтвует. ПерепиÑать?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "СоÑтоÑние %s уже принадлежит ветви %s. Продолжить операцию?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Копирование изменений" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1037,7 +1050,7 @@ msgstr "" "Копирование невозможно из-за изменений в файле '%s'.\n" "Сохраните или отмените Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¸ повторите операцию." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1045,21 +1058,21 @@ msgstr "" "Копирование изменений невозможно из-за незавершённой операции ÑлиÑниÑ.\n" "ЗапуÑтить git citool Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñтой операции?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð½Ðµ Ñохранены" -#: gitk:9574 +#: gitk:9593 #, fuzzy, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "СоÑтоÑние %s уже принадлежит ветви %s. Продолжить операцию?" -#: gitk:9579 +#: gitk:9598 #, fuzzy msgid "Reverting" msgstr "УÑтановка" -#: gitk:9587 +#: gitk:9606 #, fuzzy, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1068,7 +1081,7 @@ msgstr "" "Копирование невозможно из-за изменений в файле '%s'.\n" "Сохраните или отмените Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¸ повторите операцию." -#: gitk:9591 +#: gitk:9610 #, fuzzy msgid "" "Revert failed because of merge conflict.\n" @@ -1077,28 +1090,28 @@ msgstr "" "Копирование изменений невозможно из-за незавершённой операции ÑлиÑниÑ.\n" "ЗапуÑтить git citool Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñтой операции?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Подтвердите операцию перехода" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "УÑтановить ветвь %s на ÑоÑтоÑние %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Тип операции перехода:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Лёгкий: оÑтавить рабочий каталог и Ð¸Ð½Ð´ÐµÐºÑ Ð½ÐµÐ¸Ð·Ð¼ÐµÐ½Ð½Ñ‹Ð¼Ð¸" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Смешанный: оÑтавить рабочий каталог неизменным, уÑтановить индекÑ" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1106,19 +1119,19 @@ msgstr "" "ЖеÑткий: перепиÑать Ð¸Ð½Ð´ÐµÐºÑ Ð¸ рабочий каталог\n" "(вÑе Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² рабочем каталоге будут потерÑны)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "УÑтановка" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Переход" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "ÐÐºÑ‚Ð¸Ð²Ð½Ð°Ñ Ð²ÐµÑ‚Ð²ÑŒ не может быть удалена" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1127,16 +1140,16 @@ msgstr "" "СоÑтоÑÐ½Ð¸Ñ Ð²ÐµÑ‚Ð²Ð¸ %s больше не принадлежат никакой другой ветви.\n" "ДейÑтвительно удалить ветвь %s?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Метки и ветви: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Фильтровать" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1144,222 +1157,226 @@ msgstr "" "Ошибка Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ð¸Ñтории проекта; Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ ветвÑÑ… и ÑоÑтоÑниÑÑ… вокруг меток " "(до/поÑле) может быть неполной." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Метка" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Шрифт Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "Ж" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "К" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Параметры показа ÑпиÑка ÑоÑтоÑний" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "МакÑ. ширина графа (Ñтрок)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "МакÑ. ширина графа (% ширины панели)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Показывать Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² рабочем каталоге" -#: gitk:11340 +#: gitk:11361 #, fuzzy msgid "Auto-select SHA1 (length)" msgstr "Выделить SHA1" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Параметры показа изменений" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Ширина табулÑции" -#: gitk:11353 +#: gitk:11374 #, fuzzy msgid "Display nearby tags/heads" msgstr "Показывать близкие метки" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Ограничить показ изменений выбранными файлами" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Поддержка кодировок в отдельных файлах" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Программа Ð´Ð»Ñ Ð¿Ð¾ÐºÐ°Ð·Ð° изменений" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Выберите..." -#: gitk:11374 +#: gitk:11395 #, fuzzy msgid "General options" msgstr "Создать патч" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Цвета: нажмите Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð°" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "" -#: gitk:11396 +#: gitk:11417 #, fuzzy msgid "interface" msgstr "Шрифт интерфейÑа" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Фон" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "фон" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Передний план" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "передний план" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "ИзменениÑ: Ñтарый текÑÑ‚" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "Ñтарый текÑÑ‚ изменениÑ" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "ИзменениÑ: новый текÑÑ‚" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "новый текÑÑ‚ изменениÑ" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "ИзменениÑ: заголовок блока" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "заголовок блока изменений" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Фон выбранной Ñтроки" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "фон выбранной Ñтроки" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Выберите фон" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Шрифт: нажмите Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð°" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "ОÑновной шрифт" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Шрифт показа изменений" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Шрифт интерфейÑа" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "ÐаÑтройки Gitk" -#: gitk:11473 +#: gitk:11494 #, fuzzy msgid "General" msgstr "Создать" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: выберите цвет Ð´Ð»Ñ %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" +"К Ñожалению gitk не может работать Ñ Ñтой верÑий Tcl/Tk.\n" +"ТребуетÑÑ ÐºÐ°Ðº минимум Tcl/Tk 8.4." + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Git-репозитарий не найден в текущем каталоге." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Ðеоднозначный аргумент '%s': ÑущеÑтвует как верÑÐ¸Ñ Ð¸ Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Ðеправильные аргументы Ð´Ð»Ñ gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "ÐšÐ¾Ð¼Ð°Ð½Ð´Ð½Ð°Ñ Ñтрока" - #~ msgid "SHA1 ID: " #~ msgstr "SHA1:" @@ -1387,12 +1404,5 @@ msgstr "ÐšÐ¾Ð¼Ð°Ð½Ð´Ð½Ð°Ñ Ñтрока" #~ msgid "Tag/Head %s is not known" #~ msgstr "Метка или ветвь %s не найдена" -#~ msgid "" -#~ "Sorry, gitk cannot run with this version of Tcl/Tk.\n" -#~ " Gitk requires at least Tcl/Tk 8.4." -#~ msgstr "" -#~ "К Ñожалению gitk не может работать Ñ Ñтой верÑий Tcl/Tk.\n" -#~ "ТребуетÑÑ ÐºÐ°Ðº минимум Tcl/Tk 8.4." - #~ msgid "Cannot find the git directory \"%s\"." #~ msgstr "Git-репозитарий \"%s\" не найден." diff --git a/gitk-git/po/sv.po b/gitk-git/po/sv.po index 0994d87c28..0bd46d7881 100644 --- a/gitk-git/po/sv.po +++ b/gitk-git/po/sv.po @@ -3,20 +3,22 @@ # This file is distributed under the same license as the gitk package. # # Mikael Magnusson <mikachu@gmail.com>, 2008. -# Peter Krefting <peter@softwolves.pp.se>, 2008, 2009, 2010, 2012, 2013. +# Peter Krefting <peter@softwolves.pp.se>, 2008, 2009, 2010, 2012, 2013, 2015. # msgid "" msgstr "" "Project-Id-Version: sv\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" -"PO-Revision-Date: 2013-05-16 08:12+0100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" +"PO-Revision-Date: 2015-03-27 10:31+0100\n" "Last-Translator: Peter Krefting <peter@softwolves.pp.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Gtranslator 2.91.6\n" #: gitk:140 msgid "Couldn't get list of unmerged files:" @@ -26,7 +28,7 @@ msgstr "Kunde inte hämta lista över ej sammanslagna filer:" msgid "Color words" msgstr "Färga ord" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "Märk upp ord" @@ -60,14 +62,18 @@ msgstr "Fel vid körning av git log:" msgid "Reading" msgstr "Läser" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Läser incheckningar..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Inga incheckningar markerade" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Kommandorad" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Kan inte tolka utdata frÃ¥n git log:" @@ -76,16 +82,12 @@ msgstr "Kan inte tolka utdata frÃ¥n git log:" msgid "No commit information available" msgstr "Ingen incheckningsinformation är tillgänglig" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "OK" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Avbryt" @@ -137,15 +139,15 @@ msgstr "Ändra vy..." msgid "Delete view" msgstr "Ta bort vy" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Alla filer" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Visa" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Om gitk" @@ -157,7 +159,7 @@ msgstr "Tangentbordsbindningar" msgid "Help" msgstr "Hjälp" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1-id:" @@ -173,53 +175,53 @@ msgstr "Sök" msgid "commit" msgstr "incheckning" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "som innehÃ¥ller:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "som rör sökväg:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "som lägger/till tar bort sträng:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "ändrar rader som matchar:" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "Exakt" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "IgnVersaler" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "Reg.uttr." -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Alla fält" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Rubrik" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Kommentarer" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Författare" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Incheckare" @@ -247,7 +249,7 @@ msgstr "Rader sammanhang" msgid "Ignore space change" msgstr "Ignorera ändringar i blanksteg" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "Rad-diff" @@ -259,100 +261,107 @@ msgstr "Patch" msgid "Tree" msgstr "Träd" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "Diff denna -> markerad" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "Diff markerad -> denna" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Skapa patch" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Skapa tagg" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Skriv incheckning till fil" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Skapa ny gren" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Plocka denna incheckning" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Ã…terställ HEAD-grenen hit" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Markera denna incheckning" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Ã…tergÃ¥ till markering" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Hitta efterföljare till denna och markera" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "Jämför med markerad incheckning" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 msgid "Diff this -> marked commit" msgstr "Diff denna -> markerad incheckning" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 msgid "Diff marked commit -> this" msgstr "Diff markerad incheckning -> denna" -#: gitk:2630 +#: gitk:2631 msgid "Revert this commit" msgstr "Ã…ngra denna incheckning" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Checka ut denna gren" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Ta bort denna gren" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "Markera även detta" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Markera bara detta" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "Extern diff" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Klandra föräldraincheckning" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Visa ursprunget för den här raden" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Kör git gui blame pÃ¥ den här raden" -#: gitk:3011 -#, fuzzy +#: gitk:3014 msgid "" "\n" "Gitk - a commit viewer for git\n" @@ -364,316 +373,321 @@ msgstr "" "\n" "Gitk - en incheckningsvisare för git\n" "\n" -"Copyright ©9 2005-2011 Paul Mackerras\n" +"Copyright © 2005-2014 Paul Mackerras\n" "\n" "Använd och vidareförmedla enligt villkoren i GNU General Public License" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Stäng" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Tangentbordsbindningar för Gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Tangentbordsbindningar för Gitk:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tAvsluta" -#: gitk:3046 +#: gitk:3049 #, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-W>\t\tStäng fönster" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tGÃ¥ till första incheckning" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tGÃ¥ till sista incheckning" -#: gitk:3049 +#: gitk:3052 msgid "<Up>, p, k\tMove up one commit" msgstr "<Upp>, p, k\tGÃ¥ en incheckning upp" -#: gitk:3050 +#: gitk:3053 msgid "<Down>, n, j\tMove down one commit" msgstr "<Ned>, n, j\tGÃ¥ en incheckning ned" -#: gitk:3051 +#: gitk:3054 msgid "<Left>, z, h\tGo back in history list" msgstr "<Vänster>, z, h\tGÃ¥ bakÃ¥t i historiken" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Höger>, x, l\tGÃ¥ framÃ¥t i historiken" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" -msgstr "" +msgstr "<%s-n>\tGÃ¥ till aktuell inchecknings n:te förälder i historielistan" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tGÃ¥ upp en sida i incheckningslistan" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tGÃ¥ ned en sida i incheckningslistan" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tRulla till början av incheckningslistan" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tRulla till slutet av incheckningslistan" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Upp>\tRulla incheckningslistan upp ett steg" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Ned>\tRulla incheckningslistan ned ett steg" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tRulla incheckningslistan upp en sida" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tRulla incheckningslistan ned en sida" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Skift-Upp>\tSök bakÃ¥t (uppÃ¥t, senare incheckningar)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "<Skift-Ned>\tSök framÃ¥t (nedÃ¥t, tidigare incheckningar)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tRulla diffvisningen upp en sida" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Baksteg>\tRulla diffvisningen upp en sida" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Blanksteg>\tRulla diffvisningen ned en sida" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tRulla diffvisningen upp 18 rader" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tRulla diffvisningen ned 18 rader" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tSök" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tGÃ¥ till nästa sökträff" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\t\tGÃ¥ till nästa sökträff" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\tGÃ¥ till sista incheckning" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tFokusera sökrutan" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tGÃ¥ till föregÃ¥ende sökträff" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tRulla diffvisningen till nästa fil" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tGÃ¥ till nästa sökträff i diffvisningen" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tGÃ¥ till föregÃ¥ende sökträff i diffvisningen" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-Num+>\tÖka teckenstorlek" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tÖka teckenstorlek" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-Num->\tMinska teckenstorlek" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tMinska teckenstorlek" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tUppdatera" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Fel vid skapande av temporär katalog %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Fel vid hämtning av \"%s\" frÃ¥n %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "kommando misslyckades:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Incheckning saknas" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: kommando misslyckades:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Kunde inte läsa sammanslagningshuvud: %s" -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Fel vid läsning av index: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Kunde inte starta git blame: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Söker" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Fel vid körning av git blame: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "Raden kommer frÃ¥n incheckningen %s, som inte finns i denna vy" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Externt diff-verktyg misslyckades:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Definition av Gitk-vy" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Spara denna vy" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Referenser (blankstegsavdelad lista):" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Grenar & taggar:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Alla referenser" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Alla (lokala) grenar" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Alla taggar" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Alla fjärrspÃ¥rande grenar" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Incheckningsinfo (reguljära uttryck):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Författare:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Incheckare:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Incheckningsmeddelande:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Motsvarar alla kriterier för incheckningsinfo" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" -msgstr "Motsvarar alla kriterier för incheckningsinfo" +msgid "Matches no Commit Info criteria" +msgstr "Motsvarar inga kriterier för incheckningsinfo" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Ändringar av filer:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Fast sträng" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Reguljärt uttryck" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Söksträng:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -681,201 +695,201 @@ msgstr "" "Incheckingsdatum (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "FrÃ¥n:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Till:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Begränsa och/eller hoppa över ett antal revisioner (positivt heltal):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Antal att visa:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Antal att hoppa över:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Diverse alternativ:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Strikt datumsortering" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Markera sidogrenar" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Begränsa till första förälder" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Enkel historik" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Ytterligare argument till git log:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Ange filer och kataloger att ta med, en per rad:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Kommando för att generera fler incheckningar att ta med:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: redigera vy" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr " - kriterier för val av revisioner" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Namn pÃ¥ vy" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Använd (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Fel i argument för val av incheckningar:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Inget" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Avkomling" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Inte avkomling" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Förfader" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Inte förfader" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "Lokala ändringar sparade i indexet men inte incheckade" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Lokala ändringar, ej sparade i indexet" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "med mÃ¥nga flera" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "mÃ¥nga" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Taggar:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Förälder" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Barn" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Gren" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Följer" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "FöregÃ¥r" -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Fel vid hämtning av diff: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "GÃ¥ till:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Förkortat SHA1-id %s är tvetydigt" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "Revisionen %s är inte känd" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "SHA-id:t %s är inte känt" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "Revisionen %s finns inte i den nuvarande vyn" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Datum" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Barn" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Ã…terställ grenen %s hit" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "FrÃ¥nkopplad head: kan inte Ã¥terställa" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Hoppar över sammanslagningsincheckning " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Fel vid hämtning av patch-id för " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - stannar\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Incheckning " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -883,7 +897,7 @@ msgstr "" " är samma patch som\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -891,7 +905,7 @@ msgstr "" " skiljer sig frÃ¥n\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -899,131 +913,131 @@ msgstr "" "Skillnad mellan incheckningar:\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " har %s barn - stannar\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Fel vid skrivning av incheckning till fil: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Fel vid jämförelse av incheckningar: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Topp" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "FrÃ¥n" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "Till" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Generera patch" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "FrÃ¥n:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "Till:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Vänd" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Utdatafil:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Generera" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Fel vid generering av patch:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "Id:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Taggnamn:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "Taggmeddelandet är valfritt" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Taggmeddelande:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Skapa" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Inget taggnamn angavs" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Taggen \"%s\" finns redan" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Fel vid skapande av tagg:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Kommando:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Skriv" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Fel vid skrivning av incheckning:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Namn:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Ange ett namn för den nya grenen" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "Grenen \"%s\" finns redan. Skriva över?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "Incheckningen %s finns redan pÃ¥ grenen %s -- skall den verkligen appliceras " "pÃ¥ nytt?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Plockar" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1033,7 +1047,7 @@ msgstr "" "Checka in, Ã¥terställ eller spara undan (stash) dina ändringar och försök " "igen." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1041,20 +1055,20 @@ msgstr "" "Cherry-pick misslyckades pÃ¥ grund av en sammanslagningskonflikt.\n" "Vill du köra git citool för att lösa den?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Inga ändringar incheckade" -#: gitk:9574 +#: gitk:9593 #, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "Incheckningen %s finns inte pÃ¥ grenen %s -- vill du verkligen Ã¥ngra?" -#: gitk:9579 +#: gitk:9598 msgid "Reverting" msgstr "Ã…ngrar" -#: gitk:9587 +#: gitk:9606 #, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1064,7 +1078,7 @@ msgstr "" "Checka in, Ã¥terställ eller spara undan (stash) dina ändringar och försök " "igen." -#: gitk:9591 +#: gitk:9610 msgid "" "Revert failed because of merge conflict.\n" " Do you wish to run git citool to resolve it?" @@ -1072,28 +1086,28 @@ msgstr "" "Misslyckades med att Ã¥ngra pÃ¥ grund av en sammanslagningskonflikt.\n" " Vill du köra git citool för att lösa den?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Bekräfta Ã¥terställning" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Ã…terställa grenen %s till %s?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Typ av Ã¥terställning:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Mjuk: Rör inte utcheckning och index" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "Blandad: Rör inte utcheckning, Ã¥terställ index" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1101,19 +1115,19 @@ msgstr "" "HÃ¥rd: Ã…terställ utcheckning och index\n" "(förkastar ALLA lokala ändringar)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Ã…terställer" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Checkar ut" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "Kan inte ta bort den just nu utcheckade grenen" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1122,16 +1136,16 @@ msgstr "" "Incheckningarna pÃ¥ grenen %s existerar inte pÃ¥ nÃ¥gon annan gren.\n" "Vill du verkligen ta bort grenen %s?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Taggar och huvuden: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Filter" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1139,216 +1153,238 @@ msgstr "" "Fel vid läsning av information om incheckningstopologi; information om " "grenar och föregÃ¥ende/senare taggar kommer inte vara komplett." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Tagg" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Teckensnittsväljare för Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "F" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "K" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Alternativ för incheckningslistvy" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Maximal grafbredd (rader)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Maximal grafbredd (% av ruta)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Visa lokala ändringar" -#: gitk:11340 +#: gitk:11361 msgid "Auto-select SHA1 (length)" msgstr "Välj SHA1 (längd) automatiskt" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Dölj fjärr-referenser" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Alternativ för diffvy" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Blanksteg för tabulatortecken" -#: gitk:11353 +#: gitk:11374 msgid "Display nearby tags/heads" msgstr "Visa närliggande taggar/huvuden" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "Maximalt antal taggar/huvuden att visa" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Begränsa diff till listade sökvägar" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Stöd för filspecifika teckenkodningar" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Externt diff-verktyg" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Välj..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Allmänna inställningar" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Använd tema pÃ¥ fönsterelement" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(ändringen kräver omstart)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(för närvarande inte tillgängligt)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Färger: tryck för att välja" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "Gränssnitt" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "gränssnitt" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Bakgrund" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "bakgrund" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Förgrund" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "förgrund" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "Diff: gamla rader" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "diff gamla rader" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "Diff: nya rader" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "diff nya rader" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "Diff: delhuvud" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "diff delhuvud" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Markerad rad bakgrund" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "markerad rad bakgrund" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Markerad bakgrund" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Teckensnitt: tryck för att välja" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Huvudteckensnitt" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Teckensnitt för diffvisning" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Teckensnitt för användargränssnitt" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Inställningar för Gitk" -#: gitk:11473 +#: gitk:11494 msgid "General" msgstr "Allmänt" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "Färger" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "Teckensnitt" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: välj färg för %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" +"Gitk kan tyvärr inte köra med denna version av Tcl/Tk.\n" +" Gitk kräver Ã¥tminstone Tcl/Tk 8.4." + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Hittar inget git-arkiv här." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Tvetydigt argument \"%s\": bÃ¥de revision och filnamn" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Felaktiga argument till gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "Kommandorad" +#~ msgid "mc" +#~ msgstr "mc" + +#~ msgid "" +#~ "\n" +#~ "Gitk - a commit viewer for git\n" +#~ "\n" +#~ "Copyright © 2005-2015 Paul Mackerras\n" +#~ "\n" +#~ "Use and redistribute under the terms of the GNU General Public License" +#~ msgstr "" +#~ "\n" +#~ "Gitk - en incheckningsvisare för git\n" +#~ "\n" +#~ "Copyright © 2005-2015 Paul Mackerras\n" +#~ "\n" +#~ "Använd och vidareförmedla enligt villkoren i GNU General Public License" #~ msgid "next" #~ msgstr "nästa" @@ -1368,13 +1404,6 @@ msgstr "Kommandorad" #~ msgid "- stopping\n" #~ msgstr "- stannar\n" -#~ msgid "" -#~ "Sorry, gitk cannot run with this version of Tcl/Tk.\n" -#~ " Gitk requires at least Tcl/Tk 8.4." -#~ msgstr "" -#~ "Gitk kan tyvärr inte köra med denna version av Tcl/Tk.\n" -#~ " Gitk kräver Ã¥tminstone Tcl/Tk 8.4." - #~ msgid "Tag/Head %s is not known" #~ msgstr "Tagg/huvud %s är okänt" diff --git a/gitk-git/po/vi.po b/gitk-git/po/vi.po index ade9cb70cb..7133c422b7 100644 --- a/gitk-git/po/vi.po +++ b/gitk-git/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gitk @@GIT_VERSION@@\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-15 14:37+1100\n" +"POT-Creation-Date: 2015-05-17 14:32+1000\n" "PO-Revision-Date: 2013-12-14 14:40+0700\n" "Last-Translator: Trần Ngá»c Quân <vnwildman@gmail.com>\n" "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n" @@ -25,7 +25,7 @@ msgstr "Không thể lấy danh sách các táºp-tin chưa được hòa trá»™n: msgid "Color words" msgstr "Tô mà u chữ" -#: gitk:217 gitk:2381 gitk:8201 gitk:8234 +#: gitk:217 gitk:2381 gitk:8220 gitk:8253 msgid "Markup words" msgstr "Äánh dấu chữ" @@ -58,14 +58,18 @@ msgstr "Gặp lá»—i khi thá»±c hiện lệnh git log:" msgid "Reading" msgstr "Äang Ä‘á»c" -#: gitk:496 gitk:4508 +#: gitk:496 gitk:4525 msgid "Reading commits..." msgstr "Äang Ä‘á»c các lần chuyển giao..." -#: gitk:499 gitk:1637 gitk:4511 +#: gitk:499 gitk:1637 gitk:4528 msgid "No commits selected" msgstr "Chưa chá»n các lần chuyển giao" +#: gitk:1445 gitk:4045 gitk:12432 +msgid "Command line" +msgstr "Dòng lệnh" + #: gitk:1511 msgid "Can't parse git log output:" msgstr "Không thể phân tÃch kết xuất từ lệnh git log:" @@ -74,16 +78,12 @@ msgstr "Không thể phân tÃch kết xuất từ lệnh git log:" msgid "No commit information available" msgstr "Không có thông tin vá» lần chuyển giao nà o" -#: gitk:1897 -msgid "mc" -msgstr "mc" - -#: gitk:1932 gitk:4298 gitk:9650 gitk:11220 gitk:11500 +#: gitk:1903 gitk:1932 gitk:4315 gitk:9669 gitk:11241 gitk:11521 msgid "OK" msgstr "Äồng ý" -#: gitk:1934 gitk:4300 gitk:9177 gitk:9256 gitk:9372 gitk:9421 gitk:9652 -#: gitk:11221 gitk:11501 +#: gitk:1934 gitk:4317 gitk:9196 gitk:9275 gitk:9391 gitk:9440 gitk:9671 +#: gitk:11242 gitk:11522 msgid "Cancel" msgstr "Thôi" @@ -135,15 +135,15 @@ msgstr "Sá»a cách trình bà y..." msgid "Delete view" msgstr "Xóa cách trình bà y" -#: gitk:2088 +#: gitk:2088 gitk:4043 msgid "All files" msgstr "Má»i táºp tin" -#: gitk:2083 gitk:4050 +#: gitk:2083 gitk:4067 msgid "View" msgstr "Trình bà y" -#: gitk:2093 gitk:2103 gitk:3009 +#: gitk:2093 gitk:2103 gitk:3012 msgid "About gitk" msgstr "Giá»›i thiệu vá» gitk" @@ -155,7 +155,7 @@ msgstr "Tổ hợp phÃm" msgid "Help" msgstr "Trợ giúp" -#: gitk:2185 gitk:8633 +#: gitk:2185 gitk:8652 msgid "SHA1 ID:" msgstr "SHA1 ID:" @@ -171,53 +171,53 @@ msgstr "Tìm" msgid "commit" msgstr "lần chuyển giao" -#: gitk:2299 gitk:2301 gitk:4669 gitk:4692 gitk:4716 gitk:6736 gitk:6808 -#: gitk:6893 +#: gitk:2299 gitk:2301 gitk:4687 gitk:4710 gitk:4734 gitk:6755 gitk:6827 +#: gitk:6912 msgid "containing:" msgstr "có chứa:" -#: gitk:2302 gitk:3522 gitk:3527 gitk:4745 +#: gitk:2302 gitk:3526 gitk:3531 gitk:4763 msgid "touching paths:" msgstr "Ä‘ang chạm đưá»ng dẫn:" -#: gitk:2303 gitk:4759 +#: gitk:2303 gitk:4777 msgid "adding/removing string:" msgstr "thêm/gỡ bá» chuá»—i:" -#: gitk:2304 gitk:4761 +#: gitk:2304 gitk:4779 msgid "changing lines matching:" msgstr "những dòng thay đổi khá»›p mẫu:" -#: gitk:2313 gitk:2315 gitk:4748 +#: gitk:2313 gitk:2315 gitk:4766 msgid "Exact" msgstr "ChÃnh xác" -#: gitk:2315 gitk:4836 gitk:6704 +#: gitk:2315 gitk:4854 gitk:6723 msgid "IgnCase" msgstr "BquaHt" -#: gitk:2315 gitk:4718 gitk:4834 gitk:6700 +#: gitk:2315 gitk:4736 gitk:4852 gitk:6719 msgid "Regexp" msgstr "BTCQ" -#: gitk:2317 gitk:2318 gitk:4856 gitk:4886 gitk:4893 gitk:6829 gitk:6897 +#: gitk:2317 gitk:2318 gitk:4874 gitk:4904 gitk:4911 gitk:6848 gitk:6916 msgid "All fields" msgstr "Má»i trưá»ng" -#: gitk:2318 gitk:4853 gitk:4886 gitk:6767 +#: gitk:2318 gitk:4871 gitk:4904 gitk:6786 msgid "Headline" msgstr "Ná»™i dung chÃnh" -#: gitk:2319 gitk:4853 gitk:6767 gitk:6897 gitk:7370 +#: gitk:2319 gitk:4871 gitk:6786 gitk:6916 gitk:7389 msgid "Comments" msgstr "Ghi chú" -#: gitk:2319 gitk:4853 gitk:4858 gitk:4893 gitk:6767 gitk:7305 gitk:8811 -#: gitk:8826 +#: gitk:2319 gitk:4871 gitk:4876 gitk:4911 gitk:6786 gitk:7324 gitk:8830 +#: gitk:8845 msgid "Author" msgstr "Tác giả" -#: gitk:2319 gitk:4853 gitk:6767 gitk:7307 +#: gitk:2319 gitk:4871 gitk:6786 gitk:7326 msgid "Committer" msgstr "Ngưá»i chuyển giao" @@ -245,7 +245,7 @@ msgstr "Các dòng cá»§a ná»™i dung" msgid "Ignore space change" msgstr "Không xét đến thay đổi do khoảng trắng" -#: gitk:2378 gitk:2380 gitk:7940 gitk:8187 +#: gitk:2378 gitk:2380 gitk:7959 gitk:8206 msgid "Line diff" msgstr "Khác biệt theo dòng" @@ -257,99 +257,107 @@ msgstr "Vá" msgid "Tree" msgstr "Cây" -#: gitk:2616 gitk:2636 +#: gitk:2617 gitk:2637 msgid "Diff this -> selected" msgstr "So sánh cái nà y -> cái đã chá»n" -#: gitk:2617 gitk:2637 +#: gitk:2618 gitk:2638 msgid "Diff selected -> this" msgstr "So sánh cái đã chá»n -> cái nà y" -#: gitk:2618 gitk:2638 +#: gitk:2619 gitk:2639 msgid "Make patch" msgstr "Tạo miếng vá" -#: gitk:2619 gitk:9235 +#: gitk:2620 gitk:9254 msgid "Create tag" msgstr "Tạo thẻ" -#: gitk:2620 gitk:9352 +#: gitk:2621 gitk:9371 msgid "Write commit to file" msgstr "Ghi lần chuyển giao ra táºp tin" -#: gitk:2621 gitk:9409 +#: gitk:2622 gitk:9428 msgid "Create new branch" msgstr "Tạo nhánh má»›i" -#: gitk:2622 +#: gitk:2623 msgid "Cherry-pick this commit" msgstr "Cherry-pick lần chuyển giao nà y" -#: gitk:2623 +#: gitk:2624 msgid "Reset HEAD branch to here" msgstr "Äặt lại HEAD cá»§a nhánh và o đây" -#: gitk:2624 +#: gitk:2625 msgid "Mark this commit" msgstr "Äánh dấu lần chuyển giao nà y" -#: gitk:2625 +#: gitk:2626 msgid "Return to mark" msgstr "Quay lại vị trà dấu" -#: gitk:2626 +#: gitk:2627 msgid "Find descendant of this and mark" msgstr "Tìm con cháu cá»§a cái nà y và cái đã đánh dấu" -#: gitk:2627 +#: gitk:2628 msgid "Compare with marked commit" msgstr "So sánh vá»›i lần chuyển giao đã đánh dấu" -#: gitk:2628 gitk:2639 +#: gitk:2629 gitk:2640 msgid "Diff this -> marked commit" msgstr "So sánh cái nà y -> lần chuyển giao đã đánh dấu" -#: gitk:2629 gitk:2640 +#: gitk:2630 gitk:2641 msgid "Diff marked commit -> this" msgstr "So sánh lần chuyển giao đã đánh dấu -> cái nà y" -#: gitk:2630 +#: gitk:2631 msgid "Revert this commit" msgstr "Hoà n lại lần chuyển giao nà y" -#: gitk:2646 +#: gitk:2647 msgid "Check out this branch" msgstr "Checkout nhánh nà y" -#: gitk:2647 +#: gitk:2648 msgid "Remove this branch" msgstr "Gỡ bá» nhánh nà y" -#: gitk:2654 +#: gitk:2649 +msgid "Copy branch name" +msgstr "" + +#: gitk:2656 msgid "Highlight this too" msgstr "CÅ©ng tô sáng nó" -#: gitk:2655 +#: gitk:2657 msgid "Highlight this only" msgstr "Chỉ tô sáng cái nà y" -#: gitk:2656 +#: gitk:2658 msgid "External diff" msgstr "diff từ bên ngoà i" -#: gitk:2657 +#: gitk:2659 msgid "Blame parent commit" msgstr "Xem công trạng lần chuyển giao cha mẹ" -#: gitk:2664 +#: gitk:2660 +msgid "Copy path" +msgstr "" + +#: gitk:2667 msgid "Show origin of this line" msgstr "Hiển thị nguyên gốc cá»§a dòng nà y" -#: gitk:2665 +#: gitk:2668 msgid "Run git gui blame on this line" msgstr "Chạy lệnh git gui blame cho dòng nà y" -#: gitk:3011 +#: gitk:3014 #, fuzzy msgid "" "\n" @@ -366,314 +374,319 @@ msgstr "" "\n" "Dùng và phân phối lại phần má»m nà y theo các Ä‘iá»u khoản cá»§a Giấy Phép Công GNU" -#: gitk:3019 gitk:3085 gitk:9836 +#: gitk:3022 gitk:3089 gitk:9857 msgid "Close" msgstr "Äóng" -#: gitk:3040 +#: gitk:3043 msgid "Gitk key bindings" msgstr "Tổ hợp phÃm gitk" -#: gitk:3043 +#: gitk:3046 msgid "Gitk key bindings:" msgstr "Tổ hợp phÃm gitk:" -#: gitk:3045 +#: gitk:3048 #, tcl-format msgid "<%s-Q>\t\tQuit" msgstr "<%s-Q>\t\tThoát" -#: gitk:3046 +#: gitk:3049 #, tcl-format msgid "<%s-W>\t\tClose window" msgstr "<%s-W>\t\tÄóng cá»a sổ" -#: gitk:3047 +#: gitk:3050 msgid "<Home>\t\tMove to first commit" msgstr "<Home>\t\tChuyển đến lần chuyển giao đầu tiên" -#: gitk:3048 +#: gitk:3051 msgid "<End>\t\tMove to last commit" msgstr "<End>\t\tChuyển đến lần chuyển giao cuối" -#: gitk:3049 +#: gitk:3052 msgid "<Up>, p, k\tMove up one commit" msgstr "<Up>, p, k\tDi chuyển lên má»™t lần chuyển giao" -#: gitk:3050 +#: gitk:3053 msgid "<Down>, n, j\tMove down one commit" msgstr "<Down>, n, j\tDi chuyển xuống má»™t lần chuyển giao" -#: gitk:3051 +#: gitk:3054 msgid "<Left>, z, h\tGo back in history list" msgstr "<Left>, z, h\tQuay trở lại danh sách lịch sá»" -#: gitk:3052 +#: gitk:3055 msgid "<Right>, x, l\tGo forward in history list" msgstr "<Right>, x, l\tDi chuyển tiếp trong danh sách lịch sá»" -#: gitk:3053 +#: gitk:3056 #, tcl-format msgid "<%s-n>\tGo to n-th parent of current commit in history list" msgstr "" -#: gitk:3054 +#: gitk:3057 msgid "<PageUp>\tMove up one page in commit list" msgstr "<PageUp>\tDi chuyển lên má»™t trang trong danh sách lần chuyển giao" -#: gitk:3055 +#: gitk:3058 msgid "<PageDown>\tMove down one page in commit list" msgstr "<PageDown>\tDi chuyển xuống má»™t trang trong danh sách lần chuyển giao" -#: gitk:3056 +#: gitk:3059 #, tcl-format msgid "<%s-Home>\tScroll to top of commit list" msgstr "<%s-Home>\tCuá»™n lên trên cùng cá»§a danh sách lần chuyển giao" -#: gitk:3057 +#: gitk:3060 #, tcl-format msgid "<%s-End>\tScroll to bottom of commit list" msgstr "<%s-End>\tCuá»™n xuống dưới cùng cá»§a danh sách lần chuyển giao" -#: gitk:3058 +#: gitk:3061 #, tcl-format msgid "<%s-Up>\tScroll commit list up one line" msgstr "<%s-Up>\tCuá»™n danh sách lần chuyển giao lên má»™t dòng" -#: gitk:3059 +#: gitk:3062 #, tcl-format msgid "<%s-Down>\tScroll commit list down one line" msgstr "<%s-Down>\tCuá»™n danh sách lần chuyển giao xuống má»™t dòng" -#: gitk:3060 +#: gitk:3063 #, tcl-format msgid "<%s-PageUp>\tScroll commit list up one page" msgstr "<%s-PageUp>\tCuá»™n danh sách lần chuyển giao lên má»™t trang" -#: gitk:3061 +#: gitk:3064 #, tcl-format msgid "<%s-PageDown>\tScroll commit list down one page" msgstr "<%s-PageDown>\tCuá»™n danh sách lần chuyển giao xuống má»™t trang" -#: gitk:3062 +#: gitk:3065 msgid "<Shift-Up>\tFind backwards (upwards, later commits)" msgstr "<Shift-Up>\tTìm vá» phÃa sau (hướng lên trên, lần chuyển giao sau nà y)" -#: gitk:3063 +#: gitk:3066 msgid "<Shift-Down>\tFind forwards (downwards, earlier commits)" msgstr "" "<Shift-Down>\tTìm vá» phÃa trước (hướng xuống dưới, lần chuyển giao trước đây)" -#: gitk:3064 +#: gitk:3067 msgid "<Delete>, b\tScroll diff view up one page" msgstr "<Delete>, b\tCuá»™n phần trình bà y diff lên má»™t trang" -#: gitk:3065 +#: gitk:3068 msgid "<Backspace>\tScroll diff view up one page" msgstr "<Backspace>\tCuá»™n phần trình bà y diff lên má»™t trang" -#: gitk:3066 +#: gitk:3069 msgid "<Space>\t\tScroll diff view down one page" msgstr "<Space>\t\tCuá»™n phần trình bà y diff xuống má»™t trang" -#: gitk:3067 +#: gitk:3070 msgid "u\t\tScroll diff view up 18 lines" msgstr "u\t\tCuá»™n phần trình bà y diff lên 18 dòng" -#: gitk:3068 +#: gitk:3071 msgid "d\t\tScroll diff view down 18 lines" msgstr "d\t\tCuá»™n phần trình bà y diff xuống 18 dòng" -#: gitk:3069 +#: gitk:3072 #, tcl-format msgid "<%s-F>\t\tFind" msgstr "<%s-F>\t\tTìm kiếm" -#: gitk:3070 +#: gitk:3073 #, tcl-format msgid "<%s-G>\t\tMove to next find hit" msgstr "<%s-G>\t\tDi chuyển đến chá»— gặp kế tiếp" -#: gitk:3071 +#: gitk:3074 msgid "<Return>\tMove to next find hit" msgstr "<Return>\t\tDi chuyển đến chá»— gặp kế tiếp" -#: gitk:3072 +#: gitk:3075 +#, fuzzy +msgid "g\t\tGo to commit" +msgstr "<End>\t\tChuyển đến lần chuyển giao cuối" + +#: gitk:3076 msgid "/\t\tFocus the search box" msgstr "/\t\tÄÆ°a con trá» chuá»™t và o ô tìm kiếm" -#: gitk:3073 +#: gitk:3077 msgid "?\t\tMove to previous find hit" msgstr "?\t\tDi chuyển đến chá»— gặp kế trước" -#: gitk:3074 +#: gitk:3078 msgid "f\t\tScroll diff view to next file" msgstr "f\t\tCuá»™n phần trình bà y diff sang táºp-tin kế" -#: gitk:3075 +#: gitk:3079 #, tcl-format msgid "<%s-S>\t\tSearch for next hit in diff view" msgstr "<%s-S>\t\tTìm đến chá»— khác biệt kế tiếp" -#: gitk:3076 +#: gitk:3080 #, tcl-format msgid "<%s-R>\t\tSearch for previous hit in diff view" msgstr "<%s-R>\t\tTìm đến chá»— khác biệt kế trước" -#: gitk:3077 +#: gitk:3081 #, tcl-format msgid "<%s-KP+>\tIncrease font size" msgstr "<%s-KP+>\tTăng cỡ chữ" -#: gitk:3078 +#: gitk:3082 #, tcl-format msgid "<%s-plus>\tIncrease font size" msgstr "<%s-plus>\tTăng cỡ chữ" -#: gitk:3079 +#: gitk:3083 #, tcl-format msgid "<%s-KP->\tDecrease font size" msgstr "<%s-KP->\tGiảm cỡ chữ" -#: gitk:3080 +#: gitk:3084 #, tcl-format msgid "<%s-minus>\tDecrease font size" msgstr "<%s-minus>\tGiảm cỡ chữ" -#: gitk:3081 +#: gitk:3085 msgid "<F5>\t\tUpdate" msgstr "<F5>\t\tCáºp nháºt" -#: gitk:3546 gitk:3555 +#: gitk:3550 gitk:3559 #, tcl-format msgid "Error creating temporary directory %s:" msgstr "Gặp lá»—i khi tạo thư mục tạm %s:" -#: gitk:3568 +#: gitk:3572 #, tcl-format msgid "Error getting \"%s\" from %s:" msgstr "Lá»—i chà o há»i \"%s\" từ %s:" -#: gitk:3631 +#: gitk:3635 msgid "command failed:" msgstr "lệnh gặp lá»—i:" -#: gitk:3780 +#: gitk:3784 msgid "No such commit" msgstr "Không có lần chuyển giao như váºy" -#: gitk:3794 +#: gitk:3798 msgid "git gui blame: command failed:" msgstr "git gui blame: lệnh gặp lá»—i:" -#: gitk:3825 +#: gitk:3829 #, tcl-format msgid "Couldn't read merge head: %s" msgstr "Không thể độc đầu cá»§a hòa trá»™n: %s" # tcl-format -#: gitk:3833 +#: gitk:3837 #, tcl-format msgid "Error reading index: %s" msgstr "Gặp lá»—i khi Ä‘á»c chỉ mục: %s" -#: gitk:3858 +#: gitk:3862 #, tcl-format msgid "Couldn't start git blame: %s" msgstr "Không thể khởi chạy git blame: %s" -#: gitk:3861 gitk:6735 +#: gitk:3865 gitk:6754 msgid "Searching" msgstr "Äang tìm kiếm" -#: gitk:3893 +#: gitk:3897 #, tcl-format msgid "Error running git blame: %s" msgstr "Gặp lá»—i khi chạy git blame: %s" -#: gitk:3921 +#: gitk:3925 #, tcl-format msgid "That line comes from commit %s, which is not in this view" msgstr "Dòng đến từ lần chuyển giao %s, cái mà không trong trình bà y nà y" -#: gitk:3935 +#: gitk:3939 msgid "External diff viewer failed:" msgstr "Bá»™ trình bà y diff từ bên ngoà i gặp lá»—i:" -#: gitk:4053 +#: gitk:4070 msgid "Gitk view definition" msgstr "Äịnh nghÄ©a cách trình bà y gitk" -#: gitk:4057 +#: gitk:4074 msgid "Remember this view" msgstr "Nhá»› cách trình bà y nà y" -#: gitk:4058 +#: gitk:4075 msgid "References (space separated list):" msgstr "Tham chiếu (danh sách ngăn cách bằng dấu cách):" -#: gitk:4059 +#: gitk:4076 msgid "Branches & tags:" msgstr "Nhánh & thẻ:" -#: gitk:4060 +#: gitk:4077 msgid "All refs" msgstr "Má»i tham chiếu" -#: gitk:4061 +#: gitk:4078 msgid "All (local) branches" msgstr "Má»i nhánh (ná»™i bá»™)" -#: gitk:4062 +#: gitk:4079 msgid "All tags" msgstr "Má»i thẻ" -#: gitk:4063 +#: gitk:4080 msgid "All remote-tracking branches" msgstr "Má»i nhánh remote-tracking" -#: gitk:4064 +#: gitk:4081 msgid "Commit Info (regular expressions):" msgstr "Thông tin chuyển giao (biểu thức chÃnh quy):" -#: gitk:4065 +#: gitk:4082 msgid "Author:" msgstr "Tác giả:" -#: gitk:4066 +#: gitk:4083 msgid "Committer:" msgstr "Ngưá»i chuyển giao:" -#: gitk:4067 +#: gitk:4084 msgid "Commit Message:" msgstr "Chú thÃch cá»§a lần chuyển giao:" -#: gitk:4068 +#: gitk:4085 msgid "Matches all Commit Info criteria" msgstr "Khá»›p má»i Ä‘iá»u kiện Thông tin Chuyển giao" -#: gitk:4069 +#: gitk:4086 #, fuzzy -msgid "Matches none Commit Info criteria" +msgid "Matches no Commit Info criteria" msgstr "Khá»›p má»i Ä‘iá»u kiện Thông tin Chuyển giao" -#: gitk:4070 +#: gitk:4087 msgid "Changes to Files:" msgstr "Äổi thà nh Táºp tin:" -#: gitk:4071 +#: gitk:4088 msgid "Fixed String" msgstr "Chuá»—i cố định" -#: gitk:4072 +#: gitk:4089 msgid "Regular Expression" msgstr "Biểu thức chÃnh quy" -#: gitk:4073 +#: gitk:4090 msgid "Search string:" msgstr "Chuá»—i tìm kiếm:" -#: gitk:4074 +#: gitk:4091 msgid "" "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" @@ -681,203 +694,203 @@ msgstr "" "Ngà y chuyển giao (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 " "15:27:38\"):" -#: gitk:4075 +#: gitk:4092 msgid "Since:" msgstr "Kể từ:" -#: gitk:4076 +#: gitk:4093 msgid "Until:" msgstr "Äến:" -#: gitk:4077 +#: gitk:4094 msgid "Limit and/or skip a number of revisions (positive integer):" msgstr "Giá»›i hạn và /hoặc bá» số cá»§a Ä‘iểm xét (số nguyên âm):" -#: gitk:4078 +#: gitk:4095 msgid "Number to show:" msgstr "Số lượng hiển thị:" -#: gitk:4079 +#: gitk:4096 msgid "Number to skip:" msgstr "Số lượng sẽ bá» qua:" -#: gitk:4080 +#: gitk:4097 msgid "Miscellaneous options:" msgstr "Tuỳ chá»n há»—n hợp:" -#: gitk:4081 +#: gitk:4098 msgid "Strictly sort by date" msgstr "Sắp xếp chặt chẽ theo ngà y" -#: gitk:4082 +#: gitk:4099 msgid "Mark branch sides" msgstr "Äánh dấu các cạnh nhánh" -#: gitk:4083 +#: gitk:4100 msgid "Limit to first parent" msgstr "Giá»›i hạn thà nh cha mẹ đầu tiên" -#: gitk:4084 +#: gitk:4101 msgid "Simple history" msgstr "Lịch sá» dạng đơn giản" -#: gitk:4085 +#: gitk:4102 msgid "Additional arguments to git log:" msgstr "Äối số bổ xung cho lệnh git log:" -#: gitk:4086 +#: gitk:4103 msgid "Enter files and directories to include, one per line:" msgstr "Nháºp và o các táºp tin và thư mục bao gồm, má»—i dòng má»™t cái:" -#: gitk:4087 +#: gitk:4104 msgid "Command to generate more commits to include:" msgstr "Lệnh tạo ra nhiá»u lần chuyển giao hÆ¡n bao gồm:" -#: gitk:4211 +#: gitk:4228 msgid "Gitk: edit view" msgstr "Gitk: sá»a cách trình bà y" -#: gitk:4219 +#: gitk:4236 msgid "-- criteria for selecting revisions" msgstr "-- tiêu chuẩn chá»n Ä‘iểm xét duyệt" -#: gitk:4224 +#: gitk:4241 msgid "View Name" msgstr "Tên cách trình bà y" -#: gitk:4299 +#: gitk:4316 msgid "Apply (F5)" msgstr "Ãp dụng (F5)" -#: gitk:4337 +#: gitk:4354 msgid "Error in commit selection arguments:" msgstr "Lá»—i trong các đối số chá»n chuyển giao:" -#: gitk:4392 gitk:4445 gitk:4906 gitk:4920 gitk:6190 gitk:12346 gitk:12347 +#: gitk:4409 gitk:4462 gitk:4924 gitk:4938 gitk:6208 gitk:12373 gitk:12374 msgid "None" msgstr "Không" -#: gitk:5003 gitk:5008 +#: gitk:5021 gitk:5026 msgid "Descendant" msgstr "Con cháu" -#: gitk:5004 +#: gitk:5022 msgid "Not descendant" msgstr "Không có con cháu" -#: gitk:5011 gitk:5016 +#: gitk:5029 gitk:5034 msgid "Ancestor" msgstr "Tổ tiên chung" -#: gitk:5012 +#: gitk:5030 msgid "Not ancestor" msgstr "Không có chung tổ tiên" -#: gitk:5306 +#: gitk:5324 msgid "Local changes checked in to index but not committed" msgstr "" "Có thay đổi ná»™i bá»™ đã được đưa và o bảng mục lục, nhưng chưa được chuyển giao" -#: gitk:5342 +#: gitk:5360 msgid "Local uncommitted changes, not checked in to index" msgstr "Có thay đổi ná»™i bá»™, nhưng chưa được đưa và o bảng mục lục" -#: gitk:7115 +#: gitk:7134 msgid "and many more" msgstr "và nhiá»u nữa" -#: gitk:7118 +#: gitk:7137 msgid "many" msgstr "nhiá»u" -#: gitk:7309 +#: gitk:7328 msgid "Tags:" msgstr "Thẻ:" -#: gitk:7326 gitk:7332 gitk:8806 +#: gitk:7345 gitk:7351 gitk:8825 msgid "Parent" msgstr "Cha" -#: gitk:7337 +#: gitk:7356 msgid "Child" msgstr "Con" -#: gitk:7346 +#: gitk:7365 msgid "Branch" msgstr "Nhánh" -#: gitk:7349 +#: gitk:7368 msgid "Follows" msgstr "Äứng sau" -#: gitk:7352 +#: gitk:7371 msgid "Precedes" msgstr "Äứng trước" # tcl-format -#: gitk:7947 +#: gitk:7966 #, tcl-format msgid "Error getting diffs: %s" msgstr "Lá»—i lấy diff: %s" -#: gitk:8631 +#: gitk:8650 msgid "Goto:" msgstr "Nhảy tá»›i:" -#: gitk:8652 +#: gitk:8671 #, tcl-format msgid "Short SHA1 id %s is ambiguous" msgstr "Äịnh danh SHA1 dạng ngắn %s là chưa đủ rõ rà ng" -#: gitk:8659 +#: gitk:8678 #, tcl-format msgid "Revision %s is not known" msgstr "Không hiểu Ä‘iểm xét duyệt %s" -#: gitk:8669 +#: gitk:8688 #, tcl-format msgid "SHA1 id %s is not known" msgstr "Không hiểu định danh SHA1 %s" -#: gitk:8671 +#: gitk:8690 #, tcl-format msgid "Revision %s is not in the current view" msgstr "Äiểm %s không ở trong phần hiển thị hiện tại" -#: gitk:8813 gitk:8828 +#: gitk:8832 gitk:8847 msgid "Date" msgstr "Ngà y" -#: gitk:8816 +#: gitk:8835 msgid "Children" msgstr "Con cháu" -#: gitk:8879 +#: gitk:8898 #, tcl-format msgid "Reset %s branch to here" msgstr "Äặt lại nhánh %s tại đây" -#: gitk:8881 +#: gitk:8900 msgid "Detached head: can't reset" msgstr "Head đã bị tách rá»i: không thể đặt lại" -#: gitk:8986 gitk:8992 +#: gitk:9005 gitk:9011 msgid "Skipping merge commit " msgstr "Bá» qua lần chuyển giao hòa trá»™n " -#: gitk:9001 gitk:9006 +#: gitk:9020 gitk:9025 msgid "Error getting patch ID for " msgstr "Gặp lá»—i khi lấy ID miếng vá cho " -#: gitk:9002 gitk:9007 +#: gitk:9021 gitk:9026 msgid " - stopping\n" msgstr " - dừng\n" -#: gitk:9012 gitk:9015 gitk:9023 gitk:9037 gitk:9046 +#: gitk:9031 gitk:9034 gitk:9042 gitk:9056 gitk:9065 msgid "Commit " msgstr "Commit " -#: gitk:9016 +#: gitk:9035 msgid "" " is the same patch as\n" " " @@ -885,7 +898,7 @@ msgstr "" " là cùng má»™t miếng vá vá»›i\n" " " -#: gitk:9024 +#: gitk:9043 msgid "" " differs from\n" " " @@ -893,7 +906,7 @@ msgstr "" " khác biệt từ\n" " " -#: gitk:9026 +#: gitk:9045 msgid "" "Diff of commits:\n" "\n" @@ -901,131 +914,131 @@ msgstr "" "Khác biệt cá»§a lần chuyển giao (commit):\n" "\n" -#: gitk:9038 gitk:9047 +#: gitk:9057 gitk:9066 #, tcl-format msgid " has %s children - stopping\n" msgstr " có %s con - dừng\n" -#: gitk:9066 +#: gitk:9085 #, tcl-format msgid "Error writing commit to file: %s" msgstr "Gặp lá»—i trong quá trình ghi lần chuyển giao và o táºp tin: %s" -#: gitk:9072 +#: gitk:9091 #, tcl-format msgid "Error diffing commits: %s" msgstr "Gặp lá»—i khi so sánh sá»± khác biệt giữa các lần chuyển giao: %s" -#: gitk:9118 +#: gitk:9137 msgid "Top" msgstr "Äỉnh" -#: gitk:9119 +#: gitk:9138 msgid "From" msgstr "Từ" -#: gitk:9124 +#: gitk:9143 msgid "To" msgstr "Äến" -#: gitk:9148 +#: gitk:9167 msgid "Generate patch" msgstr "Tạo miếng vá" -#: gitk:9150 +#: gitk:9169 msgid "From:" msgstr "Từ:" -#: gitk:9159 +#: gitk:9178 msgid "To:" msgstr "Äến:" -#: gitk:9168 +#: gitk:9187 msgid "Reverse" msgstr "Äảo ngược" -#: gitk:9170 gitk:9366 +#: gitk:9189 gitk:9385 msgid "Output file:" msgstr "Táºp tin kết xuất:" -#: gitk:9176 +#: gitk:9195 msgid "Generate" msgstr "Tạo" -#: gitk:9214 +#: gitk:9233 msgid "Error creating patch:" msgstr "Gặp lá»—i khi tạo miếng vá:" -#: gitk:9237 gitk:9354 gitk:9411 +#: gitk:9256 gitk:9373 gitk:9430 msgid "ID:" msgstr "ID:" -#: gitk:9246 +#: gitk:9265 msgid "Tag name:" msgstr "Tên thẻ:" -#: gitk:9249 +#: gitk:9268 msgid "Tag message is optional" msgstr "Ghi chú thẻ chỉ là tùy chá»n" -#: gitk:9251 +#: gitk:9270 msgid "Tag message:" msgstr "Ghi chú cho thẻ:" -#: gitk:9255 gitk:9420 +#: gitk:9274 gitk:9439 msgid "Create" msgstr "Tạo" -#: gitk:9273 +#: gitk:9292 msgid "No tag name specified" msgstr "Chưa chỉ ra tên cá»§a thẻ" -#: gitk:9277 +#: gitk:9296 #, tcl-format msgid "Tag \"%s\" already exists" msgstr "Thẻ “%s†đã có sẵn rồi" -#: gitk:9287 +#: gitk:9306 msgid "Error creating tag:" msgstr "Gặp lá»—i khi tạo thẻ:" -#: gitk:9363 +#: gitk:9382 msgid "Command:" msgstr "Lệnh:" -#: gitk:9371 +#: gitk:9390 msgid "Write" msgstr "Ghi" -#: gitk:9389 +#: gitk:9408 msgid "Error writing commit:" msgstr "Gặp lá»—i trong quá trình ghi chuyển giao:" -#: gitk:9416 +#: gitk:9435 msgid "Name:" msgstr "Tên:" -#: gitk:9439 +#: gitk:9458 msgid "Please specify a name for the new branch" msgstr "Vui lòng chỉ định tên cho nhánh má»›i" -#: gitk:9444 +#: gitk:9463 #, tcl-format msgid "Branch '%s' already exists. Overwrite?" msgstr "Nhánh “%s†đã có từ trước rồi. Ghi đè?" -#: gitk:9511 +#: gitk:9530 #, tcl-format msgid "Commit %s is already included in branch %s -- really re-apply it?" msgstr "" "Lần chuyển giao %s đã sẵn được bao gồm trong nhánh %s -- bạn có thá»±c sá»± muốn " "áp dụng lại nó không?" -#: gitk:9516 +#: gitk:9535 msgid "Cherry-picking" msgstr "Äang cherry-pick" -#: gitk:9525 +#: gitk:9544 #, tcl-format msgid "" "Cherry-pick failed because of local changes to file '%s'.\n" @@ -1034,7 +1047,7 @@ msgstr "" "Cherry-pick gặp lá»—i bởi vì các thay đổi ná»™i bá»™ táºp tin “%sâ€.\n" "Xin hãy chuyển giao, reset hay stash các thay đổi cá»§a bạn sau đó thá» lại." -#: gitk:9531 +#: gitk:9550 msgid "" "Cherry-pick failed because of merge conflict.\n" "Do you wish to run git citool to resolve it?" @@ -1042,22 +1055,22 @@ msgstr "" "Cherry-pick gặp lá»—i bởi vì xung đột trong hòa trá»™n.\n" "Bạn có muốn chạy lệnh “git citool†để giải quyết vấn đỠnà y không?" -#: gitk:9547 gitk:9605 +#: gitk:9566 gitk:9624 msgid "No changes committed" msgstr "Không có thay đổi nà o cần chuyển giao" -#: gitk:9574 +#: gitk:9593 #, tcl-format msgid "Commit %s is not included in branch %s -- really revert it?" msgstr "" "Lần chuyển giao %s không được bao gồm trong nhánh %s -- bạn có thá»±c sá»± muốn " "“revert†nó không?" -#: gitk:9579 +#: gitk:9598 msgid "Reverting" msgstr "Äang hoà n tác" -#: gitk:9587 +#: gitk:9606 #, tcl-format msgid "" "Revert failed because of local changes to the following files:%s Please " @@ -1066,7 +1079,7 @@ msgstr "" "Revert gặp lá»—i bởi vì táºp tin sau đã được thay đổi ná»™i bá»™:%s\n" "Xin hãy chạy lệnh “commitâ€, “reset†hoặc “stash†rồi thá» lại." -#: gitk:9591 +#: gitk:9610 msgid "" "Revert failed because of merge conflict.\n" " Do you wish to run git citool to resolve it?" @@ -1074,29 +1087,29 @@ msgstr "" "Revert gặp lá»—i bởi vì xung đột hòa trá»™n.\n" " Bạn có muốn chạy lệnh “git citool†để phân giải nó không?" -#: gitk:9634 +#: gitk:9653 msgid "Confirm reset" msgstr "Xác nháºt đặt lại" -#: gitk:9636 +#: gitk:9655 #, tcl-format msgid "Reset branch %s to %s?" msgstr "Äặt lại nhánh “%s†thà nh “%sâ€?" -#: gitk:9638 +#: gitk:9657 msgid "Reset type:" msgstr "Kiểu đặt lại:" -#: gitk:9641 +#: gitk:9660 msgid "Soft: Leave working tree and index untouched" msgstr "Má»m: Không động đến thư mục là m việc và bảng mục lục" -#: gitk:9644 +#: gitk:9663 msgid "Mixed: Leave working tree untouched, reset index" msgstr "" "Pha trá»™n: Không động chạm đến thư mục là m việc nhưng đặt lại bảng mục lục" -#: gitk:9647 +#: gitk:9666 msgid "" "Hard: Reset working tree and index\n" "(discard ALL local changes)" @@ -1104,19 +1117,19 @@ msgstr "" "Hard: Äặt lại cây là m việc và mục lục\n" "(há»§y bá» MỌI thay đổi ná»™i bá»™)" -#: gitk:9664 +#: gitk:9683 msgid "Resetting" msgstr "Äang đặt lại" -#: gitk:9724 +#: gitk:9743 msgid "Checking out" msgstr "Äang checkout" -#: gitk:9777 +#: gitk:9796 msgid "Cannot delete the currently checked-out branch" msgstr "Không thể xóa nhánh hiện tại Ä‘ang được lấy ra" -#: gitk:9783 +#: gitk:9802 #, tcl-format msgid "" "The commits on branch %s aren't on any other branch.\n" @@ -1125,16 +1138,16 @@ msgstr "" "Các lần chuyển giao trên nhánh %s không ở trên nhánh khác.\n" "Thá»±c sá»± muốn xóa nhánh %s?" -#: gitk:9814 +#: gitk:9833 #, tcl-format msgid "Tags and heads: %s" msgstr "Thẻ và Äầu: %s" -#: gitk:9829 +#: gitk:9850 msgid "Filter" msgstr "Bá»™ lá»c" -#: gitk:10125 +#: gitk:10146 msgid "" "Error reading commit topology information; branch and preceding/following " "tag information will be incomplete." @@ -1142,216 +1155,221 @@ msgstr "" "Gặp lá»—i khi Ä‘á»c thông tin hình há»c lần chuyển giao; thông tin nhánh và thẻ " "trước/sau sẽ không hoà n thiện." -#: gitk:11102 +#: gitk:11123 msgid "Tag" msgstr "Thẻ" -#: gitk:11106 +#: gitk:11127 msgid "Id" msgstr "Id" -#: gitk:11189 +#: gitk:11210 msgid "Gitk font chooser" msgstr "Há»™p thoại chá»n phông Gitk" -#: gitk:11206 +#: gitk:11227 msgid "B" msgstr "B" -#: gitk:11209 +#: gitk:11230 msgid "I" msgstr "I" -#: gitk:11327 +#: gitk:11348 msgid "Commit list display options" msgstr "Các tùy chá»n vá» hiển thị danh sách lần chuyển giao" -#: gitk:11330 +#: gitk:11351 msgid "Maximum graph width (lines)" msgstr "Äá»™ rá»™ng biểu đồ tối Ä‘a (dòng)" -#: gitk:11334 +#: gitk:11355 #, no-tcl-format msgid "Maximum graph width (% of pane)" msgstr "Äá»™ rá»™ng biểu đồ tối Ä‘a (% cá»§a bảng)" -#: gitk:11337 +#: gitk:11358 msgid "Show local changes" msgstr "Hiển thị các thay đổi ná»™i bá»™" -#: gitk:11340 +#: gitk:11361 msgid "Auto-select SHA1 (length)" msgstr "Tá»± chá»n SHA1 (độ dà i)" -#: gitk:11344 +#: gitk:11365 msgid "Hide remote refs" msgstr "Ẩn tham chiếu đến máy chá»§" -#: gitk:11348 +#: gitk:11369 msgid "Diff display options" msgstr "Các tùy chá»n trình bà y các khác biệt" -#: gitk:11350 +#: gitk:11371 msgid "Tab spacing" msgstr "Khoảng cách tab" -#: gitk:11353 +#: gitk:11374 msgid "Display nearby tags/heads" msgstr "Hiển thị các thẻ/đầu xung quanh" -#: gitk:11356 +#: gitk:11377 msgid "Maximum # tags/heads to show" msgstr "Số lượng thẻ/đầu tối Ä‘a sẽ hiển thị" -#: gitk:11359 +#: gitk:11380 msgid "Limit diffs to listed paths" msgstr "Giá»›i hạn các khác biệt cho đưá»ng dẫn đã liệt kê" -#: gitk:11362 +#: gitk:11383 msgid "Support per-file encodings" msgstr "Há»— trợ mã hóa má»—i-dòng" -#: gitk:11368 gitk:11515 +#: gitk:11389 gitk:11536 msgid "External diff tool" msgstr "Công cụ so sánh từ bên ngoà i" -#: gitk:11369 +#: gitk:11390 msgid "Choose..." msgstr "Chá»n..." -#: gitk:11374 +#: gitk:11395 msgid "General options" msgstr "Các tùy chá»n chung" -#: gitk:11377 +#: gitk:11398 msgid "Use themed widgets" msgstr "Dùng các widget chá»§ Ä‘á»" -#: gitk:11379 +#: gitk:11400 msgid "(change requires restart)" msgstr "(để thay đổi cần khởi động lại)" -#: gitk:11381 +#: gitk:11402 msgid "(currently unavailable)" msgstr "(hiện tại không sẵn sà ng)" -#: gitk:11392 +#: gitk:11413 msgid "Colors: press to choose" msgstr "Mà u sắc: bấm và o nút phÃa dưới để chá»n mà u" -#: gitk:11395 +#: gitk:11416 msgid "Interface" msgstr "Giao diện" -#: gitk:11396 +#: gitk:11417 msgid "interface" msgstr "giao diện" -#: gitk:11399 +#: gitk:11420 msgid "Background" msgstr "Ná»n" -#: gitk:11400 gitk:11430 +#: gitk:11421 gitk:11451 msgid "background" msgstr "ná»n" -#: gitk:11403 +#: gitk:11424 msgid "Foreground" msgstr "Tiá»n cảnh" -#: gitk:11404 +#: gitk:11425 msgid "foreground" msgstr "tiá»n cảnh" -#: gitk:11407 +#: gitk:11428 msgid "Diff: old lines" msgstr "So sánh: dòng cÅ©" -#: gitk:11408 +#: gitk:11429 msgid "diff old lines" msgstr "diff dòng cÅ©" -#: gitk:11412 +#: gitk:11433 msgid "Diff: new lines" msgstr "So sánh: dòng má»›i" -#: gitk:11413 +#: gitk:11434 msgid "diff new lines" msgstr "mà u dòng má»›i" -#: gitk:11417 +#: gitk:11438 msgid "Diff: hunk header" msgstr "So sánh: phần đầu cá»§a Ä‘oạn" -#: gitk:11419 +#: gitk:11440 msgid "diff hunk header" msgstr "mà u cá»§a phần đầu cá»§a Ä‘oạn khi so sánh" -#: gitk:11423 +#: gitk:11444 msgid "Marked line bg" msgstr "Ná»n dòng đánh dấu" -#: gitk:11425 +#: gitk:11446 msgid "marked line background" msgstr "ná»n dòng được đánh dấu" -#: gitk:11429 +#: gitk:11450 msgid "Select bg" msgstr "Mà u ná»n" -#: gitk:11438 +#: gitk:11459 msgid "Fonts: press to choose" msgstr "Phông chữ: bấm và o các nút ở dưới để chá»n" -#: gitk:11440 +#: gitk:11461 msgid "Main font" msgstr "Phông chữ chÃnh" -#: gitk:11441 +#: gitk:11462 msgid "Diff display font" msgstr "Phông chữ dùng khi so sánh" -#: gitk:11442 +#: gitk:11463 msgid "User interface font" msgstr "Phông chữ giao diện" -#: gitk:11464 +#: gitk:11485 msgid "Gitk preferences" msgstr "Cá nhân hóa các cà i đặt cho Gitk" -#: gitk:11473 +#: gitk:11494 msgid "General" msgstr "Chung" -#: gitk:11474 +#: gitk:11495 msgid "Colors" msgstr "Mà u sắc" -#: gitk:11475 +#: gitk:11496 msgid "Fonts" msgstr "Phông chữ" -#: gitk:11525 +#: gitk:11546 #, tcl-format msgid "Gitk: choose color for %s" msgstr "Gitk: chá»n mà u cho %s" -#: gitk:12242 +#: gitk:12059 +msgid "" +"Sorry, gitk cannot run with this version of Tcl/Tk.\n" +" Gitk requires at least Tcl/Tk 8.4." +msgstr "" + +#: gitk:12269 msgid "Cannot find a git repository here." msgstr "Không thể tìm thấy kho git ở đây." -#: gitk:12289 +#: gitk:12316 #, tcl-format msgid "Ambiguous argument '%s': both revision and filename" msgstr "Äối số “%s†chưa rõ rà ng: vừa là điểm xét duyệt vừa là tên táºp tin" -#: gitk:12301 +#: gitk:12328 msgid "Bad arguments to gitk:" msgstr "Äối số không hợp lệ cho gitk:" -#: gitk:12405 -msgid "Command line" -msgstr "Dòng lệnh" +#~ msgid "mc" +#~ msgstr "mc" #~ msgid "next" #~ msgstr "tiếp" @@ -362,13 +362,14 @@ static int non_note_cmp(const struct non_note *a, const struct non_note *b) return strcmp(a->path, b->path); } -static void add_non_note(struct notes_tree *t, const char *path, +/* note: takes ownership of path string */ +static void add_non_note(struct notes_tree *t, char *path, unsigned int mode, const unsigned char *sha1) { struct non_note *p = t->prev_non_note, *n; n = (struct non_note *) xmalloc(sizeof(struct non_note)); n->next = NULL; - n->path = xstrdup(path); + n->path = path; n->mode = mode; hashcpy(n->sha1, sha1); t->prev_non_note = n; @@ -482,17 +483,17 @@ handle_non_note: * component. */ { - char non_note_path[PATH_MAX]; - char *p = non_note_path; + struct strbuf non_note_path = STRBUF_INIT; const char *q = sha1_to_hex(subtree->key_sha1); int i; for (i = 0; i < prefix_len; i++) { - *p++ = *q++; - *p++ = *q++; - *p++ = '/'; + strbuf_addch(&non_note_path, *q++); + strbuf_addch(&non_note_path, *q++); + strbuf_addch(&non_note_path, '/'); } - strcpy(p, entry.path); - add_non_note(t, non_note_path, entry.mode, entry.sha1); + strbuf_addstr(&non_note_path, entry.path); + add_non_note(t, strbuf_detach(&non_note_path, NULL), + entry.mode, entry.sha1); } } free(buf); diff --git a/sha1_file.c b/sha1_file.c index 08302f5857..d295a3225a 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -377,15 +377,12 @@ void read_info_alternates(const char * relative_base, int depth) char *map; size_t mapsz; struct stat st; - const char alt_file_name[] = "info/alternates"; - /* Given that relative_base is no longer than PATH_MAX, - ensure that "path" has enough space to append "/", the - file name, "info/alternates", and a trailing NUL. */ - char path[PATH_MAX + 1 + sizeof alt_file_name]; + char *path; int fd; - sprintf(path, "%s/%s", relative_base, alt_file_name); + path = xstrfmt("%s/info/alternates", relative_base); fd = git_open_noatime(path); + free(path); if (fd < 0) return; if (fstat(fd, &st) || (st.st_size == 0)) { diff --git a/t/t7060-wtstatus.sh b/t/t7060-wtstatus.sh index 741ec08576..32d81765cb 100755 --- a/t/t7060-wtstatus.sh +++ b/t/t7060-wtstatus.sh @@ -106,7 +106,7 @@ test_expect_success 'git diff-index --cached -M shows 2 added + 1 unmerged' ' A THREE A TWO EOF - git diff-index --cached --name-status HEAD >actual && + git diff-index --cached -M --name-status HEAD >actual && test_cmp expected actual ' diff --git a/unpack-trees.c b/unpack-trees.c index bb09b1ed27..f932e80e86 100644 --- a/unpack-trees.c +++ b/unpack-trees.c @@ -1451,15 +1451,18 @@ static int verify_absent_1(const struct cache_entry *ce, if (!len) return 0; else if (len > 0) { - char path[PATH_MAX + 1]; - memcpy(path, ce->name, len); - path[len] = 0; + char *path; + int ret; + + path = xmemdupz(ce->name, len); if (lstat(path, &st)) - return error("cannot stat '%s': %s", path, + ret = error("cannot stat '%s': %s", path, strerror(errno)); - - return check_ok_to_remove(path, len, DT_UNKNOWN, NULL, &st, - error_type, o); + else + ret = check_ok_to_remove(path, len, DT_UNKNOWN, NULL, + &st, error_type, o); + free(path); + return ret; } else if (lstat(ce->name, &st)) { if (errno != ENOENT) return error("cannot stat '%s': %s", ce->name, |
