Merge branch 'master' into dev
This commit is contained in:
commit
6636b88ea1
63
Makefile
63
Makefile
@ -1,25 +1,52 @@
|
|||||||
# Set the installation directories; this section is needed only in
|
# The default target of this Makefile is...
|
||||||
# gitk.git but probably not in git.git.
|
all::
|
||||||
ifndef gitexecdir
|
|
||||||
gitexecdir := $(shell git --exec-path)
|
|
||||||
endif
|
|
||||||
ifndef sharedir
|
|
||||||
sharedir := $(dir $(gitexecdir))share
|
|
||||||
endif
|
|
||||||
|
|
||||||
# From here on, these are needed in git.git/gitk/Makefile.
|
prefix ?= $(HOME)
|
||||||
|
bindir ?= $(prefix)/bin
|
||||||
|
sharedir ?= $(prefix)/share
|
||||||
gitk_libdir ?= $(sharedir)/gitk/lib
|
gitk_libdir ?= $(sharedir)/gitk/lib
|
||||||
msgsdir ?= $(gitk_libdir)/msgs
|
msgsdir ?= $(gitk_libdir)/msgs
|
||||||
msgsdir_SQ = $(subst ','\'',$(msgsdir))
|
msgsdir_SQ = $(subst ','\'',$(msgsdir))
|
||||||
|
|
||||||
## Beginning of po-file creation rules
|
TCLTK_PATH ?= wish
|
||||||
|
INSTALL ?= install
|
||||||
|
RM ?= rm -f
|
||||||
|
|
||||||
|
DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
|
||||||
|
bindir_SQ = $(subst ','\'',$(bindir))
|
||||||
|
TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
|
||||||
|
|
||||||
|
## po-file creation rules
|
||||||
XGETTEXT ?= xgettext
|
XGETTEXT ?= xgettext
|
||||||
MSGFMT ?= msgfmt
|
MSGFMT ?= msgfmt
|
||||||
PO_TEMPLATE = po/gitk.pot
|
PO_TEMPLATE = po/gitk.pot
|
||||||
ALL_POFILES = $(wildcard po/*.po)
|
ALL_POFILES = $(wildcard po/*.po)
|
||||||
ALL_MSGFILES = $(subst .po,.msg,$(ALL_POFILES))
|
ALL_MSGFILES = $(subst .po,.msg,$(ALL_POFILES))
|
||||||
|
|
||||||
all:: $(ALL_MSGFILES)
|
ifndef V
|
||||||
|
QUIET = @
|
||||||
|
QUIET_GEN = $(QUIET)echo ' ' GEN $@ &&
|
||||||
|
endif
|
||||||
|
|
||||||
|
all:: gitk-wish $(ALL_MSGFILES)
|
||||||
|
|
||||||
|
install:: all
|
||||||
|
$(INSTALL) gitk-wish '$(DESTDIR_SQ)$(bindir_SQ)'/gitk
|
||||||
|
$(INSTALL) -d '$(DESTDIR_SQ)$(msgsdir_SQ)'
|
||||||
|
$(foreach p,$(ALL_MSGFILES), $(INSTALL) $p '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true
|
||||||
|
|
||||||
|
uninstall::
|
||||||
|
$(foreach p,$(ALL_MSGFILES), $(RM) '$(DESTDIR_SQ)$(msgsdir_SQ)'/$(notdir $p) &&) true
|
||||||
|
$(RM) '$(DESTDIR_SQ)$(bindir_SQ)'/gitk
|
||||||
|
|
||||||
|
clean::
|
||||||
|
$(RM) gitk-wish po/*.msg
|
||||||
|
|
||||||
|
gitk-wish: gitk
|
||||||
|
$(QUIET_GEN)$(RM) $@ $@+ && \
|
||||||
|
sed -e '1,3s|^exec .* "$$0"|exec $(subst |,'\|',$(TCLTK_PATH_SQ)) "$$0"|' <gitk >$@+ && \
|
||||||
|
chmod +x $@+ && \
|
||||||
|
mv -f $@+ $@
|
||||||
|
|
||||||
$(PO_TEMPLATE): gitk
|
$(PO_TEMPLATE): gitk
|
||||||
$(XGETTEXT) -kmc -LTcl -o $@ gitk
|
$(XGETTEXT) -kmc -LTcl -o $@ gitk
|
||||||
@ -29,17 +56,3 @@ $(ALL_MSGFILES): %.msg : %.po
|
|||||||
@echo Generating catalog $@
|
@echo Generating catalog $@
|
||||||
$(MSGFMT) --statistics --tcl $< -l $(basename $(notdir $<)) -d $(dir $@)
|
$(MSGFMT) --statistics --tcl $< -l $(basename $(notdir $<)) -d $(dir $@)
|
||||||
|
|
||||||
clean::
|
|
||||||
rm -f $(ALL_PROGRAMS) po/*.msg
|
|
||||||
## End of po-file creation rules
|
|
||||||
|
|
||||||
# Install rules for po-files
|
|
||||||
install: all
|
|
||||||
$(QUIET)$(INSTALL_D0)'$(DESTDIR_SQ)$(msgsdir_SQ)' $(INSTALL_D1)
|
|
||||||
$(QUIET)$(foreach p,$(ALL_MSGFILES), $(INSTALL_R0)$p $(INSTALL_R1) '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
$(QUIET)$(foreach p,$(ALL_MSGFILES), $(REMOVE_F0)'$(DESTDIR_SQ)$(msgsdir_SQ)'/$(notdir $p) $(REMOVE_F1) &&) true
|
|
||||||
$(QUIET)$(REMOVE_D0)'$(DESTDIR_SQ)$(msgsdir_SQ)' $(REMOVE_D1)
|
|
||||||
$(QUIET)$(REMOVE_D0)'$(DESTDIR_SQ)$(libdir_SQ)' $(REMOVE_D1)
|
|
||||||
$(QUIET)$(REMOVE_D0)`dirname '$(DESTDIR_SQ)$(libdir_SQ)'` $(REMOVE_D1)
|
|
||||||
|
6
gitk
6
gitk
@ -2606,7 +2606,7 @@ proc editview {} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
proc vieweditor {top n title} {
|
proc vieweditor {top n title} {
|
||||||
global newviewname newviewperm viewfiles
|
global newviewname newviewperm viewfiles bgcolor
|
||||||
|
|
||||||
toplevel $top
|
toplevel $top
|
||||||
wm title $top $title
|
wm title $top $title
|
||||||
@ -2620,12 +2620,12 @@ proc vieweditor {top n title} {
|
|||||||
-text [mc "Commits to include (arguments to git rev-list):"]
|
-text [mc "Commits to include (arguments to git rev-list):"]
|
||||||
grid $top.al - -sticky w -pady 5
|
grid $top.al - -sticky w -pady 5
|
||||||
entry $top.args -width 50 -textvariable newviewargs($n) \
|
entry $top.args -width 50 -textvariable newviewargs($n) \
|
||||||
-background white
|
-background $bgcolor
|
||||||
grid $top.args - -sticky ew -padx 5
|
grid $top.args - -sticky ew -padx 5
|
||||||
message $top.l -aspect 1000 \
|
message $top.l -aspect 1000 \
|
||||||
-text [mc "Enter files and directories to include, one per line:"]
|
-text [mc "Enter files and directories to include, one per line:"]
|
||||||
grid $top.l - -sticky w
|
grid $top.l - -sticky w
|
||||||
text $top.t -width 40 -height 10 -background white -font uifont
|
text $top.t -width 40 -height 10 -background $bgcolor -font uifont
|
||||||
if {[info exists viewfiles($n)]} {
|
if {[info exists viewfiles($n)]} {
|
||||||
foreach f $viewfiles($n) {
|
foreach f $viewfiles($n) {
|
||||||
$top.t insert end $f
|
$top.t insert end $f
|
||||||
|
54
po/de.po
54
po/de.po
@ -1,14 +1,14 @@
|
|||||||
# Translation of gitk to German.
|
# Translation of gitk to German.
|
||||||
# Copyright (C) 2007 Paul Mackerras and Christian Stimming.
|
# Copyright (C) 2007 Paul Mackerras.
|
||||||
# This file is distributed under the same license as the git package.
|
# This file is distributed under the same license as the gitk package.
|
||||||
# Christian Stimming <stimming@tuhh.de>, 2007
|
# Christian Stimming <stimming@tuhh.de>, 2007
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: git-gui\n"
|
"Project-Id-Version: git-gui\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2007-11-07 12:27+0100\n"
|
"POT-Creation-Date: 2007-12-21 12:04+0100\n"
|
||||||
"PO-Revision-Date: 2007-11-07 12:36+0100\n"
|
"PO-Revision-Date: 2008-01-08 21:48+0100\n"
|
||||||
"Last-Translator: Christian Stimming <stimming@tuhh.de>\n"
|
"Last-Translator: Christian Stimming <stimming@tuhh.de>\n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -321,11 +321,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: gitk:2883
|
#: gitk:2883
|
||||||
msgid "Local changes checked in to index but not committed"
|
msgid "Local changes checked in to index but not committed"
|
||||||
msgstr ""
|
msgstr "Lokale Änderungen bereitgestellt, aber nicht eingetragen"
|
||||||
|
|
||||||
#: gitk:2913
|
#: gitk:2913
|
||||||
msgid "Local uncommitted changes, not checked in to index"
|
msgid "Local uncommitted changes, not checked in to index"
|
||||||
msgstr ""
|
msgstr "Lokale Änderungen, nicht bereitgestellt"
|
||||||
|
|
||||||
#: gitk:4264
|
#: gitk:4264
|
||||||
msgid "Searching"
|
msgid "Searching"
|
||||||
@ -496,7 +496,7 @@ msgstr "Zurücksetzen bestätigen"
|
|||||||
#: gitk:6357
|
#: gitk:6357
|
||||||
#, tcl-format
|
#, tcl-format
|
||||||
msgid "Reset branch %s to %s?"
|
msgid "Reset branch %s to %s?"
|
||||||
msgstr ""
|
msgstr "Zweig »%s« auf »%s« zurücksetzen?"
|
||||||
|
|
||||||
#: gitk:6361
|
#: gitk:6361
|
||||||
msgid "Reset type:"
|
msgid "Reset type:"
|
||||||
@ -504,7 +504,7 @@ msgstr "Art des Zurücksetzens:"
|
|||||||
|
|
||||||
#: gitk:6365
|
#: gitk:6365
|
||||||
msgid "Soft: Leave working tree and index untouched"
|
msgid "Soft: Leave working tree and index untouched"
|
||||||
msgstr "Weich: Arbeitskopie und Bereitstellung unverändert"
|
msgstr "Harmlos: Arbeitskopie und Bereitstellung unverändert"
|
||||||
|
|
||||||
#: gitk:6368
|
#: gitk:6368
|
||||||
msgid "Mixed: Leave working tree untouched, reset index"
|
msgid "Mixed: Leave working tree untouched, reset index"
|
||||||
@ -526,11 +526,11 @@ msgstr "Zurücksetzen"
|
|||||||
|
|
||||||
#: gitk:6444
|
#: gitk:6444
|
||||||
msgid "Checking out"
|
msgid "Checking out"
|
||||||
msgstr ""
|
msgstr "Umstellen"
|
||||||
|
|
||||||
#: gitk:6474
|
#: gitk:6474
|
||||||
msgid "Cannot delete the currently checked-out branch"
|
msgid "Cannot delete the currently checked-out branch"
|
||||||
msgstr ""
|
msgstr "Der Zweig, auf den die Arbeitskopie momentan umgestellt ist, kann nicht gelöscht werden."
|
||||||
|
|
||||||
#: gitk:6480
|
#: gitk:6480
|
||||||
#, tcl-format
|
#, tcl-format
|
||||||
@ -580,28 +580,28 @@ msgstr "Gitk Einstellungen"
|
|||||||
|
|
||||||
#: gitk:7960
|
#: gitk:7960
|
||||||
msgid "Commit list display options"
|
msgid "Commit list display options"
|
||||||
msgstr ""
|
msgstr "Anzeige Versionsliste"
|
||||||
|
|
||||||
#: gitk:7964
|
#: gitk:7964
|
||||||
msgid "Maximum graph width (lines)"
|
msgid "Maximum graph width (lines)"
|
||||||
msgstr ""
|
msgstr "Maximale Graphenbreite (Zeilen)"
|
||||||
|
|
||||||
#: gitk:7968
|
#: gitk:7968
|
||||||
#, tcl-format
|
#, tcl-format
|
||||||
msgid "Maximum graph width (% of pane)"
|
msgid "Maximum graph width (% of pane)"
|
||||||
msgstr ""
|
msgstr "Maximale Graphenbreite (% des Fensters)"
|
||||||
|
|
||||||
#: gitk:7973
|
#: gitk:7973
|
||||||
msgid "Show local changes"
|
msgid "Show local changes"
|
||||||
msgstr ""
|
msgstr "Lokale Änderungen anzeigen"
|
||||||
|
|
||||||
#: gitk:7978
|
#: gitk:7978
|
||||||
msgid "Diff display options"
|
msgid "Diff display options"
|
||||||
msgstr ""
|
msgstr "Anzeige Vergleich"
|
||||||
|
|
||||||
#: gitk:7981
|
#: gitk:7981
|
||||||
msgid "Tab spacing"
|
msgid "Tab spacing"
|
||||||
msgstr ""
|
msgstr "Tabulatorbreite"
|
||||||
|
|
||||||
#: gitk:7985
|
#: gitk:7985
|
||||||
msgid "Display nearby tags"
|
msgid "Display nearby tags"
|
||||||
@ -609,11 +609,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: gitk:7990
|
#: gitk:7990
|
||||||
msgid "Limit diffs to listed paths"
|
msgid "Limit diffs to listed paths"
|
||||||
msgstr ""
|
msgstr "Vergleich nur für angezeigte Pfade"
|
||||||
|
|
||||||
#: gitk:7995
|
#: gitk:7995
|
||||||
msgid "Colors: press to choose"
|
msgid "Colors: press to choose"
|
||||||
msgstr ""
|
msgstr "Farben: Klicken zum Wählen"
|
||||||
|
|
||||||
#: gitk:7999
|
#: gitk:7999
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
@ -625,15 +625,15 @@ msgstr "Hintergrund"
|
|||||||
|
|
||||||
#: gitk:8007
|
#: gitk:8007
|
||||||
msgid "Diff: old lines"
|
msgid "Diff: old lines"
|
||||||
msgstr ""
|
msgstr "Vergleich: Alte Zeilen"
|
||||||
|
|
||||||
#: gitk:8012
|
#: gitk:8012
|
||||||
msgid "Diff: new lines"
|
msgid "Diff: new lines"
|
||||||
msgstr ""
|
msgstr "Vergleich: Neue Zeilen"
|
||||||
|
|
||||||
#: gitk:8017
|
#: gitk:8017
|
||||||
msgid "Diff: hunk header"
|
msgid "Diff: hunk header"
|
||||||
msgstr ""
|
msgstr "Vergleich: Änderungstitel"
|
||||||
|
|
||||||
#: gitk:8023
|
#: gitk:8023
|
||||||
msgid "Select bg"
|
msgid "Select bg"
|
||||||
@ -641,24 +641,24 @@ msgstr "Hintergrundfarbe Auswählen"
|
|||||||
|
|
||||||
#: gitk:8027
|
#: gitk:8027
|
||||||
msgid "Fonts: press to choose"
|
msgid "Fonts: press to choose"
|
||||||
msgstr ""
|
msgstr "Schriftart: Klicken zum Wählen"
|
||||||
|
|
||||||
#: gitk:8030
|
#: gitk:8030
|
||||||
msgid "Main font"
|
msgid "Main font"
|
||||||
msgstr ""
|
msgstr "Programmschriftart"
|
||||||
|
|
||||||
#: gitk:8031
|
#: gitk:8031
|
||||||
msgid "Diff display font"
|
msgid "Diff display font"
|
||||||
msgstr ""
|
msgstr "Vergleich"
|
||||||
|
|
||||||
#: gitk:8032
|
#: gitk:8032
|
||||||
msgid "User interface font"
|
msgid "User interface font"
|
||||||
msgstr ""
|
msgstr "Beschriftungen"
|
||||||
|
|
||||||
#: gitk:8050
|
#: gitk:8050
|
||||||
#, tcl-format
|
#, tcl-format
|
||||||
msgid "Gitk: choose color for %s"
|
msgid "Gitk: choose color for %s"
|
||||||
msgstr ""
|
msgstr "Gitk: Farbe wählen für %s"
|
||||||
|
|
||||||
#: gitk:8431
|
#: gitk:8431
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -668,7 +668,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: gitk:8516
|
#: gitk:8516
|
||||||
msgid "Cannot find a git repository here."
|
msgid "Cannot find a git repository here."
|
||||||
msgstr ""
|
msgstr "Kein Git-Projektarchiv gefunden."
|
||||||
|
|
||||||
#: gitk:8520
|
#: gitk:8520
|
||||||
#, tcl-format
|
#, tcl-format
|
||||||
|
Loading…
Reference in New Issue
Block a user