]> Kevux Git Server - rit/commitdiff
Merge tag 'gitgui-0.21.0' of git://repo.or.cz/git-gui
authorJunio C Hamano <gitster@pobox.com>
Thu, 20 Oct 2016 16:33:17 +0000 (09:33 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 20 Oct 2016 16:33:17 +0000 (09:33 -0700)
git-gui 0.21.0

* tag 'gitgui-0.21.0' of git://repo.or.cz/git-gui: (22 commits)
  git-gui: set version 0.21
  git-gui: Mark 'All' in remote.tcl for translation
  git-gui i18n: Updated Bulgarian translation (565,0f,0u)
  git-gui: avoid persisting modified author identity
  git-gui: handle the encoding of Git's output correctly
  git-gui: unicode file name support on windows
  git-gui: Update Russian translation
  git-gui: maintain backwards compatibility for merge syntax
  git-gui i18n: mark string in lib/error.tcl for translation
  git-gui: fix incorrect use of Tcl append command
  git-gui i18n: mark "usage:" strings for translation
  git-gui i18n: internationalize use of colon punctuation
  git-gui: ensure the file in the diff pane is in the list of selected files
  git-gui: support for $FILENAMES in tool definitions
  git-gui: fix initial git gui message encoding
  git-gui/po/glossary/txt-to-pot.sh: use the $( ... ) construct for command substitution
  git-gui (Windows): use git-gui.exe in `Create Desktop Shortcut`
  git-gui: fix detection of Cygwin
  Amend tab ordering and text widget border and highlighting.
  Allow keyboard control to work in the staging widgets.
  ...

26 files changed:
1  2 
git-gui/GIT-VERSION-GEN
git-gui/Makefile
git-gui/git-gui.sh
git-gui/lib/blame.tcl
git-gui/lib/branch_checkout.tcl
git-gui/lib/branch_create.tcl
git-gui/lib/branch_delete.tcl
git-gui/lib/branch_rename.tcl
git-gui/lib/browser.tcl
git-gui/lib/commit.tcl
git-gui/lib/database.tcl
git-gui/lib/diff.tcl
git-gui/lib/error.tcl
git-gui/lib/index.tcl
git-gui/lib/merge.tcl
git-gui/lib/option.tcl
git-gui/lib/remote.tcl
git-gui/lib/remote_add.tcl
git-gui/lib/remote_branch_delete.tcl
git-gui/lib/shortcut.tcl
git-gui/lib/themed.tcl
git-gui/lib/tools.tcl
git-gui/lib/tools_dlg.tcl
git-gui/lib/transport.tcl
git-gui/po/bg.po
git-gui/po/ru.po

index a88b6824b908d89ee185b84ed92b9c122b0118dd,0000000000000000000000000000000000000000..92373d251a84f448bd673bbb8dd888a64fd2f777
mode 100755,000000..100755
--- /dev/null
@@@ -1,80 -1,0 +1,80 @@@
- DEF_VER=0.20.GITGUI
 +#!/bin/sh
 +
 +GVF=GIT-VERSION-FILE
++DEF_VER=0.21.GITGUI
 +
 +LF='
 +'
 +
 +tree_search ()
 +{
 +      head=$1
 +      tree=$2
 +      for p in $(git rev-list --parents --max-count=1 $head 2>/dev/null)
 +      do
 +              test $tree = $(git rev-parse $p^{tree} 2>/dev/null) &&
 +              vn=$(git describe --abbrev=4 $p 2>/dev/null) &&
 +              case "$vn" in
 +              gitgui-[0-9]*) echo $vn; break;;
 +              esac
 +      done
 +}
 +
 +# Always use the tarball version file if found, just
 +# in case we are somehow contained in a larger git
 +# repository that doesn't actually track our state.
 +# (At least one package manager is doing this.)
 +#
 +# We may be a subproject, so try looking for the merge
 +# commit that supplied this directory content if we are
 +# not at the toplevel.  We probably will always be the
 +# second parent in the commit, but we shouldn't rely on
 +# that fact.
 +#
 +# If we are at the toplevel or the merge assumption fails
 +# try looking for a gitgui-* tag.
 +
 +if test -f version &&
 +   VN=$(cat version)
 +then
 +      : happy
 +elif prefix="$(git rev-parse --show-prefix 2>/dev/null)"
 +   test -n "$prefix" &&
 +   head=$(git rev-list --max-count=1 HEAD -- . 2>/dev/null) &&
 +   tree=$(git rev-parse --verify "HEAD:$prefix" 2>/dev/null) &&
 +   VN=$(tree_search $head $tree)
 +   case "$VN" in
 +   gitgui-[0-9]*) : happy ;;
 +   *) (exit 1) ;;
 +   esac
 +then
 +      VN=$(echo "$VN" | sed -e 's/^gitgui-//;s/-/./g');
 +elif VN=$(git describe --abbrev=4 HEAD 2>/dev/null) &&
 +   case "$VN" in
 +   gitgui-[0-9]*) : happy ;;
 +   *) (exit 1) ;;
 +   esac
 +then
 +      VN=$(echo "$VN" | sed -e 's/^gitgui-//;s/-/./g');
 +else
 +      VN="$DEF_VER"
 +fi
 +
 +dirty=$(sh -c 'git diff-index --name-only HEAD' 2>/dev/null) || dirty=
 +case "$dirty" in
 +'')
 +      ;;
 +*)
 +      VN="$VN-dirty" ;;
 +esac
 +
 +if test -r $GVF
 +then
 +      VC=$(sed -e 's/^GITGUI_VERSION = //' <$GVF)
 +else
 +      VC=unset
 +fi
 +test "$VN" = "$VC" || {
 +      echo >&2 "GITGUI_VERSION = $VN"
 +      echo "GITGUI_VERSION = $VN" >$GVF
 +}
index 4f00bdd3d69babe8a58c4989406eaa6fb5f36a50,0000000000000000000000000000000000000000..fe30be38dc8c534cabf8a0f7145c41aecd1e6989
mode 100644,000000..100644
--- /dev/null
@@@ -1,345 -1,0 +1,345 @@@
-        $(foreach p,$(PRELOAD_FILES) $(ALL_LIBFILES),echo '$(subst lib/,,$p)' >>$@ &&) \
 +all::
 +
 +# Define V=1 to have a more verbose compile.
 +#
 +# Define NO_MSGFMT if you do not have msgfmt from the GNU gettext
 +# package and want to use our rough pure Tcl po->msg translator.
 +# TCL_PATH must be valid for this to work.
 +#
 +
 +GIT-VERSION-FILE: FORCE
 +      @$(SHELL_PATH) ./GIT-VERSION-GEN
 +-include GIT-VERSION-FILE
 +
 +uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
 +uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
 +uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
 +
 +SCRIPT_SH = git-gui.sh
 +GITGUI_MAIN := git-gui
 +GITGUI_BUILT_INS = git-citool
 +ALL_LIBFILES = $(wildcard lib/*.tcl)
 +PRELOAD_FILES = lib/class.tcl
 +NONTCL_LIBFILES = \
 +      lib/git-gui.ico \
 +      $(wildcard lib/win32_*.js) \
 +#end NONTCL_LIBFILES
 +
 +ifndef SHELL_PATH
 +      SHELL_PATH = /bin/sh
 +endif
 +
 +ifndef gitexecdir
 +      gitexecdir := $(shell git --exec-path)
 +endif
 +
 +ifndef sharedir
 +ifeq (git-core,$(notdir $(gitexecdir)))
 +      sharedir := $(dir $(patsubst %/,%,$(dir $(gitexecdir))))share
 +else
 +      sharedir := $(dir $(gitexecdir))share
 +endif
 +endif
 +
 +ifndef INSTALL
 +      INSTALL = install
 +endif
 +
 +RM_RF     ?= rm -rf
 +RMDIR     ?= rmdir
 +
 +INSTALL_D0 = $(INSTALL) -d -m 755 # space is required here
 +INSTALL_D1 =
 +INSTALL_R0 = $(INSTALL) -m 644 # space is required here
 +INSTALL_R1 =
 +INSTALL_X0 = $(INSTALL) -m 755 # space is required here
 +INSTALL_X1 =
 +INSTALL_A0 = find # space is required here
 +INSTALL_A1 = | cpio -pud
 +INSTALL_L0 = rm -f # space is required here
 +INSTALL_L1 = && ln # space is required here
 +INSTALL_L2 =
 +INSTALL_L3 =
 +
 +REMOVE_D0  = $(RMDIR) # space is required here
 +REMOVE_D1  = || true
 +REMOVE_F0  = $(RM_RF) # space is required here
 +REMOVE_F1  =
 +CLEAN_DST  = true
 +
 +ifndef V
 +      QUIET          = @
 +      QUIET_GEN      = $(QUIET)echo '   ' GEN '$@' &&
 +      QUIET_INDEX    = $(QUIET)echo '   ' INDEX $(dir $@) &&
 +      QUIET_MSGFMT0  = $(QUIET)printf '    MSGFMT %12s ' $@ && v=`
 +      QUIET_MSGFMT1  = 2>&1` && echo "$$v" | sed -e 's/fuzzy translations/fuzzy/' | sed -e 's/ messages*//g'
 +      QUIET_2DEVNULL = 2>/dev/null
 +
 +      INSTALL_D0 = dir=
 +      INSTALL_D1 = && echo ' ' DEST $$dir && $(INSTALL) -d -m 755 "$$dir"
 +      INSTALL_R0 = src=
 +      INSTALL_R1 = && echo '   ' INSTALL 644 `basename $$src` && $(INSTALL) -m 644 $$src
 +      INSTALL_X0 = src=
 +      INSTALL_X1 = && echo '   ' INSTALL 755 `basename $$src` && $(INSTALL) -m 755 $$src
 +      INSTALL_A0 = src=
 +      INSTALL_A1 = && echo '   ' INSTALL '   ' `basename "$$src"` && find "$$src" | cpio -pud
 +
 +      INSTALL_L0 = dst=
 +      INSTALL_L1 = && src=
 +      INSTALL_L2 = && dst=
 +      INSTALL_L3 = && echo '   ' 'LINK       ' `basename "$$dst"` '->' `basename "$$src"` && rm -f "$$dst" && ln "$$src" "$$dst"
 +
 +      CLEAN_DST = echo ' ' UNINSTALL
 +      REMOVE_D0 = dir=
 +      REMOVE_D1 = && echo ' ' REMOVE $$dir && test -d "$$dir" && $(RMDIR) "$$dir" || true
 +      REMOVE_F0 = dst=
 +      REMOVE_F1 = && echo '   ' REMOVE `basename "$$dst"` && $(RM_RF) "$$dst"
 +endif
 +
 +TCLTK_PATH ?= wish
 +ifeq (./,$(dir $(TCLTK_PATH)))
 +      TCL_PATH ?= $(subst wish,tclsh,$(TCLTK_PATH))
 +else
 +      TCL_PATH ?= $(dir $(TCLTK_PATH))$(notdir $(subst wish,tclsh,$(TCLTK_PATH)))
 +endif
 +
 +ifeq ($(uname_S),Darwin)
 +      TKFRAMEWORK = /Library/Frameworks/Tk.framework/Resources/Wish.app
 +      ifeq ($(shell echo "$(uname_R)" | awk -F. '{if ($$1 >= 9) print "y"}')_$(shell test -d $(TKFRAMEWORK) || echo n),y_n)
 +              TKFRAMEWORK = /System/Library/Frameworks/Tk.framework/Resources/Wish.app
 +              ifeq ($(shell test -d $(TKFRAMEWORK) || echo n),n)
 +                      TKFRAMEWORK = /System/Library/Frameworks/Tk.framework/Resources/Wish\ Shell.app
 +              endif
 +      endif
 +      TKEXECUTABLE = $(shell basename "$(TKFRAMEWORK)" .app)
 +endif
 +
 +ifeq ($(findstring $(MAKEFLAGS),s),s)
 +QUIET_GEN =
 +endif
 +
 +-include config.mak
 +
 +DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
 +gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
 +SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
 +TCL_PATH_SQ = $(subst ','\'',$(TCL_PATH))
 +TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
 +TCLTK_PATH_SED = $(subst ','\'',$(subst \,\\,$(TCLTK_PATH)))
 +
 +gg_libdir ?= $(sharedir)/git-gui/lib
 +libdir_SQ  = $(subst ','\'',$(gg_libdir))
 +libdir_SED = $(subst ','\'',$(subst \,\\,$(gg_libdir_sed_in)))
 +exedir     = $(dir $(gitexecdir))share/git-gui/lib
 +
 +GITGUI_SCRIPT   := $$0
 +GITGUI_RELATIVE :=
 +GITGUI_MACOSXAPP :=
 +
 +ifeq ($(uname_O),Cygwin)
 +      GITGUI_SCRIPT := `cygpath --windows --absolute "$(GITGUI_SCRIPT)"`
 +
 +      # Is this a Cygwin Tcl/Tk binary?  If so it knows how to do
 +      # POSIX path translation just like cygpath does and we must
 +      # keep libdir in POSIX format so Cygwin packages of git-gui
 +      # work no matter where the user installs them.
 +      #
 +      ifeq ($(shell echo 'puts [file normalize /]' | '$(TCL_PATH_SQ)'),$(shell cygpath --mixed --absolute /))
 +              gg_libdir_sed_in := $(gg_libdir)
 +      else
 +              gg_libdir_sed_in := $(shell cygpath --windows --absolute "$(gg_libdir)")
 +      endif
 +else
 +      ifeq ($(exedir),$(gg_libdir))
 +              GITGUI_RELATIVE := 1
 +      endif
 +      gg_libdir_sed_in := $(gg_libdir)
 +endif
 +ifeq ($(uname_S),Darwin)
 +      ifeq ($(shell test -d $(TKFRAMEWORK) && echo y),y)
 +              GITGUI_MACOSXAPP := YesPlease
 +      endif
 +endif
 +ifneq (,$(findstring MINGW,$(uname_S)))
 +      NO_MSGFMT=1
 +      GITGUI_WINDOWS_WRAPPER := YesPlease
 +      GITGUI_RELATIVE := 1
 +endif
 +
 +ifdef GITGUI_MACOSXAPP
 +GITGUI_MAIN := git-gui.tcl
 +
 +git-gui: GIT-VERSION-FILE GIT-GUI-VARS
 +      $(QUIET_GEN)rm -f $@ $@+ && \
 +      echo '#!$(SHELL_PATH_SQ)' >$@+ && \
 +      echo 'if test "z$$*" = zversion ||' >>$@+ && \
 +      echo '   test "z$$*" = z--version' >>$@+ && \
 +      echo then >>$@+ && \
 +      echo '  'echo \'git-gui version '$(GITGUI_VERSION)'\' >>$@+ && \
 +      echo else >>$@+ && \
 +      echo '  libdir="$${GIT_GUI_LIB_DIR:-$(libdir_SQ)}"' >>$@+ && \
 +      echo '  'exec \"'$$libdir/Git Gui.app/Contents/MacOS/$(subst \,,$(TKEXECUTABLE))'\" \
 +              '"$$0" "$$@"' >>$@+ && \
 +      echo fi >>$@+ && \
 +      chmod +x $@+ && \
 +      mv $@+ $@
 +
 +Git\ Gui.app: GIT-VERSION-FILE GIT-GUI-VARS \
 +              macosx/Info.plist \
 +              macosx/git-gui.icns \
 +              macosx/AppMain.tcl \
 +              $(TKFRAMEWORK)/Contents/MacOS/$(TKEXECUTABLE)
 +      $(QUIET_GEN)rm -rf '$@' '$@'+ && \
 +      mkdir -p '$@'+/Contents/MacOS && \
 +      mkdir -p '$@'+/Contents/Resources/Scripts && \
 +      cp '$(subst ','\'',$(subst \,,$(TKFRAMEWORK)/Contents/MacOS/$(TKEXECUTABLE)))' \
 +              '$@'+/Contents/MacOS && \
 +      cp macosx/git-gui.icns '$@'+/Contents/Resources && \
 +      sed -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
 +              -e 's/@@GITGUI_TKEXECUTABLE@@/$(TKEXECUTABLE)/g' \
 +              macosx/Info.plist \
 +              >'$@'+/Contents/Info.plist && \
 +      sed -e 's|@@gitexecdir@@|$(gitexecdir_SQ)|' \
 +              -e 's|@@GITGUI_LIBDIR@@|$(libdir_SED)|' \
 +              macosx/AppMain.tcl \
 +              >'$@'+/Contents/Resources/Scripts/AppMain.tcl && \
 +      mv '$@'+ '$@'
 +endif
 +
 +ifdef GITGUI_WINDOWS_WRAPPER
 +GITGUI_MAIN := git-gui.tcl
 +
 +git-gui: windows/git-gui.sh
 +      cp $< $@
 +endif
 +
 +$(GITGUI_MAIN): git-gui.sh GIT-VERSION-FILE GIT-GUI-VARS
 +      $(QUIET_GEN)rm -f $@ $@+ && \
 +      sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
 +              -e 's|@@SHELL_PATH@@|$(SHELL_PATH_SQ)|' \
 +              -e '1,30s|^ argv0=$$0| argv0=$(GITGUI_SCRIPT)|' \
 +              -e '1,30s|^ exec wish | exec '\''$(TCLTK_PATH_SED)'\'' |' \
 +              -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
 +              -e 's|@@GITGUI_RELATIVE@@|$(GITGUI_RELATIVE)|' \
 +              -e '$(GITGUI_RELATIVE)s|@@GITGUI_LIBDIR@@|$(libdir_SED)|' \
 +              git-gui.sh >$@+ && \
 +      chmod +x $@+ && \
 +      mv $@+ $@
 +
 +XGETTEXT   ?= xgettext
 +ifdef NO_MSGFMT
 +      MSGFMT ?= $(TCL_PATH) po/po2msg.sh
 +else
 +      MSGFMT ?= msgfmt
 +      ifneq ($(shell $(MSGFMT) --tcl -l C -d . /dev/null 2>/dev/null; echo $$?),0)
 +              MSGFMT := $(TCL_PATH) po/po2msg.sh
 +      endif
 +endif
 +
 +msgsdir     = $(gg_libdir)/msgs
 +msgsdir_SQ  = $(subst ','\'',$(msgsdir))
 +PO_TEMPLATE = po/git-gui.pot
 +ALL_POFILES = $(wildcard po/*.po)
 +ALL_MSGFILES = $(subst .po,.msg,$(ALL_POFILES))
 +
 +$(PO_TEMPLATE): $(SCRIPT_SH) $(ALL_LIBFILES)
 +      $(XGETTEXT) -kmc -LTcl -o $@ $(SCRIPT_SH) $(ALL_LIBFILES)
 +update-po:: $(PO_TEMPLATE)
 +      $(foreach p, $(ALL_POFILES), echo Updating $p ; msgmerge -U $p $(PO_TEMPLATE) ; )
 +$(ALL_MSGFILES): %.msg : %.po
 +      $(QUIET_MSGFMT0)$(MSGFMT) --statistics --tcl -l $(basename $(notdir $<)) -d $(dir $@) $< $(QUIET_MSGFMT1)
 +
 +lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VARS
 +      $(QUIET_INDEX)if echo \
 +        $(foreach p,$(PRELOAD_FILES),source $p\;) \
 +        auto_mkindex lib '*.tcl' \
 +      | $(TCL_PATH) $(QUIET_2DEVNULL); then : ok; \
 +      else \
 +       echo >&2 "    * $(TCL_PATH) failed; using unoptimized loading"; \
 +       rm -f $@ ; \
 +       echo '# Autogenerated by git-gui Makefile' >$@ && \
 +       echo >>$@ && \
++       $(foreach p,$(PRELOAD_FILES) $(sort $(ALL_LIBFILES)),echo '$(subst lib/,,$p)' >>$@ &&) \
 +       echo >>$@ ; \
 +      fi
 +
 +TRACK_VARS = \
 +      $(subst ','\'',SHELL_PATH='$(SHELL_PATH_SQ)') \
 +      $(subst ','\'',TCL_PATH='$(TCL_PATH_SQ)') \
 +      $(subst ','\'',TCLTK_PATH='$(TCLTK_PATH_SQ)') \
 +      $(subst ','\'',gitexecdir='$(gitexecdir_SQ)') \
 +      $(subst ','\'',gg_libdir='$(libdir_SQ)') \
 +      GITGUI_MACOSXAPP=$(GITGUI_MACOSXAPP) \
 +#end TRACK_VARS
 +
 +GIT-GUI-VARS: FORCE
 +      @VARS='$(TRACK_VARS)'; \
 +      if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
 +              echo >&2 "    * new locations or Tcl/Tk interpreter"; \
 +              echo >$@ "$$VARS"; \
 +      fi
 +
 +ifdef GITGUI_MACOSXAPP
 +all:: git-gui Git\ Gui.app
 +endif
 +ifdef GITGUI_WINDOWS_WRAPPER
 +all:: git-gui
 +endif
 +all:: $(GITGUI_MAIN) lib/tclIndex $(ALL_MSGFILES)
 +
 +install: all
 +      $(QUIET)$(INSTALL_D0)'$(DESTDIR_SQ)$(gitexecdir_SQ)' $(INSTALL_D1)
 +      $(QUIET)$(INSTALL_X0)git-gui $(INSTALL_X1) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
 +      $(QUIET)$(INSTALL_X0)git-gui--askpass $(INSTALL_X1) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
 +      $(QUIET)$(foreach p,$(GITGUI_BUILT_INS), $(INSTALL_L0)'$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' $(INSTALL_L1)'$(DESTDIR_SQ)$(gitexecdir_SQ)/git-gui' $(INSTALL_L2)'$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' $(INSTALL_L3) &&) true
 +ifdef GITGUI_WINDOWS_WRAPPER
 +      $(QUIET)$(INSTALL_R0)git-gui.tcl $(INSTALL_R1) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
 +endif
 +      $(QUIET)$(INSTALL_D0)'$(DESTDIR_SQ)$(libdir_SQ)' $(INSTALL_D1)
 +      $(QUIET)$(INSTALL_R0)lib/tclIndex $(INSTALL_R1) '$(DESTDIR_SQ)$(libdir_SQ)'
 +ifdef GITGUI_MACOSXAPP
 +      $(QUIET)$(INSTALL_A0)'Git Gui.app' $(INSTALL_A1) '$(DESTDIR_SQ)$(libdir_SQ)'
 +      $(QUIET)$(INSTALL_X0)git-gui.tcl $(INSTALL_X1) '$(DESTDIR_SQ)$(libdir_SQ)'
 +endif
 +      $(QUIET)$(foreach p,$(ALL_LIBFILES) $(NONTCL_LIBFILES), $(INSTALL_R0)$p $(INSTALL_R1) '$(DESTDIR_SQ)$(libdir_SQ)' &&) true
 +      $(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)$(CLEAN_DST) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
 +      $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(gitexecdir_SQ)'/git-gui $(REMOVE_F1)
 +      $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(gitexecdir_SQ)'/git-gui--askpass $(REMOVE_F1)
 +      $(QUIET)$(foreach p,$(GITGUI_BUILT_INS), $(REMOVE_F0)'$(DESTDIR_SQ)$(gitexecdir_SQ)'/$p $(REMOVE_F1) &&) true
 +ifdef GITGUI_WINDOWS_WRAPPER
 +      $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(gitexecdir_SQ)'/git-gui.tcl $(REMOVE_F1)
 +endif
 +      $(QUIET)$(CLEAN_DST) '$(DESTDIR_SQ)$(libdir_SQ)'
 +      $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/tclIndex $(REMOVE_F1)
 +ifdef GITGUI_MACOSXAPP
 +      $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)/Git Gui.app' $(REMOVE_F1)
 +      $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/git-gui.tcl $(REMOVE_F1)
 +endif
 +      $(QUIET)$(foreach p,$(ALL_LIBFILES) $(NONTCL_LIBFILES), $(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/$(notdir $p) $(REMOVE_F1) &&) true
 +      $(QUIET)$(CLEAN_DST) '$(DESTDIR_SQ)$(msgsdir_SQ)'
 +      $(QUIET)$(foreach p,$(ALL_MSGFILES), $(REMOVE_F0)'$(DESTDIR_SQ)$(msgsdir_SQ)'/$(notdir $p) $(REMOVE_F1) &&) true
 +      $(QUIET)$(REMOVE_D0)'$(DESTDIR_SQ)$(gitexecdir_SQ)' $(REMOVE_D1)
 +      $(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)
 +
 +dist-version:
 +      @mkdir -p $(TARDIR)
 +      @echo $(GITGUI_VERSION) > $(TARDIR)/version
 +
 +clean::
 +      $(RM_RF) $(GITGUI_MAIN) lib/tclIndex po/*.msg
 +      $(RM_RF) GIT-VERSION-FILE GIT-GUI-VARS
 +ifdef GITGUI_MACOSXAPP
 +      $(RM_RF) 'Git Gui.app'* git-gui
 +endif
 +ifdef GITGUI_WINDOWS_WRAPPER
 +      $(RM_RF) git-gui
 +endif
 +
 +.PHONY: all install uninstall dist-version clean
 +.PHONY: FORCE
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 4d9b039dc2813d6771915a61bfc3c353f16bb5a9,0000000000000000000000000000000000000000..5af78f15a86db955903979900190a6f7bbbf7882
mode 100644,000000..100644
--- /dev/null
@@@ -1,2714 -1,0 +1,2807 @@@
- # Copyright (C) 2012, 2013, 2014, 2015 Alexander Shopov <ash@kambanaria.org>.
 +# Bulgarian translation of git-gui po-file.
- # Alexander Shopov <ash@kambanaria.org>, 2012, 2013, 2014, 2015.
++# Copyright (C) 2012, 2013, 2014, 2015, 2016 Alexander Shopov <ash@kambanaria.org>.
 +# This file is distributed under the same license as the git package.
- "POT-Creation-Date: 2015-04-07 07:37+0300\n"
- "PO-Revision-Date: 2015-04-07 07:46+0300\n"
++# Alexander Shopov <ash@kambanaria.org>, 2012, 2013, 2014, 2015, 2016.
 +#
 +#
 +msgid ""
 +msgstr ""
 +"Project-Id-Version: git-gui master\n"
 +"Report-Msgid-Bugs-To: \n"
- #: git-gui.sh:861
++"POT-Creation-Date: 2016-10-13 15:16+0300\n"
++"PO-Revision-Date: 2016-10-13 15:16+0300\n"
 +"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
 +"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
 +"Language: bg\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"
 +
- #: git-gui.sh:915
++#: git-gui.sh:865
 +#, tcl-format
 +msgid "Invalid font specified in %s:"
 +msgstr "Π£ΠΊΠ°Π·Π°Π½ Π΅ Π½Π΅ΠΏΡ€Π°Π²ΠΈΠ»Π΅Π½ ΡˆΡ€ΠΈΡ„Ρ‚ Π² β€ž%sβ€œ:"
 +
- #: git-gui.sh:916
++#: git-gui.sh:919
 +msgid "Main Font"
 +msgstr "ОсновСн ΡˆΡ€ΠΈΡ„Ρ‚"
 +
- #: git-gui.sh:931 git-gui.sh:945 git-gui.sh:958 git-gui.sh:1048
- #: git-gui.sh:1067 git-gui.sh:3125
++#: git-gui.sh:920
 +msgid "Diff/Console Font"
 +msgstr "Π¨Ρ€ΠΈΡ„Ρ‚ Π·Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅/ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°"
 +
- #: git-gui.sh:932
++#: git-gui.sh:935 git-gui.sh:949 git-gui.sh:962 git-gui.sh:1052 git-gui.sh:1071
++#: git-gui.sh:3147
 +msgid "git-gui: fatal error"
 +msgstr "git-gui: Ρ„Π°Ρ‚Π°Π»Π½Π° Π³Ρ€Π΅ΡˆΠΊΠ°"
 +
- #: git-gui.sh:959
++#: git-gui.sh:936
 +msgid "Cannot find git in PATH."
 +msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° git Π»ΠΈΠΏΡΠ²Π° Π² ΠΏΡŠΡ‚я (PATH)."
 +
- #: git-gui.sh:984
++#: git-gui.sh:963
 +msgid "Cannot parse Git version string:"
 +msgstr "ΠΠΈΠ·ΡŠΡ‚ Ρ Π²Π΅Ρ€ΡΠΈΡΡ‚Π° Π½Π° Git Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ½Ρ‚Π΅Ρ€ΠΏΡ€Π΅Ρ‚ΠΈΡ€Π°Π½:"
 +
- #: git-gui.sh:1281
++#: git-gui.sh:988
 +#, tcl-format
 +msgid ""
 +"Git version cannot be determined.\n"
 +"\n"
 +"%s claims it is version '%s'.\n"
 +"\n"
 +"%s requires at least Git 1.5.0 or later.\n"
 +"\n"
 +"Assume '%s' is version 1.5.0?\n"
 +msgstr ""
 +"ВСрсията Π½Π° Git Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π°.\n"
 +"\n"
 +"ВСрсията Π½Π° β€ž%sβ€œ ΠΈΠ·Π³Π»Π΅ΠΆΠ΄Π°, Ρ‡Π΅ Π΅ β€ž%sβ€œ.\n"
 +"\n"
 +"β€ž%sβ€œ ΠΈΠ·ΠΈΡΠΊΠ²Π° Git, Π²Π΅Ρ€ΡΠΈΡ ΠΏΠΎΠ½Π΅ 1.5.0.\n"
 +"\n"
 +"Π”Π° ΡΠ΅ ΠΏΡ€ΠΈΠ΅ΠΌΠ΅ Π»ΠΈ, Ρ‡Π΅ β€ž%sβ€œ Π΅ Π²Π΅Ρ€ΡΠΈΡ β€ž1.5.0β€œ?\n"
 +
- #: git-gui.sh:1315
++#: git-gui.sh:1285
 +msgid "Git directory not found:"
 +msgstr "ДирСкторията Π½Π° Git Π½Π΅ Π΅ ΠΎΡ‚ΠΊΡ€ΠΈΡ‚Π°:"
 +
- #: git-gui.sh:1323
++#: git-gui.sh:1319
 +msgid "Cannot move to top of working directory:"
 +msgstr "НС ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΏΡ€Π΅ΠΌΠΈΠ½Π΅ ΠΊΡŠΠΌ Ρ€ΠΎΠ΄ΠΈΡ‚Слската  Π΄ΠΈΡ€Π΅ΠΊΡ‚ория."
 +
- #: git-gui.sh:1331
++#: git-gui.sh:1327
 +msgid "Cannot use bare repository:"
 +msgstr "Π“ΠΎΠ»ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°:"
 +
- #: git-gui.sh:1503 lib/checkout_op.tcl:306
++#: git-gui.sh:1335
 +msgid "No working directory"
 +msgstr "Π Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория Π»ΠΈΠΏΡΠ²Π°"
 +
- #: git-gui.sh:1563
++#: git-gui.sh:1507 lib/checkout_op.tcl:306
 +msgid "Refreshing file status..."
 +msgstr "ОбновяванС Π½Π° ΡΡŠΡΡ‚ояниСто Π½Π° Ρ„айла…"
 +
- #: git-gui.sh:1639
++#: git-gui.sh:1567
 +msgid "Scanning for modified files ..."
 +msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π·Π° ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½ΠΈ Ρ„айловС…"
 +
- #: git-gui.sh:1656
++#: git-gui.sh:1645
 +msgid "Calling prepare-commit-msg hook..."
 +msgstr "ΠšΡƒΠΊΠ°Ρ‚Π° β€žprepare-commit-msgβ€œ ΡΠ΅ ΠΈΠ·ΠΏΡŠΠ»Π½ΡΠ²Π° Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚а…"
 +
- #: git-gui.sh:1814 lib/browser.tcl:252
++#: git-gui.sh:1662
 +msgid "Commit declined by prepare-commit-msg hook."
 +msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π΅ ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½ΠΎ ΠΎΡ‚ ΠΊΡƒΠΊΠ°Ρ‚Π° β€žprepare-commit-msgβ€œ."
 +
- #: git-gui.sh:1978
++#: git-gui.sh:1820 lib/browser.tcl:252
 +msgid "Ready."
 +msgstr "Π“ΠΎΡ‚ΠΎΠ²ΠΎ."
 +
- "Достигнат Π΅ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»Π½ΠΈΡΡ‚ Π±Ρ€ΠΎΠΉ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π·Π° ΠΏΠΎΠΊΠ°Π·Π²Π°Π½Π΅ (gui.maxfilesdisplayed = "
- "%s). Π€Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ ΡΠ° ΠΎΠ±Ρ‰ΠΎ %s."
++#: git-gui.sh:1984
 +#, tcl-format
 +msgid ""
 +"Display limit (gui.maxfilesdisplayed = %s) reached, not showing all %s files."
 +msgstr ""
- #: git-gui.sh:2101
++"Достигнат Π΅ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»Π½ΠΈΡΡ‚ Ρ€Π°Π·ΠΌΠ΅Ρ€ Π½Π° ΡΠΏΠΈΡΡŠΠΊΠ° Π·Π° ΠΈΠ·Π²Π΅ΠΆΠ΄Π°Π½Π΅(gui."
++"maxfilesdisplayed = %s), ΡΡŠΠΎΡ‚Π²Π΅Ρ‚Π½ΠΎ Π½Π΅ ΡΠ° ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΈ Π²ΡΠΈΡ‡ΠΊΠΈ %s Ρ„Π°ΠΉΠ»Π°."
 +
- #: git-gui.sh:2103
++#: git-gui.sh:2107
 +msgid "Unmodified"
 +msgstr "НСпромСнСн"
 +
- #: git-gui.sh:2104 git-gui.sh:2116
++#: git-gui.sh:2109
 +msgid "Modified, not staged"
 +msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½Π΅Π½, Π½ΠΎ Π½Π΅ Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- #: git-gui.sh:2105 git-gui.sh:2117
++#: git-gui.sh:2110 git-gui.sh:2122
 +msgid "Staged for commit"
 +msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2106 git-gui.sh:2118
++#: git-gui.sh:2111 git-gui.sh:2123
 +msgid "Portions staged for commit"
 +msgstr "Части ΡΠ° Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2108
++#: git-gui.sh:2112 git-gui.sh:2124
 +msgid "Staged for commit, missing"
 +msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, Π½ΠΎ Π»ΠΈΠΏΡΠ²Π°"
 +
- #: git-gui.sh:2109 git-gui.sh:2110
++#: git-gui.sh:2114
 +msgid "File type changed, not staged"
 +msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½, Π½ΠΎ Π½Π΅ Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½, Π½ΠΎ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π΅ Π²ΡΠ΅ ΠΎΡ‰Π΅ ΡΡ‚арият"
++#: git-gui.sh:2115 git-gui.sh:2116
 +msgid "File type changed, old type staged for commit"
- #: git-gui.sh:2111
++msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½, Π½ΠΎ Π½ΠΎΠ²ΠΈΡΡ‚ Π²ΠΈΠ΄ Π½Π΅ Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- #: git-gui.sh:2112
++#: git-gui.sh:2117
 +msgid "File type changed, staged"
 +msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½ ΠΈ Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½, Π½ΠΎ ΠΏΡ€ΠΎΠΌΡΠ½Π°Ρ‚Π° Π½Π΅ Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
++#: git-gui.sh:2118
 +msgid "File type change staged, modification not staged"
- #: git-gui.sh:2113
++msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°, Π½ΠΎ Π½Π΅ ΠΈ ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅Ρ‚ΠΎ"
 +
- msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½, Ρ„Π°ΠΉΠ»ΡŠΡ‚ Π»ΠΈΠΏΡΠ²Π°"
++#: git-gui.sh:2119
 +msgid "File type change staged, file missing"
- #: git-gui.sh:2115
++msgstr "Π’ΠΈΠ΄ΡŠΡ‚ Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ ΡΠΌΠ΅Π½Π΅Π½ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°, Π½ΠΎ Ρ„Π°ΠΉΠ»ΡŠΡ‚ Π»ΠΈΠΏΡΠ²Π°"
 +
- #: git-gui.sh:2120
++#: git-gui.sh:2121
 +msgid "Untracked, not staged"
 +msgstr "НСслСдСн"
 +
- #: git-gui.sh:2121
++#: git-gui.sh:2126
 +msgid "Missing"
 +msgstr "Липсващ"
 +
- #: git-gui.sh:2122
++#: git-gui.sh:2127
 +msgid "Staged for removal"
 +msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΈΠ·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅"
 +
- #: git-gui.sh:2124 git-gui.sh:2125 git-gui.sh:2126 git-gui.sh:2127
- #: git-gui.sh:2128 git-gui.sh:2129
++#: git-gui.sh:2128
 +msgid "Staged for removal, still present"
 +msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΈΠ·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅, Π½ΠΎ ΠΎΡ‰Π΅ Π³ΠΎ ΠΈΠΌΠ°"
 +
- #: git-gui.sh:2164
++#: git-gui.sh:2130 git-gui.sh:2131 git-gui.sh:2132 git-gui.sh:2133
++#: git-gui.sh:2134 git-gui.sh:2135
 +msgid "Requires merge resolution"
 +msgstr "Изисква ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½Π΅ ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅"
 +
- #: git-gui.sh:2176
++#: git-gui.sh:2170
 +msgid "Starting gitk... please wait..."
 +msgstr "Π‘Ρ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π΅ Π½Π° β€žgitkβ€œβ€¦, ΠΈΠ·Ρ‡Π°ΠΊΠ°ΠΉΡ‚С…"
 +
- #: git-gui.sh:2235
++#: git-gui.sh:2182
 +msgid "Couldn't find gitk in PATH"
 +msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° β€žgitkβ€œ Π»ΠΈΠΏΡΠ²Π° Π² ΠΏΡŠΡ‚ΠΈΡ‰Π°Ρ‚Π°, ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ΠΈ ΠΎΡ‚ ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° PATH."
 +
- #: git-gui.sh:2654 lib/choose_repository.tcl:41
++#: git-gui.sh:2241
 +msgid "Couldn't find git gui in PATH"
 +msgstr ""
 +"ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° β€žgit guiβ€œ Π»ΠΈΠΏΡΠ²Π° Π² ΠΏΡŠΡ‚ΠΈΡ‰Π°Ρ‚Π°, ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ΠΈ ΠΎΡ‚ ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° PATH."
 +
- #: git-gui.sh:2655
++#: git-gui.sh:2676 lib/choose_repository.tcl:41
 +msgid "Repository"
 +msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: git-gui.sh:2657 lib/choose_rev.tcl:567
++#: git-gui.sh:2677
 +msgid "Edit"
 +msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€Π°Π½Π΅"
 +
- #: git-gui.sh:2660 lib/choose_rev.tcl:554
++#: git-gui.sh:2679 lib/choose_rev.tcl:567
 +msgid "Branch"
 +msgstr "Клон"
 +
- #: git-gui.sh:2663 lib/merge.tcl:123 lib/merge.tcl:152 lib/merge.tcl:170
++#: git-gui.sh:2682 lib/choose_rev.tcl:554
 +msgid "Commit@@noun"
 +msgstr "ПодаванС"
 +
- #: git-gui.sh:2664 lib/choose_rev.tcl:563
++#: git-gui.sh:2685 lib/merge.tcl:127 lib/merge.tcl:174
 +msgid "Merge"
 +msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅"
 +
- #: git-gui.sh:2667
++#: git-gui.sh:2686 lib/choose_rev.tcl:563
 +msgid "Remote"
 +msgstr "ΠžΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: git-gui.sh:2676
++#: git-gui.sh:2689
 +msgid "Tools"
 +msgstr "Команди"
 +
- #: git-gui.sh:2682
++#: git-gui.sh:2698
 +msgid "Explore Working Copy"
 +msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ€Π°Π±ΠΎΡ‚Π½ΠΎΡ‚ΠΎ ΠΊΠΎΠΏΠΈΠ΅"
 +
- #: git-gui.sh:2692
++#: git-gui.sh:2704
 +msgid "Git Bash"
 +msgstr "Bash Π·Π° Git"
 +
- #: git-gui.sh:2696
++#: git-gui.sh:2714
 +msgid "Browse Current Branch's Files"
 +msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ Π² Ρ‚Скущия ΠΊΠ»ΠΎΠ½"
 +
- #: git-gui.sh:2701
++#: git-gui.sh:2718
 +msgid "Browse Branch Files..."
 +msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ‚Скущия ΠΊΠ»ΠΎΠ½β€¦"
 +
- #: git-gui.sh:2705
++#: git-gui.sh:2723
 +msgid "Visualize Current Branch's History"
 +msgstr "Визуализация Π½Π° ΠΈΡΡ‚орията Π½Π° Ρ‚Скущия ΠΊΠ»ΠΎΠ½"
 +
- #: git-gui.sh:2712
++#: git-gui.sh:2727
 +msgid "Visualize All Branch History"
 +msgstr "Визуализация Π½Π° ΠΈΡΡ‚орията Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ ΠΊΠ»ΠΎΠ½ΠΎΠ²Π΅"
 +
- msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ Π² %s"
++#: git-gui.sh:2734
 +#, tcl-format
 +msgid "Browse %s's Files"
- #: git-gui.sh:2714
++msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ Π² β€ž%sβ€œ"
 +
- msgstr "Визуализация Π½Π° ΠΈΡΡ‚орията Π½Π° %s"
++#: git-gui.sh:2736
 +#, tcl-format
 +msgid "Visualize %s's History"
- #: git-gui.sh:2719 lib/database.tcl:40 lib/database.tcl:66
++msgstr "Визуализация Π½Π° ΠΈΡΡ‚орията Π½Π° β€ž%sβ€œ"
 +
- #: git-gui.sh:2722 lib/database.tcl:33
++#: git-gui.sh:2741 lib/database.tcl:40
 +msgid "Database Statistics"
 +msgstr "Бтатистика Π½Π° Π±Π°Π·Π°Ρ‚Π° ΠΎΡ‚ Π΄Π°Π½Π½ΠΈ"
 +
- #: git-gui.sh:2725
++#: git-gui.sh:2744 lib/database.tcl:33
 +msgid "Compress Database"
 +msgstr "ΠšΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Π½Π΅ Π½Π° Π±Π°Π·Π°Ρ‚Π° ΠΎΡ‚ Π΄Π°Π½Π½ΠΈ"
 +
- #: git-gui.sh:2732 git-gui.sh:2736 git-gui.sh:2740 lib/shortcut.tcl:8
- #: lib/shortcut.tcl:40 lib/shortcut.tcl:72
++#: git-gui.sh:2747
 +msgid "Verify Database"
 +msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° Π±Π°Π·Π°Ρ‚Π° ΠΎΡ‚ Π΄Π°Π½Π½ΠΈ"
 +
- #: git-gui.sh:2748 lib/choose_repository.tcl:193 lib/choose_repository.tcl:201
++#: git-gui.sh:2754 git-gui.sh:2758 git-gui.sh:2762
 +msgid "Create Desktop Icon"
 +msgstr "ДобавянС Π½Π° ΠΈΠΊΠΎΠ½Π° Π½Π° Ρ€Π°Π±ΠΎΡ‚ния ΠΏΠ»ΠΎΡ‚"
 +
- #: git-gui.sh:2756
++#: git-gui.sh:2770 lib/choose_repository.tcl:193 lib/choose_repository.tcl:201
 +msgid "Quit"
 +msgstr "Π‘ΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π°"
 +
- #: git-gui.sh:2759
++#: git-gui.sh:2778
 +msgid "Undo"
 +msgstr "ΠžΡ‚ΠΌΡΠ½Π°"
 +
- #: git-gui.sh:2763 git-gui.sh:3368
++#: git-gui.sh:2781
 +msgid "Redo"
 +msgstr "ΠŸΠΎΠ²Ρ‚ΠΎΡ€Π΅Π½ΠΈΠ΅"
 +
- #: git-gui.sh:2766 git-gui.sh:3371 git-gui.sh:3445 git-gui.sh:3530
++#: git-gui.sh:2785 git-gui.sh:3399
 +msgid "Cut"
 +msgstr "ΠžΡ‚Ρ€ΡΠ·Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2769 git-gui.sh:3374
++#: git-gui.sh:2788 git-gui.sh:3402 git-gui.sh:3476 git-gui.sh:3562
 +#: lib/console.tcl:69
 +msgid "Copy"
 +msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅"
 +
- #: git-gui.sh:2772 git-gui.sh:3377 lib/remote_branch_delete.tcl:39
- #: lib/branch_delete.tcl:28
++#: git-gui.sh:2791 git-gui.sh:3405
 +msgid "Paste"
 +msgstr "ΠŸΠΎΡΡ‚Π°Π²ΡΠ½Π΅"
 +
- #: git-gui.sh:2776 git-gui.sh:3381 git-gui.sh:3534 lib/console.tcl:71
++#: git-gui.sh:2794 git-gui.sh:3408 lib/branch_delete.tcl:28
++#: lib/remote_branch_delete.tcl:39
 +msgid "Delete"
 +msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅"
 +
- #: git-gui.sh:2785
++#: git-gui.sh:2798 git-gui.sh:3412 git-gui.sh:3566 lib/console.tcl:71
 +msgid "Select All"
 +msgstr "Π˜Π·Π±ΠΈΡ€Π°Π½Π΅ Π½Π° Π²ΡΠΈΡ‡ΠΊΠΎ"
 +
- #: git-gui.sh:2791
++#: git-gui.sh:2807
 +msgid "Create..."
 +msgstr "Π‘ΡŠΠ·Π΄Π°Π²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2797
++#: git-gui.sh:2813
 +msgid "Checkout..."
 +msgstr "Π˜Π·Ρ‚Π΅Π³Π»ΡΠ½Π΅β€¦"
 +
- #: git-gui.sh:2802
++#: git-gui.sh:2819
 +msgid "Rename..."
 +msgstr "ΠŸΡ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2807
++#: git-gui.sh:2824
 +msgid "Delete..."
 +msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2817
++#: git-gui.sh:2829
 +msgid "Reset..."
 +msgstr "ΠžΡ‚ΠΌΡΠ½Π° Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚С…"
 +
- #: git-gui.sh:2819
++#: git-gui.sh:2839
 +msgid "Done"
 +msgstr "Π“ΠΎΡ‚ΠΎΠ²ΠΎ"
 +
- #: git-gui.sh:2828 git-gui.sh:3309
++#: git-gui.sh:2841
 +msgid "Commit@@verb"
 +msgstr "ПодаванС"
 +
- #: git-gui.sh:2836 git-gui.sh:3316
++#: git-gui.sh:2850 git-gui.sh:3335
 +msgid "New Commit"
 +msgstr "Ново ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2846 git-gui.sh:3270 lib/remote_branch_delete.tcl:101
++#: git-gui.sh:2858 git-gui.sh:3342
 +msgid "Amend Last Commit"
 +msgstr "ΠŸΠΎΠΏΡ€Π°Π²ΡΠ½Π΅ Π½Π° ΠΏΠΎΡΠ»Π΅Π΄Π½ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2852
++#: git-gui.sh:2868 git-gui.sh:3296 lib/remote_branch_delete.tcl:101
 +msgid "Rescan"
 +msgstr "ОбновяванС"
 +
- #: git-gui.sh:2858
++#: git-gui.sh:2874
 +msgid "Stage To Commit"
 +msgstr "Към ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2864
++#: git-gui.sh:2880
 +msgid "Stage Changed Files To Commit"
 +msgstr "Всички ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2870 lib/index.tcl:442
++#: git-gui.sh:2886
 +msgid "Unstage From Commit"
 +msgstr "ИзваТданС ΠΎΡ‚ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:2878 git-gui.sh:3581 git-gui.sh:3612
++#: git-gui.sh:2892 lib/index.tcl:442
 +msgid "Revert Changes"
 +msgstr "Π’Ρ€ΡŠΡ‰Π°Π½Π΅ Π½Π° ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»Π°"
 +
- #: git-gui.sh:2882 git-gui.sh:3585 git-gui.sh:3616
++#: git-gui.sh:2900 git-gui.sh:3613 git-gui.sh:3644
 +msgid "Show Less Context"
 +msgstr "По-ΠΌΠ°Π»ΠΊΠΎ ΠΊΠΎΠ½Ρ‚Скст"
 +
- #: git-gui.sh:2889 git-gui.sh:3283 git-gui.sh:3392
++#: git-gui.sh:2904 git-gui.sh:3617 git-gui.sh:3648
 +msgid "Show More Context"
 +msgstr "ΠŸΠΎΠ²Π΅Ρ‡Π΅ ΠΊΠΎΠ½Ρ‚Скст"
 +
- #: git-gui.sh:2905
++#: git-gui.sh:2911 git-gui.sh:3309 git-gui.sh:3423
 +msgid "Sign Off"
 +msgstr "ПодписванС"
 +
- #: git-gui.sh:2910
++#: git-gui.sh:2927
 +msgid "Local Merge..."
 +msgstr "Π›ΠΎΠΊΠ°Π»Π½ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2922 git-gui.sh:2950
++#: git-gui.sh:2932
 +msgid "Abort Merge..."
 +msgstr "ΠŸΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΡΠ»ΠΈΠ²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2926
++#: git-gui.sh:2944 git-gui.sh:2972
 +msgid "Add..."
 +msgstr "ДобавянС…"
 +
- msgstr "Π˜Π·Π±ΡƒΡ‚Π²Π°Π½Π΅β€¦"
++#: git-gui.sh:2948
 +msgid "Push..."
- #: git-gui.sh:2930
++msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2940 git-gui.sh:3563
++#: git-gui.sh:2952
 +msgid "Delete Branch..."
 +msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½β€¦"
 +
- #: git-gui.sh:2951
++#: git-gui.sh:2962 git-gui.sh:3595
 +msgid "Options..."
 +msgstr "ΠžΠΏΡ†ΠΈΠΈβ€¦"
 +
- #: git-gui.sh:2960 lib/choose_repository.tcl:55
++#: git-gui.sh:2973
 +msgid "Remove..."
 +msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:2964 git-gui.sh:2968 lib/choose_repository.tcl:49
- #: lib/choose_repository.tcl:58 lib/about.tcl:14
++#: git-gui.sh:2982 lib/choose_repository.tcl:55
 +msgid "Help"
 +msgstr "ΠŸΠΎΠΌΠΎΡ‰"
 +
- #: git-gui.sh:2992
++#: git-gui.sh:2986 git-gui.sh:2990 lib/about.tcl:14
++#: lib/choose_repository.tcl:49 lib/choose_repository.tcl:58
 +#, tcl-format
 +msgid "About %s"
 +msgstr "ΠžΡ‚Π½ΠΎΡΠ½ΠΎ %s"
 +
- #: git-gui.sh:2995 lib/choose_repository.tcl:52 lib/choose_repository.tcl:61
++#: git-gui.sh:3014
 +msgid "Online Documentation"
 +msgstr "ДокумСнтация Π² Π˜Π½Ρ‚Π΅Ρ€Π½Π΅Ρ‚"
 +
- #: git-gui.sh:3014 git-gui.sh:3146
++#: git-gui.sh:3017 lib/choose_repository.tcl:52 lib/choose_repository.tcl:61
 +msgid "Show SSH Key"
 +msgstr "ПоказванС Π½Π° ΠΊΠ»ΡŽΡ‡Π° Π·Π° SSH"
 +
- #: git-gui.sh:3095 lib/blame.tcl:573
++#: git-gui.sh:3032 git-gui.sh:3164
++msgid "usage:"
++msgstr "ΡƒΠΏΠΎΡ‚Ρ€Π΅Π±Π°:"
++
++#: git-gui.sh:3036 git-gui.sh:3168
 +msgid "Usage"
 +msgstr "Π£ΠΏΠΎΡ‚Ρ€Π΅Π±Π°"
 +
- #: git-gui.sh:3126
++#: git-gui.sh:3117 lib/blame.tcl:573
 +msgid "Error"
 +msgstr "Π“Ρ€Π΅ΡˆΠΊΠ°"
 +
- #: git-gui.sh:3159
++#: git-gui.sh:3148
 +#, tcl-format
 +msgid "fatal: cannot stat path %s: No such file or directory"
 +msgstr ""
 +"ЀАВАЛНА Π“Π Π•Π¨ΠšΠ: ΠΏΡŠΡ‚ят %s Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΊΡ€ΠΈΡ‚: Ρ‚Π°ΠΊΡŠΠ² Ρ„Π°ΠΉΠ» ΠΈΠ»ΠΈ Π΄ΠΈΡ€Π΅ΠΊΡ‚ория "
 +"няма"
 +
- #: git-gui.sh:3185
- msgid "Staged Changes (Will Commit)"
- msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½ΠΈ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ° (Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅)"
- #: git-gui.sh:3205
++#: git-gui.sh:3181
 +msgid "Current Branch:"
 +msgstr "Π’Π΅ΠΊΡƒΡ‰ ΠΊΠ»ΠΎΠ½:"
 +
- #: git-gui.sh:3276
++#: git-gui.sh:3206
 +msgid "Unstaged Changes"
 +msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½ΠΈ ΠΈΠ·Π²ΡŠΠ½ ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- #: git-gui.sh:3295 lib/transport.tcl:137 lib/transport.tcl:229
++#: git-gui.sh:3228
++msgid "Staged Changes (Will Commit)"
++msgstr "ΠŸΡ€ΠΎΠΌΠ΅Π½ΠΈ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ° (Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅)"
++
++#: git-gui.sh:3302
 +msgid "Stage Changed"
 +msgstr "Π˜Π½Π΄Π΅ΠΊΡΡŠΡ‚ Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½"
 +
- #: git-gui.sh:3330
++#: git-gui.sh:3321 lib/transport.tcl:137
 +msgid "Push"
 +msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅"
 +
- #: git-gui.sh:3331
++#: git-gui.sh:3356
 +msgid "Initial Commit Message:"
 +msgstr "ΠŸΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅:"
 +
- #: git-gui.sh:3332
++#: git-gui.sh:3357
 +msgid "Amended Commit Message:"
 +msgstr "ΠŸΠΎΠΏΡ€Π°Π²Π΅Π½ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅:"
 +
- #: git-gui.sh:3333
++#: git-gui.sh:3358
 +msgid "Amended Initial Commit Message:"
 +msgstr "ΠŸΠΎΠΏΡ€Π°Π²Π΅Π½ΠΎ ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅:"
 +
- #: git-gui.sh:3334
++#: git-gui.sh:3359
 +msgid "Amended Merge Commit Message:"
 +msgstr "ΠŸΠΎΠΏΡ€Π°Π²Π΅Π½ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΡΡŠΡ ΡΠ»ΠΈΠ²Π°Π½Π΅:"
 +
- #: git-gui.sh:3335
++#: git-gui.sh:3360
 +msgid "Merge Commit Message:"
 +msgstr "Π‘ΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΡΡŠΡ ΡΠ»ΠΈΠ²Π°Π½Π΅:"
 +
- #: git-gui.sh:3384 git-gui.sh:3538 lib/console.tcl:73
++#: git-gui.sh:3361
 +msgid "Commit Message:"
 +msgstr "Π‘ΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅:"
 +
- #: git-gui.sh:3408 lib/blame.tcl:105
++#: git-gui.sh:3415 git-gui.sh:3570 lib/console.tcl:73
 +msgid "Copy All"
 +msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° Π²ΡΠΈΡ‡ΠΊΠΎ"
 +
- #: git-gui.sh:3526
++#: git-gui.sh:3439 lib/blame.tcl:105
 +msgid "File:"
 +msgstr "Π€Π°ΠΉΠ»:"
 +
- #: git-gui.sh:3547
++#: git-gui.sh:3558
 +msgid "Refresh"
 +msgstr "ОбновяванС"
 +
- #: git-gui.sh:3551
++#: git-gui.sh:3579
 +msgid "Decrease Font Size"
 +msgstr "По-Π΅Π΄ΡŠΡ€ ΡˆΡ€ΠΈΡ„Ρ‚"
 +
- #: git-gui.sh:3559 lib/blame.tcl:294
++#: git-gui.sh:3583
 +msgid "Increase Font Size"
 +msgstr "По-Π΄Ρ€Π΅Π±Π΅Π½ ΡˆΡ€ΠΈΡ„Ρ‚"
 +
- #: git-gui.sh:3570
++#: git-gui.sh:3591 lib/blame.tcl:294
 +msgid "Encoding"
 +msgstr "ΠšΠΎΠ΄ΠΈΡ€Π°Π½Π΅"
 +
- #: git-gui.sh:3575
++#: git-gui.sh:3602
 +msgid "Apply/Reverse Hunk"
 +msgstr "ΠŸΡ€ΠΈΠ»Π°Π³Π°Π½Π΅/Π²Ρ€ΡŠΡ‰Π°Π½Π΅ Π½Π° ΠΏΠ°Ρ€Ρ‡Π΅"
 +
- #: git-gui.sh:3594
++#: git-gui.sh:3607
 +msgid "Apply/Reverse Line"
 +msgstr "ΠŸΡ€ΠΈΠ»Π°Π³Π°Π½Π΅/Π²Ρ€ΡŠΡ‰Π°Π½Π΅ Π½Π° Ρ€Π΅Π΄"
 +
- #: git-gui.sh:3599
++#: git-gui.sh:3626
 +msgid "Run Merge Tool"
 +msgstr "ИзпълнСниС Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅"
 +
- #: git-gui.sh:3603
++#: git-gui.sh:3631
 +msgid "Use Remote Version"
 +msgstr "ВСрсия ΠΎΡ‚ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: git-gui.sh:3607
++#: git-gui.sh:3635
 +msgid "Use Local Version"
 +msgstr "Π›ΠΎΠΊΠ°Π»Π½Π° Π²Π΅Ρ€ΡΠΈΡ"
 +
- #: git-gui.sh:3625
++#: git-gui.sh:3639
 +msgid "Revert To Base"
 +msgstr "Π’Ρ€ΡŠΡ‰Π°Π½Π΅ ΠΊΡŠΠΌ Ρ€ΠΎΠ΄ΠΈΡ‚Слската Π²Π΅Ρ€ΡΠΈΡ"
 +
- #: git-gui.sh:3629
++#: git-gui.sh:3657
 +msgid "Visualize These Changes In The Submodule"
 +msgstr "Π’ΠΈΠ·ΡƒΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Π°"
 +
- #: git-gui.sh:3633
++#: git-gui.sh:3661
 +msgid "Visualize Current Branch History In The Submodule"
 +msgstr "Визуализация Π½Π° ΠΈΡΡ‚орията Π½Π° Ρ‚Скущия ΠΊΠ»ΠΎΠ½ Π² ΠΈΡΡ‚орията Π·Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Π°"
 +
- #: git-gui.sh:3638
++#: git-gui.sh:3665
 +msgid "Visualize All Branch History In The Submodule"
 +msgstr "Визуализация Π½Π° ΠΈΡΡ‚орията Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ ΠΊΠ»ΠΎΠ½ΠΈ Π² ΠΈΡΡ‚орията Π·Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Π°"
 +
- #: git-gui.sh:3673
++#: git-gui.sh:3670
 +msgid "Start git gui In The Submodule"
 +msgstr "Π‘Ρ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π΅ Π½Π° β€žgit guiβ€œ Π·Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Π°"
 +
- #: git-gui.sh:3675
++#: git-gui.sh:3705
 +msgid "Unstage Hunk From Commit"
 +msgstr "ИзваТданС Π½Π° ΠΏΠ°Ρ€Ρ‡Π΅Ρ‚ΠΎ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ"
 +
- #: git-gui.sh:3677
++#: git-gui.sh:3707
 +msgid "Unstage Lines From Commit"
 +msgstr "ИзваТданС Π½Π° Ρ€Π΅Π΄ΠΎΠ²Π΅Ρ‚Π΅ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ"
 +
- #: git-gui.sh:3680
++#: git-gui.sh:3709
 +msgid "Unstage Line From Commit"
 +msgstr "ИзваТданС Π½Π° Ρ€Π΅Π΄Π° ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ"
 +
- #: git-gui.sh:3682
++#: git-gui.sh:3712
 +msgid "Stage Hunk For Commit"
 +msgstr "ДобавянС Π½Π° ΠΏΠ°Ρ€Ρ‡Π΅Ρ‚ΠΎ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:3684
++#: git-gui.sh:3714
 +msgid "Stage Lines For Commit"
 +msgstr "ДобавянС Π½Π° Ρ€Π΅Π΄ΠΎΠ²Π΅Ρ‚Π΅ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:3709
++#: git-gui.sh:3716
 +msgid "Stage Line For Commit"
 +msgstr "ДобавянС Π½Π° Ρ€Π΅Π΄Π° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: git-gui.sh:3852
++#: git-gui.sh:3741
 +msgid "Initializing..."
 +msgstr "Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½Π΅β€¦"
 +
- #: git-gui.sh:3881
++#: git-gui.sh:3886
 +#, tcl-format
 +msgid ""
 +"Possible environment issues exist.\n"
 +"\n"
 +"The following environment variables are probably\n"
 +"going to be ignored by any Git subprocess run\n"
 +"by %s:\n"
 +"\n"
 +msgstr ""
 +"Π’ΡŠΠ·ΠΌΠΎΠΆΠ½ΠΎ Π΅ Π΄Π° ΠΈΠΌΠ° ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ ΡΡŠΡ ΡΡ€Π΅Π΄Π°Ρ‚Π°.\n"
 +"\n"
 +"Най-вСроятно ΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²ΠΈ Π½ΡΠΌΠ° Π΄Π° Π±ΡŠΠ΄Π°Ρ‚\n"
 +"Π²Π·Π΅Ρ‚ΠΈ ΠΏΠΎΠ΄ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ ΠΎΡ‚ ΠΏΠΎΠ΄ΠΏΡ€ΠΎΡ†Π΅ΡΠΈΡ‚Π΅ Π½Π° Git\n"
 +"ΠΎΡ‚ %s:\n"
 +"\n"
 +
- #: git-gui.sh:3886
++#: git-gui.sh:3915
 +msgid ""
 +"\n"
 +"This is due to a known issue with the\n"
 +"Tcl binary distributed by Cygwin."
 +msgstr ""
 +"\n"
 +"Π’ΠΎΠ²Π° Π΅ ΠΏΠΎΠ·Π½Π°Ρ‚ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ ΠΈ ΡΠ΅ Π΄ΡŠΠ»ΠΆΠΈ Π½Π°\n"
 +"вСрсията Π½Π° Tcl Π²ΠΊΠ»ΡŽΡ‡Π΅Π½Π° Π² Cygwin."
 +
- #: lib/spellcheck.tcl:57
- msgid "Unsupported spell checker"
- msgstr "Π’Π°Π·ΠΈ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ° Π½Π΅ ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°"
- #: lib/spellcheck.tcl:65
- msgid "Spell checking is unavailable"
- msgstr "Липсва ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
- #: lib/spellcheck.tcl:68
- msgid "Invalid spell checking configuration"
- msgstr "НСправилни Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ Π½Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°Ρ‚Π° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
++#: git-gui.sh:3920
 +#, tcl-format
 +msgid ""
 +"\n"
 +"\n"
 +"A good replacement for %s\n"
 +"is placing values for the user.name and\n"
 +"user.email settings into your personal\n"
 +"~/.gitconfig file.\n"
 +msgstr ""
 +"\n"
 +"\n"
 +"Π”ΠΎΠ±ΡŠΡ€ Π·Π°ΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅Π» Π½Π° β€ž%sβ€œ\n"
 +"Π΅ Π΄Π° ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈΡ‚Π΅ β€žuser.nameβ€œ ΠΈ\n"
 +"β€žuser.emailβ€œ Π² Π»ΠΈΡ‡Π½ΠΈΡ ΡΠΈ Ρ„Π°ΠΉΠ» β€ž~/.gitconfigβ€œ.\n"
 +
- #: lib/spellcheck.tcl:70
++#: lib/about.tcl:26
++msgid "git-gui - a graphical user interface for Git."
++msgstr "git-gui β€” Π³Ρ€Π°Ρ„ΠΈΡ‡Π΅Π½ ΠΈΠ½Ρ‚СрфСйс Π·Π° Git."
 +
- msgid "Reverting dictionary to %s."
- msgstr "ПолзванС Π½Π° Ρ€Π΅Ρ‡Π½ΠΈΠΊ Π·Π° Π΅Π·ΠΈΠΊ β€ž%sβ€œ."
- #: lib/spellcheck.tcl:73
- msgid "Spell checker silently failed on startup"
- msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡ Π΄Π°ΠΆΠ΅ Π½Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π° ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ."
- #: lib/spellcheck.tcl:80
- msgid "Unrecognized spell checker"
- msgstr "НСпозната ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
- #: lib/spellcheck.tcl:186
- msgid "No Suggestions"
- msgstr "Няма ΠΏΡ€Π΅Π΄Π»ΠΎΠΆΠ΅Π½ΠΈΡ"
- #: lib/spellcheck.tcl:388
- msgid "Unexpected EOF from spell checker"
- msgstr "НСочакван ΠΊΡ€Π°ΠΉ Π½Π° Ρ„Π°ΠΉΠ» ΠΎΡ‚ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
- #: lib/spellcheck.tcl:392
- msgid "Spell Checker Failed"
- msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° Π² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
- #: lib/remote_add.tcl:20
- msgid "Add Remote"
- msgstr "ДобавянС Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
- #: lib/remote_add.tcl:25
- msgid "Add New Remote"
- msgstr "ДобавянС Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
- #: lib/remote_add.tcl:30 lib/tools_dlg.tcl:37
- msgid "Add"
- msgstr "ДобавянС"
- #: lib/remote_add.tcl:34 lib/browser.tcl:292 lib/branch_checkout.tcl:30
- #: lib/transport.tcl:141 lib/branch_rename.tcl:32 lib/choose_font.tcl:45
- #: lib/option.tcl:127 lib/tools_dlg.tcl:41 lib/tools_dlg.tcl:202
- #: lib/tools_dlg.tcl:345 lib/remote_branch_delete.tcl:43
- #: lib/checkout_op.tcl:579 lib/branch_create.tcl:37 lib/branch_delete.tcl:34
- #: lib/merge.tcl:174
- msgid "Cancel"
- msgstr "ΠžΡ‚ΠΊΠ°Π·Π²Π°Π½Π΅"
- #: lib/remote_add.tcl:39
- msgid "Remote Details"
- msgstr "Π”Π°Π½Π½ΠΈ Π·Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
- #: lib/remote_add.tcl:41 lib/tools_dlg.tcl:51 lib/branch_create.tcl:44
- msgid "Name:"
- msgstr "ИмС:"
++#: lib/blame.tcl:73
 +#, tcl-format
- #: lib/remote_add.tcl:50
- msgid "Location:"
- msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅:"
++msgid "%s (%s): File Viewer"
++msgstr "%s (%s): ΠŸΡ€Π΅Π³Π»Π΅Π΄ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
 +
- #: lib/remote_add.tcl:60
- msgid "Further Action"
- msgstr "Π‘Π»Π΅Π΄Π²Π°Ρ‰ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅"
++#: lib/blame.tcl:79
++msgid "Commit:"
++msgstr "ПодаванС:"
 +
- #: lib/remote_add.tcl:63
- msgid "Fetch Immediately"
- msgstr "НСзабавно Π΄ΠΎΡΡ‚авянС"
++#: lib/blame.tcl:280
++msgid "Copy Commit"
++msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: lib/remote_add.tcl:69
- msgid "Initialize Remote Repository and Push"
- msgstr "Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ΠΈ ΠΈΠ·Ρ‚ласкванС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅"
++#: lib/blame.tcl:284
++msgid "Find Text..."
++msgstr "Π’ΡŠΡ€ΡΠ΅Π½Π΅ Π½Π° Ρ‚Скст…"
 +
- #: lib/remote_add.tcl:75
- msgid "Do Nothing Else Now"
- msgstr "Π”Π° Π½Π΅ ΡΠ΅ ΠΏΡ€Π°Π²ΠΈ Π½ΠΈΡ‰ΠΎ"
++#: lib/blame.tcl:288
++msgid "Goto Line..."
++msgstr "Към Ρ€Π΅Π΄β€¦"
 +
- #: lib/remote_add.tcl:100
- msgid "Please supply a remote name."
- msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ ΠΈΠΌΠ΅ Π·Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅."
++#: lib/blame.tcl:297
++msgid "Do Full Copy Detection"
++msgstr "Пълно Ρ‚ΡŠΡ€ΡΠ΅Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅"
 +
- #: lib/remote_add.tcl:113
- #, tcl-format
- msgid "'%s' is not an acceptable remote name."
- msgstr "ΠžΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΊΠ°Π·Π²Π° β€ž%sβ€œ."
++#: lib/blame.tcl:301
++msgid "Show History Context"
++msgstr "ПоказванС Π½Π° ΠΊΠΎΠ½Ρ‚Скста ΠΎΡ‚ ΠΈΡΡ‚орията"
 +
- #: lib/remote_add.tcl:124
++#: lib/blame.tcl:304
++msgid "Blame Parent Commit"
++msgstr "АнотиранС Π½Π° Ρ€ΠΎΠ΄ΠΈΡ‚Слското ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- msgid "Failed to add remote '%s' of location '%s'."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π΄ΠΎΠ±Π°Π²ΡΠ½Π΅ Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€ž%sβ€œ ΠΎΡ‚ Π°Π΄Ρ€Π΅Ρ β€ž%sβ€œ."
++#: lib/blame.tcl:466
 +#, tcl-format
- #: lib/remote_add.tcl:132 lib/transport.tcl:6
- #, tcl-format
- msgid "fetch %s"
- msgstr "доставянС Π½Π° β€ž%sβ€œ"
++msgid "Reading %s..."
++msgstr "Π§Π΅Ρ‚Π΅ ΡΠ΅ β€ž%sβ€œβ€¦"
 +
- #: lib/remote_add.tcl:133
- #, tcl-format
- msgid "Fetching the %s"
- msgstr "ДоставянС Π½Π° β€ž%sβ€œ"
++#: lib/blame.tcl:594
++msgid "Loading copy/move tracking annotations..."
++msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π°Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈΡ‚Π΅ Π·Π° ΠΏΡ€ΠΎΡΠ»Π΅Π΄ΡΠ²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ/прСмСстванСто…"
 +
- #: lib/remote_add.tcl:156
- #, tcl-format
- msgid "Do not know how to initialize repository at location '%s'."
- msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ Ρ ΠΌΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅ β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½ΠΎ."
++#: lib/blame.tcl:614
++msgid "lines annotated"
++msgstr "Ρ€Π΅Π΄Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½ΠΈ"
 +
- #: lib/remote_add.tcl:162 lib/transport.tcl:54 lib/transport.tcl:92
- #: lib/transport.tcl:110
- #, tcl-format
- msgid "push %s"
- msgstr "изтласкванС Π½Π° β€ž%sβ€œ"
++#: lib/blame.tcl:806
++msgid "Loading original location annotations..."
++msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π°Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈΡ‚Π΅ Π·Π° ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎΡ‚ΠΎ ΠΌΠ΅ΡΡ‚ополоТСниС…"
 +
- #: lib/remote_add.tcl:163
- #, tcl-format
- msgid "Setting up the %s (at %s)"
- msgstr "ДобавянС Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€ž%sβ€œ (с Π°Π΄Ρ€Π΅Ρ β€ž%sβ€œ)"
++#: lib/blame.tcl:809
++msgid "Annotation complete."
++msgstr "АнотиранСто Π·Π°Π²ΡŠΡ€ΡˆΠΈ."
 +
- #: lib/browser.tcl:17
- msgid "Starting..."
- msgstr "БтартиранС…"
++#: lib/blame.tcl:839
++msgid "Busy"
++msgstr "ΠžΠΏΠ΅Ρ€Π°Ρ†ΠΈΡΡ‚Π° Π½Π΅ Π΅ Π·Π°Π²ΡŠΡ€ΡˆΠΈΠ»Π°"
 +
- #: lib/browser.tcl:27
- msgid "File Browser"
- msgstr "Π€Π°ΠΉΠ»ΠΎΠ² Π±Ρ€Π°ΡƒΠ·ΡŠΡ€"
++#: lib/blame.tcl:840
++msgid "Annotation process is already running."
++msgstr "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Ρ‚Π΅Ρ‡Π΅ ΠΏΡ€ΠΎΡ†Π΅Ρ Π½Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅."
 +
- #: lib/browser.tcl:132 lib/browser.tcl:149
- #, tcl-format
- msgid "Loading %s..."
- msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° β€ž%sβ€œβ€¦"
++#: lib/blame.tcl:879
++msgid "Running thorough copy detection..."
++msgstr "Изпълнява ΡΠ΅ Ρ†ΡΠ»ΠΎΡΡ‚Π΅Π½ ΠΏΡ€ΠΎΡ†Π΅Ρ Π½Π° ΠΎΡ‚ΠΊΡ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅β€¦"
 +
- #: lib/browser.tcl:193
- msgid "[Up To Parent]"
- msgstr "[Към Ρ€ΠΎΠ΄ΠΈΡ‚Сля]"
++#: lib/blame.tcl:947
++msgid "Loading annotation..."
++msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π°Π½ΠΎΡ‚ации…"
 +
- #: lib/browser.tcl:275 lib/browser.tcl:282
- msgid "Browse Branch Files"
- msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ Π² ΠΊΠ»ΠΎΠ½Π°"
++#: lib/blame.tcl:1000
++msgid "Author:"
++msgstr "Автор:"
 +
- #: lib/browser.tcl:288 lib/choose_repository.tcl:422
- #: lib/choose_repository.tcl:509 lib/choose_repository.tcl:518
- #: lib/choose_repository.tcl:1074
- msgid "Browse"
- msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅"
++#: lib/blame.tcl:1004
++msgid "Committer:"
++msgstr "Подал:"
 +
- #: lib/browser.tcl:297 lib/branch_checkout.tcl:35 lib/tools_dlg.tcl:321
- msgid "Revision"
- msgstr "ВСрсия"
++#: lib/blame.tcl:1009
++msgid "Original File:"
++msgstr "ΠŸΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π΅Π½ Ρ„Π°ΠΉΠ»:"
 +
- #: lib/tools.tcl:75
- #, tcl-format
- msgid "Running %s requires a selected file."
- msgstr "Π—Π° ΠΈΠ·ΠΏΡŠΠ»Π½Π΅Π½ΠΈΠ΅Ρ‚ΠΎ Π½Π° β€ž%sβ€œ Ρ‚рябва Π΄Π° ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Ρ„Π°ΠΉΠ»."
++#: lib/blame.tcl:1057
++msgid "Cannot find HEAD commit:"
++msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π·Π° Π²Ρ€ΡŠΡ… β€žHEADβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΎΡ‚ΠΊΡ€ΠΈΠ΅:"
 +
- #: lib/tools.tcl:91
- #, tcl-format
- msgid "Are you sure you want to run %1$s on file \"%2$s\"?"
- msgstr "Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΡŠΠ»Π½ΠΈΡ‚Π΅ β€ž%1$sβ€œ Π²ΡŠΡ€Ρ…Ρƒ Ρ„Π°ΠΉΠ»Π° β€ž%2$sβ€œ?"
++#: lib/blame.tcl:1112
++msgid "Cannot find parent commit:"
++msgstr "РодитСлското ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΊΡ€ΠΈΡ‚ΠΎ"
 +
- #: lib/tools.tcl:95
- #, tcl-format
- msgid "Are you sure you want to run %s?"
- msgstr "Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΡŠΠ»Π½ΠΈΡ‚Π΅ β€ž%sβ€œ?"
++#: lib/blame.tcl:1127
++msgid "Unable to display parent"
++msgstr "РодитСлят Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠΊΠ°Π·Π°Π½"
 +
- #: lib/tools.tcl:116
- #, tcl-format
- msgid "Tool: %s"
- msgstr "Команда: %s"
++#: lib/blame.tcl:1128 lib/diff.tcl:358
++msgid "Error loading diff:"
++msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ Π·Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠ°:"
 +
- #: lib/tools.tcl:117
- #, tcl-format
- msgid "Running: %s"
- msgstr "ИзпълнСниС: %s"
++#: lib/blame.tcl:1269
++msgid "Originally By:"
++msgstr "ΠŸΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎ ΠΎΡ‚:"
 +
- #: lib/tools.tcl:155
- #, tcl-format
- msgid "Tool completed successfully: %s"
- msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ: %s"
++#: lib/blame.tcl:1275
++msgid "In File:"
++msgstr "Π’ΡŠΠ² Ρ„Π°ΠΉΠ»:"
 +
- #: lib/tools.tcl:157
++#: lib/blame.tcl:1280
++msgid "Copied Or Moved Here By:"
++msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½ΠΎ ΠΈΠ»ΠΈ ΠΏΡ€Π΅ΠΌΠ΅ΡΡ‚Π΅Π½ΠΎ Ρ‚ΡƒΠΊ ΠΎΡ‚:"
 +
- msgid "Tool failed: %s"
- msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π²ΡŠΡ€Π½Π° Π³Ρ€Π΅ΡˆΠΊΠ°: %s"
++#: lib/branch_checkout.tcl:16
 +#, tcl-format
- #: lib/branch_checkout.tcl:16 lib/branch_checkout.tcl:21
++msgid "%s (%s): Checkout Branch"
++msgstr "%s (%s): ΠšΠ»ΠΎΠ½ Π·Π° ΠΈΠ·Ρ‚СглянС"
 +
- #: lib/branch_checkout.tcl:39 lib/option.tcl:310 lib/branch_create.tcl:69
++#: lib/branch_checkout.tcl:21
 +msgid "Checkout Branch"
 +msgstr "Клон Π·Π° ΠΈΠ·Ρ‚СглянС"
 +
 +#: lib/branch_checkout.tcl:26
 +msgid "Checkout"
 +msgstr "Π˜Π·Ρ‚Π΅Π³Π»ΡΠ½Π΅"
 +
- #: lib/transport.tcl:7
++#: lib/branch_checkout.tcl:30 lib/branch_create.tcl:37 lib/branch_delete.tcl:34
++#: lib/branch_rename.tcl:32 lib/browser.tcl:292 lib/checkout_op.tcl:579
++#: lib/choose_font.tcl:45 lib/merge.tcl:178 lib/option.tcl:127
++#: lib/remote_add.tcl:34 lib/remote_branch_delete.tcl:43 lib/tools_dlg.tcl:41
++#: lib/tools_dlg.tcl:202 lib/tools_dlg.tcl:345 lib/transport.tcl:141
++msgid "Cancel"
++msgstr "ΠžΡ‚ΠΊΠ°Π·Π²Π°Π½Π΅"
++
++#: lib/branch_checkout.tcl:35 lib/browser.tcl:297 lib/tools_dlg.tcl:321
++msgid "Revision"
++msgstr "ВСрсия"
++
++#: lib/branch_checkout.tcl:39 lib/branch_create.tcl:69 lib/option.tcl:310
 +msgid "Options"
 +msgstr "ΠžΠΏΡ†ΠΈΠΈ"
 +
 +#: lib/branch_checkout.tcl:42 lib/branch_create.tcl:92
 +msgid "Fetch Tracking Branch"
 +msgstr "Π˜Π·Ρ‚Π΅Π³Π»ΡΠ½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΎΡ‚ ΡΠ»Π΅Π΄Π΅Π½ΠΈΡ ΠΊΠ»ΠΎΠ½"
 +
 +#: lib/branch_checkout.tcl:47
 +msgid "Detach From Local Branch"
 +msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ ΠΎΡ‚ Π»ΠΎΠΊΠ°Π»Π½ΠΈΡ ΠΊΠ»ΠΎΠ½"
 +
- msgid "Fetching new changes from %s"
- msgstr "ДоставянС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΎΡ‚ β€ž%sβ€œ"
++#: lib/branch_create.tcl:23
 +#, tcl-format
- #: lib/transport.tcl:18
- #, tcl-format
- msgid "remote prune %s"
- msgstr "окастрянС Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ ΠΊΡŠΠΌ β€ž%sβ€œ"
- #: lib/transport.tcl:19
- #, tcl-format
- msgid "Pruning tracking branches deleted from %s"
- msgstr "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ Π½Π° ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ ΠΎΡ‚ β€ž%sβ€œ"
- #: lib/transport.tcl:25
- msgid "fetch all remotes"
- msgstr "доставянС Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
- #: lib/transport.tcl:26
- msgid "Fetching new changes from all remotes"
- msgstr "ДоставянС Π½Π° Π½ΠΎΠ²ΠΈΡ‚Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ ΠΎΡ‚ Π²ΡΠΈΡ‡ΠΊΠΈ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
- #: lib/transport.tcl:40
- msgid "remote prune all remotes"
- msgstr "окастрянС Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ ΡΠ»Π΅Π΄ΡΡ‰ΠΈ ΠΊΠ»ΠΎΠ½ΠΈ"
++msgid "%s (%s): Create Branch"
++msgstr "%s (%s): Π‘ъздаванС Π½Π° ΠΊΠ»ΠΎΠ½"
 +
- #: lib/transport.tcl:41
- msgid "Pruning tracking branches deleted from all remotes"
- msgstr ""
- "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ ΠΊΠ»ΠΎΠ½ΠΈ, ΠΊΠΎΠΈΡ‚ΠΎ ΡΠ»Π΅Π΄ΡΡ‚ ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈ ΠΊΠ»ΠΎΠ½ΠΈ ΠΎΡ‚ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
++#: lib/branch_create.tcl:28
++msgid "Create New Branch"
++msgstr "БъздаванС Π½Π° Π½ΠΎΠ² ΠΊΠ»ΠΎΠ½"
 +
- #: lib/transport.tcl:55
- #, tcl-format
- msgid "Pushing changes to %s"
- msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΊΡŠΠΌ β€ž%sβ€œ"
++#: lib/branch_create.tcl:33 lib/choose_repository.tcl:407
++msgid "Create"
++msgstr "БъздаванС"
 +
- #: lib/transport.tcl:93
- #, tcl-format
- msgid "Mirroring to %s"
- msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ Π½Π° Π²ΡΠΈΡ‡ΠΊΠΎ ΠΊΡŠΠΌ β€ž%sβ€œ"
++#: lib/branch_create.tcl:42
++msgid "Branch Name"
++msgstr "ИмС Π½Π° ΠΊΠ»ΠΎΠ½Π°"
 +
- #: lib/transport.tcl:111
- #, tcl-format
- msgid "Pushing %s %s to %s"
- msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ Π½Π° %s β€ž%sβ€œ ΠΊΡŠΠΌ β€ž%sβ€œ"
++#: lib/branch_create.tcl:44 lib/remote_add.tcl:41 lib/tools_dlg.tcl:51
++msgid "Name:"
++msgstr "ИмС:"
 +
- #: lib/transport.tcl:132
- msgid "Push Branches"
- msgstr "Клони Π·Π° ΠΈΠ·Ρ‚ласкванС"
++#: lib/branch_create.tcl:57
++msgid "Match Tracking Branch Name"
++msgstr "БъвпаданС ΠΏΠΎ ΠΈΠΌΠ΅Ρ‚ΠΎ Π½Π° ΡΠ»Π΅Π΄Π΅Π½ΠΈΡ ΠΊΠ»ΠΎΠ½"
 +
- #: lib/transport.tcl:147
- msgid "Source Branches"
- msgstr "Клони-ΠΈΠ·Ρ‚ΠΎΡ‡Π½ΠΈΡ†ΠΈ"
++#: lib/branch_create.tcl:66
++msgid "Starting Revision"
++msgstr "Начална Π²Π΅Ρ€ΡΠΈΡ"
 +
- #: lib/transport.tcl:162
- msgid "Destination Repository"
- msgstr "Π¦Π΅Π»Π΅Π²ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
++#: lib/branch_create.tcl:72
++msgid "Update Existing Branch:"
++msgstr "ОбновяванС Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ ΠΊΠ»ΠΎΠ½:"
 +
- #: lib/transport.tcl:165 lib/remote_branch_delete.tcl:51
- msgid "Remote:"
- msgstr "ΠžΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅:"
++#: lib/branch_create.tcl:75
++msgid "No"
++msgstr "НС"
 +
- #: lib/transport.tcl:187 lib/remote_branch_delete.tcl:72
- msgid "Arbitrary Location:"
- msgstr "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ ΠΌΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅:"
++#: lib/branch_create.tcl:80
++msgid "Fast Forward Only"
++msgstr "Π‘Π°ΠΌΠΎ Ρ‚Ρ€ΠΈΠ²ΠΈΠ°Π»Π½ΠΎ ΠΏΡ€Π΅Π²ΡŠΡ€Ρ‚Π°Ρ‰ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅"
 +
- #: lib/transport.tcl:205
- msgid "Transfer Options"
- msgstr "Настройки ΠΏΡ€ΠΈ ΠΏΡ€Π΅Π½Π°ΡΡΠ½Π΅Ρ‚ΠΎ"
++#: lib/branch_create.tcl:85 lib/checkout_op.tcl:571
++msgid "Reset"
++msgstr "ΠžΡ‚Π½Π°Ρ‡Π°Π»ΠΎ"
 +
- #: lib/transport.tcl:207
- msgid "Force overwrite existing branch (may discard changes)"
- msgstr ""
- "Π˜Π·Ρ€ΠΈΡ‡Π½ΠΎ ΠΏΡ€Π΅Π·Π°ΠΏΠΈΡΠ²Π°Π½Π΅ Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ ΠΊΠ»ΠΎΠ½ (някои ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ "
- "Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ)"
++#: lib/branch_create.tcl:97
++msgid "Checkout After Creation"
++msgstr "ΠŸΡ€Π΅ΠΌΠΈΠ½Π°Π²Π°Π½Π΅ ΠΊΡŠΠΌ ΠΊΠ»ΠΎΠ½Π° ΡΠ»Π΅Π΄ ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ ΠΌΡƒ"
 +
- #: lib/transport.tcl:211
- msgid "Use thin pack (for slow network connections)"
- msgstr "Максимална ΠΊΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ (Π·Π° Π±Π°Π²Π½ΠΈ ΠΌΡ€Π΅ΠΆΠΎΠ²ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ)"
++#: lib/branch_create.tcl:132
++msgid "Please select a tracking branch."
++msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΊΠ»ΠΎΠ½ Π·Π° ΡΠ»Π΅Π΄Π΅Π½ΠΈ."
 +
- #: lib/transport.tcl:215
- msgid "Include tags"
- msgstr "Π’ΠΊΠ»ΡŽΡ‡Π²Π°Π½Π΅ Π½Π° Π΅Ρ‚ΠΈΠΊΠ΅Ρ‚ΠΈΡ‚Π΅"
++#: lib/branch_create.tcl:141
++#, tcl-format
++msgid "Tracking branch %s is not a branch in the remote repository."
++msgstr "БлСдящият ΠΊΠ»ΠΎΠ½ β€” β€ž%sβ€œ, Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π° Π² ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅."
 +
- #: lib/status_bar.tcl:87
++#: lib/branch_create.tcl:154 lib/branch_rename.tcl:92
++msgid "Please supply a branch name."
++msgstr "Π”Π°ΠΉΡ‚Π΅ ΠΈΠΌΠ΅ Π½Π° ΠΊΠ»ΠΎΠ½Π°."
 +
- msgid "%s ... %*i of %*i %s (%3i%%)"
- msgstr "%s… %*i ΠΎΡ‚ ΠΎΠ±Ρ‰ΠΎ %*i %s (%3i%%)"
++#: lib/branch_create.tcl:165 lib/branch_rename.tcl:112
 +#, tcl-format
- #: lib/remote.tcl:200
- msgid "Push to"
- msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ ΠΊΡŠΠΌ"
++msgid "'%s' is not an acceptable branch name."
++msgstr "β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π·Π° ΠΈΠΌΠ΅ Π½Π° ΠΊΠ»ΠΎΠ½."
 +
- #: lib/remote.tcl:218
- msgid "Remove Remote"
- msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
++#: lib/branch_delete.tcl:16
++#, tcl-format
++msgid "%s (%s): Delete Branch"
++msgstr "%s (%s): Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½"
 +
- #: lib/remote.tcl:223
- msgid "Prune from"
- msgstr "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ ΠΎΡ‚"
++#: lib/branch_delete.tcl:21
++msgid "Delete Local Branch"
++msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° Π»ΠΎΠΊΠ°Π»Π΅Π½ ΠΊΠ»ΠΎΠ½"
 +
- #: lib/remote.tcl:228
- msgid "Fetch from"
- msgstr "ДоставянС ΠΎΡ‚"
++#: lib/branch_delete.tcl:39
++msgid "Local Branches"
++msgstr "Π›ΠΎΠΊΠ°Π»Π½ΠΈ ΠΊΠ»ΠΎΠ½ΠΈ"
 +
- #: lib/sshkey.tcl:31
- msgid "No keys found."
- msgstr "НС ΡΠ° ΠΎΡ‚ΠΊΡ€ΠΈΡ‚ΠΈ ΠΊΠ»ΡŽΡ‡ΠΎΠ²Π΅."
++#: lib/branch_delete.tcl:51
++msgid "Delete Only If Merged Into"
++msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅, ΡΠ°ΠΌΠΎ Π°ΠΊΠΎ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΡΠ° ΡΠ»Π΅Ρ‚ΠΈ ΠΈ Π΄Ρ€ΡƒΠ³Π°Π΄Π΅"
 +
- #: lib/sshkey.tcl:34
++#: lib/branch_delete.tcl:53 lib/remote_branch_delete.tcl:120
++msgid "Always (Do not perform merge checks)"
++msgstr "Π’ΠΈΠ½Π°Π³ΠΈ (Π±Π΅Π· ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅)"
 +
- msgid "Found a public key in: %s"
- msgstr "ΠžΡ‚ΠΊΡ€ΠΈΡ‚ Π΅ ΠΏΡƒΠ±Π»ΠΈΡ‡Π΅Π½ ΠΊΠ»ΡŽΡ‡ Π² β€ž%sβ€œ"
- #: lib/sshkey.tcl:40
- msgid "Generate Key"
- msgstr "Π“Π΅Π½Π΅Ρ€ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΊΠ»ΡŽΡ‡"
- #: lib/sshkey.tcl:55 lib/checkout_op.tcl:146 lib/console.tcl:81
- #: lib/database.tcl:30
- msgid "Close"
- msgstr "ЗатварянС"
- #: lib/sshkey.tcl:58
- msgid "Copy To Clipboard"
- msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ ΠΊΡŠΠΌ ΡΠΈΡΡ‚Смния Π±ΡƒΡ„Π΅Ρ€"
++#: lib/branch_delete.tcl:103
 +#, tcl-format
- #: lib/sshkey.tcl:72
- msgid "Your OpenSSH Public Key"
- msgstr "ΠŸΡƒΠ±Π»ΠΈΡ‡Π½ΠΈΡΡ‚ Π²ΠΈ ΠΊΠ»ΡŽΡ‡ Π·Π° OpenSSH"
++msgid "The following branches are not completely merged into %s:"
++msgstr "НС Π²ΡΠΈΡ‡ΠΊΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π² ΠΊΠ»ΠΎΠ½ΠΈΡ‚Π΅ ΡΠ° ΡΠ»Π΅Ρ‚ΠΈ Π² β€ž%sβ€œ:"
 +
- #: lib/sshkey.tcl:80
- msgid "Generating..."
- msgstr "ГСнСриранС…"
++#: lib/branch_delete.tcl:115 lib/remote_branch_delete.tcl:218
++msgid ""
++"Recovering deleted branches is difficult.\n"
++"\n"
++"Delete the selected branches?"
++msgstr ""
++"Π’ΡŠΠ·ΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅Ρ‚ΠΎ Π½Π° ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈ ΠΊΠ»ΠΎΠ½ΠΈ ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ.\n"
++"\n"
++"Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° Ρ‚Ρ€ΠΈΠ΅Ρ‚Π΅?"
 +
- #: lib/sshkey.tcl:86
++#: lib/branch_delete.tcl:131
++#, tcl-format
++msgid " - %s:"
++msgstr " β€” β€ž%s:β€œ"
 +
- "Could not start ssh-keygen:\n"
- "\n"
++#: lib/branch_delete.tcl:141
 +#, tcl-format
 +msgid ""
- "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€žssh-keygenβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π°:\n"
- "\n"
++"Failed to delete branches:\n"
 +"%s"
 +msgstr ""
- #: lib/sshkey.tcl:113
- msgid "Generation failed."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π³Π΅Π½Π΅Ρ€ΠΈΡ€Π°Π½Π΅."
- #: lib/sshkey.tcl:120
- msgid "Generation succeeded, but no keys found."
- msgstr "Π“Π΅Π½Π΅Ρ€ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ Π·Π°Π²ΡŠΡ€ΡˆΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ, Π° Π½Π΅ ΡΠ° Π½Π°ΠΌΠ΅Ρ€Π΅Π½ΠΈ ΠΊΠ»ΡŽΡ‡ΠΎΠ²Π΅."
- #: lib/sshkey.tcl:123
++"ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Ρ‚Ρ€ΠΈΠ΅Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½ΠΈ:\n"
 +"%s"
 +
- msgid "Your key is in: %s"
- msgstr "ΠšΠ»ΡŽΡ‡ΡŠΡ‚ Π²ΠΈ Π΅ Π² β€ž%sβ€œ"
++#: lib/branch_rename.tcl:15
 +#, tcl-format
- #: lib/branch_rename.tcl:15 lib/branch_rename.tcl:23
++msgid "%s (%s): Rename Branch"
++msgstr "%s (%s): ΠŸΡ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½"
 +
- #: lib/branch_rename.tcl:92 lib/branch_create.tcl:154
- msgid "Please supply a branch name."
- msgstr "Π”Π°ΠΉΡ‚Π΅ ΠΈΠΌΠ΅ Π½Π° ΠΊΠ»ΠΎΠ½Π°."
++#: lib/branch_rename.tcl:23
 +msgid "Rename Branch"
 +msgstr "ΠŸΡ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½"
 +
 +#: lib/branch_rename.tcl:28
 +msgid "Rename"
 +msgstr "ΠŸΡ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ²Π°Π½Π΅"
 +
 +#: lib/branch_rename.tcl:38
 +msgid "Branch:"
 +msgstr "Клон:"
 +
 +#: lib/branch_rename.tcl:46
 +msgid "New Name:"
 +msgstr "Ново ΠΈΠΌΠ΅:"
 +
 +#: lib/branch_rename.tcl:81
 +msgid "Please select a branch to rename."
 +msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΊΠ»ΠΎΠ½ Π·Π° ΠΏΡ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ²Π°Π½Π΅."
 +
- #: lib/branch_rename.tcl:112 lib/branch_create.tcl:165
- #, tcl-format
- msgid "'%s' is not an acceptable branch name."
- msgstr "β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π·Π° ΠΈΠΌΠ΅ Π½Π° ΠΊΠ»ΠΎΠ½."
 +#: lib/branch_rename.tcl:102 lib/checkout_op.tcl:202
 +#, tcl-format
 +msgid "Branch '%s' already exists."
 +msgstr "ΠšΠ»ΠΎΠ½ΡŠΡ‚ β€ž%sβ€œ Π²Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
 +
- #: lib/choose_font.tcl:41
- msgid "Select"
- msgstr "Π˜Π·Π±ΠΎΡ€"
- #: lib/choose_font.tcl:55
- msgid "Font Family"
- msgstr "Π¨Ρ€ΠΈΡ„Ρ‚"
 +#: lib/branch_rename.tcl:123
 +#, tcl-format
 +msgid "Failed to rename '%s'."
 +msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΡ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œ."
 +
- #: lib/choose_font.tcl:76
- msgid "Font Size"
- msgstr "Π Π°Π·ΠΌΠ΅Ρ€"
++#: lib/browser.tcl:17
++msgid "Starting..."
++msgstr "БтартиранС…"
 +
- #: lib/choose_font.tcl:93
- msgid "Font Example"
- msgstr "ΠœΠΎΡΡ‚Ρ€Π°"
++#: lib/browser.tcl:27
++#, tcl-format
++msgid "%s (%s): File Browser"
++msgstr "%s (%s): Π€Π°ΠΉΠ»ΠΎΠ² Π±Ρ€Π°ΡƒΠ·ΡŠΡ€"
 +
- #: lib/choose_font.tcl:105
- msgid ""
- "This is example text.\n"
- "If you like this text, it can be your font."
- msgstr ""
- "Π’ΠΎΠ²Π° Π΅ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π΅Π½ Ρ‚Скст.\n"
- "Ако Π²ΠΈ Ρ…арСсва ΠΊΠ°ΠΊ ΠΈΠ·Π³Π»Π΅ΠΆΠ΄Π°, ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΡˆΡ€ΠΈΡ„Ρ‚Π°."
++#: lib/browser.tcl:132 lib/browser.tcl:149
++#, tcl-format
++msgid "Loading %s..."
++msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° β€ž%sβ€œβ€¦"
 +
- #: lib/option.tcl:11
++#: lib/browser.tcl:193
++msgid "[Up To Parent]"
++msgstr "[Към Ρ€ΠΎΠ΄ΠΈΡ‚Сля]"
 +
- msgid "Invalid global encoding '%s'"
- msgstr "НСправилно Π³Π»ΠΎΠ±Π°Π»Π½ΠΎ ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅ β€ž%sβ€œ"
++#: lib/browser.tcl:275
 +#, tcl-format
- #: lib/option.tcl:19
- #, tcl-format
- msgid "Invalid repo encoding '%s'"
- msgstr "НСправилно ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅ β€ž%sβ€œ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ"
++msgid "%s (%s): Browse Branch Files"
++msgstr "%s (%s): Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ Π² ΠΊΠ»ΠΎΠ½Π°"
 +
- #: lib/option.tcl:119
- msgid "Restore Defaults"
- msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΈ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ"
++#: lib/browser.tcl:282
++msgid "Browse Branch Files"
++msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ Π² ΠΊΠ»ΠΎΠ½Π°"
 +
- #: lib/option.tcl:123
- msgid "Save"
- msgstr "Π—Π°ΠΏΠ°Π·Π²Π°Π½Π΅"
++#: lib/browser.tcl:288 lib/choose_repository.tcl:422
++#: lib/choose_repository.tcl:509 lib/choose_repository.tcl:518
++#: lib/choose_repository.tcl:1074
++msgid "Browse"
++msgstr "Π Π°Π·Π³Π»Π΅ΠΆΠ΄Π°Π½Π΅"
 +
- #: lib/option.tcl:133
++#: lib/checkout_op.tcl:85
++#, tcl-format
++msgid "Fetching %s from %s"
++msgstr "ДоставянС Π½Π° β€ž%sβ€œ ΠΎΡ‚ β€ž%sβ€œ"
 +
- msgid "%s Repository"
- msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€ž%sβ€œ"
++#: lib/checkout_op.tcl:133
 +#, tcl-format
- #: lib/option.tcl:134
- msgid "Global (All Repositories)"
- msgstr "Π“Π»ΠΎΠ±Π°Π»Π½ΠΎ (Π·Π° Π²ΡΠΈΡ‡ΠΊΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°)"
++msgid "fatal: Cannot resolve %s"
++msgstr "Ρ„Π°Ρ‚Π°Π»Π½Π° Π³Ρ€Π΅ΡˆΠΊΠ°: β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΎΡ‚ΠΊΡ€ΠΈΠ΅"
 +
- #: lib/option.tcl:140
- msgid "User Name"
- msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΠΊΠΎ ΠΈΠΌΠ΅"
++#: lib/checkout_op.tcl:146 lib/console.tcl:81 lib/database.tcl:30
++#: lib/sshkey.tcl:55
++msgid "Close"
++msgstr "ЗатварянС"
 +
- #: lib/option.tcl:141
- msgid "Email Address"
- msgstr "АдрСс Π½Π° Π΅-ΠΏΠΎΡ‰Π°"
++#: lib/checkout_op.tcl:175
++#, tcl-format
++msgid "Branch '%s' does not exist."
++msgstr "ΠšΠ»ΠΎΠ½ΡŠΡ‚ β€ž%sβ€œ Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
 +
- #: lib/option.tcl:143
- msgid "Summarize Merge Commits"
- msgstr "ΠžΠ±ΠΎΠ±Ρ‰Π°Π²Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡΡ‚Π° ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅"
++#: lib/checkout_op.tcl:194
++#, tcl-format
++msgid "Failed to configure simplified git-pull for '%s'."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠ²Π°Π½Π΅ Π½Π° ΠΎΠΏΡ€ΠΎΡΡ‚Π΅Π½ git-pull Π·Π° β€ž%sβ€œ."
 +
- #: lib/option.tcl:144
- msgid "Merge Verbosity"
- msgstr "ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½ΠΈΡΡ‚Π°"
++#: lib/checkout_op.tcl:229
++#, tcl-format
++msgid ""
++"Branch '%s' already exists.\n"
++"\n"
++"It cannot fast-forward to %s.\n"
++"A merge is required."
++msgstr ""
++"ΠšΠ»ΠΎΠ½ΡŠΡ‚ β€ž%sβ€œ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°.\n"
++"\n"
++"Π’ΠΎΠΉ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Ρ‚Ρ€ΠΈΠ²ΠΈΠ°Π»Π½ΠΎ ΡΠ»ΡΡ‚ Π΄ΠΎ β€ž%sβ€œ.\n"
++"НСобходимо Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅."
 +
- #: lib/option.tcl:145
- msgid "Show Diffstat After Merge"
- msgstr "ИзвСТданС Π½Π° ΡΡ‚атистика ΡΠ»Π΅Π΄ ΡΠ»ΠΈΠ²Π°Π½ΠΈΡΡ‚Π°"
++#: lib/checkout_op.tcl:243
++#, tcl-format
++msgid "Merge strategy '%s' not supported."
++msgstr "БтратСгия Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅  β€ž%sβ€œ Π½Π΅ ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°."
 +
- #: lib/option.tcl:146
- msgid "Use Merge Tool"
- msgstr "ИзползванС Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅"
++#: lib/checkout_op.tcl:262
++#, tcl-format
++msgid "Failed to update '%s'."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œ."
 +
- #: lib/option.tcl:148
- msgid "Trust File Modification Timestamps"
- msgstr "Π”ΠΎΠ²Π΅Ρ€ΠΈΠ΅ Π²ΡŠΠ² Π²Ρ€Π΅ΠΌΠ΅Ρ‚ΠΎ Π½Π° ΠΏΡ€ΠΎΠΌΡΠ½Π° Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅"
++#: lib/checkout_op.tcl:274
++msgid "Staging area (index) is already locked."
++msgstr "Π˜Π½Π΄Π΅ΠΊΡΡŠΡ‚ Π²Π΅Ρ‡Π΅ Π΅ Π·Π°ΠΊΠ»ΡŽΡ‡Π΅Π½."
 +
- #: lib/option.tcl:149
- msgid "Prune Tracking Branches During Fetch"
- msgstr "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΎΠ²Π΅ ΠΏΡ€ΠΈ Π΄ΠΎΡΡ‚авянС"
++#: lib/checkout_op.tcl:289
++msgid ""
++"Last scanned state does not match repository state.\n"
++"\n"
++"Another Git program has modified this repository since the last scan.  A "
++"rescan must be performed before the current branch can be changed.\n"
++"\n"
++"The rescan will be automatically started now.\n"
++msgstr ""
++"Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΡΠ»Π΅Π΄Π½Π°Ρ‚Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π΅ ΠΎΡ‚говаря Π½Π° ΡΡŠΡΡ‚ояниСто Π½Π° "
++"Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ.\n"
++"\n"
++"Някой Π΄Ρ€ΡƒΠ³ ΠΏΡ€ΠΎΡ†Π΅Ρ Π·Π° Git Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΠ» Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ ΠΌΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ "
++"трябва Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° ΡΠ΅ ΠΏΡ€Π΅ΠΌΠΈΠ½Π΅ ΠΊΡŠΠΌ Π½ΠΎΠ² ΠΊΠ»ΠΎΠ½.\n"
++"\n"
++"Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
 +
- #: lib/option.tcl:150
- msgid "Match Tracking Branches"
- msgstr "НапасванС Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΎΠ²Π΅"
++#: lib/checkout_op.tcl:345
++#, tcl-format
++msgid "Updating working directory to '%s'..."
++msgstr "Π Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория ΡΠ΅ ΠΏΡ€ΠΈΠ²Π΅ΠΆΠ΄Π° ΠΊΡŠΠΌ β€ž%sβ€œβ€¦"
 +
- #: lib/option.tcl:151
- msgid "Use Textconv For Diffs and Blames"
++#: lib/checkout_op.tcl:346
++msgid "files checked out"
++msgstr "Ρ„Π°ΠΉΠ»Π° ΡΠ° ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½ΠΈ"
 +
- "ΠŸΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΡƒΠ²Π°Π½Π΅ Π½Π° Ρ‚Скста Ρ β€žtextconvβ€œ ΠΏΡ€ΠΈ Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅ ΠΈ ΠΈΠ·Π²Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈ"
++#: lib/checkout_op.tcl:376
++#, tcl-format
++msgid "Aborted checkout of '%s' (file level merging is required)."
 +msgstr ""
- #: lib/option.tcl:152
- msgid "Blame Copy Only On Changed Files"
- msgstr "АнотиранС Π½Π° ΠΊΠΎΠΏΠΈΠ΅Ρ‚ΠΎ ΡΠ°ΠΌΠΎ ΠΏΠΎ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
++"ΠŸΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΠΈΠ·Ρ‚СглянСто Π½Π° β€ž%sβ€œ (Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ Π΅ ΠΏΠΎΡ„Π°ΠΉΠ»ΠΎΠ²ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅)."
 +
- #: lib/option.tcl:153
- msgid "Maximum Length of Recent Repositories List"
- msgstr "Максимална Π΄ΡŠΠ»ΠΆΠΈΠ½Π° Π½Π° ΡΠΏΠΈΡΡŠΠΊΠ° ΡΡŠΡ ΡΠΊΠΎΡ€ΠΎ ΠΏΠΎΠ»Π·Π²Π°Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
++#: lib/checkout_op.tcl:377
++msgid "File level merge required."
++msgstr "НСобходимо Π΅ ΠΏΠΎΡ„Π°ΠΉΠ»ΠΎΠ²ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅."
 +
- #: lib/option.tcl:154
- msgid "Minimum Letters To Blame Copy On"
- msgstr "МинималСн Π±Ρ€ΠΎΠΉ Π·Π½Π°Ρ†ΠΈ Π·Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΠ΅Ρ‚ΠΎ"
++#: lib/checkout_op.tcl:381
++#, tcl-format
++msgid "Staying on branch '%s'."
++msgstr "ΠžΡΡ‚Π°Π²Π°Π½Π΅ Π²ΡŠΡ€Ρ…Ρƒ ΠΊΠ»ΠΎΠ½Π° β€ž%sβ€œ."
 +
- #: lib/option.tcl:155
- msgid "Blame History Context Radius (days)"
- msgstr "Π˜ΡΡ‚ΠΎΡ€ΠΈΡ‡Π΅ΡΠΊΠΈ ΠΎΠ±Ρ…Π²Π°Ρ‚ Π·Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅ Π² Π΄Π½ΠΈ"
++#: lib/checkout_op.tcl:452
++msgid ""
++"You are no longer on a local branch.\n"
++"\n"
++"If you wanted to be on a branch, create one now starting from 'This Detached "
++"Checkout'."
++msgstr ""
++"Π’Π΅Ρ‡Π΅ Π½Π΅ ΡΡ‚Π΅ Π½Π° Π»ΠΎΠΊΠ°Π»Π΅Π½ ΠΊΠ»ΠΎΠ½.\n"
++"\n"
++"Ако ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΡΡ‚Π΅ Π½Π° ΠΊΠ»ΠΎΠ½, ΡΡŠΠ·Π΄Π°ΠΉΡ‚Π΅ Π±Π°Π·ΠΈΡ€Π°Π½ Π½Π° β€žΠ’ΠΎΠ²Π° Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ΠΎ ΠΈΠ·Ρ‚Π΅Π³Π»ΡΠ½Π΅β€œ."
 +
- #: lib/option.tcl:156
- msgid "Number of Diff Context Lines"
- msgstr "Π‘Ρ€ΠΎΠΉ Ρ€Π΅Π΄ΠΎΠ²Π΅ Π·Π° ΠΊΠΎΠ½Ρ‚Скста ΠΏΡ€ΠΈ ΠΈΠ·Π²Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅"
++#: lib/checkout_op.tcl:503 lib/checkout_op.tcl:507
++#, tcl-format
++msgid "Checked out '%s'."
++msgstr "β€ž%sβ€œ Π΅ ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½."
 +
- #: lib/option.tcl:157
- msgid "Additional Diff Parameters"
- msgstr "Π”ΠΎΠΏΡŠΠ»Π½ΠΈΡ‚Π΅Π»Π½ΠΈ Π°Ρ€Π³ΡƒΠΌΠ΅Π½Ρ‚ΠΈ ΠΊΡŠΠΌ β€žgit diffβ€œ"
++#: lib/checkout_op.tcl:535
++#, tcl-format
++msgid "Resetting '%s' to '%s' will lose the following commits:"
++msgstr ""
++"ЗануляванСто Π½Π° β€ž%sβ€œ ΠΊΡŠΠΌ β€ž%sβ€œ Ρ‰Π΅ Π΄ΠΎΠ²Π΅Π΄Π΅ Π΄ΠΎ Π·Π°Π³ΡƒΠ±Π²Π°Π½Π΅Ρ‚ΠΎ Π½Π° ΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ:"
 +
- #: lib/option.tcl:158
- msgid "Commit Message Text Width"
- msgstr "Π¨ΠΈΡ€ΠΎΡ‡ΠΈΠ½Π° Π½Π° Ρ‚Скста Π½Π° ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
++#: lib/checkout_op.tcl:557
++msgid "Recovering lost commits may not be easy."
++msgstr "Π’ΡŠΠ·ΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅Ρ‚ΠΎ Π½Π° Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ."
 +
- #: lib/option.tcl:159
- msgid "New Branch Name Template"
- msgstr "Π¨Π°Π±Π»ΠΎΠ½ Π·Π° ΠΈΠΌΠ΅Ρ‚ΠΎ Π½Π° Π½ΠΎΠ²ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ"
++#: lib/checkout_op.tcl:562
++#, tcl-format
++msgid "Reset '%s'?"
++msgstr "ЗануляванС Π½Π° β€ž%sβ€œ?"
 +
- #: lib/option.tcl:160
- msgid "Default File Contents Encoding"
- msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎ ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅"
++#: lib/checkout_op.tcl:567 lib/merge.tcl:170 lib/tools_dlg.tcl:336
++msgid "Visualize"
++msgstr "Визуализация"
 +
- #: lib/option.tcl:161
- msgid "Warn before committing to a detached head"
- msgstr "ΠŸΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π°Π²Π°Π½Π΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ ΠΏΡ€ΠΈ Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ Π²Ρ€ΡŠΡ…"
++#: lib/checkout_op.tcl:635
++#, tcl-format
++msgid ""
++"Failed to set current branch.\n"
++"\n"
++"This working directory is only partially switched.  We successfully updated "
++"your files, but failed to update an internal Git file.\n"
++"\n"
++"This should not have occurred.  %s will now close and give up."
++msgstr ""
++"ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°Π΄Π°Π²Π°Π½Π΅ Π½Π° Ρ‚Скущия ΠΊΠ»ΠΎΠ½.\n"
++"\n"
++"Π Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория Π΅ ΡΠ°ΠΌΠΎ Ρ‡Π°ΡΡ‚ΠΈΡ‡Π½ΠΎ ΠΎΠ±Π½ΠΎΠ²Π΅Π½Π°: Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ ΡΠ° ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΈ "
++"ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ, Π½ΠΎ Π½ΡΠΊΠΎΠΉ ΠΎΡ‚ Π²ΡŠΡ‚Ρ€Π΅ΡˆΠ½ΠΈΡ‚Π΅, ΡΠ»ΡƒΠΆΠ΅Π±Π½ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π½Π° Git Π½Π΅ Π΅ Π±ΠΈΠ».\n"
++"\n"
++"Π’ΠΎΠ²Π° ΡΡŠΡΡ‚ояниС Π΅ Π°Π²Π°Ρ€ΠΈΠΉΠ½ΠΎ ΠΈ Π½Π΅ Ρ‚рябва Π΄Π° ΡΠ΅ ΡΠ»ΡƒΡ‡Π²Π°. ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€ž%sβ€œ Ρ‰Π΅ "
++"прСустанови Ρ€Π°Π±ΠΎΡ‚Π°."
 +
- #: lib/option.tcl:162
- msgid "Staging of untracked files"
- msgstr "Π’ΠΊΠ°Ρ€Π²Π°Π½Π΅ Π½Π° Π½Π΅ΡΠ»Π΅Π΄Π΅Π½ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
++#: lib/choose_font.tcl:41
++msgid "Select"
++msgstr "Π˜Π·Π±ΠΎΡ€"
 +
- #: lib/option.tcl:163
- msgid "Show untracked files"
- msgstr "ПоказванС Π½Π° Π½Π΅ΡΠ»Π΅Π΄Π΅Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
++#: lib/choose_font.tcl:55
++msgid "Font Family"
++msgstr "Π¨Ρ€ΠΈΡ„Ρ‚"
 +
- #: lib/option.tcl:164
- msgid "Tab spacing"
- msgstr "Π Π°Π·ΠΌΠ΅Ρ€ Π½Π° Ρ‚абулацията Π² ΠΈΠ½Ρ‚Π΅Ρ€Π²Π°Π»ΠΈ"
++#: lib/choose_font.tcl:76
++msgid "Font Size"
++msgstr "Π Π°Π·ΠΌΠ΅Ρ€"
 +
- #: lib/option.tcl:210
- msgid "Change"
- msgstr "Бмяна"
++#: lib/choose_font.tcl:93
++msgid "Font Example"
++msgstr "ΠœΠΎΡΡ‚Ρ€Π°"
 +
- #: lib/option.tcl:254
- msgid "Spelling Dictionary:"
- msgstr "ΠŸΡ€Π°Π²ΠΎΠΏΠΈΡΠ΅Π½ Ρ€Π΅Ρ‡Π½ΠΈΠΊ:"
++#: lib/choose_font.tcl:105
++msgid ""
++"This is example text.\n"
++"If you like this text, it can be your font."
++msgstr ""
++"Π’ΠΎΠ²Π° Π΅ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π΅Π½ Ρ‚Скст.\n"
++"Ако Π²ΠΈ Ρ…арСсва ΠΊΠ°ΠΊ ΠΈΠ·Π³Π»Π΅ΠΆΠ΄Π°, ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΡˆΡ€ΠΈΡ„Ρ‚Π°."
++
++#: lib/choose_repository.tcl:33
++msgid "Git Gui"
++msgstr "Π“ΠŸΠ˜ Π½Π° Git"
++
++#: lib/choose_repository.tcl:92 lib/choose_repository.tcl:412
++msgid "Create New Repository"
++msgstr "БъздаванС Π½Π° Π½ΠΎΠ²ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
++
++#: lib/choose_repository.tcl:98
++msgid "New..."
++msgstr "Ново…"
++
++#: lib/choose_repository.tcl:105 lib/choose_repository.tcl:496
++msgid "Clone Existing Repository"
++msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
++
++#: lib/choose_repository.tcl:116
++msgid "Clone..."
++msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅β€¦"
++
++#: lib/choose_repository.tcl:123 lib/choose_repository.tcl:1064
++msgid "Open Existing Repository"
++msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅ Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
++
++#: lib/choose_repository.tcl:129
++msgid "Open..."
++msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅β€¦"
++
++#: lib/choose_repository.tcl:142
++msgid "Recent Repositories"
++msgstr "Π‘ΠΊΠΎΡ€ΠΎ ΠΏΠΎΠ»Π·Π²Π°Π½ΠΈ"
++
++#: lib/choose_repository.tcl:148
++msgid "Open Recent Repository:"
++msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ΠΏΠΎΠ»Π·Π²Π°Π½ΠΎ Π½Π°ΡΠΊΠΎΡ€ΠΎ:"
++
++#: lib/choose_repository.tcl:316 lib/choose_repository.tcl:323
++#: lib/choose_repository.tcl:330
++#, tcl-format
++msgid "Failed to create repository %s:"
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ β€ž%sβ€œ:"
++
++#: lib/choose_repository.tcl:417
++msgid "Directory:"
++msgstr "ДирСктория:"
++
++#: lib/choose_repository.tcl:447 lib/choose_repository.tcl:573
++#: lib/choose_repository.tcl:1098
++msgid "Git Repository"
++msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π° Git"
++
++#: lib/choose_repository.tcl:472
++#, tcl-format
++msgid "Directory %s already exists."
++msgstr "Π’Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория β€ž%sβ€œ."
++
++#: lib/choose_repository.tcl:476
++#, tcl-format
++msgid "File %s already exists."
++msgstr "Π’Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π° Ρ„Π°ΠΉΠ» β€ž%sβ€œ."
++
++#: lib/choose_repository.tcl:491
++msgid "Clone"
++msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅"
++
++#: lib/choose_repository.tcl:504
++msgid "Source Location:"
++msgstr "АдрСс Π½Π° ΠΈΠ·Ρ‚ΠΎΡ‡Π½ΠΈΠΊΠ°:"
++
++#: lib/choose_repository.tcl:513
++msgid "Target Directory:"
++msgstr "Π¦Π΅Π»Π΅Π²Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория:"
++
++#: lib/choose_repository.tcl:523
++msgid "Clone Type:"
++msgstr "Π’ΠΈΠ΄ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅:"
++
++#: lib/choose_repository.tcl:528
++msgid "Standard (Fast, Semi-Redundant, Hardlinks)"
++msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎ (Π±ΡŠΡ€Π·ΠΎ, Ρ‡Π°ΡΡ‚ΠΈΡ‡Π½ΠΎ ΡΠΏΠΎΠ΄Π΅Π»ΡΠ½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅, Ρ‚Π²ΡŠΡ€Π΄ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ)"
++
++#: lib/choose_repository.tcl:533
++msgid "Full Copy (Slower, Redundant Backup)"
++msgstr "Пълно (Π±Π°Π²Π½ΠΎ, ΠΏΡŠΠ»Π½ΠΎΡ†Π΅Π½Π½ΠΎ Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎ ΠΊΠΎΠΏΠΈΠ΅)"
++
++#: lib/choose_repository.tcl:538
++msgid "Shared (Fastest, Not Recommended, No Backup)"
++msgstr "Π‘ΠΏΠΎΠ΄Π΅Π»Π΅Π½ΠΎ (Π½Π°ΠΉ-Π±ΡŠΡ€Π·ΠΎ, Π½Π΅ ΡΠ΅ ΠΏΡ€Π΅ΠΏΠΎΡ€ΡŠΡ‡Π²Π°, Π½Π΅ ΠΏΡ€Π°Π²ΠΈ Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎ ΠΊΠΎΠΏΠΈΠ΅)"
++
++#: lib/choose_repository.tcl:545
++msgid "Recursively clone submodules too"
++msgstr "РСкурсивно ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ ΠΈ Π½Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»ΠΈΡ‚Π΅"
++
++#: lib/choose_repository.tcl:579 lib/choose_repository.tcl:626
++#: lib/choose_repository.tcl:772 lib/choose_repository.tcl:842
++#: lib/choose_repository.tcl:1104 lib/choose_repository.tcl:1112
++#, tcl-format
++msgid "Not a Git repository: %s"
++msgstr "Π’ΠΎΠ²Π° Π½Π΅ Π΅ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π° Git: %s"
++
++#: lib/choose_repository.tcl:615
++msgid "Standard only available for local repository."
++msgstr "Π‘Π°ΠΌΠΎ Π»ΠΎΠΊΠ°Π»Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Ρ‚ ΡΡ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎ"
++
++#: lib/choose_repository.tcl:619
++msgid "Shared only available for local repository."
++msgstr "Π‘Π°ΠΌΠΎ Π»ΠΎΠΊΠ°Π»Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Ρ‚ ΡΠΏΠΎΠ΄Π΅Π»Π΅Π½ΠΎ"
++
++#: lib/choose_repository.tcl:640
++#, tcl-format
++msgid "Location %s already exists."
++msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅Ρ‚ΠΎ β€ž%sβ€œ Π²Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
++
++#: lib/choose_repository.tcl:651
++msgid "Failed to configure origin"
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠ²Π°Π½Π΅ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ-ΠΈΠ·Ρ‚ΠΎΡ‡Π½ΠΈΠΊ"
++
++#: lib/choose_repository.tcl:663
++msgid "Counting objects"
++msgstr "ΠŸΡ€Π΅Π±Ρ€ΠΎΡΠ²Π°Π½Π΅ Π½Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++
++#: lib/choose_repository.tcl:664
++msgid "buckets"
++msgstr "ΠΊΠ»Π΅Ρ‚ΠΊΠΈ"
++
++#: lib/choose_repository.tcl:688
++#, tcl-format
++msgid "Unable to copy objects/info/alternates: %s"
++msgstr "ΠžΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅/информацията/синонимитС Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΊΠΎΠΏΠΈΡ€Π°Π½ΠΈ: %s"
++
++#: lib/choose_repository.tcl:724
++#, tcl-format
++msgid "Nothing to clone from %s."
++msgstr "Няма ΠΊΠ°ΠΊΠ²ΠΎ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π° ΠΎΡ‚ β€ž%sβ€œ."
++
++#: lib/choose_repository.tcl:726 lib/choose_repository.tcl:940
++#: lib/choose_repository.tcl:952
++msgid "The 'master' branch has not been initialized."
++msgstr "ΠžΡΠ½ΠΎΠ²Π½ΠΈΡΡ‚ ΠΊΠ»ΠΎΠ½ β€” β€žmasterβ€œ Π½Π΅ Π΅ ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½."
++
++#: lib/choose_repository.tcl:739
++msgid "Hardlinks are unavailable.  Falling back to copying."
++msgstr "НС ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Ρ‚ Ρ‚Π²ΡŠΡ€Π΄ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ. ΠŸΡ€Π΅ΠΌΠΈΠ½Π°Π²Π° ΡΠ΅ ΠΊΡŠΠΌ ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅."
++
++#: lib/choose_repository.tcl:751
++#, tcl-format
++msgid "Cloning from %s"
++msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ Π½Π° β€ž%sβ€œ"
++
++#: lib/choose_repository.tcl:782
++msgid "Copying objects"
++msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++
++#: lib/choose_repository.tcl:783
++msgid "KiB"
++msgstr "KiB"
++
++#: lib/choose_repository.tcl:807
++#, tcl-format
++msgid "Unable to copy object: %s"
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΎΠ±Π΅ΠΊΡ‚: %s"
++
++#: lib/choose_repository.tcl:817
++msgid "Linking objects"
++msgstr "БъздаванС Π½Π° Π²Ρ€ΡŠΠ·ΠΊΠΈ ΠΊΡŠΠΌ ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅"
++
++#: lib/choose_repository.tcl:818
++msgid "objects"
++msgstr "ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++
++#: lib/choose_repository.tcl:826
++#, tcl-format
++msgid "Unable to hardlink object: %s"
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅ Π½Π° Ρ‚Π²ΡŠΡ€Π΄Π° Π²Ρ€ΡŠΠ·ΠΊΠ° ΠΊΡŠΠΌ ΠΎΠ±Π΅ΠΊΡ‚: %s"
++
++#: lib/choose_repository.tcl:881
++msgid "Cannot fetch branches and objects.  See console output for details."
++msgstr ""
++"ΠšΠ»ΠΎΠ½ΠΈΡ‚Π΅ ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½ΠΈ. Π—Π° ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация "
++"ΠΏΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ ΠΈΠ·Ρ…ΠΎΠ΄Π° Π½Π° ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°."
++
++#: lib/choose_repository.tcl:892
++msgid "Cannot fetch tags.  See console output for details."
++msgstr ""
++"Π•Ρ‚ΠΈΠΊΠ΅Ρ‚ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½ΠΈ. Π—Π° ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация ΠΏΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ "
++"ΠΈΠ·Ρ…ΠΎΠ΄Π° Π½Π° ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°."
++
++#: lib/choose_repository.tcl:916
++msgid "Cannot determine HEAD.  See console output for details."
++msgstr ""
++"Π’ΡŠΡ€Ρ…ΡŠΡ‚ β€žHEADβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½. Π—Π° ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация ΠΏΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ "
++"ΠΈΠ·Ρ…ΠΎΠ΄Π° Π½Π° ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°."
++
++#: lib/choose_repository.tcl:925
++#, tcl-format
++msgid "Unable to cleanup %s"
++msgstr "β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ Π·Π°Ρ‡ΠΈΡΡ‚ΠΈ"
++
++#: lib/choose_repository.tcl:931
++msgid "Clone failed."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅."
++
++#: lib/choose_repository.tcl:938
++msgid "No default branch obtained."
++msgstr "НС Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ ΠΊΠ»ΠΎΠ½ ΠΏΠΎ ΠΏΠΎΠ΄Ρ€Π°Π·Π±ΠΈΡ€Π°Π½Π΅."
++
++#: lib/choose_repository.tcl:949
++#, tcl-format
++msgid "Cannot resolve %s as a commit."
++msgstr "Няма ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΠΎΡ‚говарящо Π½Π° β€ž%sβ€œ."
++
++#: lib/choose_repository.tcl:961
++msgid "Creating working directory"
++msgstr "БъздаванС Π½Π° Ρ€Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория"
++
++#: lib/choose_repository.tcl:962 lib/index.tcl:70 lib/index.tcl:136
++#: lib/index.tcl:207
++msgid "files"
++msgstr "Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
++
++#: lib/choose_repository.tcl:981
++msgid "Cannot clone submodules."
++msgstr "ΠŸΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Ρ‚."
++
++#: lib/choose_repository.tcl:990
++msgid "Cloning submodules"
++msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»ΠΈ"
++
++#: lib/choose_repository.tcl:1015
++msgid "Initial file checkout failed."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎ ΠΈΠ·Ρ‚СглянС."
++
++#: lib/choose_repository.tcl:1059
++msgid "Open"
++msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅"
++
++#: lib/choose_repository.tcl:1069
++msgid "Repository:"
++msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅:"
++
++#: lib/choose_repository.tcl:1118
++#, tcl-format
++msgid "Failed to open repository %s:"
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΡ‚варянС Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ β€ž%sβ€œ:"
++
++#: lib/choose_rev.tcl:52
++msgid "This Detached Checkout"
++msgstr "Π’ΠΎΠ²Π° Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ΠΎ ΠΈΠ·Ρ‚СглянС"
++
++#: lib/choose_rev.tcl:60
++msgid "Revision Expression:"
++msgstr "Π˜Π·Ρ€Π°Π· Π·Π° Π²Π΅Ρ€ΡΠΈΡ:"
++
++#: lib/choose_rev.tcl:72
++msgid "Local Branch"
++msgstr "Π›ΠΎΠΊΠ°Π»Π΅Π½ ΠΊΠ»ΠΎΠ½"
 +
- #: lib/option.tcl:284
- msgid "Change Font"
- msgstr "Бмяна Π½Π° ΡˆΡ€ΠΈΡ„Ρ‚Π°"
++#: lib/choose_rev.tcl:77
++msgid "Tracking Branch"
++msgstr "БлСдящ ΠΊΠ»ΠΎΠ½"
 +
- #: lib/option.tcl:288
++#: lib/choose_rev.tcl:82 lib/choose_rev.tcl:544
++msgid "Tag"
++msgstr "Π•Ρ‚ΠΈΠΊΠ΅Ρ‚"
 +
- msgid "Choose %s"
- msgstr "Π˜Π·Π±ΠΎΡ€ Π½Π° β€ž%sβ€œ"
++#: lib/choose_rev.tcl:321
 +#, tcl-format
- #: lib/option.tcl:294
- msgid "pt."
- msgstr "Ρ‚Ρ‡ΠΊ."
++msgid "Invalid revision: %s"
++msgstr "НСправилна Π²Π΅Ρ€ΡΠΈΡ: %s"
 +
- #: lib/option.tcl:308
- msgid "Preferences"
- msgstr "Настройки"
++#: lib/choose_rev.tcl:342
++msgid "No revision selected."
++msgstr "НС Π΅ ΠΈΠ·Π±Ρ€Π°Π½Π° Π²Π΅Ρ€ΡΠΈΡ."
 +
- #: lib/option.tcl:345
- msgid "Failed to completely save options:"
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°ΠΏΠ°Π·Π²Π°Π½Π΅ Π½Π° Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈΡ‚Π΅:"
++#: lib/choose_rev.tcl:350
++msgid "Revision expression is empty."
++msgstr "Π˜Π·Ρ€Π°Π·ΡŠΡ‚ Π·Π° Π²Π΅Ρ€ΡΠΈΡ Π΅ ΠΏΡ€Π°Π·Π΅Π½."
 +
- #: lib/encoding.tcl:443
- msgid "Default"
- msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎΡ‚ΠΎ"
++#: lib/choose_rev.tcl:537
++msgid "Updated"
++msgstr "ОбновСн"
 +
- #: lib/encoding.tcl:448
- #, tcl-format
- msgid "System (%s)"
- msgstr "БистСмното (%s)"
++#: lib/choose_rev.tcl:565
++msgid "URL"
++msgstr "АдрСс"
 +
- #: lib/encoding.tcl:459 lib/encoding.tcl:465
- msgid "Other"
- msgstr "Π”Ρ€ΡƒΠ³ΠΎ"
++#: lib/commit.tcl:9
++msgid ""
++"There is nothing to amend.\n"
++"\n"
++"You are about to create the initial commit.  There is no commit before this "
++"to amend.\n"
++msgstr ""
++"Няма ΠΊΠ°ΠΊΠ²ΠΎ Π΄Π° ΡΠ΅ ΠΏΠΎΠΏΡ€Π°Π²ΠΈ.\n"
++"\n"
++"Π©Π΅ ΡΡŠΠ·Π΄Π°Π΄Π΅Ρ‚Π΅ ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅. ΠŸΡ€Π΅Π΄ΠΈ Π½Π΅Π³ΠΎ Π½ΡΠΌΠ° Π΄Ρ€ΡƒΠ³ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ, ΠΊΠΎΠΈΡ‚ΠΎ "
++"Π΄Π° ΠΏΠΎΠΏΡ€Π°Π²ΠΈΡ‚Π΅.\n"
 +
- #: lib/mergetool.tcl:8
- msgid "Force resolution to the base version?"
- msgstr "Π”Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π±Π°Π·ΠΎΠ²Π°Ρ‚Π° Π²Π΅Ρ€ΡΠΈΡ"
++#: lib/commit.tcl:18
++msgid ""
++"Cannot amend while merging.\n"
++"\n"
++"You are currently in the middle of a merge that has not been fully "
++"completed.  You cannot amend the prior commit unless you first abort the "
++"current merge activity.\n"
++msgstr ""
++"По Π²Ρ€Π΅ΠΌΠ΅ Π½Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΠΏΠΎΠΏΡ€Π°Π²ΡΡ‚Π΅.\n"
++"\n"
++"Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Π²ΡΠ΅ ΠΎΡ‰Π΅ Π½Π΅ ΡΡ‚Π΅ Π·Π°Π²ΡŠΡ€ΡˆΠΈΠ»ΠΈ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ ΠΏΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅. ΠΠ΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΠΏΠΎΠΏΡ€Π°Π²ΠΈΡ‚Π΅ "
++"ΠΏΡ€Π΅Π΄ΠΈΡˆΠ½ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΎΡΠ²Π΅Π½ Π°ΠΊΠΎ ΠΏΡŠΡ€Π²ΠΎ Π½Π΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅.\n"
 +
- #: lib/mergetool.tcl:9
- msgid "Force resolution to this branch?"
- msgstr "Π”Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π²Π΅Ρ€ΡΠΈΡΡ‚Π° ΠΎΡ‚ Ρ‚ΠΎΠ·ΠΈ ΠΊΠ»ΠΎΠ½"
++#: lib/commit.tcl:48
++msgid "Error loading commit data for amend:"
++msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ Π·Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π΄Π°Π½Π½ΠΈΡ‚Π΅ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΊΠΎΠΈΡ‚ΠΎ Π΄Π° ΡΠ΅ ΠΏΠΎΠΏΡ€Π°Π²ΡΡ‚:"
 +
- #: lib/mergetool.tcl:10
- msgid "Force resolution to the other branch?"
- msgstr "Π”Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π²Π΅Ρ€ΡΠΈΡΡ‚Π° ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΈΡ ΠΊΠ»ΠΎΠ½"
++#: lib/commit.tcl:75
++msgid "Unable to obtain your identity:"
++msgstr "Π˜Π΄Π΅Π½Ρ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΡΡ‚Π° Π²ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π°:"
 +
- #: lib/mergetool.tcl:14
++#: lib/commit.tcl:80
++msgid "Invalid GIT_COMMITTER_IDENT:"
++msgstr "НСправилно ΠΏΠΎΠ»Π΅ β€žGIT_COMMITTER_IDENTβ€œ:"
 +
- "Note that the diff shows only conflicting changes.\n"
++#: lib/commit.tcl:129
 +#, tcl-format
++msgid "warning: Tcl does not support encoding '%s'."
++msgstr "ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅: Tcl Π½Π΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ° ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ β€ž%sβ€œ."
++
++#: lib/commit.tcl:149
 +msgid ""
- "%s will be overwritten.\n"
++"Last scanned state does not match repository state.\n"
 +"\n"
- "This operation can be undone only by restarting the merge."
++"Another Git program has modified this repository since the last scan.  A "
++"rescan must be performed before another commit can be created.\n"
 +"\n"
- "Π Π°Π·Π»ΠΈΠΊΠ°Ρ‚Π° ΠΏΠΎΠΊΠ°Π·Π²Π° ΡΠ°ΠΌΠΎ Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅ Ρ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚.\n"
++"The rescan will be automatically started now.\n"
 +msgstr ""
- "Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Ρ‰Π΅ Π±ΡŠΠ΄Π΅ ΠΏΡ€Π΅Π·Π°ΠΏΠΈΡΠ°Π½.\n"
++"Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΡΠ»Π΅Π΄Π½Π°Ρ‚Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π΅ ΠΎΡ‚говаря Π½Π° ΡΡŠΡΡ‚ояниСто Π½Π° "
++"Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ.\n"
 +"\n"
- "Π’Π°Π·ΠΈ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½Π° ΡΠ°ΠΌΠΎ Ρ‡Ρ€Π΅Π· Π·Π°ΠΏΠΎΡ‡Π²Π°Π½Π΅ Π½Π° ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ Π½Π°Π½ΠΎΠ²ΠΎ."
++"Някой Π΄Ρ€ΡƒΠ³ ΠΏΡ€ΠΎΡ†Π΅Ρ Π·Π° Git Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΠ» Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ ΠΌΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ "
++"трябва Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ ΠΏΡ€Π΅Π΄ΠΈ Π½ΠΎΠ²ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
 +"\n"
- #: lib/mergetool.tcl:45
++"Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
 +
- msgid "File %s seems to have unresolved conflicts, still stage?"
++#: lib/commit.tcl:173
 +#, tcl-format
- "ИзглСТда, Ρ‡Π΅ Π²ΡΠ΅ ΠΎΡ‰Π΅ ΠΈΠΌΠ° Π½Π΅ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½ΠΈ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ Π²ΡŠΠ² Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ. Π”Π° ΡΠ΅ Π΄ΠΎΠ±Π°Π²ΠΈ "
- "Π»ΠΈ Ρ„Π°ΠΉΠ»ΡŠΡ‚ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°?"
++msgid ""
++"Unmerged files cannot be committed.\n"
++"\n"
++"File %s has merge conflicts.  You must resolve them and stage the file "
++"before committing.\n"
 +msgstr ""
- #: lib/mergetool.tcl:60
++"НСслСтитС Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈ.\n"
++"\n"
++"Π’ΡŠΠ² Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ ΠΈΠΌΠ° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅. Π—Π° Π΄Π° Π³ΠΎ ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅, Ρ‚рябва ΠΏΡŠΡ€Π²ΠΎ Π΄Π° "
++"ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Ρ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ ΠΈ Π΄Π° Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»Π° ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
 +
- msgid "Adding resolution for %s"
- msgstr "ДобавянС Π½Π° ΠΊΠΎΡ€Π΅ΠΊΡ†ΠΈΡ Π½Π° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ Π² β€ž%sβ€œ"
- #: lib/mergetool.tcl:141
- msgid "Cannot resolve deletion or link conflicts using a tool"
++#: lib/commit.tcl:181
 +#, tcl-format
- "ΠšΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ ΠΏΡ€ΠΈ ΡΠΈΠΌΠ²ΠΎΠ»Π½ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ ΠΈΠ»ΠΈ ΠΈΠ·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½ΠΈ Ρ "
- "външна ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°."
- #: lib/mergetool.tcl:146
- msgid "Conflict file does not exist"
- msgstr "Π€Π°ΠΉΠ»ΡŠΡ‚, Π² ΠΊΠΎΠΉΡ‚ΠΎ Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΡŠΡ‚, Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°"
- #: lib/mergetool.tcl:246
- #, tcl-format
- msgid "Not a GUI merge tool: '%s'"
- msgstr "Π’ΠΎΠ²Π° Π½Π΅ Π΅ Π³Ρ€Π°Ρ„ΠΈΡ‡Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅: β€ž%sβ€œ"
- #: lib/mergetool.tcl:275
- #, tcl-format
- msgid "Unsupported merge tool '%s'"
- msgstr "ΠΠ΅ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅: β€ž%sβ€œ"
- #: lib/mergetool.tcl:310
- msgid "Merge tool is already running, terminate it?"
- msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π²Π΅Ρ‡Π΅ Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π°. Π”Π° Π±ΡŠΠ΄Π΅ Π»ΠΈ ΠΈΠ·ΠΊΠ»ΡŽΡ‡Π΅Π½Π°?"
++msgid ""
++"Unknown file state %s detected.\n"
++"\n"
++"File %s cannot be committed by this program.\n"
 +msgstr ""
- #: lib/mergetool.tcl:330
- #, tcl-format
++"НСпознато ΡΡŠΡΡ‚ояниС Π½Π° Ρ„Π°ΠΉΠ» β€ž%sβ€œ.\n"
++"\n"
++"Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠ΄Π°Π΄Π΅Π½ Ρ‡Ρ€Π΅Π· Ρ‚Π΅ΠΊΡƒΡ‰Π°Ρ‚Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°.\n"
 +
- "Error retrieving versions:\n"
- "%s"
++#: lib/commit.tcl:189
 +msgid ""
- "Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ ΠΈΠ·Ρ‚СглянСто Π½Π° Π²Π΅Ρ€ΡΠΈΠΈ:\n"
- "%s"
++"No changes to commit.\n"
++"\n"
++"You must stage at least 1 file before you can commit.\n"
 +msgstr ""
- #: lib/mergetool.tcl:350
- #, tcl-format
++"Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
++"\n"
++"Врябва Π΄Π° Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ ΠΏΠΎΠ½Π΅ Π΅Π΄ΠΈΠ½ Ρ„Π°ΠΉΠ» ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°, Π·Π° Π΄Π° ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅.\n"
 +
- "Could not start the merge tool:\n"
++#: lib/commit.tcl:204
 +msgid ""
- "%s"
++"Please supply a commit message.\n"
 +"\n"
- "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π°:\n"
++"A good commit message has the following format:\n"
++"\n"
++"- First line: Describe in one sentence what you did.\n"
++"- Second line: Blank\n"
++"- Remaining lines: Describe why this change is good.\n"
 +msgstr ""
- "%s"
- #: lib/mergetool.tcl:354
- msgid "Running merge tool..."
- msgstr "Π‘Ρ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅β€¦"
++"Π—Π°Π΄Π°ΠΉΡ‚Π΅ Π΄ΠΎΠ±Ρ€ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
 +"\n"
- #: lib/mergetool.tcl:382 lib/mergetool.tcl:390
- msgid "Merge tool failed."
- msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° Π² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅."
++"Π˜Π·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΡΠ»Π΅Π΄Π½ΠΈΡ Ρ„ΠΎΡ€ΠΌΠ°Ρ‚:\n"
++"\n"
++"● ΠŸΡŠΡ€Π²ΠΈ Ρ€Π΅Π΄: ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ Π² Π΅Π΄Π½ΠΎ ΠΈΠ·Ρ€Π΅Ρ‡Π΅Π½ΠΈΠ΅ Π½Π° ΠΏΡ€ΠΎΠΌΡΠ½Π°Ρ‚Π°.\n"
++"● Π’Ρ‚ΠΎΡ€ΠΈ Ρ€Π΅Π΄: ΠΏΡ€Π°Π·Π΅Π½.\n"
++"● ΠžΡΡ‚Π°Π½Π°Π»ΠΈΡ‚Π΅ Ρ€Π΅Π΄ΠΎΠ²Π΅: ΠΎΠΏΠΈΡˆΠ΅Ρ‚Π΅ Π·Π°Ρ‰ΠΎ ΡΠ΅ Π½Π°Π»Π°Π³Π° Ρ‚Π°Π·ΠΈ ΠΏΡ€ΠΎΠΌΡΠ½Π°.\n"
 +
- #: lib/tools_dlg.tcl:22
- msgid "Add Tool"
- msgstr "ДобавянС Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
++#: lib/commit.tcl:235
++msgid "Calling pre-commit hook..."
++msgstr "ИзпълняванС Π½Π° ΠΊΡƒΠΊΠ°Ρ‚Π° ΠΏΡ€Π΅Π΄ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅β€¦"
 +
- #: lib/tools_dlg.tcl:28
- msgid "Add New Tool Command"
- msgstr "ДобавянС Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
++#: lib/commit.tcl:250
++msgid "Commit declined by pre-commit hook."
++msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π΅ ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½ΠΎ ΠΎΡ‚ ΠΊΡƒΠΊΠ°Ρ‚Π° ΠΏΡ€Π΅Π΄ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
 +
- #: lib/tools_dlg.tcl:34
- msgid "Add globally"
- msgstr "Π“Π»ΠΎΠ±Π°Π»Π½ΠΎ Π΄ΠΎΠ±Π°Π²ΡΠ½Π΅"
++#: lib/commit.tcl:269
++msgid ""
++"You are about to commit on a detached head. This is a potentially dangerous "
++"thing to do because if you switch to another branch you will lose your "
++"changes and it can be difficult to retrieve them later from the reflog. You "
++"should probably cancel this commit and create a new branch to continue.\n"
++" \n"
++" Do you really want to proceed with your Commit?"
++msgstr ""
++"Π©Π΅ ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅ ΠΊΡŠΠΌ Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½, ΠΎΡ‚дСлѐн ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π» β€žHEADβ€œ. Π’ΠΎΠ²Π° Π΅ ΠΎΠΏΠ°ΡΠ½ΠΎ, Π·Π°Ρ‰ΠΎΡ‚ΠΎ "
++"ΠΏΡ€ΠΈ ΠΏΡ€Π΅ΠΌΠΈΠ½Π°Π²Π°Π½Π΅Ρ‚ΠΎ ΠΊΡŠΠΌ ΠΊΠ»ΠΎΠ½ Ρ‰Π΅ Π·Π°Π³ΡƒΠ±ΠΈΡ‚Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΡΠΈ, ΠΊΠ°Ρ‚ΠΎ Π΅Π΄ΠΈΠ½ΡΡ‚вСният Π½Π°Ρ‡ΠΈΠ½ "
++"Π΄Π° Π³ΠΈ Π²ΡŠΡ€Π½Π΅Ρ‚Π΅ Ρ‰Π΅ Π΅ Ρ‡Ρ€Π΅Π· ΠΆΡƒΡ€Π½Π°Π»Π° Π½Π° ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π»ΠΈΡ‚Π΅ (reflog). ΠΠ°ΠΉ-вСроятно Ρ‚рябва "
++"Π΄Π° Π½Π΅ ΠΏΡ€Π°Π²ΠΈΡ‚Π΅ Ρ‚ΠΎΠ²Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, Π° Π΄Π° ΡΡŠΠ·Π΄Π°Π΄Π΅Ρ‚Π΅ Π½ΠΎΠ² ΠΊΠ»ΠΎΠ½, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° ΠΏΡ€ΠΎΠ΄ΡŠΠ»ΠΆΠΈΡ‚Π΅.\n"
++" \n"
++"Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΈΠ·Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅?"
 +
- #: lib/tools_dlg.tcl:46
- msgid "Tool Details"
- msgstr "ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ Π·Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π°"
++#: lib/commit.tcl:290
++msgid "Calling commit-msg hook..."
++msgstr "ИзпълняванС Π½Π° ΠΊΡƒΠΊΠ°Ρ‚Π° Π·Π° ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅β€¦"
 +
- #: lib/tools_dlg.tcl:49
- msgid "Use '/' separators to create a submenu tree:"
- msgstr "Π—Π° ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄ΠΌΠ΅Π½ΡŽΡ‚Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ Π·Π½Π°ΠΊΠ° β€ž/β€œ Π·Π° Ρ€Π°Π·Π΄Π΅Π»ΠΈΡ‚Π΅Π»:"
++#: lib/commit.tcl:305
++msgid "Commit declined by commit-msg hook."
++msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π΅ ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½ΠΎ ΠΎΡ‚ ΠΊΡƒΠΊΠ°Ρ‚Π° Π·Π° ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
 +
- #: lib/tools_dlg.tcl:60
- msgid "Command:"
- msgstr "Команда:"
++#: lib/commit.tcl:318
++msgid "Committing changes..."
++msgstr "ПодаванС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚С…"
 +
- #: lib/tools_dlg.tcl:71
- msgid "Show a dialog before running"
- msgstr "ΠŸΡ€Π΅Π΄ΠΈ ΠΈΠ·ΠΏΡŠΠ»Π½Π΅Π½ΠΈΠ΅ Π΄Π° ΡΠ΅ ΠΈΠ·Π²Π΅ΠΆΠ΄Π° Π΄ΠΈΠ°Π»ΠΎΠ³ΠΎΠ² ΠΏΡ€ΠΎΠ·ΠΎΡ€Π΅Ρ†"
++#: lib/commit.tcl:334
++msgid "write-tree failed:"
++msgstr "Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°ΠΏΠ°Π·Π²Π°Π½Π΅ Π½Π° Π΄ΡŠΡ€Π²ΠΎΡ‚ΠΎ (write-tree):"
 +
- #: lib/tools_dlg.tcl:77
- msgid "Ask the user to select a revision (sets $REVISION)"
- msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΡ‚ Π΄Π° ΡƒΠΊΠ°ΠΆΠ΅ Π²Π΅Ρ€ΡΠΈΡ (Π·Π°Π΄Π°Π²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° $REVISION)"
++#: lib/commit.tcl:335 lib/commit.tcl:382 lib/commit.tcl:403
++msgid "Commit failed."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
 +
- #: lib/tools_dlg.tcl:82
- msgid "Ask the user for additional arguments (sets $ARGS)"
++#: lib/commit.tcl:352
++#, tcl-format
++msgid "Commit %s appears to be corrupt"
++msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ β€ž%sβ€œ ΠΈΠ·Π³Π»Π΅ΠΆΠ΄Π° ΠΏΠΎΠ²Ρ€Π΅Π΄Π΅Π½ΠΎ"
 +
- "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΡ‚ Π΄Π° ΡƒΠΊΠ°ΠΆΠ΅ Π΄ΠΎΠΏΡŠΠ»Π½ΠΈΡ‚Π΅Π»Π½ΠΈ Π°Ρ€Π³ΡƒΠΌΠ΅Π½Ρ‚ΠΈ (Π·Π°Π΄Π°Π²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° $ARGS)"
++#: lib/commit.tcl:357
++msgid ""
++"No changes to commit.\n"
++"\n"
++"No files were modified by this commit and it was not a merge commit.\n"
++"\n"
++"A rescan will be automatically started now.\n"
 +msgstr ""
- #: lib/tools_dlg.tcl:89
- msgid "Don't show the command output window"
- msgstr "Π‘Π΅Π· ΠΏΠΎΠΊΠ°Π·Π²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠ·ΠΎΡ€Π΅Ρ† Ρ ΠΈΠ·Ρ…ΠΎΠ΄Π° ΠΎΡ‚ ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π°"
++"Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
++"\n"
++"Π’ Ρ‚ΠΎΠ²Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ Π½Π΅ ΡΠ° ΠΏΡ€ΠΎΠΌΠ΅Π½ΡΠ½ΠΈ Π½ΠΈΠΊΠ°ΠΊΠ²ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅, Π° ΠΈ Π½Π΅ Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΡΡŠΡ "
++"сливанС.\n"
++"\n"
++"Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
 +
- #: lib/tools_dlg.tcl:94
- msgid "Run only if a diff is selected ($FILENAME not empty)"
- msgstr ""
- "Π‘Ρ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π΅ ΡΠ°ΠΌΠΎ ΡΠ»Π΅Π΄ ΠΈΠ·Π±ΠΎΡ€ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠ° (ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° $FILENAME Π½Π΅ Π΅ ΠΏΡ€Π°Π·Π½Π°)"
++#: lib/commit.tcl:364
++msgid "No changes to commit."
++msgstr "Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
 +
- #: lib/tools_dlg.tcl:118
- msgid "Please supply a name for the tool."
- msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ ΠΈΠΌΠ΅ Π·Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π°."
++#: lib/commit.tcl:381
++msgid "commit-tree failed:"
++msgstr "Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ Π½Π° Π΄ΡŠΡ€Π²ΠΎΡ‚ΠΎ (commit-tree):"
 +
- #: lib/tools_dlg.tcl:126
++#: lib/commit.tcl:402
++msgid "update-ref failed:"
++msgstr "Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π»ΠΈΡ‚Π΅ (update-ref):"
 +
- msgid "Tool '%s' already exists."
- msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° β€ž%sβ€œ Π²Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
++#: lib/commit.tcl:495
 +#, tcl-format
- #: lib/tools_dlg.tcl:148
- #, tcl-format
- msgid ""
- "Could not add tool:\n"
- "%s"
- msgstr ""
- "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π΄ΠΎΠ±Π°Π²Π΅Π½Π°:\n"
- "%s"
++msgid "Created commit %s: %s"
++msgstr "УспСшно ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ %s: %s"
 +
- #: lib/tools_dlg.tcl:187
- msgid "Remove Tool"
- msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
++#: lib/console.tcl:59
++msgid "Working... please wait..."
++msgstr "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΡΠ΅ ΠΈΠ·Π²ΡŠΡ€ΡˆΠ²Π° Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅, ΠΈΠ·Ρ‡Π°ΠΊΠ°ΠΉΡ‚С…"
 +
- #: lib/tools_dlg.tcl:193
- msgid "Remove Tool Commands"
- msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ"
++#: lib/console.tcl:186
++msgid "Success"
++msgstr "УспСх"
 +
- #: lib/tools_dlg.tcl:198
- msgid "Remove"
- msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅"
++#: lib/console.tcl:200
++msgid "Error: Command Failed"
++msgstr "Π“Ρ€Π΅ΡˆΠΊΠ°: Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΈΠ·ΠΏΡŠΠ»Π½Π΅Π½ΠΈΠ΅ Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
 +
- #: lib/tools_dlg.tcl:231
- msgid "(Blue denotes repository-local tools)"
- msgstr "(ΠΊΠΎΠΌΠ°Π½Π΄ΠΈΡ‚Π΅ ΠΊΡŠΠΌ Π»ΠΎΠΊΠ°Π»Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ΡΠ° ΠΎΠ±ΠΎΠ·Π½Π°Ρ‡Π΅Π½ΠΈ Π² ΡΠΈΠ½ΡŒΠΎ)"
++#: lib/database.tcl:42
++msgid "Number of loose objects"
++msgstr "Π‘Ρ€ΠΎΠΉ Π½Π΅ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
 +
- #: lib/tools_dlg.tcl:292
- #, tcl-format
- msgid "Run Command: %s"
- msgstr "ИзпълнСниС Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° β€ž%sβ€œ"
++#: lib/database.tcl:43
++msgid "Disk space used by loose objects"
++msgstr "Дисково ΠΏΡ€ΠΎΡΡ‚ранство Π·Π°Π΅Ρ‚ΠΎ ΠΎΡ‚ Π½Π΅ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
 +
- #: lib/tools_dlg.tcl:306
- msgid "Arguments"
- msgstr "АргумСнти"
++#: lib/database.tcl:44
++msgid "Number of packed objects"
++msgstr "Π‘Ρ€ΠΎΠΉ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
 +
- #: lib/tools_dlg.tcl:336 lib/checkout_op.tcl:567 lib/merge.tcl:166
- msgid "Visualize"
- msgstr "Визуализация"
++#: lib/database.tcl:45
++msgid "Number of packs"
++msgstr "Π‘Ρ€ΠΎΠΉ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈ"
 +
- #: lib/tools_dlg.tcl:341
- msgid "OK"
- msgstr "Π”ΠΎΠ±Ρ€Π΅"
++#: lib/database.tcl:46
++msgid "Disk space used by packed objects"
++msgstr "Дисково ΠΏΡ€ΠΎΡΡ‚ранство Π·Π°Π΅Ρ‚ΠΎ ΠΎΡ‚ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
 +
- #: lib/search.tcl:48
- msgid "Find:"
- msgstr "Π’ΡŠΡ€ΡΠ΅Π½Π΅:"
++#: lib/database.tcl:47
++msgid "Packed objects waiting for pruning"
++msgstr "ΠŸΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ Π·Π° ΠΎΠΊΠ°ΡΡ‚рянС"
 +
- #: lib/search.tcl:50
- msgid "Next"
- msgstr "Π‘Π»Π΅Π΄Π²Π°Ρ‰Π° ΠΏΠΎΡΠ²Π°"
++#: lib/database.tcl:48
++msgid "Garbage files"
++msgstr "Π€Π°ΠΉΠ»ΠΎΠ²Π΅ Π·Π° Π±ΠΎΠΊΠ»ΡƒΠΊΠ°"
 +
- #: lib/search.tcl:51
- msgid "Prev"
- msgstr "ΠŸΡ€Π΅Π΄ΠΈΡˆΠ½Π° ΠΏΠΎΡΠ²Π°"
++#: lib/database.tcl:57 lib/option.tcl:182 lib/option.tcl:197 lib/option.tcl:220
++#: lib/option.tcl:282
++#, tcl-format
++msgid "%s:"
++msgstr "%s:"
 +
- #: lib/search.tcl:52
- msgid "RegExp"
- msgstr "Π Π΅Π³. ΠΈΠ·Ρ€Π°Π·"
++#: lib/database.tcl:66
++#, tcl-format
++msgid "%s (%s): Database Statistics"
++msgstr "%s (%s): Π‘татистика Π½Π° Π±Π°Π·Π°Ρ‚Π° ΠΎΡ‚ Π΄Π°Π½Π½ΠΈ"
 +
- #: lib/search.tcl:54
- msgid "Case"
- msgstr "Π Π΅Π³ΠΈΡΡ‚ΡŠΡ€"
++#: lib/database.tcl:72
++msgid "Compressing the object database"
++msgstr "ΠšΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Π½Π΅ Π½Π° Π±Π°Π·Π°Ρ‚Π° Ρ Π΄Π°Π½Π½ΠΈ Π·Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅"
 +
- #: lib/shortcut.tcl:21 lib/shortcut.tcl:62
- msgid "Cannot write shortcut:"
- msgstr "ΠšΠ»Π°Π²ΠΈΡˆΠ½Π°Ρ‚Π° ΠΊΠΎΠΌΠ±ΠΈΠ½Π°Ρ†ΠΈΡ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π·Π°ΠΏΠ°Π·Π΅Π½Π°:"
++#: lib/database.tcl:83
++msgid "Verifying the object database with fsck-objects"
++msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° Π±Π°Π·Π°Ρ‚Π° Ρ Π΄Π°Π½Π½ΠΈ Π·Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅ Ρ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€žfsck-objectsβ€œ"
 +
- #: lib/shortcut.tcl:137
- msgid "Cannot write icon:"
- msgstr "Π˜ΠΊΠΎΠ½Π°Ρ‚Π° Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π·Π°ΠΏΠ°Π·Π΅Π½Π°:"
++#: lib/database.tcl:107
++#, tcl-format
++msgid ""
++"This repository currently has approximately %i loose objects.\n"
++"\n"
++"To maintain optimal performance it is strongly recommended that you compress "
++"the database.\n"
++"\n"
++"Compress the database now?"
++msgstr ""
++"Π’ Ρ‚ΠΎΠ²Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΈΠΌΠ° ΠΊΡŠΠΌ %i Π½Π΅ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ.\n"
++"\n"
++"Π—Π° Π΄ΠΎΠ±Ρ€Π° ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Слност ΡΠ΅ ΠΏΡ€Π΅ΠΏΠΎΡ€ΡŠΡ‡Π²Π° Π΄Π° ΠΊΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Ρ‚Π΅ Π±Π°Π·Π°Ρ‚Π° Ρ Π΄Π°Π½Π½ΠΈ Π·Π° "
++"ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅.\n"
++"\n"
++"Π”Π° ΡΠ΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π»ΠΈ ΠΊΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ?"
 +
- #: lib/diff.tcl:140
++#: lib/date.tcl:25
++#, tcl-format
++msgid "Invalid date from Git: %s"
++msgstr "НСправилни Π΄Π°Π½Π½ΠΈ ΠΎΡ‚ Git: %s"
 +
 +#: lib/diff.tcl:77
 +#, tcl-format
 +msgid ""
 +"No differences detected.\n"
 +"\n"
 +"%s has no changes.\n"
 +"\n"
 +"The modification date of this file was updated by another application, but "
 +"the content within the file was not changed.\n"
 +"\n"
 +"A rescan will be automatically started to find other files which may have "
 +"the same state."
 +msgstr ""
 +"НС ΡΠ° ΠΎΡ‚ΠΊΡ€ΠΈΡ‚ΠΈ Ρ€Π°Π·Π»ΠΈΠΊΠΈ.\n"
 +"\n"
 +"Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π² β€ž%sβ€œ.\n"
 +"\n"
 +"Π’Ρ€Π΅ΠΌΠ΅Ρ‚ΠΎ Π½Π° ΠΏΡ€ΠΎΠΌΡΠ½Π° Π½Π° Ρ„Π°ΠΉΠ»Π° Π΅ Π±ΠΈΠ» Π·Π°Π΄Π°Π΄Π΅Π½ ΠΎΡ‚ Π΄Ρ€ΡƒΠ³Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°, Π½ΠΎ ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅Ρ‚ΠΎ "
 +"ΠΌΡƒ Π½Π΅ Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½ΠΎ.\n"
 +"\n"
 +"Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π΄Π°Π»ΠΈ Π½ΡΠΌΠ° Π΄Ρ€ΡƒΠ³ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π² Ρ‚ΠΎΠ²Π° "
 +"ΡΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅."
 +
 +#: lib/diff.tcl:117
 +#, tcl-format
 +msgid "Loading diff of %s..."
 +msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅ Π² β€ž%sβ€œβ€¦"
 +
- #: lib/diff.tcl:145
++#: lib/diff.tcl:143
 +msgid ""
 +"LOCAL: deleted\n"
 +"REMOTE:\n"
 +msgstr ""
 +"Π›ΠžΠšΠΠ›ΠΠž: ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚\n"
 +"ΠžΠ’Π”ΠΠ›Π•Π§Π•ΠΠž:\n"
 +
- #: lib/diff.tcl:152
++#: lib/diff.tcl:148
 +msgid ""
 +"REMOTE: deleted\n"
 +"LOCAL:\n"
 +msgstr ""
 +"ΠžΠ’Π”ΠΠ›Π•Π§Π•ΠΠž: ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚\n"
 +"Π›ΠžΠšΠΠ›ΠΠž:\n"
 +
- #: lib/diff.tcl:155
++#: lib/diff.tcl:155
 +msgid "LOCAL:\n"
 +msgstr "Π›ΠžΠšΠΠ›ΠΠž:\n"
 +
- #: lib/diff.tcl:217 lib/diff.tcl:355
++#: lib/diff.tcl:158
 +msgid "REMOTE:\n"
 +msgstr "ΠžΠ’Π”ΠΠ›Π•Π§Π•ΠΠž:\n"
 +
- #: lib/diff.tcl:218
++#: lib/diff.tcl:220 lib/diff.tcl:357
 +#, tcl-format
 +msgid "Unable to display %s"
 +msgstr "Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠΊΠ°Π·Π°Π½"
 +
- #: lib/diff.tcl:225
++#: lib/diff.tcl:221
 +msgid "Error loading file:"
 +msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ Π·Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»:"
 +
- #: lib/diff.tcl:237
++#: lib/diff.tcl:227
 +msgid "Git Repository (subproject)"
 +msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π° Git (ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»)"
 +
- #: lib/diff.tcl:242
++#: lib/diff.tcl:239
 +msgid "* Binary file (not showing content)."
 +msgstr "● Π”Π²ΠΎΠΈΡ‡Π΅Π½ Ρ„Π°ΠΉΠ» (ΡΡŠΠ΄ΡŠΡ€ΠΆΠ°Π½ΠΈΠ΅Ρ‚ΠΎ Π½Π΅ ΡΠ΅ ΠΏΠΎΠΊΠ°Π·Π²Π°)."
 +
- #: lib/diff.tcl:248
- #, tcl-format
- msgid ""
- "\n"
- "* Untracked file clipped here by %s.\n"
- "* To see the entire file, use an external editor.\n"
- msgstr ""
- "\n"
- "● ΠΠ΅ΡΠ»Π΅Π΄Π΅Π½ΠΈΡΡ‚ Ρ„Π°ΠΉΠ» Π΅ ΠΎΡ‚рязан Π΄ΠΎΡ‚ΡƒΠΊ ΠΎΡ‚ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€ž%sβ€œ.\n"
- "● Π˜Π·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ Π²ΡŠΠ½ΡˆΠ΅Π½ Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€, Π·Π° Π΄Π° Π²ΠΈΠ΄ΠΈΡ‚Π΅ Ρ†Π΅Π»ΠΈΡ Ρ„Π°ΠΉΠ».\n"
- #: lib/diff.tcl:356 lib/blame.tcl:1128
- msgid "Error loading diff:"
- msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ Π·Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠ°:"
- #: lib/diff.tcl:578
- msgid "Failed to unstage selected hunk."
- msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΎΡ‚ΠΎ ΠΏΠ°Ρ€Ρ‡Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ·Π²Π°Π΄Π΅Π½ΠΎ ΠΎΡ‚ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
- #: lib/diff.tcl:585
- msgid "Failed to stage selected hunk."
- msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΎΡ‚ΠΎ ΠΏΠ°Ρ€Ρ‡Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π΄ΠΎΠ±Π°Π²Π΅Π½ΠΎ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
- #: lib/diff.tcl:664
- msgid "Failed to unstage selected line."
- msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΈΡΡ‚ Ρ€Π΅Π΄ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ·Π²Π°Π΄Π΅Π½ ΠΎΡ‚ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
- #: lib/diff.tcl:672
- msgid "Failed to stage selected line."
- msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΈΡΡ‚ Ρ€Π΅Π΄ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π΄ΠΎΠ±Π°Π²Π΅Π½ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
- #: lib/remote_branch_delete.tcl:29 lib/remote_branch_delete.tcl:34
- msgid "Delete Branch Remotely"
- msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΎΡ‚далСчСния ΠΊΠ»ΠΎΠ½"
- #: lib/remote_branch_delete.tcl:48
- msgid "From Repository"
- msgstr "ΠžΡ‚ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
- #: lib/remote_branch_delete.tcl:88
- msgid "Branches"
- msgstr "Клони"
- #: lib/remote_branch_delete.tcl:110
- msgid "Delete Only If"
- msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅, ΡΠ°ΠΌΠΎ Π°ΠΊΠΎ"
- #: lib/remote_branch_delete.tcl:112
- msgid "Merged Into:"
- msgstr "Блят Π²:"
- #: lib/remote_branch_delete.tcl:120 lib/branch_delete.tcl:53
- msgid "Always (Do not perform merge checks)"
- msgstr "Π’ΠΈΠ½Π°Π³ΠΈ (Π±Π΅Π· ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅)"
- #: lib/remote_branch_delete.tcl:153
- msgid "A branch is required for 'Merged Into'."
- msgstr "Π—Π° Π΄Π°Π½Π½ΠΈΡ‚Π΅ β€žΠ‘лят Π²β€œ Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ Π΄Π° Π·Π°Π΄Π°Π΄Π΅Ρ‚Π΅ ΠΊΠ»ΠΎΠ½."
- #: lib/remote_branch_delete.tcl:185
- #, tcl-format
- msgid ""
- "The following branches are not completely merged into %s:\n"
- "\n"
- " - %s"
- msgstr ""
- "Π‘Π»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ Π½Π΅ ΡΠ° ΡΠ»Π΅Ρ‚ΠΈ Π½Π°ΠΏΡŠΠ»Π½ΠΎ Π² β€ž%sβ€œ:\n"
- "\n"
- " β— %s"
- #: lib/remote_branch_delete.tcl:190
++#: lib/diff.tcl:244
 +#, tcl-format
 +msgid ""
 +"* Untracked file is %d bytes.\n"
 +"* Showing only first %d bytes.\n"
 +msgstr ""
 +"● ΠΠ΅ΡΠ»Π΅Π΄Π΅Π½ΠΈΡΡ‚ Ρ„Π°ΠΉΠ» Π΅ %d Π±Π°ΠΉΡ‚Π°.\n"
 +"● ΠŸΠΎΠΊΠ°Π·Π²Π°Ρ‚ ΡΠ΅ ΡΠ°ΠΌΠΎ ΠΏΡŠΡ€Π²ΠΈΡ‚Π΅ %d Π±Π°ΠΉΡ‚Π°.\n"
 +
- "One or more of the merge tests failed because you have not fetched the "
- "necessary commits.  Try fetching from %s first."
- msgstr ""
- "ПонС Π΅Π΄Π½Π° ΠΎΡ‚ ΠΏΡ€ΠΎΠ±ΠΈΡ‚Π΅ Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π΅ Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½Π°, Π·Π°Ρ‰ΠΎΡ‚ΠΎ Π½Π΅ ΡΡ‚Π΅ Π΄ΠΎΡΡ‚Π°Π²ΠΈΠ»ΠΈ Π²ΡΠΈΡ‡ΠΊΠΈ "
- "Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ. ΠŸΡ€ΠΎΠ±Π²Π°ΠΉΡ‚Π΅ ΠΏΡŠΡ€Π²ΠΎ Π΄Π° Π΄ΠΎΡΡ‚Π°Π²ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡΡ‚Π° ΠΎΡ‚ β€ž%sβ€œ."
- #: lib/remote_branch_delete.tcl:208
- msgid "Please select one or more branches to delete."
- msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΏΠΎΠ½Π΅ Π΅Π΄ΠΈΠ½ ΠΊΠ»ΠΎΠ½ Π·Π° ΠΈΠ·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅."
- #: lib/remote_branch_delete.tcl:218 lib/branch_delete.tcl:115
- msgid ""
- "Recovering deleted branches is difficult.\n"
- "\n"
- "Delete the selected branches?"
- msgstr ""
- "Π’ΡŠΠ·ΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅Ρ‚ΠΎ Π½Π° ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈ ΠΊΠ»ΠΎΠ½ΠΈ ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ.\n"
++#: lib/diff.tcl:250
 +#, tcl-format
 +msgid ""
- "Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° Ρ‚Ρ€ΠΈΠ΅Ρ‚Π΅?"
- #: lib/remote_branch_delete.tcl:227
- #, tcl-format
- msgid "Deleting branches from %s"
- msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½ΠΈ ΠΎΡ‚ β€ž%sβ€œ"
- #: lib/remote_branch_delete.tcl:300
- msgid "No repository selected."
- msgstr "НС Π΅ ΠΈΠ·Π±Ρ€Π°Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅."
- #: lib/remote_branch_delete.tcl:305
- #, tcl-format
- msgid "Scanning %s..."
- msgstr "ΠŸΡ€Π΅Ρ‚ΡŠΡ€ΡΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œβ€¦"
- #: lib/choose_repository.tcl:33
- msgid "Git Gui"
- msgstr "Π“ΠŸΠ˜ Π½Π° Git"
- #: lib/choose_repository.tcl:92 lib/choose_repository.tcl:412
- msgid "Create New Repository"
- msgstr "БъздаванС Π½Π° Π½ΠΎΠ²ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
- #: lib/choose_repository.tcl:98
- msgid "New..."
- msgstr "Ново…"
- #: lib/choose_repository.tcl:105 lib/choose_repository.tcl:496
- msgid "Clone Existing Repository"
- msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +"\n"
- #: lib/choose_repository.tcl:116
- msgid "Clone..."
- msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅β€¦"
++"* Untracked file clipped here by %s.\n"
++"* To see the entire file, use an external editor.\n"
++msgstr ""
++"\n"
++"● ΠΠ΅ΡΠ»Π΅Π΄Π΅Π½ΠΈΡΡ‚ Ρ„Π°ΠΉΠ» Π΅ ΠΎΡ‚рязан Π΄ΠΎΡ‚ΡƒΠΊ ΠΎΡ‚ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€ž%sβ€œ.\n"
++"● Π˜Π·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ Π²ΡŠΠ½ΡˆΠ΅Π½ Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€, Π·Π° Π΄Π° Π²ΠΈΠ΄ΠΈΡ‚Π΅ Ρ†Π΅Π»ΠΈΡ Ρ„Π°ΠΉΠ».\n"
 +
- #: lib/choose_repository.tcl:123 lib/choose_repository.tcl:1064
- msgid "Open Existing Repository"
- msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅ Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
++#: lib/diff.tcl:580
++msgid "Failed to unstage selected hunk."
++msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΎΡ‚ΠΎ ΠΏΠ°Ρ€Ρ‡Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ·Π²Π°Π΄Π΅Π½ΠΎ ΠΎΡ‚ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
 +
- #: lib/choose_repository.tcl:129
- msgid "Open..."
- msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅β€¦"
++#: lib/diff.tcl:587
++msgid "Failed to stage selected hunk."
++msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΎΡ‚ΠΎ ΠΏΠ°Ρ€Ρ‡Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π΄ΠΎΠ±Π°Π²Π΅Π½ΠΎ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
 +
- #: lib/choose_repository.tcl:142
- msgid "Recent Repositories"
- msgstr "Π‘ΠΊΠΎΡ€ΠΎ ΠΏΠΎΠ»Π·Π²Π°Π½ΠΈ"
++#: lib/diff.tcl:666
++msgid "Failed to unstage selected line."
++msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΈΡΡ‚ Ρ€Π΅Π΄ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ·Π²Π°Π΄Π΅Π½ ΠΎΡ‚ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
 +
- #: lib/choose_repository.tcl:148
- msgid "Open Recent Repository:"
- msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ΠΏΠΎΠ»Π·Π²Π°Π½ΠΎ Π½Π°ΡΠΊΠΎΡ€ΠΎ:"
++#: lib/diff.tcl:674
++msgid "Failed to stage selected line."
++msgstr "Π˜Π·Π±Ρ€Π°Π½ΠΈΡΡ‚ Ρ€Π΅Π΄ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π΄ΠΎΠ±Π°Π²Π΅Π½ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°."
 +
- #: lib/choose_repository.tcl:316 lib/choose_repository.tcl:323
- #: lib/choose_repository.tcl:330
++#: lib/encoding.tcl:443
++msgid "Default"
++msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎΡ‚ΠΎ"
 +
- msgid "Failed to create repository %s:"
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ β€ž%sβ€œ:"
- #: lib/choose_repository.tcl:407 lib/branch_create.tcl:33
- msgid "Create"
- msgstr "БъздаванС"
++#: lib/encoding.tcl:448
 +#, tcl-format
- #: lib/choose_repository.tcl:417
- msgid "Directory:"
- msgstr "ДирСктория:"
++msgid "System (%s)"
++msgstr "БистСмното (%s)"
 +
- #: lib/choose_repository.tcl:447 lib/choose_repository.tcl:573
- #: lib/choose_repository.tcl:1098
- msgid "Git Repository"
- msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π° Git"
++#: lib/encoding.tcl:459 lib/encoding.tcl:465
++msgid "Other"
++msgstr "Π”Ρ€ΡƒΠ³ΠΎ"
 +
- #: lib/choose_repository.tcl:472
++#: lib/error.tcl:20
++#, tcl-format
++msgid "%s: error"
++msgstr "%s: Π³Ρ€Π΅ΡˆΠΊΠ°"
 +
- msgid "Directory %s already exists."
- msgstr "Π’Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория β€ž%sβ€œ."
++#: lib/error.tcl:36
 +#, tcl-format
- #: lib/choose_repository.tcl:476
++msgid "%s: warning"
++msgstr "%s: ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅"
 +
- msgid "File %s already exists."
- msgstr "Π’Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π° Ρ„Π°ΠΉΠ» β€ž%sβ€œ."
++#: lib/error.tcl:80
 +#, tcl-format
- #: lib/choose_repository.tcl:491
- msgid "Clone"
- msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅"
++msgid "%s hook failed:"
++msgstr "%s: Π³Ρ€Π΅ΡˆΠΊΠ° ΠΎΡ‚ ΠΊΡƒΠΊΠ°Ρ‚Π°"
 +
- #: lib/choose_repository.tcl:504
- msgid "Source Location:"
- msgstr "АдрСс Π½Π° ΠΈΠ·Ρ‚ΠΎΡ‡Π½ΠΈΠΊΠ°:"
++#: lib/error.tcl:96
++msgid "You must correct the above errors before committing."
++msgstr "ΠŸΡ€Π΅Π΄ΠΈ Π΄Π° ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅, ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°ΠΉΡ‚Π΅ Π³ΠΎΡ€Π½ΠΈΡ‚Π΅ Π³Ρ€Π΅ΡˆΠΊΠΈ."
 +
- #: lib/choose_repository.tcl:513
- msgid "Target Directory:"
- msgstr "Π¦Π΅Π»Π΅Π²Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория:"
++#: lib/error.tcl:116
++#, tcl-format
++msgid "%s (%s): error"
++msgstr "%s (%s): Π³Ρ€Π΅ΡˆΠΊΠ°"
 +
- #: lib/choose_repository.tcl:523
- msgid "Clone Type:"
- msgstr "Π’ΠΈΠ΄ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅:"
++#: lib/index.tcl:6
++msgid "Unable to unlock the index."
++msgstr "Π˜Π½Π΄Π΅ΠΊΡΡŠΡ‚ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½."
 +
- #: lib/choose_repository.tcl:528
- msgid "Standard (Fast, Semi-Redundant, Hardlinks)"
- msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎ (Π±ΡŠΡ€Π·ΠΎ, Ρ‡Π°ΡΡ‚ΠΈΡ‡Π½ΠΎ ΡΠΏΠΎΠ΄Π΅Π»ΡΠ½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅, Ρ‚Π²ΡŠΡ€Π΄ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ)"
++#: lib/index.tcl:17
++msgid "Index Error"
++msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- #: lib/choose_repository.tcl:533
- msgid "Full Copy (Slower, Redundant Backup)"
- msgstr "Пълно (Π±Π°Π²Π½ΠΎ, ΠΏΡŠΠ»Π½ΠΎΡ†Π΅Π½Π½ΠΎ Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎ ΠΊΠΎΠΏΠΈΠ΅)"
++#: lib/index.tcl:19
++msgid ""
++"Updating the Git index failed.  A rescan will be automatically started to "
++"resynchronize git-gui."
++msgstr ""
++"ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π½Π° Git. ΠΠ²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° "
++"Π·Π° ΡΠΈΠ½Ρ…Ρ€ΠΎΠ½ΠΈΠ·ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ Π½Π° git-gui."
 +
- #: lib/choose_repository.tcl:538
- msgid "Shared (Fastest, Not Recommended, No Backup)"
- msgstr "Π‘ΠΏΠΎΠ΄Π΅Π»Π΅Π½ΠΎ (Π½Π°ΠΉ-Π±ΡŠΡ€Π·ΠΎ, Π½Π΅ ΡΠ΅ ΠΏΡ€Π΅ΠΏΠΎΡ€ΡŠΡ‡Π²Π°, Π½Π΅ ΠΏΡ€Π°Π²ΠΈ Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎ ΠΊΠΎΠΏΠΈΠ΅)"
++#: lib/index.tcl:30
++msgid "Continue"
++msgstr "ΠŸΡ€ΠΎΠ΄ΡŠΠ»ΠΆΠ°Π²Π°Π½Π΅"
 +
- #: lib/choose_repository.tcl:545
- msgid "Recursively clone submodules too"
- msgstr "РСкурсивно ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ ΠΈ Π½Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»ΠΈΡ‚Π΅"
++#: lib/index.tcl:33
++msgid "Unlock Index"
++msgstr "ΠžΡ‚ΠΊΠ»ΡŽΡ‡Π²Π°Π½Π΅ Π½Π° ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- #: lib/choose_repository.tcl:579 lib/choose_repository.tcl:626
- #: lib/choose_repository.tcl:772 lib/choose_repository.tcl:842
- #: lib/choose_repository.tcl:1104 lib/choose_repository.tcl:1112
++#: lib/index.tcl:294
++msgid "Unstaging selected files from commit"
++msgstr "ИзваТданС Π½Π° ΠΈΠ·Π±Ρ€Π°Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ"
 +
- msgid "Not a Git repository: %s"
- msgstr "Π’ΠΎΠ²Π° Π½Π΅ Π΅ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π° Git: %s"
++#: lib/index.tcl:298
 +#, tcl-format
- #: lib/choose_repository.tcl:615
- msgid "Standard only available for local repository."
- msgstr "Π‘Π°ΠΌΠΎ Π»ΠΎΠΊΠ°Π»Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Ρ‚ ΡΡ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΎ"
++msgid "Unstaging %s from commit"
++msgstr "ИзваТданС Π½Π° β€ž%sβ€œ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ"
 +
- #: lib/choose_repository.tcl:619
- msgid "Shared only available for local repository."
- msgstr "Π‘Π°ΠΌΠΎ Π»ΠΎΠΊΠ°Π»Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Ρ‚ ΡΠΏΠΎΠ΄Π΅Π»Π΅Π½ΠΎ"
++#: lib/index.tcl:337
++msgid "Ready to commit."
++msgstr "Готовност Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
 +
- #: lib/choose_repository.tcl:640
++#: lib/index.tcl:346
++msgid "Adding selected files"
++msgstr "ДобавянС Π½Π° ΠΈΠ·Π±Ρ€Π°Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
 +
- msgid "Location %s already exists."
- msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅Ρ‚ΠΎ β€ž%sβ€œ Π²Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
- #: lib/choose_repository.tcl:651
- msgid "Failed to configure origin"
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠ²Π°Π½Π΅ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ-ΠΈΠ·Ρ‚ΠΎΡ‡Π½ΠΈΠΊ"
++#: lib/index.tcl:350
 +#, tcl-format
- #: lib/choose_repository.tcl:663
- msgid "Counting objects"
- msgstr "ΠŸΡ€Π΅Π±Ρ€ΠΎΡΠ²Π°Π½Π΅ Π½Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++msgid "Adding %s"
++msgstr "ДобавянС Π½Π° β€ž%sβ€œ"
 +
- #: lib/choose_repository.tcl:664
- msgid "buckets"
- msgstr "ΠΊΠ»Π΅Ρ‚ΠΊΠΈ"
++#: lib/index.tcl:380
++#, tcl-format
++msgid "Stage %d untracked files?"
++msgstr "Π”Π° ΡΠ΅ Π΄ΠΎΠ±Π°Π²ΡΡ‚ Π»ΠΈ %d Π½Π΅ΡΠ»Π΅Π΄Π΅Π½ΠΈ Ρ„Π°ΠΉΠ»Π° ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°?"
 +
- #: lib/choose_repository.tcl:688
++#: lib/index.tcl:388
++msgid "Adding all changed files"
++msgstr "ДобавянС Π½Π° Π²ΡΠΈΡ‡ΠΊΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
 +
- msgid "Unable to copy objects/info/alternates: %s"
- msgstr "ΠžΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅/информацията/синонимитС Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΊΠΎΠΏΠΈΡ€Π°Π½ΠΈ: %s"
++#: lib/index.tcl:428
 +#, tcl-format
- #: lib/choose_repository.tcl:724
++msgid "Revert changes in file %s?"
++msgstr "Π”Π° ΡΠ΅ ΠΌΠ°Ρ…Π½Π°Ρ‚ Π»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π²ΡŠΠ² Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ?"
 +
- msgid "Nothing to clone from %s."
- msgstr "Няма ΠΊΠ°ΠΊΠ²ΠΎ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π° ΠΎΡ‚ β€ž%sβ€œ."
- #: lib/choose_repository.tcl:726 lib/choose_repository.tcl:940
- #: lib/choose_repository.tcl:952
- msgid "The 'master' branch has not been initialized."
- msgstr "ΠžΡΠ½ΠΎΠ²Π½ΠΈΡΡ‚ ΠΊΠ»ΠΎΠ½ β€” β€žmasterβ€œ Π½Π΅ Π΅ ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½."
- #: lib/choose_repository.tcl:739
- msgid "Hardlinks are unavailable.  Falling back to copying."
- msgstr "НС ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Ρ‚ Ρ‚Π²ΡŠΡ€Π΄ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ. ΠŸΡ€Π΅ΠΌΠΈΠ½Π°Π²Π° ΡΠ΅ ΠΊΡŠΠΌ ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅."
++#: lib/index.tcl:430
 +#, tcl-format
- #: lib/choose_repository.tcl:751
- #, tcl-format
- msgid "Cloning from %s"
- msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ Π½Π° β€ž%sβ€œ"
++msgid "Revert changes in these %i files?"
++msgstr "Π”Π° ΡΠ΅ ΠΌΠ°Ρ…Π½Π°Ρ‚ Π»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² Ρ‚Π΅Π·ΠΈ %i Ρ„Π°ΠΉΠ»Π°?"
 +
- #: lib/choose_repository.tcl:782
- msgid "Copying objects"
- msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++#: lib/index.tcl:438
++msgid "Any unstaged changes will be permanently lost by the revert."
++msgstr ""
++"Всички ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ, ΠΊΠΎΠΈΡ‚ΠΎ Π½Π΅ ΡΠ° Π±ΠΈΠ»ΠΈ Π²ΠΊΠ°Ρ€Π°Π½ΠΈ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°, Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ Π±Π΅Π·Π²ΡŠΠ·Π²Ρ€Π°Ρ‚Π½ΠΎ "
++"Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ."
 +
- #: lib/choose_repository.tcl:783
- msgid "KiB"
- msgstr "KiB"
++#: lib/index.tcl:441
++msgid "Do Nothing"
++msgstr "Нищо Π΄Π° Π½Π΅ ΡΠ΅ ΠΏΡ€Π°Π²ΠΈ"
 +
- #: lib/choose_repository.tcl:807
++#: lib/index.tcl:459
++msgid "Reverting selected files"
++msgstr "ΠœΠ°Ρ…Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² ΠΈΠ·Π±Ρ€Π°Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
 +
- msgid "Unable to copy object: %s"
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΎΠ±Π΅ΠΊΡ‚: %s"
++#: lib/index.tcl:463
 +#, tcl-format
- #: lib/choose_repository.tcl:817
- msgid "Linking objects"
- msgstr "БъздаванС Π½Π° Π²Ρ€ΡŠΠ·ΠΊΠΈ ΠΊΡŠΠΌ ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅"
++msgid "Reverting %s"
++msgstr "ΠœΠ°Ρ…Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² β€ž%sβ€œ"
 +
- #: lib/choose_repository.tcl:818
- msgid "objects"
- msgstr "ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++#: lib/line.tcl:17
++msgid "Goto Line:"
++msgstr "Към Ρ€Π΅Π΄:"
 +
- #: lib/choose_repository.tcl:826
- #, tcl-format
- msgid "Unable to hardlink object: %s"
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅ Π½Π° Ρ‚Π²ΡŠΡ€Π΄Π° Π²Ρ€ΡŠΠ·ΠΊΠ° ΠΊΡŠΠΌ ΠΎΠ±Π΅ΠΊΡ‚: %s"
++#: lib/line.tcl:23
++msgid "Go"
++msgstr "ΠŸΡ€ΠΈΠ΄Π²ΠΈΠΆΠ²Π°Π½Π΅"
 +
- #: lib/choose_repository.tcl:881
- msgid "Cannot fetch branches and objects.  See console output for details."
++#: lib/merge.tcl:13
++msgid ""
++"Cannot merge while amending.\n"
++"\n"
++"You must finish amending this commit before starting any type of merge.\n"
++msgstr ""
++"По Π²Ρ€Π΅ΠΌΠ΅ Π½Π° ΠΏΠΎΠΏΡ€Π°Π²ΡΠ½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ»ΠΈΠ²Π°Π½Π΅.\n"
++"\n"
++"Врябва Π΄Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ€Π°Π²ΡΠ½Π΅Ρ‚ΠΎ Π½Π° Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° Π·Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ "
++"сливанС.\n"
 +
- "ΠšΠ»ΠΎΠ½ΠΈΡ‚Π΅ ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½ΠΈ. Π—Π° ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация "
- "ΠΏΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ ΠΈΠ·Ρ…ΠΎΠ΄Π° Π½Π° ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°."
++#: lib/merge.tcl:27
++msgid ""
++"Last scanned state does not match repository state.\n"
++"\n"
++"Another Git program has modified this repository since the last scan.  A "
++"rescan must be performed before a merge can be performed.\n"
++"\n"
++"The rescan will be automatically started now.\n"
 +msgstr ""
- #: lib/choose_repository.tcl:892
- msgid "Cannot fetch tags.  See console output for details."
++"ПослСдно ΡƒΡΡ‚Π°Π½ΠΎΠ²Π΅Π½ΠΎΡ‚ΠΎ ΡΡŠΡΡ‚ояниС Π½Π΅ ΠΎΡ‚говаря Π½Π° Ρ‚ΠΎΠ²Π° Π² Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ.\n"
++"\n"
++"Някой Π΄Ρ€ΡƒΠ³ ΠΏΡ€ΠΎΡ†Π΅Ρ Π·Π° Git Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΠ» Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ ΠΌΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ "
++"трябва Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° ΡΠ΅ ΠΈΠ·Π²ΡŠΡ€ΡˆΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅.\n"
++"\n"
++"Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
++"\n"
 +
- "Π•Ρ‚ΠΈΠΊΠ΅Ρ‚ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½ΠΈ. Π—Π° ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация ΠΏΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ "
- "ΠΈΠ·Ρ…ΠΎΠ΄Π° Π½Π° ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°."
++#: lib/merge.tcl:45
++#, tcl-format
++msgid ""
++"You are in the middle of a conflicted merge.\n"
++"\n"
++"File %s has merge conflicts.\n"
++"\n"
++"You must resolve them, stage the file, and commit to complete the current "
++"merge.  Only then can you begin another merge.\n"
 +msgstr ""
- #: lib/choose_repository.tcl:916
- msgid "Cannot determine HEAD.  See console output for details."
++"Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Ρ‚Π΅Ρ‡Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅, Π½ΠΎ ΠΈΠΌΠ° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ.\n"
++"\n"
++"ΠŸΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ.\n"
++"\n"
++"Врябва Π΄Π° ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Ρ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ Π² Π½Π΅Π³ΠΎ, Π΄Π° Π³ΠΎ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ° ΠΈ Π΄Π° "
++"Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅ Ρ‡Ρ€Π΅Π· ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅. Π§Π°ΠΊ Ρ‚ΠΎΠ³Π°Π²Π° ΠΌΠΎΠΆΠ΅ Π΄Π° Π·Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ Π½ΠΎΠ²ΠΎ "
++"сливанС.\n"
 +
- "Π’ΡŠΡ€Ρ…ΡŠΡ‚ β€žHEADβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½. Π—Π° ΠΏΠΎΠ²Π΅Ρ‡Π΅ ΠΈΠ½Ρ„ормация ΠΏΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ "
- "ΠΈΠ·Ρ…ΠΎΠ΄Π° Π½Π° ΠΊΠΎΠ½Π·ΠΎΠ»Π°Ρ‚Π°."
++#: lib/merge.tcl:55
++#, tcl-format
++msgid ""
++"You are in the middle of a change.\n"
++"\n"
++"File %s is modified.\n"
++"\n"
++"You should complete the current commit before starting a merge.  Doing so "
++"will help you abort a failed merge, should the need arise.\n"
 +msgstr ""
- #: lib/choose_repository.tcl:925
++"Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Ρ‚Π΅Ρ‡Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
++"\n"
++"Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½.\n"
++"\n"
++"Врябва Π΄Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° Π·Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅. Π’Π°ΠΊΠ° Ρ‰Π΅ "
++"ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»Π΅ΡΠ½ΠΎ Π΄Π° ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ, Π°ΠΊΠΎ Π²ΡŠΠ·Π½ΠΈΠΊΠ½Π΅ Π½ΡƒΠΆΠ΄Π°.\n"
 +
- msgid "Unable to cleanup %s"
- msgstr "β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ Π·Π°Ρ‡ΠΈΡΡ‚ΠΈ"
++#: lib/merge.tcl:108
 +#, tcl-format
- #: lib/choose_repository.tcl:931
- msgid "Clone failed."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅."
++msgid "%s of %s"
++msgstr "%s ΠΎΡ‚ ΠΎΠ±Ρ‰ΠΎ %s"
 +
- #: lib/choose_repository.tcl:938
- msgid "No default branch obtained."
- msgstr "НС Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ ΠΊΠ»ΠΎΠ½ ΠΏΠΎ ΠΏΠΎΠ΄Ρ€Π°Π·Π±ΠΈΡ€Π°Π½Π΅."
++#: lib/merge.tcl:126
++#, tcl-format
++msgid "Merging %s and %s..."
++msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œ ΠΈ β€ž%sβ€œβ€¦"
 +
- #: lib/choose_repository.tcl:949
- #, tcl-format
- msgid "Cannot resolve %s as a commit."
- msgstr "Няма ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΠΎΡ‚говарящо Π½Π° β€ž%sβ€œ."
++#: lib/merge.tcl:137
++msgid "Merge completed successfully."
++msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ Π·Π°Π²ΡŠΡ€ΡˆΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ."
 +
- #: lib/choose_repository.tcl:961
- msgid "Creating working directory"
- msgstr "БъздаванС Π½Π° Ρ€Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория"
++#: lib/merge.tcl:139
++msgid "Merge failed.  Conflict resolution is required."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅ β€” ΠΈΠΌΠ° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ Π·Π° ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½Π΅."
 +
- #: lib/choose_repository.tcl:962 lib/index.tcl:70 lib/index.tcl:136
- #: lib/index.tcl:207
- msgid "files"
- msgstr "Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
++#: lib/merge.tcl:156
++#, tcl-format
++msgid "%s (%s): Merge"
++msgstr "%s (%s): Π‘Π»ΠΈΠ²Π°Π½Π΅"
 +
- #: lib/choose_repository.tcl:981
- msgid "Cannot clone submodules."
- msgstr "ΠŸΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° ΡΠ΅ ΠΊΠ»ΠΎΠ½ΠΈΡ€Π°Ρ‚."
++#: lib/merge.tcl:164
++#, tcl-format
++msgid "Merge Into %s"
++msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅ Π² β€ž%sβ€œ"
 +
- #: lib/choose_repository.tcl:990
- msgid "Cloning submodules"
- msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»ΠΈΡ‚Π΅"
++#: lib/merge.tcl:183
++msgid "Revision To Merge"
++msgstr "ВСрсия Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅"
 +
- #: lib/choose_repository.tcl:1015
- msgid "Initial file checkout failed."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎ ΠΈΠ·Ρ‚СглянС."
++#: lib/merge.tcl:218
++msgid ""
++"Cannot abort while amending.\n"
++"\n"
++"You must finish amending this commit.\n"
++msgstr ""
++"ΠŸΠΎΠΏΡ€Π°Π²ΡΠ½Π΅Ρ‚ΠΎ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²Π΅Π½ΠΎ.\n"
++"\n"
++"Врябва Π΄Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ€Π°Π²ΠΊΠ°Ρ‚Π° Π½Π° Ρ‚ΠΎΠ²Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
 +
- #: lib/choose_repository.tcl:1059
- msgid "Open"
- msgstr "ΠžΡ‚Π²Π°Ρ€ΡΠ½Π΅"
++#: lib/merge.tcl:228
++msgid ""
++"Abort merge?\n"
++"\n"
++"Aborting the current merge will cause *ALL* uncommitted changes to be lost.\n"
++"\n"
++"Continue with aborting the current merge?"
++msgstr ""
++"Π”Π° ΡΠ΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈ Π»ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ?\n"
++"\n"
++"Π’ Ρ‚Π°ΠΊΡŠΠ² ΡΠ»ΡƒΡ‡Π°ΠΉ β—Π’Π‘Π˜Π§ΠšΠ˜β— Π½Π΅ΠΏΠΎΠ΄Π°Π΄Π΅Π½ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ Π±Π΅Π·Π²ΡŠΠ·Π²Ρ€Π°Ρ‚Π½ΠΎ Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ.\n"
++"\n"
++"Наистина Π»ΠΈ Π΄Π° ΡΠ΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ?"
 +
- #: lib/choose_repository.tcl:1069
- msgid "Repository:"
- msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅:"
++#: lib/merge.tcl:234
++msgid ""
++"Reset changes?\n"
++"\n"
++"Resetting the changes will cause *ALL* uncommitted changes to be lost.\n"
++"\n"
++"Continue with resetting the current changes?"
++msgstr ""
++"Π”Π° ΡΠ΅ Π·Π°Π½ΡƒΠ»ΡΡ‚ Π»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅?\n"
++"\n"
++"Π’ Ρ‚Π°ΠΊΡŠΠ² ΡΠ»ΡƒΡ‡Π°ΠΉ β—Π’Π‘Π˜Π§ΠšΠ˜β— Π½Π΅ΠΏΠΎΠ΄Π°Π΄Π΅Π½ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ Π±Π΅Π·Π²ΡŠΠ·Π²Ρ€Π°Ρ‚Π½ΠΎ Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ.\n"
++"\n"
++"Наистина Π»ΠΈ Π΄Π° ΡΠ΅ Π·Π°Π½ΡƒΠ»ΡΡ‚ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅?"
 +
- #: lib/choose_repository.tcl:1118
- #, tcl-format
- msgid "Failed to open repository %s:"
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΡ‚варянС Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ β€ž%sβ€œ:"
++#: lib/merge.tcl:245
++msgid "Aborting"
++msgstr "ΠŸΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅"
 +
- #: lib/about.tcl:26
- msgid "git-gui - a graphical user interface for Git."
- msgstr "git-gui β€” Π³Ρ€Π°Ρ„ΠΈΡ‡Π΅Π½ ΠΈΠ½Ρ‚СрфСйс Π·Π° Git."
++#: lib/merge.tcl:245
++msgid "files reset"
++msgstr "Ρ„Π°ΠΉΠ»Π° ΡΡŠΡ Π·Π°Π½ΡƒΠ»Π΅Π½ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ"
 +
- #: lib/checkout_op.tcl:85
- #, tcl-format
- msgid "Fetching %s from %s"
- msgstr "ДоставянС Π½Π° β€ž%sβ€œ ΠΎΡ‚ β€ž%sβ€œ"
++#: lib/merge.tcl:273
++msgid "Abort failed."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΡ€Π΅ΡƒΡΡ‚ановяванС."
 +
- #: lib/checkout_op.tcl:133
- #, tcl-format
- msgid "fatal: Cannot resolve %s"
- msgstr "Ρ„Π°Ρ‚Π°Π»Π½Π° Π³Ρ€Π΅ΡˆΠΊΠ°: β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΎΡ‚ΠΊΡ€ΠΈΠ΅"
++#: lib/merge.tcl:275
++msgid "Abort completed.  Ready."
++msgstr "УспСшно ΠΏΡ€Π΅ΡƒΡΡ‚ановяванС. Π“отовност Π·Π° ΡΠ»Π΅Π΄Π²Π°Ρ‰ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅."
 +
- #: lib/checkout_op.tcl:175
- #, tcl-format
- msgid "Branch '%s' does not exist."
- msgstr "ΠšΠ»ΠΎΠ½ΡŠΡ‚ β€ž%sβ€œ Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
++#: lib/mergetool.tcl:8
++msgid "Force resolution to the base version?"
++msgstr "Π”Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π±Π°Π·ΠΎΠ²Π°Ρ‚Π° Π²Π΅Ρ€ΡΠΈΡ"
 +
- #: lib/checkout_op.tcl:194
- #, tcl-format
- msgid "Failed to configure simplified git-pull for '%s'."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠ²Π°Π½Π΅ Π½Π° ΠΎΠΏΡ€ΠΎΡΡ‚Π΅Π½ git-pull Π·Π° β€ž%sβ€œ."
++#: lib/mergetool.tcl:9
++msgid "Force resolution to this branch?"
++msgstr "Π”Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π²Π΅Ρ€ΡΠΈΡΡ‚Π° ΠΎΡ‚ Ρ‚ΠΎΠ·ΠΈ ΠΊΠ»ΠΎΠ½"
 +
- #: lib/checkout_op.tcl:229
++#: lib/mergetool.tcl:10
++msgid "Force resolution to the other branch?"
++msgstr "Π”Π° ΡΠ΅ ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π° Π²Π΅Ρ€ΡΠΈΡΡ‚Π° ΠΎΡ‚ Π΄Ρ€ΡƒΠ³ΠΈΡ ΠΊΠ»ΠΎΠ½"
 +
- "Branch '%s' already exists.\n"
++#: lib/mergetool.tcl:14
 +#, tcl-format
 +msgid ""
- "It cannot fast-forward to %s.\n"
- "A merge is required."
++"Note that the diff shows only conflicting changes.\n"
 +"\n"
- "ΠšΠ»ΠΎΠ½ΡŠΡ‚ β€ž%sβ€œ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°.\n"
++"%s will be overwritten.\n"
++"\n"
++"This operation can be undone only by restarting the merge."
 +msgstr ""
- "Π’ΠΎΠΉ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Ρ‚Ρ€ΠΈΠ²ΠΈΠ°Π»Π½ΠΎ ΡΠ»ΡΡ‚ Π΄ΠΎ β€ž%sβ€œ.\n"
- "НСобходимо Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅."
++"Π Π°Π·Π»ΠΈΠΊΠ°Ρ‚Π° ΠΏΠΎΠΊΠ°Π·Π²Π° ΡΠ°ΠΌΠΎ Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅ Ρ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚.\n"
 +"\n"
- #: lib/checkout_op.tcl:243
++"Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Ρ‰Π΅ Π±ΡŠΠ΄Π΅ ΠΏΡ€Π΅Π·Π°ΠΏΠΈΡΠ°Π½.\n"
++"\n"
++"Π’Π°Π·ΠΈ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½Π° ΡΠ°ΠΌΠΎ Ρ‡Ρ€Π΅Π· Π·Π°ΠΏΠΎΡ‡Π²Π°Π½Π΅ Π½Π° ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ Π½Π°Π½ΠΎΠ²ΠΎ."
 +
- msgid "Merge strategy '%s' not supported."
- msgstr "БтратСгия Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅  β€ž%sβ€œ Π½Π΅ ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°."
++#: lib/mergetool.tcl:45
 +#, tcl-format
- #: lib/checkout_op.tcl:262
++msgid "File %s seems to have unresolved conflicts, still stage?"
++msgstr ""
++"ИзглСТда, Ρ‡Π΅ Π²ΡΠ΅ ΠΎΡ‰Π΅ ΠΈΠΌΠ° Π½Π΅ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½ΠΈ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ Π²ΡŠΠ² Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ. Π”Π° ΡΠ΅ Π΄ΠΎΠ±Π°Π²ΠΈ "
++"Π»ΠΈ Ρ„Π°ΠΉΠ»ΡŠΡ‚ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°?"
 +
- msgid "Failed to update '%s'."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œ."
- #: lib/checkout_op.tcl:274
- msgid "Staging area (index) is already locked."
- msgstr "Π˜Π½Π΄Π΅ΠΊΡΡŠΡ‚ Π²Π΅Ρ‡Π΅ Π΅ Π·Π°ΠΊΠ»ΡŽΡ‡Π΅Π½."
++#: lib/mergetool.tcl:60
 +#, tcl-format
- #: lib/checkout_op.tcl:289
- msgid ""
- "Last scanned state does not match repository state.\n"
- "\n"
- "Another Git program has modified this repository since the last scan.  A "
- "rescan must be performed before the current branch can be changed.\n"
- "\n"
- "The rescan will be automatically started now.\n"
++msgid "Adding resolution for %s"
++msgstr "ДобавянС Π½Π° ΠΊΠΎΡ€Π΅ΠΊΡ†ΠΈΡ Π½Π° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ Π² β€ž%sβ€œ"
 +
- "Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΡΠ»Π΅Π΄Π½Π°Ρ‚Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π΅ ΠΎΡ‚говаря Π½Π° ΡΡŠΡΡ‚ояниСто Π½Π° "
- "Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ.\n"
- "\n"
- "Някой Π΄Ρ€ΡƒΠ³ ΠΏΡ€ΠΎΡ†Π΅Ρ Π·Π° Git Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΠ» Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ ΠΌΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ "
- "трябва Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° ΡΠ΅ ΠΏΡ€Π΅ΠΌΠΈΠ½Π΅ ΠΊΡŠΠΌ Π½ΠΎΠ² ΠΊΠ»ΠΎΠ½.\n"
- "\n"
- "Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
++#: lib/mergetool.tcl:141
++msgid "Cannot resolve deletion or link conflicts using a tool"
 +msgstr ""
- #: lib/checkout_op.tcl:345
- #, tcl-format
- msgid "Updating working directory to '%s'..."
- msgstr "Π Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория ΡΠ΅ ΠΏΡ€ΠΈΠ²Π΅ΠΆΠ΄Π° ΠΊΡŠΠΌ β€ž%sβ€œβ€¦"
++"ΠšΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ ΠΏΡ€ΠΈ ΡΠΈΠΌΠ²ΠΎΠ»Π½ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ ΠΈΠ»ΠΈ ΠΈΠ·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½ΠΈ Ρ "
++"външна ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°."
 +
- #: lib/checkout_op.tcl:346
- msgid "files checked out"
- msgstr "Ρ„Π°ΠΉΠ»Π° ΡΠ° ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½ΠΈ"
++#: lib/mergetool.tcl:146
++msgid "Conflict file does not exist"
++msgstr "Π€Π°ΠΉΠ»ΡŠΡ‚, Π² ΠΊΠΎΠΉΡ‚ΠΎ Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΡŠΡ‚, Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°"
 +
- #: lib/checkout_op.tcl:376
++#: lib/mergetool.tcl:246
++#, tcl-format
++msgid "Not a GUI merge tool: '%s'"
++msgstr "Π’ΠΎΠ²Π° Π½Π΅ Π΅ Π³Ρ€Π°Ρ„ΠΈΡ‡Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅: β€ž%sβ€œ"
 +
- msgid "Aborted checkout of '%s' (file level merging is required)."
- msgstr ""
- "ΠŸΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΠΈΠ·Ρ‚СглянСто Π½Π° β€ž%sβ€œ (Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ Π΅ ΠΏΠΎΡ„Π°ΠΉΠ»ΠΎΠ²ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅)."
++#: lib/mergetool.tcl:275
 +#, tcl-format
- #: lib/checkout_op.tcl:377
- msgid "File level merge required."
- msgstr "НСобходимо Π΅ ΠΏΠΎΡ„Π°ΠΉΠ»ΠΎΠ²ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅."
++msgid "Unsupported merge tool '%s'"
++msgstr "ΠΠ΅ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅: β€ž%sβ€œ"
 +
- #: lib/checkout_op.tcl:381
++#: lib/mergetool.tcl:310
++msgid "Merge tool is already running, terminate it?"
++msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π²Π΅Ρ‡Π΅ Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π°. Π”Π° Π±ΡŠΠ΄Π΅ Π»ΠΈ ΠΈΠ·ΠΊΠ»ΡŽΡ‡Π΅Π½Π°?"
 +
- msgid "Staying on branch '%s'."
- msgstr "ΠžΡΡ‚Π°Π²Π°Π½Π΅ Π²ΡŠΡ€Ρ…Ρƒ ΠΊΠ»ΠΎΠ½Π° β€ž%sβ€œ."
++#: lib/mergetool.tcl:330
 +#, tcl-format
- #: lib/checkout_op.tcl:452
++msgid ""
++"Error retrieving versions:\n"
++"%s"
++msgstr ""
++"Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ ΠΈΠ·Ρ‚СглянСто Π½Π° Π²Π΅Ρ€ΡΠΈΠΈ:\n"
++"%s"
 +
- "You are no longer on a local branch.\n"
++#: lib/mergetool.tcl:350
++#, tcl-format
 +msgid ""
- "If you wanted to be on a branch, create one now starting from 'This Detached "
- "Checkout'."
++"Could not start the merge tool:\n"
 +"\n"
- "Π’Π΅Ρ‡Π΅ Π½Π΅ ΡΡ‚Π΅ Π½Π° Π»ΠΎΠΊΠ°Π»Π΅Π½ ΠΊΠ»ΠΎΠ½.\n"
++"%s"
 +msgstr ""
- "Ако ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΡΡ‚Π΅ Π½Π° ΠΊΠ»ΠΎΠ½, ΡΡŠΠ·Π΄Π°ΠΉΡ‚Π΅ Π±Π°Π·ΠΈΡ€Π°Π½ Π½Π° β€žΠ’ΠΎΠ²Π° Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ΠΎ ΠΈΠ·Ρ‚Π΅Π³Π»ΡΠ½Π΅β€œ."
++"ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π°:\n"
 +"\n"
- #: lib/checkout_op.tcl:503 lib/checkout_op.tcl:507
++"%s"
 +
- msgid "Checked out '%s'."
- msgstr "β€ž%sβ€œ Π΅ ΠΈΠ·Ρ‚Π΅Π³Π»Π΅Π½."
++#: lib/mergetool.tcl:354
++msgid "Running merge tool..."
++msgstr "Π‘Ρ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅β€¦"
++
++#: lib/mergetool.tcl:382 lib/mergetool.tcl:390
++msgid "Merge tool failed."
++msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° Π² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅."
++
++#: lib/option.tcl:11
 +#, tcl-format
- #: lib/checkout_op.tcl:535
++msgid "Invalid global encoding '%s'"
++msgstr "НСправилно Π³Π»ΠΎΠ±Π°Π»Π½ΠΎ ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅ β€ž%sβ€œ"
 +
- msgid "Resetting '%s' to '%s' will lose the following commits:"
- msgstr ""
- "ЗануляванСто Π½Π° β€ž%sβ€œ ΠΊΡŠΠΌ β€ž%sβ€œ Ρ‰Π΅ Π΄ΠΎΠ²Π΅Π΄Π΅ Π΄ΠΎ Π·Π°Π³ΡƒΠ±Π²Π°Π½Π΅Ρ‚ΠΎ Π½Π° ΡΠ»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ:"
++#: lib/option.tcl:19
 +#, tcl-format
- #: lib/checkout_op.tcl:557
- msgid "Recovering lost commits may not be easy."
- msgstr "Π’ΡŠΠ·ΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅Ρ‚ΠΎ Π½Π° Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ."
++msgid "Invalid repo encoding '%s'"
++msgstr "НСправилно ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅ β€ž%sβ€œ Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ"
 +
- #: lib/checkout_op.tcl:562
++#: lib/option.tcl:119
++msgid "Restore Defaults"
++msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½ΠΈ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ"
 +
- msgid "Reset '%s'?"
- msgstr "ЗануляванС Π½Π° β€ž%sβ€œ?"
++#: lib/option.tcl:123
++msgid "Save"
++msgstr "Π—Π°ΠΏΠ°Π·Π²Π°Π½Π΅"
++
++#: lib/option.tcl:133
 +#, tcl-format
- #: lib/checkout_op.tcl:571 lib/branch_create.tcl:85
- msgid "Reset"
- msgstr "ΠžΡ‚Π½Π°Ρ‡Π°Π»ΠΎ"
++msgid "%s Repository"
++msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€ž%sβ€œ"
 +
- #: lib/checkout_op.tcl:635
- #, tcl-format
- msgid ""
- "Failed to set current branch.\n"
- "\n"
- "This working directory is only partially switched.  We successfully updated "
- "your files, but failed to update an internal Git file.\n"
- "\n"
- "This should not have occurred.  %s will now close and give up."
- msgstr ""
- "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°Π΄Π°Π²Π°Π½Π΅ Π½Π° Ρ‚Скущия ΠΊΠ»ΠΎΠ½.\n"
- "\n"
- "Π Π°Π±ΠΎΡ‚Π½Π°Ρ‚Π° Π΄ΠΈΡ€Π΅ΠΊΡ‚ория Π΅ ΡΠ°ΠΌΠΎ Ρ‡Π°ΡΡ‚ΠΈΡ‡Π½ΠΎ ΠΎΠ±Π½ΠΎΠ²Π΅Π½Π°: Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅ ΡΠ° ΠΎΠ±Π½ΠΎΠ²Π΅Π½ΠΈ "
- "ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ, Π½ΠΎ Π½ΡΠΊΠΎΠΉ ΠΎΡ‚ Π²ΡŠΡ‚Ρ€Π΅ΡˆΠ½ΠΈΡ‚Π΅, ΡΠ»ΡƒΠΆΠ΅Π±Π½ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π½Π° Git Π½Π΅ Π΅ Π±ΠΈΠ».\n"
- "\n"
- "Π’ΠΎΠ²Π° ΡΡŠΡΡ‚ояниС Π΅ Π°Π²Π°Ρ€ΠΈΠΉΠ½ΠΎ ΠΈ Π½Π΅ Ρ‚рябва Π΄Π° ΡΠ΅ ΡΠ»ΡƒΡ‡Π²Π°. ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€ž%sβ€œ Ρ‰Π΅ "
- "прСустанови Ρ€Π°Π±ΠΎΡ‚Π°."
++#: lib/option.tcl:134
++msgid "Global (All Repositories)"
++msgstr "Π“Π»ΠΎΠ±Π°Π»Π½ΠΎ (Π·Π° Π²ΡΠΈΡ‡ΠΊΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°)"
 +
- #: lib/branch_create.tcl:23
- msgid "Create Branch"
- msgstr "БъздаванС Π½Π° ΠΊΠ»ΠΎΠ½"
++#: lib/option.tcl:140
++msgid "User Name"
++msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΠΊΠΎ ΠΈΠΌΠ΅"
 +
- #: lib/branch_create.tcl:28
- msgid "Create New Branch"
- msgstr "БъздаванС Π½Π° Π½ΠΎΠ² ΠΊΠ»ΠΎΠ½"
++#: lib/option.tcl:141
++msgid "Email Address"
++msgstr "АдрСс Π½Π° Π΅-ΠΏΠΎΡ‰Π°"
 +
- #: lib/branch_create.tcl:42
- msgid "Branch Name"
- msgstr "ИмС Π½Π° ΠΊΠ»ΠΎΠ½Π°"
++#: lib/option.tcl:143
++msgid "Summarize Merge Commits"
++msgstr "ΠžΠ±ΠΎΠ±Ρ‰Π°Π²Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡΡ‚Π° ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅"
 +
- #: lib/branch_create.tcl:57
- msgid "Match Tracking Branch Name"
- msgstr "БъвпаданС ΠΏΠΎ ΠΈΠΌΠ΅Ρ‚ΠΎ Π½Π° ΡΠ»Π΅Π΄Π΅Π½ΠΈΡ ΠΊΠ»ΠΎΠ½"
++#: lib/option.tcl:144
++msgid "Merge Verbosity"
++msgstr "ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½ΠΈΡΡ‚Π°"
 +
- #: lib/branch_create.tcl:66
- msgid "Starting Revision"
- msgstr "Начална Π²Π΅Ρ€ΡΠΈΡ"
++#: lib/option.tcl:145
++msgid "Show Diffstat After Merge"
++msgstr "ИзвСТданС Π½Π° ΡΡ‚атистика ΡΠ»Π΅Π΄ ΡΠ»ΠΈΠ²Π°Π½ΠΈΡΡ‚Π°"
 +
- #: lib/branch_create.tcl:72
- msgid "Update Existing Branch:"
- msgstr "ОбновяванС Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ ΠΊΠ»ΠΎΠ½:"
++#: lib/option.tcl:146
++msgid "Use Merge Tool"
++msgstr "ИзползванС Π½Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅"
 +
- #: lib/branch_create.tcl:75
- msgid "No"
- msgstr "НС"
++#: lib/option.tcl:148
++msgid "Trust File Modification Timestamps"
++msgstr "Π”ΠΎΠ²Π΅Ρ€ΠΈΠ΅ Π²ΡŠΠ² Π²Ρ€Π΅ΠΌΠ΅Ρ‚ΠΎ Π½Π° ΠΏΡ€ΠΎΠΌΡΠ½Π° Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅"
 +
- #: lib/branch_create.tcl:80
- msgid "Fast Forward Only"
- msgstr "Π‘Π°ΠΌΠΎ Ρ‚Ρ€ΠΈΠ²ΠΈΠ°Π»Π½ΠΎ ΠΏΡ€Π΅Π²ΡŠΡ€Ρ‚Π°Ρ‰ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅"
++#: lib/option.tcl:149
++msgid "Prune Tracking Branches During Fetch"
++msgstr "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΎΠ²Π΅ ΠΏΡ€ΠΈ Π΄ΠΎΡΡ‚авянС"
 +
- #: lib/branch_create.tcl:97
- msgid "Checkout After Creation"
- msgstr "ΠŸΡ€Π΅ΠΌΠΈΠ½Π°Π²Π°Π½Π΅ ΠΊΡŠΠΌ ΠΊΠ»ΠΎΠ½Π° ΡΠ»Π΅Π΄ ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ ΠΌΡƒ"
++#: lib/option.tcl:150
++msgid "Match Tracking Branches"
++msgstr "НапасванС Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΎΠ²Π΅"
 +
- #: lib/branch_create.tcl:132
- msgid "Please select a tracking branch."
- msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΊΠ»ΠΎΠ½ Π·Π° ΡΠ»Π΅Π΄Π΅Π½ΠΈ."
++#: lib/option.tcl:151
++msgid "Use Textconv For Diffs and Blames"
++msgstr "ИзползванС Π½Π° β€žtextconvβ€œ Π·Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅ ΠΈ Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ"
 +
- #: lib/branch_create.tcl:141
- #, tcl-format
- msgid "Tracking branch %s is not a branch in the remote repository."
- msgstr "БлСдящият ΠΊΠ»ΠΎΠ½ β€” β€ž%sβ€œ, Π½Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π° Π² ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅."
++#: lib/option.tcl:152
++msgid "Blame Copy Only On Changed Files"
++msgstr "АнотиранС Π½Π° ΠΊΠΎΠΏΠΈΠ΅Ρ‚ΠΎ ΡΠ°ΠΌΠΎ ΠΏΠΎ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
 +
- #: lib/console.tcl:59
- msgid "Working... please wait..."
- msgstr "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΡΠ΅ ΠΈΠ·Π²ΡŠΡ€ΡˆΠ²Π° Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅, ΠΈΠ·Ρ‡Π°ΠΊΠ°ΠΉΡ‚С…"
++#: lib/option.tcl:153
++msgid "Maximum Length of Recent Repositories List"
++msgstr "МаксималСн Π±Ρ€ΠΎΠΉ Π½Π° ΡΠΏΠΈΡΡŠΠΊΠ° β€žΠ‘ΠΊΠΎΡ€ΠΎ ΠΏΠΎΠ»Π·Π²Π°Π½ΠΈβ€œ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
 +
- #: lib/console.tcl:186
- msgid "Success"
- msgstr "УспСх"
++#: lib/option.tcl:154
++msgid "Minimum Letters To Blame Copy On"
++msgstr "МинималСн Π±Ρ€ΠΎΠΉ Π·Π½Π°Ρ†ΠΈ Π·Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΠ΅Ρ‚ΠΎ"
 +
- #: lib/console.tcl:200
- msgid "Error: Command Failed"
- msgstr "Π“Ρ€Π΅ΡˆΠΊΠ°: Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΈΠ·ΠΏΡŠΠ»Π½Π΅Π½ΠΈΠ΅ Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
++#: lib/option.tcl:155
++msgid "Blame History Context Radius (days)"
++msgstr "Π˜ΡΡ‚ΠΎΡ€ΠΈΡ‡Π΅ΡΠΊΠΈ ΠΎΠ±Ρ…Π²Π°Ρ‚ Π·Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅ Π² Π΄Π½ΠΈ"
 +
- #: lib/choose_rev.tcl:52
- msgid "This Detached Checkout"
- msgstr "Π’ΠΎΠ²Π° Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ΠΎ ΠΈΠ·Ρ‚СглянС"
++#: lib/option.tcl:156
++msgid "Number of Diff Context Lines"
++msgstr "Π‘Ρ€ΠΎΠΉ Ρ€Π΅Π΄ΠΎΠ²Π΅ Π·Π° ΠΊΠΎΠ½Ρ‚Скста Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅"
 +
- #: lib/choose_rev.tcl:60
- msgid "Revision Expression:"
- msgstr "Π˜Π·Ρ€Π°Π· Π·Π° Π²Π΅Ρ€ΡΠΈΡ:"
++#: lib/option.tcl:157
++msgid "Additional Diff Parameters"
++msgstr "АргумСнти ΠΊΡŠΠΌ ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π·Π° Ρ€Π°Π·Π»ΠΈΠΊΠΈΡ‚Π΅"
 +
- #: lib/choose_rev.tcl:72
- msgid "Local Branch"
- msgstr "Π›ΠΎΠΊΠ°Π»Π΅Π½ ΠΊΠ»ΠΎΠ½"
++#: lib/option.tcl:158
++msgid "Commit Message Text Width"
++msgstr "Π¨ΠΈΡ€ΠΎΡ‡ΠΈΠ½Π° Π½Π° Ρ‚Скста Π½Π° ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
 +
- #: lib/choose_rev.tcl:77
- msgid "Tracking Branch"
- msgstr "БлСдящ ΠΊΠ»ΠΎΠ½"
++#: lib/option.tcl:159
++msgid "New Branch Name Template"
++msgstr "Π¨Π°Π±Π»ΠΎΠ½ Π·Π° ΠΈΠΌΠ΅Ρ‚ΠΎ Π½Π° Π½ΠΎΠ²ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ"
 +
- #: lib/choose_rev.tcl:82 lib/choose_rev.tcl:544
- msgid "Tag"
- msgstr "Π•Ρ‚ΠΈΠΊΠ΅Ρ‚"
++#: lib/option.tcl:160
++msgid "Default File Contents Encoding"
++msgstr "ΠšΠΎΠ΄ΠΈΡ€Π°Π½Π΅ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅Ρ‚Π΅"
 +
- #: lib/choose_rev.tcl:321
- #, tcl-format
- msgid "Invalid revision: %s"
- msgstr "НСправилна Π²Π΅Ρ€ΡΠΈΡ: %s"
++#: lib/option.tcl:161
++msgid "Warn before committing to a detached head"
++msgstr "ΠŸΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π°Π²Π°Π½Π΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΠΊΡŠΠΌ Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π»"
 +
- #: lib/choose_rev.tcl:342
- msgid "No revision selected."
- msgstr "НС Π΅ ΠΈΠ·Π±Ρ€Π°Π½Π° Π²Π΅Ρ€ΡΠΈΡ."
++#: lib/option.tcl:162
++msgid "Staging of untracked files"
++msgstr "ДобавянС Π½Π° Π½Π΅ΡΠ»Π΅Π΄Π΅Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
- #: lib/choose_rev.tcl:350
- msgid "Revision expression is empty."
- msgstr "Π˜Π·Ρ€Π°Π·ΡŠΡ‚ Π·Π° Π²Π΅Ρ€ΡΠΈΡ Π΅ ΠΏΡ€Π°Π·Π΅Π½."
++#: lib/option.tcl:163
++msgid "Show untracked files"
++msgstr "ПоказванС Π½Π° Π½Π΅ΡΠ»Π΅Π΄Π΅Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
 +
- #: lib/choose_rev.tcl:537
- msgid "Updated"
- msgstr "ОбновСн"
++#: lib/option.tcl:164
++msgid "Tab spacing"
++msgstr "Π¨ΠΈΡ€ΠΈΠ½Π° Π½Π° Ρ‚абулацията"
 +
- #: lib/choose_rev.tcl:565
- msgid "URL"
- msgstr "АдрСс"
++#: lib/option.tcl:210
++msgid "Change"
++msgstr "Бмяна"
 +
- #: lib/line.tcl:17
- msgid "Goto Line:"
- msgstr "Към Ρ€Π΅Π΄:"
++#: lib/option.tcl:254
++msgid "Spelling Dictionary:"
++msgstr "ΠŸΡ€Π°Π²ΠΎΠΏΠΈΡΠ΅Π½ Ρ€Π΅Ρ‡Π½ΠΈΠΊ:"
 +
- #: lib/line.tcl:23
- msgid "Go"
- msgstr "ΠŸΡ€ΠΈΠ΄Π²ΠΈΠΆΠ²Π°Π½Π΅"
++#: lib/option.tcl:284
++msgid "Change Font"
++msgstr "Бмяна Π½Π° ΡˆΡ€ΠΈΡ„Ρ‚Π°"
 +
- #: lib/commit.tcl:9
- msgid ""
- "There is nothing to amend.\n"
- "\n"
- "You are about to create the initial commit.  There is no commit before this "
- "to amend.\n"
- msgstr ""
- "Няма ΠΊΠ°ΠΊΠ²ΠΎ Π΄Π° ΡΠ΅ ΠΏΠΎΠΏΡ€Π°Π²ΠΈ.\n"
- "\n"
- "Π©Π΅ ΡΡŠΠ·Π΄Π°Π΄Π΅Ρ‚Π΅ ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅. ΠŸΡ€Π΅Π΄ΠΈ Π½Π΅Π³ΠΎ Π½ΡΠΌΠ° Π΄Ρ€ΡƒΠ³ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ, ΠΊΠΎΠΈΡ‚ΠΎ "
- "Π΄Π° ΠΏΠΎΠΏΡ€Π°Π²ΠΈΡ‚Π΅.\n"
++#: lib/option.tcl:288
++#, tcl-format
++msgid "Choose %s"
++msgstr "Π˜Π·Π±ΠΎΡ€ Π½Π° β€ž%sβ€œ"
 +
- #: lib/commit.tcl:18
- msgid ""
- "Cannot amend while merging.\n"
- "\n"
- "You are currently in the middle of a merge that has not been fully "
- "completed.  You cannot amend the prior commit unless you first abort the "
- "current merge activity.\n"
- msgstr ""
- "По Π²Ρ€Π΅ΠΌΠ΅ Π½Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΠΏΠΎΠΏΡ€Π°Π²ΡΡ‚Π΅.\n"
- "\n"
- "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Π²ΡΠ΅ ΠΎΡ‰Π΅ Π½Π΅ ΡΡ‚Π΅ Π·Π°Π²ΡŠΡ€ΡˆΠΈΠ»ΠΈ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ ΠΏΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅. ΠΠ΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΠΏΠΎΠΏΡ€Π°Π²ΠΈΡ‚Π΅ "
- "ΠΏΡ€Π΅Π΄ΠΈΡˆΠ½ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΎΡΠ²Π΅Π½ Π°ΠΊΠΎ ΠΏΡŠΡ€Π²ΠΎ Π½Π΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅.\n"
++#: lib/option.tcl:294
++msgid "pt."
++msgstr "Ρ‚Ρ‡ΠΊ."
 +
- #: lib/commit.tcl:48
- msgid "Error loading commit data for amend:"
- msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° ΠΏΡ€ΠΈ Π·Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π΄Π°Π½Π½ΠΈΡ‚Π΅ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΊΠΎΠΈΡ‚ΠΎ Π΄Π° ΡΠ΅ ΠΏΠΎΠΏΡ€Π°Π²ΡΡ‚:"
++#: lib/option.tcl:308
++msgid "Preferences"
++msgstr "Настройки"
 +
- #: lib/commit.tcl:75
- msgid "Unable to obtain your identity:"
- msgstr "Π˜Π΄Π΅Π½Ρ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΡΡ‚Π° Π²ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π°:"
++#: lib/option.tcl:345
++msgid "Failed to completely save options:"
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°ΠΏΠ°Π·Π²Π°Π½Π΅ Π½Π° Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈΡ‚Π΅:"
 +
- #: lib/commit.tcl:80
- msgid "Invalid GIT_COMMITTER_IDENT:"
- msgstr "НСправилно ΠΏΠΎΠ»Π΅ β€žGIT_COMMITTER_IDENTβ€œ:"
++#: lib/remote.tcl:200
++msgid "Push to"
++msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ ΠΊΡŠΠΌ"
 +
- #: lib/commit.tcl:129
- #, tcl-format
- msgid "warning: Tcl does not support encoding '%s'."
- msgstr "ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅: Tcl Π½Π΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ° ΠΊΠΎΠ΄ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ β€ž%sβ€œ."
++#: lib/remote.tcl:218
++msgid "Remove Remote"
++msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: lib/commit.tcl:149
- msgid ""
- "Last scanned state does not match repository state.\n"
- "\n"
- "Another Git program has modified this repository since the last scan.  A "
- "rescan must be performed before another commit can be created.\n"
- "\n"
- "The rescan will be automatically started now.\n"
- msgstr ""
- "Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΡΠ»Π΅Π΄Π½Π°Ρ‚Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π΅ ΠΎΡ‚говаря Π½Π° ΡΡŠΡΡ‚ояниСто Π½Π° "
- "Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ.\n"
- "\n"
- "Някой Π΄Ρ€ΡƒΠ³ ΠΏΡ€ΠΎΡ†Π΅Ρ Π·Π° Git Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΠ» Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ ΠΌΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ "
- "трябва Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ ΠΏΡ€Π΅Π΄ΠΈ Π½ΠΎΠ²ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
- "\n"
- "Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
++#: lib/remote.tcl:223
++msgid "Prune from"
++msgstr "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ ΠΎΡ‚"
++
++#: lib/remote.tcl:228
++msgid "Fetch from"
++msgstr "ДоставянС ΠΎΡ‚"
 +
- #: lib/commit.tcl:173
++#: lib/remote.tcl:253 lib/remote.tcl:258
++msgid "All"
++msgstr "Всички"
 +
- msgid ""
- "Unmerged files cannot be committed.\n"
- "\n"
- "File %s has merge conflicts.  You must resolve them and stage the file "
- "before committing.\n"
- msgstr ""
- "НСслСтитС Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅ Π½Π΅ ΠΌΠΎΠ³Π°Ρ‚ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈ.\n"
- "\n"
- "Π’ΡŠΠ² Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ ΠΈΠΌΠ° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ ΠΏΡ€ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅. Π—Π° Π΄Π° Π³ΠΎ ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅, Ρ‚рябва ΠΏΡŠΡ€Π²ΠΎ Π΄Π° "
- "ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Ρ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ ΠΈ Π΄Π° Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»Π° ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
++#: lib/remote_add.tcl:20
 +#, tcl-format
- #: lib/commit.tcl:181
- #, tcl-format
- msgid ""
- "Unknown file state %s detected.\n"
- "\n"
- "File %s cannot be committed by this program.\n"
- msgstr ""
- "НСпознато ΡΡŠΡΡ‚ояниС Π½Π° Ρ„Π°ΠΉΠ» β€ž%sβ€œ.\n"
- "\n"
- "Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠ΄Π°Π΄Π΅Π½ Ρ‡Ρ€Π΅Π· Ρ‚Π΅ΠΊΡƒΡ‰Π°Ρ‚Π° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°.\n"
++msgid "%s (%s): Add Remote"
++msgstr "%s (%s): Π”обавянС Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: lib/commit.tcl:189
- msgid ""
- "No changes to commit.\n"
- "\n"
- "You must stage at least 1 file before you can commit.\n"
- msgstr ""
- "Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
- "\n"
- "Врябва Π΄Π° Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ ΠΏΠΎΠ½Π΅ Π΅Π΄ΠΈΠ½ Ρ„Π°ΠΉΠ» ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ°, Π·Π° Π΄Π° ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅.\n"
++#: lib/remote_add.tcl:25
++msgid "Add New Remote"
++msgstr "ДобавянС Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: lib/commit.tcl:204
- msgid ""
- "Please supply a commit message.\n"
- "\n"
- "A good commit message has the following format:\n"
- "\n"
- "- First line: Describe in one sentence what you did.\n"
- "- Second line: Blank\n"
- "- Remaining lines: Describe why this change is good.\n"
- msgstr ""
- "Π—Π°Π΄Π°ΠΉΡ‚Π΅ Π΄ΠΎΠ±Ρ€ΠΎ ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
- "\n"
- "Π˜Π·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ ΡΠ»Π΅Π΄Π½ΠΈΡ Ρ„ΠΎΡ€ΠΌΠ°Ρ‚:\n"
- "\n"
- "● ΠŸΡŠΡ€Π²ΠΈ Ρ€Π΅Π΄: ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ Π² Π΅Π΄Π½ΠΎ ΠΈΠ·Ρ€Π΅Ρ‡Π΅Π½ΠΈΠ΅ Π½Π° ΠΏΡ€ΠΎΠΌΡΠ½Π°Ρ‚Π°.\n"
- "● Π’Ρ‚ΠΎΡ€ΠΈ Ρ€Π΅Π΄: ΠΏΡ€Π°Π·Π΅Π½.\n"
- "● ΠžΡΡ‚Π°Π½Π°Π»ΠΈΡ‚Π΅ Ρ€Π΅Π΄ΠΎΠ²Π΅: ΠΎΠΏΠΈΡˆΠ΅Ρ‚Π΅ Π·Π°Ρ‰ΠΎ ΡΠ΅ Π½Π°Π»Π°Π³Π° Ρ‚Π°Π·ΠΈ ΠΏΡ€ΠΎΠΌΡΠ½Π°.\n"
++#: lib/remote_add.tcl:30 lib/tools_dlg.tcl:37
++msgid "Add"
++msgstr "ДобавянС"
 +
- #: lib/commit.tcl:235
- msgid "Calling pre-commit hook..."
- msgstr "ИзпълняванС Π½Π° ΠΊΡƒΠΊΠ°Ρ‚Π° ΠΏΡ€Π΅Π΄ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅β€¦"
++#: lib/remote_add.tcl:39
++msgid "Remote Details"
++msgstr "Π”Π°Π½Π½ΠΈ Π·Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: lib/commit.tcl:250
- msgid "Commit declined by pre-commit hook."
- msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π΅ ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½ΠΎ ΠΎΡ‚ ΠΊΡƒΠΊΠ°Ρ‚Π° ΠΏΡ€Π΅Π΄ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
++#: lib/remote_add.tcl:50
++msgid "Location:"
++msgstr "ΠœΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅:"
 +
- #: lib/commit.tcl:269
- msgid ""
- "You are about to commit on a detached head. This is a potentially dangerous "
- "thing to do because if you switch to another branch you will lose your "
- "changes and it can be difficult to retrieve them later from the reflog. You "
- "should probably cancel this commit and create a new branch to continue.\n"
- " \n"
- " Do you really want to proceed with your Commit?"
- msgstr ""
- "Π©Π΅ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚Π΅ ΠΊΡŠΠΌ Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ Π²Ρ€ΡŠΡ…. Π’ΠΎΠ²Π° Π΅ ΠΎΠΏΠ°ΡΠ½ΠΎ β€” ΠΏΡ€ΠΈ ΠΈΠ·Ρ‚СглянСто Π½Π° Π΄Ρ€ΡƒΠ³ ΠΊΠ»ΠΎΠ½ "
- "Ρ‰Π΅ ΠΈΠ·Π³ΡƒΠ±ΠΈΡ‚Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΡΠΈ. Π‘Π»Π΅Π΄ Ρ‚ΠΎΠ²Π° ΠΌΠΎΠΆΠ΅ Π΄Π° Π΅ Π½Π΅Π²ΡŠΠ·ΠΌΠΎΠΆΠ½ΠΎ Π΄Π° Π³ΠΈ Π²ΡŠΠ·ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚Π΅ "
- "ΠΎΡ‚ ΠΆΡƒΡ€Π½Π°Π»Π° Π½Π° ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π»ΠΈΡ‚Π΅ β€žreflogβ€œ. ΠΠ°ΠΉ-вСроятно Ρ‚рябва Π΄Π° ΠΎΡ‚ΠΌΠ΅Π½ΠΈΡ‚Π΅ Ρ‚ΠΎΠ²Π° "
- "ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΠΈ Π΄Π° ΡΡŠΠ·Π΄Π°Π΄Π΅Ρ‚Π΅ ΠΊΠ»ΠΎΠ½, Π² ΠΊΠΎΠΉΡ‚ΠΎ Π΄Π° ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅.\n"
- " \n"
- "Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅ ΠΊΡŠΠΌ Π½Π΅ΡΠ²ΡŠΡ€Π·Π°Π½ Π²Ρ€ΡŠΡ…?"
++#: lib/remote_add.tcl:60
++msgid "Further Action"
++msgstr "Π‘Π»Π΅Π΄Π²Π°Ρ‰ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅"
 +
- #: lib/commit.tcl:290
- msgid "Calling commit-msg hook..."
- msgstr "ИзпълняванС Π½Π° ΠΊΡƒΠΊΠ°Ρ‚Π° Π·Π° ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅β€¦"
++#: lib/remote_add.tcl:63
++msgid "Fetch Immediately"
++msgstr "НСзабавно Π΄ΠΎΡΡ‚авянС"
 +
- #: lib/commit.tcl:305
- msgid "Commit declined by commit-msg hook."
- msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π΅ ΠΎΡ‚Ρ…Π²ΡŠΡ€Π»Π΅Π½ΠΎ ΠΎΡ‚ ΠΊΡƒΠΊΠ°Ρ‚Π° Π·Π° ΡΡŠΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
++#: lib/remote_add.tcl:69
++msgid "Initialize Remote Repository and Push"
++msgstr "Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ΠΈ ΠΈΠ·Ρ‚ласкванС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅"
 +
- #: lib/commit.tcl:318
- msgid "Committing changes..."
- msgstr "ПодаванС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚С…"
++#: lib/remote_add.tcl:75
++msgid "Do Nothing Else Now"
++msgstr "Π”Π° Π½Π΅ ΡΠ΅ ΠΏΡ€Π°Π²ΠΈ Π½ΠΈΡ‰ΠΎ"
 +
- #: lib/commit.tcl:334
- msgid "write-tree failed:"
- msgstr "Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°ΠΏΠ°Π·Π²Π°Π½Π΅ Π½Π° Π΄ΡŠΡ€Π²ΠΎΡ‚ΠΎ (write-tree):"
++#: lib/remote_add.tcl:100
++msgid "Please supply a remote name."
++msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ ΠΈΠΌΠ΅ Π·Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅."
 +
- #: lib/commit.tcl:335 lib/commit.tcl:379 lib/commit.tcl:400
- msgid "Commit failed."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
++#: lib/remote_add.tcl:113
++#, tcl-format
++msgid "'%s' is not an acceptable remote name."
++msgstr "ΠžΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΊΠ°Π·Π²Π° β€ž%sβ€œ."
 +
- #: lib/commit.tcl:352
++#: lib/remote_add.tcl:124
++#, tcl-format
++msgid "Failed to add remote '%s' of location '%s'."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π΄ΠΎΠ±Π°Π²ΡΠ½Π΅ Π½Π° ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€ž%sβ€œ ΠΎΡ‚ Π°Π΄Ρ€Π΅Ρ β€ž%sβ€œ."
 +
- msgid "Commit %s appears to be corrupt"
- msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ β€ž%sβ€œ ΠΈΠ·Π³Π»Π΅ΠΆΠ΄Π° ΠΏΠΎΠ²Ρ€Π΅Π΄Π΅Π½ΠΎ"
++#: lib/remote_add.tcl:132 lib/transport.tcl:6
 +#, tcl-format
- #: lib/commit.tcl:357
- msgid ""
- "No changes to commit.\n"
- "\n"
- "No files were modified by this commit and it was not a merge commit.\n"
- "\n"
- "A rescan will be automatically started now.\n"
- msgstr ""
- "Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
- "\n"
- "Π’ Ρ‚ΠΎΠ²Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ Π½Π΅ ΡΠ° ΠΏΡ€ΠΎΠΌΠ΅Π½ΡΠ½ΠΈ Π½ΠΈΠΊΠ°ΠΊΠ²ΠΈ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅, Π° ΠΈ Π½Π΅ Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ ΡΡŠΡ "
- "сливанС.\n"
- "\n"
- "Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
++msgid "fetch %s"
++msgstr "доставянС Π½Π° β€ž%sβ€œ"
 +
- #: lib/commit.tcl:364
- msgid "No changes to commit."
- msgstr "Няма ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
++#: lib/remote_add.tcl:133
++#, tcl-format
++msgid "Fetching the %s"
++msgstr "ДоставянС Π½Π° β€ž%sβ€œ"
 +
- #: lib/commit.tcl:378
- msgid "commit-tree failed:"
- msgstr "Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ Π½Π° Π΄ΡŠΡ€Π²ΠΎΡ‚ΠΎ (commit-tree):"
++#: lib/remote_add.tcl:156
++#, tcl-format
++msgid "Do not know how to initialize repository at location '%s'."
++msgstr "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ Ρ ΠΌΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅ β€ž%sβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€Π°Π½ΠΎ."
 +
- #: lib/commit.tcl:399
- msgid "update-ref failed:"
- msgstr "Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΡƒΠΊΠ°Π·Π°Ρ‚Π΅Π»ΠΈΡ‚Π΅ (update-ref):"
++#: lib/remote_add.tcl:162 lib/transport.tcl:54 lib/transport.tcl:92
++#: lib/transport.tcl:110
++#, tcl-format
++msgid "push %s"
++msgstr "изтласкванС Π½Π° β€ž%sβ€œ"
 +
- #: lib/commit.tcl:492
++#: lib/remote_add.tcl:163
++#, tcl-format
++msgid "Setting up the %s (at %s)"
++msgstr "ДобавянС Π½Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€ž%sβ€œ (с Π°Π΄Ρ€Π΅Ρ β€ž%sβ€œ)"
 +
- msgid "Created commit %s: %s"
- msgstr "УспСшно ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ %s: %s"
++#: lib/remote_branch_delete.tcl:29
 +#, tcl-format
- #: lib/branch_delete.tcl:16
- msgid "Delete Branch"
- msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½"
++msgid "%s (%s): Delete Branch Remotely"
++msgstr "%s (%s): Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΎΡ‚далСчСния ΠΊΠ»ΠΎΠ½"
 +
- #: lib/branch_delete.tcl:21
- msgid "Delete Local Branch"
- msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° Π»ΠΎΠΊΠ°Π»Π΅Π½ ΠΊΠ»ΠΎΠ½"
++#: lib/remote_branch_delete.tcl:34
++msgid "Delete Branch Remotely"
++msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΎΡ‚далСчСния ΠΊΠ»ΠΎΠ½"
 +
- #: lib/branch_delete.tcl:39
- msgid "Local Branches"
- msgstr "Π›ΠΎΠΊΠ°Π»Π½ΠΈ ΠΊΠ»ΠΎΠ½ΠΈ"
++#: lib/remote_branch_delete.tcl:48
++msgid "From Repository"
++msgstr "ΠžΡ‚ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: lib/branch_delete.tcl:51
- msgid "Delete Only If Merged Into"
- msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅, ΡΠ°ΠΌΠΎ Π°ΠΊΠΎ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΡΠ° ΡΠ»Π΅Ρ‚ΠΈ ΠΈ Π΄Ρ€ΡƒΠ³Π°Π΄Π΅"
++#: lib/remote_branch_delete.tcl:51 lib/transport.tcl:165
++msgid "Remote:"
++msgstr "ΠžΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅:"
 +
- #: lib/branch_delete.tcl:103
- #, tcl-format
- msgid "The following branches are not completely merged into %s:"
- msgstr "НС Π²ΡΠΈΡ‡ΠΊΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Π² ΠΊΠ»ΠΎΠ½ΠΈΡ‚Π΅ ΡΠ° ΡΠ»Π΅Ρ‚ΠΈ Π² β€ž%sβ€œ:"
++#: lib/remote_branch_delete.tcl:72 lib/transport.tcl:187
++msgid "Arbitrary Location:"
++msgstr "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ»Π½ΠΎ ΠΌΠ΅ΡΡ‚ΠΎΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅:"
 +
- #: lib/branch_delete.tcl:141
++#: lib/remote_branch_delete.tcl:88
++msgid "Branches"
++msgstr "Клони"
 +
- "Failed to delete branches:\n"
- "%s"
++#: lib/remote_branch_delete.tcl:110
++msgid "Delete Only If"
++msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅, ΡΠ°ΠΌΠΎ Π°ΠΊΠΎ"
++
++#: lib/remote_branch_delete.tcl:112
++msgid "Merged Into:"
++msgstr "Блят Π²:"
++
++#: lib/remote_branch_delete.tcl:153
++msgid "A branch is required for 'Merged Into'."
++msgstr "Π—Π° Π΄Π°Π½Π½ΠΈΡ‚Π΅ β€žΠ‘лят Π²β€œ Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ Π΄Π° Π·Π°Π΄Π°Π΄Π΅Ρ‚Π΅ ΠΊΠ»ΠΎΠ½."
++
++#: lib/remote_branch_delete.tcl:185
 +#, tcl-format
 +msgid ""
- "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Ρ‚Ρ€ΠΈΠ΅Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½ΠΈ:\n"
- "%s"
++"The following branches are not completely merged into %s:\n"
++"\n"
++" - %s"
 +msgstr ""
- #: lib/blame.tcl:73
- msgid "File Viewer"
- msgstr "ΠŸΡ€Π΅Π³Π»Π΅Π΄ Π½Π° Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
++"Π‘Π»Π΅Π΄Π½ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ Π½Π΅ ΡΠ° ΡΠ»Π΅Ρ‚ΠΈ Π½Π°ΠΏΡŠΠ»Π½ΠΎ Π² β€ž%sβ€œ:\n"
++"\n"
++" β— %s"
 +
- #: lib/blame.tcl:79
- msgid "Commit:"
- msgstr "ПодаванС:"
++#: lib/remote_branch_delete.tcl:190
++#, tcl-format
++msgid ""
++"One or more of the merge tests failed because you have not fetched the "
++"necessary commits.  Try fetching from %s first."
++msgstr ""
++"ПонС Π΅Π΄Π½Π° ΠΎΡ‚ ΠΏΡ€ΠΎΠ±ΠΈΡ‚Π΅ Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅ Π΅ Π½Π΅ΡƒΡΠΏΠ΅ΡˆΠ½Π°, Π·Π°Ρ‰ΠΎΡ‚ΠΎ Π½Π΅ ΡΡ‚Π΅ Π΄ΠΎΡΡ‚Π°Π²ΠΈΠ»ΠΈ Π²ΡΠΈΡ‡ΠΊΠΈ "
++"Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΈ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡ. ΠŸΡ€ΠΎΠ±Π²Π°ΠΉΡ‚Π΅ ΠΏΡŠΡ€Π²ΠΎ Π΄Π° Π΄ΠΎΡΡ‚Π°Π²ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½ΠΈΡΡ‚Π° ΠΎΡ‚ β€ž%sβ€œ."
 +
- #: lib/blame.tcl:280
- msgid "Copy Commit"
- msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
++#: lib/remote_branch_delete.tcl:208
++msgid "Please select one or more branches to delete."
++msgstr "Π˜Π·Π±Π΅Ρ€Π΅Ρ‚Π΅ ΠΏΠΎΠ½Π΅ Π΅Π΄ΠΈΠ½ ΠΊΠ»ΠΎΠ½ Π·Π° ΠΈΠ·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅."
 +
- #: lib/blame.tcl:284
- msgid "Find Text..."
- msgstr "Π’ΡŠΡ€ΡΠ΅Π½Π΅ Π½Π° Ρ‚Скст…"
++#: lib/remote_branch_delete.tcl:227
++#, tcl-format
++msgid "Deleting branches from %s"
++msgstr "Π˜Π·Ρ‚Ρ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠ»ΠΎΠ½ΠΈ ΠΎΡ‚ β€ž%sβ€œ"
 +
- #: lib/blame.tcl:288
- msgid "Goto Line..."
- msgstr "Към Ρ€Π΅Π΄β€¦"
++#: lib/remote_branch_delete.tcl:300
++msgid "No repository selected."
++msgstr "НС Π΅ ΠΈΠ·Π±Ρ€Π°Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅."
 +
- #: lib/blame.tcl:297
- msgid "Do Full Copy Detection"
- msgstr "Пълно Ρ‚ΡŠΡ€ΡΠ΅Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅"
++#: lib/remote_branch_delete.tcl:305
++#, tcl-format
++msgid "Scanning %s..."
++msgstr "ΠŸΡ€Π΅Ρ‚ΡŠΡ€ΡΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œβ€¦"
 +
- #: lib/blame.tcl:301
- msgid "Show History Context"
- msgstr "ПоказванС Π½Π° ΠΊΠΎΠ½Ρ‚Скста ΠΎΡ‚ ΠΈΡΡ‚орията"
++#: lib/search.tcl:48
++msgid "Find:"
++msgstr "Π’ΡŠΡ€ΡΠ΅Π½Π΅:"
 +
- #: lib/blame.tcl:304
- msgid "Blame Parent Commit"
- msgstr "АнотиранС Π½Π° Ρ€ΠΎΠ΄ΠΈΡ‚Слското ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅"
++#: lib/search.tcl:50
++msgid "Next"
++msgstr "Π‘Π»Π΅Π΄Π²Π°Ρ‰Π° ΠΏΠΎΡΠ²Π°"
 +
- #: lib/blame.tcl:466
- #, tcl-format
- msgid "Reading %s..."
- msgstr "Π§Π΅Ρ‚Π΅ ΡΠ΅ β€ž%sβ€œβ€¦"
++#: lib/search.tcl:51
++msgid "Prev"
++msgstr "ΠŸΡ€Π΅Π΄ΠΈΡˆΠ½Π° ΠΏΠΎΡΠ²Π°"
 +
- #: lib/blame.tcl:594
- msgid "Loading copy/move tracking annotations..."
- msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π°Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈΡ‚Π΅ Π·Π° ΠΏΡ€ΠΎΡΠ»Π΅Π΄ΡΠ²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ/прСмСстванСто…"
++#: lib/search.tcl:52
++msgid "RegExp"
++msgstr "Π Π΅Π³Π˜Π·Ρ€"
 +
- #: lib/blame.tcl:614
- msgid "lines annotated"
- msgstr "Ρ€Π΅Π΄Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½ΠΈ"
++#: lib/search.tcl:54
++msgid "Case"
++msgstr "Π“Π»Π°Π²Π½ΠΈ/ΠΌΠ°Π»ΠΊΠΈ"
 +
- #: lib/blame.tcl:806
- msgid "Loading original location annotations..."
- msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π°Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈΡ‚Π΅ Π·Π° ΠΏΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎΡ‚ΠΎ ΠΌΠ΅ΡΡ‚ополоТСниС…"
++#: lib/shortcut.tcl:8 lib/shortcut.tcl:43 lib/shortcut.tcl:75
++#, tcl-format
++msgid "%s (%s): Create Desktop Icon"
++msgstr "%s (%s): Π”обавянС Π½Π° ΠΈΠΊΠΎΠ½Π° Π½Π° Ρ€Π°Π±ΠΎΡ‚ния ΠΏΠ»ΠΎΡ‚"
 +
- #: lib/blame.tcl:809
- msgid "Annotation complete."
- msgstr "АнотиранСто Π·Π°Π²ΡŠΡ€ΡˆΠΈ."
++#: lib/shortcut.tcl:24 lib/shortcut.tcl:65
++msgid "Cannot write shortcut:"
++msgstr "ΠšΠ»Π°Π²ΠΈΡˆΠ½Π°Ρ‚Π° ΠΊΠΎΠΌΠ±ΠΈΠ½Π°Ρ†ΠΈΡ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π·Π°ΠΏΠ°Π·Π΅Π½Π°:"
 +
- #: lib/blame.tcl:839
- msgid "Busy"
- msgstr "ΠžΠΏΠ΅Ρ€Π°Ρ†ΠΈΡΡ‚Π° Π½Π΅ Π΅ Π·Π°Π²ΡŠΡ€ΡˆΠΈΠ»Π°"
++#: lib/shortcut.tcl:140
++msgid "Cannot write icon:"
++msgstr "Π˜ΠΊΠΎΠ½Π°Ρ‚Π° Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π·Π°ΠΏΠ°Π·Π΅Π½Π°:"
 +
- #: lib/blame.tcl:840
- msgid "Annotation process is already running."
- msgstr "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Ρ‚Π΅Ρ‡Π΅ ΠΏΡ€ΠΎΡ†Π΅Ρ Π½Π° Π°Π½ΠΎΡ‚ΠΈΡ€Π°Π½Π΅."
++#: lib/spellcheck.tcl:57
++msgid "Unsupported spell checker"
++msgstr "Π’Π°Π·ΠΈ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ° Π½Π΅ ΡΠ΅ ΠΏΠΎΠ΄Π΄ΡŠΡ€ΠΆΠ°"
 +
- #: lib/blame.tcl:879
- msgid "Running thorough copy detection..."
- msgstr "Изпълнява ΡΠ΅ Ρ†ΡΠ»ΠΎΡΡ‚Π΅Π½ ΠΏΡ€ΠΎΡ†Π΅Ρ Π½Π° ΠΎΡ‚ΠΊΡ€ΠΈΠ²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΏΠΈΡ€Π°Π½Π΅β€¦"
++#: lib/spellcheck.tcl:65
++msgid "Spell checking is unavailable"
++msgstr "Липсва ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
 +
- #: lib/blame.tcl:947
- msgid "Loading annotation..."
- msgstr "Π—Π°Ρ€Π΅ΠΆΠ΄Π°Π½Π΅ Π½Π° Π°Π½ΠΎΡ‚ации…"
++#: lib/spellcheck.tcl:68
++msgid "Invalid spell checking configuration"
++msgstr "НСправилни Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ Π½Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°Ρ‚Π° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
 +
- #: lib/blame.tcl:1000
- msgid "Author:"
- msgstr "Автор:"
++#: lib/spellcheck.tcl:70
++#, tcl-format
++msgid "Reverting dictionary to %s."
++msgstr "ПолзванС Π½Π° Ρ€Π΅Ρ‡Π½ΠΈΠΊ Π·Π° Π΅Π·ΠΈΠΊ β€ž%sβ€œ."
 +
- #: lib/blame.tcl:1004
- msgid "Committer:"
- msgstr "Подал:"
++#: lib/spellcheck.tcl:73
++msgid "Spell checker silently failed on startup"
++msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡ Π΄Π°ΠΆΠ΅ Π½Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π° ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ."
 +
- #: lib/blame.tcl:1009
- msgid "Original File:"
- msgstr "ΠŸΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π΅Π½ Ρ„Π°ΠΉΠ»:"
++#: lib/spellcheck.tcl:80
++msgid "Unrecognized spell checker"
++msgstr "НСпозната ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
 +
- #: lib/blame.tcl:1057
- msgid "Cannot find HEAD commit:"
- msgstr "ΠŸΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ Π·Π° Π²Ρ€ΡŠΡ… β€žHEADβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ΅ ΠΎΡ‚ΠΊΡ€ΠΈΠ΅:"
++#: lib/spellcheck.tcl:186
++msgid "No Suggestions"
++msgstr "Няма ΠΏΡ€Π΅Π΄Π»ΠΎΠΆΠ΅Π½ΠΈΡ"
 +
- #: lib/blame.tcl:1112
- msgid "Cannot find parent commit:"
- msgstr "РодитСлското ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΊΡ€ΠΈΡ‚ΠΎ"
++#: lib/spellcheck.tcl:388
++msgid "Unexpected EOF from spell checker"
++msgstr "НСочакван ΠΊΡ€Π°ΠΉ Π½Π° Ρ„Π°ΠΉΠ» ΠΎΡ‚ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
 +
- #: lib/blame.tcl:1127
- msgid "Unable to display parent"
- msgstr "РодитСлят Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΠΎΠΊΠ°Π·Π°Π½"
++#: lib/spellcheck.tcl:392
++msgid "Spell Checker Failed"
++msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° Π² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° Π·Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°"
 +
- #: lib/blame.tcl:1269
- msgid "Originally By:"
- msgstr "ΠŸΡŠΡ€Π²ΠΎΠ½Π°Ρ‡Π°Π»Π½ΠΎ ΠΎΡ‚:"
++#: lib/sshkey.tcl:31
++msgid "No keys found."
++msgstr "НС ΡΠ° ΠΎΡ‚ΠΊΡ€ΠΈΡ‚ΠΈ ΠΊΠ»ΡŽΡ‡ΠΎΠ²Π΅."
 +
- #: lib/blame.tcl:1275
- msgid "In File:"
- msgstr "Π’ΡŠΠ² Ρ„Π°ΠΉΠ»:"
++#: lib/sshkey.tcl:34
++#, tcl-format
++msgid "Found a public key in: %s"
++msgstr "ΠžΡ‚ΠΊΡ€ΠΈΡ‚ Π΅ ΠΏΡƒΠ±Π»ΠΈΡ‡Π΅Π½ ΠΊΠ»ΡŽΡ‡ Π² β€ž%sβ€œ"
 +
- #: lib/blame.tcl:1280
- msgid "Copied Or Moved Here By:"
- msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½ΠΎ ΠΈΠ»ΠΈ ΠΏΡ€Π΅ΠΌΠ΅ΡΡ‚Π΅Π½ΠΎ Ρ‚ΡƒΠΊ ΠΎΡ‚:"
++#: lib/sshkey.tcl:40
++msgid "Generate Key"
++msgstr "Π“Π΅Π½Π΅Ρ€ΠΈΡ€Π°Π½Π΅ Π½Π° ΠΊΠ»ΡŽΡ‡"
 +
- #: lib/index.tcl:6
- msgid "Unable to unlock the index."
- msgstr "Π˜Π½Π΄Π΅ΠΊΡΡŠΡ‚ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½."
++#: lib/sshkey.tcl:58
++msgid "Copy To Clipboard"
++msgstr "ΠšΠΎΠΏΠΈΡ€Π°Π½Π΅ ΠΊΡŠΠΌ ΡΠΈΡΡ‚Смния Π±ΡƒΡ„Π΅Ρ€"
 +
- #: lib/index.tcl:17
- msgid "Index Error"
- msgstr "Π“Ρ€Π΅ΡˆΠΊΠ° Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
++#: lib/sshkey.tcl:72
++msgid "Your OpenSSH Public Key"
++msgstr "ΠŸΡƒΠ±Π»ΠΈΡ‡Π½ΠΈΡΡ‚ Π²ΠΈ ΠΊΠ»ΡŽΡ‡ Π·Π° OpenSSH"
 +
- #: lib/index.tcl:19
++#: lib/sshkey.tcl:80
++msgid "Generating..."
++msgstr "ГСнСриранС…"
 +
- "Updating the Git index failed.  A rescan will be automatically started to "
- "resynchronize git-gui."
++#: lib/sshkey.tcl:86
++#, tcl-format
 +msgid ""
- "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΎΠ±Π½ΠΎΠ²ΡΠ²Π°Π½Π΅ Π½Π° ΠΈΠ½Π΄Π΅ΠΊΡΠ° Π½Π° Git. ΠΠ²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° "
- "Π·Π° ΡΠΈΠ½Ρ…Ρ€ΠΎΠ½ΠΈΠ·ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ Π½Π° git-gui."
++"Could not start ssh-keygen:\n"
++"\n"
++"%s"
 +msgstr ""
- #: lib/index.tcl:30
- msgid "Continue"
- msgstr "ΠŸΡ€ΠΎΠ΄ΡŠΠ»ΠΆΠ°Π²Π°Π½Π΅"
++"ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€žssh-keygenβ€œ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΡΡ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π°:\n"
++"\n"
++"%s"
 +
- #: lib/index.tcl:33
- msgid "Unlock Index"
- msgstr "ΠžΡ‚ΠΊΠ»ΡŽΡ‡Π²Π°Π½Π΅ Π½Π° ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
++#: lib/sshkey.tcl:113
++msgid "Generation failed."
++msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π³Π΅Π½Π΅Ρ€ΠΈΡ€Π°Π½Π΅."
 +
- #: lib/index.tcl:298
++#: lib/sshkey.tcl:120
++msgid "Generation succeeded, but no keys found."
++msgstr "Π“Π΅Π½Π΅Ρ€ΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ Π·Π°Π²ΡŠΡ€ΡˆΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ, Π° Π½Π΅ ΡΠ° Π½Π°ΠΌΠ΅Ρ€Π΅Π½ΠΈ ΠΊΠ»ΡŽΡ‡ΠΎΠ²Π΅."
 +
- msgid "Unstaging %s from commit"
- msgstr "ИзваТданС Π½Π° β€ž%sβ€œ ΠΎΡ‚ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅Ρ‚ΠΎ"
++#: lib/sshkey.tcl:123
 +#, tcl-format
- #: lib/index.tcl:337
- msgid "Ready to commit."
- msgstr "Готовност Π·Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅."
++msgid "Your key is in: %s"
++msgstr "ΠšΠ»ΡŽΡ‡ΡŠΡ‚ Π²ΠΈ Π΅ Π² β€ž%sβ€œ"
 +
- #: lib/index.tcl:350
++#: lib/status_bar.tcl:87
++#, tcl-format
++msgid "%s ... %*i of %*i %s (%3i%%)"
++msgstr "%s… %*i ΠΎΡ‚ ΠΎΠ±Ρ‰ΠΎ %*i %s (%3i%%)"
 +
- msgid "Adding %s"
- msgstr "ДобавянС Π½Π° β€ž%sβ€œ"
++#: lib/tools.tcl:76
 +#, tcl-format
- #: lib/index.tcl:380
++msgid "Running %s requires a selected file."
++msgstr "Π—Π° ΠΈΠ·ΠΏΡŠΠ»Π½Π΅Π½ΠΈΠ΅Ρ‚ΠΎ Π½Π° β€ž%sβ€œ Ρ‚рябва Π΄Π° ΠΈΠ·Π±Π΅Ρ€Π΅Ρ‚Π΅ Ρ„Π°ΠΉΠ»."
 +
- msgid "Stage %d untracked files?"
- msgstr "Π”Π° ΡΠ΅ Π²ΠΊΠ°Ρ€Π°Ρ‚ Π»ΠΈ %d Π½Π΅ΡΠ»Π΅Π΄Π΅Π½ΠΈ Ρ„Π°ΠΉΠ»Π° Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°?"
++#: lib/tools.tcl:92
 +#, tcl-format
- #: lib/index.tcl:428
++msgid "Are you sure you want to run %1$s on file \"%2$s\"?"
++msgstr "Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΡŠΠ»Π½ΠΈΡ‚Π΅ β€ž%1$sβ€œ Π²ΡŠΡ€Ρ…Ρƒ Ρ„Π°ΠΉΠ»Π° β€ž%2$sβ€œ?"
 +
- msgid "Revert changes in file %s?"
- msgstr "Π”Π° ΡΠ΅ ΠΌΠ°Ρ…Π½Π°Ρ‚ Π»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π²ΡŠΠ² Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ?"
++#: lib/tools.tcl:96
 +#, tcl-format
- #: lib/index.tcl:430
++msgid "Are you sure you want to run %s?"
++msgstr "Π‘ΠΈΠ³ΡƒΡ€Π½ΠΈ Π»ΠΈ ΡΡ‚Π΅, Ρ‡Π΅ ΠΈΡΠΊΠ°Ρ‚Π΅ Π΄Π° ΠΈΠ·ΠΏΡŠΠ»Π½ΠΈΡ‚Π΅ β€ž%sβ€œ?"
 +
- msgid "Revert changes in these %i files?"
- msgstr "Π”Π° ΡΠ΅ ΠΌΠ°Ρ…Π½Π°Ρ‚ Π»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² Ρ‚Π΅Π·ΠΈ %i Ρ„Π°ΠΉΠ»Π°?"
++#: lib/tools.tcl:118
 +#, tcl-format
- #: lib/index.tcl:438
- msgid "Any unstaged changes will be permanently lost by the revert."
++msgid "Tool: %s"
++msgstr "Команда: %s"
 +
- "Всички ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ, ΠΊΠΎΠΈΡ‚ΠΎ Π½Π΅ ΡΠ° Π±ΠΈΠ»ΠΈ Π²ΠΊΠ°Ρ€Π°Π½ΠΈ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ°, Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ Π±Π΅Π·Π²ΡŠΠ·Π²Ρ€Π°Ρ‚Π½ΠΎ "
- "Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ."
++#: lib/tools.tcl:119
++#, tcl-format
++msgid "Running: %s"
++msgstr "ИзпълнСниС: %s"
++
++#: lib/tools.tcl:158
++#, tcl-format
++msgid "Tool completed successfully: %s"
++msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ: %s"
++
++#: lib/tools.tcl:160
++#, tcl-format
++msgid "Tool failed: %s"
++msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π²ΡŠΡ€Π½Π° Π³Ρ€Π΅ΡˆΠΊΠ°: %s"
++
++#: lib/tools_dlg.tcl:22
++#, tcl-format
++msgid "%s (%s): Add Tool"
++msgstr "%s (%s): Π”обавянС Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
++
++#: lib/tools_dlg.tcl:28
++msgid "Add New Tool Command"
++msgstr "ДобавянС Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
++
++#: lib/tools_dlg.tcl:34
++msgid "Add globally"
++msgstr "Π“Π»ΠΎΠ±Π°Π»Π½ΠΎ Π΄ΠΎΠ±Π°Π²ΡΠ½Π΅"
++
++#: lib/tools_dlg.tcl:46
++msgid "Tool Details"
++msgstr "ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ Π·Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π°"
++
++#: lib/tools_dlg.tcl:49
++msgid "Use '/' separators to create a submenu tree:"
++msgstr "Π—Π° ΡΡŠΠ·Π΄Π°Π²Π°Π½Π΅ Π½Π° ΠΏΠΎΠ΄ΠΌΠ΅Π½ΡŽΡ‚Π° ΠΈΠ·ΠΏΠΎΠ»Π·Π²Π°ΠΉΡ‚Π΅ Π·Π½Π°ΠΊΠ° β€ž/β€œ Π·Π° Ρ€Π°Π·Π΄Π΅Π»ΠΈΡ‚Π΅Π»:"
++
++#: lib/tools_dlg.tcl:60
++msgid "Command:"
++msgstr "Команда:"
++
++#: lib/tools_dlg.tcl:71
++msgid "Show a dialog before running"
++msgstr "ΠŸΡ€Π΅Π΄ΠΈ ΠΈΠ·ΠΏΡŠΠ»Π½Π΅Π½ΠΈΠ΅ Π΄Π° ΡΠ΅ ΠΈΠ·Π²Π΅ΠΆΠ΄Π° Π΄ΠΈΠ°Π»ΠΎΠ³ΠΎΠ² ΠΏΡ€ΠΎΠ·ΠΎΡ€Π΅Ρ†"
++
++#: lib/tools_dlg.tcl:77
++msgid "Ask the user to select a revision (sets $REVISION)"
++msgstr "ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΡ‚ Π΄Π° ΡƒΠΊΠ°ΠΆΠ΅ Π²Π΅Ρ€ΡΠΈΡ (Π·Π°Π΄Π°Π²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° $REVISION)"
++
++#: lib/tools_dlg.tcl:82
++msgid "Ask the user for additional arguments (sets $ARGS)"
 +msgstr ""
- #: lib/index.tcl:441
- msgid "Do Nothing"
- msgstr "Нищо Π΄Π° Π½Π΅ ΡΠ΅ ΠΏΡ€Π°Π²ΠΈ"
++"ΠŸΠΎΡ‚Ρ€Π΅Π±ΠΈΡ‚Π΅Π»ΡΡ‚ Π΄Π° ΡƒΠΊΠ°ΠΆΠ΅ Π΄ΠΎΠΏΡŠΠ»Π½ΠΈΡ‚Π΅Π»Π½ΠΈ Π°Ρ€Π³ΡƒΠΌΠ΅Π½Ρ‚ΠΈ (Π·Π°Π΄Π°Π²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° $ARGS)"
 +
- #: lib/index.tcl:459
- msgid "Reverting selected files"
- msgstr "ΠœΠ°Ρ…Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² ΠΈΠ·Π±Ρ€Π°Π½ΠΈΡ‚Π΅ Ρ„Π°ΠΉΠ»ΠΎΠ²Π΅"
++#: lib/tools_dlg.tcl:89
++msgid "Don't show the command output window"
++msgstr "Π‘Π΅Π· ΠΏΠΎΠΊΠ°Π·Π²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠ·ΠΎΡ€Π΅Ρ† Ρ ΠΈΠ·Ρ…ΠΎΠ΄Π° ΠΎΡ‚ ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π°"
++
++#: lib/tools_dlg.tcl:94
++msgid "Run only if a diff is selected ($FILENAME not empty)"
++msgstr ""
++"Π‘Ρ‚Π°Ρ€Ρ‚ΠΈΡ€Π°Π½Π΅ ΡΠ°ΠΌΠΎ ΡΠ»Π΅Π΄ ΠΈΠ·Π±ΠΎΡ€ Π½Π° Ρ€Π°Π·Π»ΠΈΠΊΠ° (ΠΏΡ€ΠΎΠΌΠ΅Π½Π»ΠΈΠ²Π°Ρ‚Π° $FILENAME Π½Π΅ Π΅ ΠΏΡ€Π°Π·Π½Π°)"
 +
- #: lib/index.tcl:463
++#: lib/tools_dlg.tcl:118
++msgid "Please supply a name for the tool."
++msgstr "Π—Π°Π΄Π°ΠΉΡ‚Π΅ ΠΈΠΌΠ΅ Π·Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π°."
 +
- msgid "Reverting %s"
- msgstr "ΠœΠ°Ρ…Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ Π² β€ž%sβ€œ"
++#: lib/tools_dlg.tcl:126
 +#, tcl-format
- #: lib/date.tcl:25
++msgid "Tool '%s' already exists."
++msgstr "ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° β€ž%sβ€œ Π²Π΅Ρ‡Π΅ ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°."
 +
- msgid "Invalid date from Git: %s"
- msgstr "НСправилни Π΄Π°Π½Π½ΠΈ ΠΎΡ‚ Git: %s"
- #: lib/database.tcl:42
- msgid "Number of loose objects"
- msgstr "Π‘Ρ€ΠΎΠΉ Π½Π΅ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++#: lib/tools_dlg.tcl:148
 +#, tcl-format
- #: lib/database.tcl:43
- msgid "Disk space used by loose objects"
- msgstr "Дисково ΠΏΡ€ΠΎΡΡ‚ранство Π·Π°Π΅Ρ‚ΠΎ ΠΎΡ‚ Π½Π΅ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++msgid ""
++"Could not add tool:\n"
++"%s"
++msgstr ""
++"ΠšΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ Π΄ΠΎΠ±Π°Π²Π΅Π½Π°:\n"
++"%s"
 +
- #: lib/database.tcl:44
- msgid "Number of packed objects"
- msgstr "Π‘Ρ€ΠΎΠΉ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++#: lib/tools_dlg.tcl:187
++#, tcl-format
++msgid "%s (%s): Remove Tool"
++msgstr "%s (%s): ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°"
 +
- #: lib/database.tcl:45
- msgid "Number of packs"
- msgstr "Π‘Ρ€ΠΎΠΉ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈ"
++#: lib/tools_dlg.tcl:193
++msgid "Remove Tool Commands"
++msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅ Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ"
 +
- #: lib/database.tcl:46
- msgid "Disk space used by packed objects"
- msgstr "Дисково ΠΏΡ€ΠΎΡΡ‚ранство Π·Π°Π΅Ρ‚ΠΎ ΠΎΡ‚ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ"
++#: lib/tools_dlg.tcl:198
++msgid "Remove"
++msgstr "ΠŸΡ€Π΅ΠΌΠ°Ρ…Π²Π°Π½Π΅"
 +
- #: lib/database.tcl:47
- msgid "Packed objects waiting for pruning"
- msgstr "ΠŸΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ Π·Π° ΠΎΠΊΠ°ΡΡ‚рянС"
++#: lib/tools_dlg.tcl:231
++msgid "(Blue denotes repository-local tools)"
++msgstr "(ΠΊΠΎΠΌΠ°Π½Π΄ΠΈΡ‚Π΅ ΠΊΡŠΠΌ Π»ΠΎΠΊΠ°Π»Π½ΠΎΡ‚ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ΡΠ° ΠΎΠ±ΠΎΠ·Π½Π°Ρ‡Π΅Π½ΠΈ Π² ΡΠΈΠ½ΡŒΠΎ)"
 +
- #: lib/database.tcl:48
- msgid "Garbage files"
- msgstr "Π€Π°ΠΉΠ»ΠΎΠ²Π΅ Π·Π° Π±ΠΎΠΊΠ»ΡƒΠΊΠ°"
++#: lib/tools_dlg.tcl:283
++#, tcl-format
++msgid "%s (%s):"
++msgstr "%s (%s):"
 +
- #: lib/database.tcl:72
- msgid "Compressing the object database"
- msgstr "ΠšΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Π½Π΅ Π½Π° Π±Π°Π·Π°Ρ‚Π° Ρ Π΄Π°Π½Π½ΠΈ Π·Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅"
++#: lib/tools_dlg.tcl:292
++#, tcl-format
++msgid "Run Command: %s"
++msgstr "ИзпълнСниС Π½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°Ρ‚Π° β€ž%sβ€œ"
 +
- #: lib/database.tcl:83
- msgid "Verifying the object database with fsck-objects"
- msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π½Π° Π±Π°Π·Π°Ρ‚Π° Ρ Π΄Π°Π½Π½ΠΈ Π·Π° ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅ Ρ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠ°Ρ‚Π° β€žfsck-objectsβ€œ"
++#: lib/tools_dlg.tcl:306
++msgid "Arguments"
++msgstr "АргумСнти"
 +
- #: lib/database.tcl:107
++#: lib/tools_dlg.tcl:341
++msgid "OK"
++msgstr "Π”ΠΎΠ±Ρ€Π΅"
 +
- msgid ""
- "This repository currently has approximately %i loose objects.\n"
- "\n"
- "To maintain optimal performance it is strongly recommended that you compress "
- "the database.\n"
- "\n"
- "Compress the database now?"
- msgstr ""
- "Π’ Ρ‚ΠΎΠ²Π° Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π² ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΈΠΌΠ° ΠΊΡŠΠΌ %i Π½Π΅ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΡ€Π°Π½ΠΈ ΠΎΠ±Π΅ΠΊΡ‚ΠΈ.\n"
- "\n"
- "Π—Π° Π΄ΠΎΠ±Ρ€Π° ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Слност ΡΠ΅ ΠΏΡ€Π΅ΠΏΠΎΡ€ΡŠΡ‡Π²Π° Π΄Π° ΠΊΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Ρ‚Π΅ Π±Π°Π·Π°Ρ‚Π° Ρ Π΄Π°Π½Π½ΠΈ Π·Π° "
- "ΠΎΠ±Π΅ΠΊΡ‚ΠΈΡ‚Π΅.\n"
- "\n"
- "Π”Π° ΡΠ΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π»ΠΈ ΠΊΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ€Π°Π½Π΅Ρ‚ΠΎ?"
++#: lib/transport.tcl:7
 +#, tcl-format
- #: lib/error.tcl:20 lib/error.tcl:116
- msgid "error"
- msgstr "Π³Ρ€Π΅ΡˆΠΊΠ°"
++msgid "Fetching new changes from %s"
++msgstr "ДоставянС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΎΡ‚ β€ž%sβ€œ"
 +
- #: lib/error.tcl:36
- msgid "warning"
- msgstr "ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅"
++#: lib/transport.tcl:18
++#, tcl-format
++msgid "remote prune %s"
++msgstr "окастрянС Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ ΠΊΡŠΠΌ β€ž%sβ€œ"
 +
- #: lib/error.tcl:96
- msgid "You must correct the above errors before committing."
- msgstr "ΠŸΡ€Π΅Π΄ΠΈ Π΄Π° ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π° ΠΏΠΎΠ΄Π°Π΄Π΅Ρ‚Π΅, ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°ΠΉΡ‚Π΅ Π³ΠΎΡ€Π½ΠΈΡ‚Π΅ Π³Ρ€Π΅ΡˆΠΊΠΈ."
++#: lib/transport.tcl:19
++#, tcl-format
++msgid "Pruning tracking branches deleted from %s"
++msgstr "ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ Π½Π° ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ ΠΎΡ‚ β€ž%sβ€œ"
 +
- #: lib/merge.tcl:13
- msgid ""
- "Cannot merge while amending.\n"
- "\n"
- "You must finish amending this commit before starting any type of merge.\n"
- msgstr ""
- "По Π²Ρ€Π΅ΠΌΠ΅ Π½Π° ΠΏΠΎΠΏΡ€Π°Π²ΡΠ½Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° ΡΠ»ΠΈΠ²Π°Π½Π΅.\n"
- "\n"
- "Врябва Π΄Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ€Π°Π²ΡΠ½Π΅Ρ‚ΠΎ Π½Π° Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° Π·Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ "
- "сливанС.\n"
++#: lib/transport.tcl:25
++msgid "fetch all remotes"
++msgstr "доставянС ΠΎΡ‚ Π²ΡΠΈΡ‡ΠΊΠΈ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΈ"
 +
- #: lib/merge.tcl:27
- msgid ""
- "Last scanned state does not match repository state.\n"
- "\n"
- "Another Git program has modified this repository since the last scan.  A "
- "rescan must be performed before a merge can be performed.\n"
- "\n"
- "The rescan will be automatically started now.\n"
- msgstr ""
- "ПослСдно ΡƒΡΡ‚Π°Π½ΠΎΠ²Π΅Π½ΠΎΡ‚ΠΎ ΡΡŠΡΡ‚ояниС Π½Π΅ ΠΎΡ‚говаря Π½Π° Ρ‚ΠΎΠ²Π° Π² Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ.\n"
- "\n"
- "Някой Π΄Ρ€ΡƒΠ³ ΠΏΡ€ΠΎΡ†Π΅Ρ Π·Π° Git Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΠ» Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅Ρ‚ΠΎ ΠΌΠ΅ΠΆΠ΄ΡƒΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. Π‘ΡŠΡΡ‚ΠΎΡΠ½ΠΈΠ΅Ρ‚ΠΎ "
- "трябва Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€ΠΎΠ²Π΅Ρ€Π΅Π½ΠΎ, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° ΡΠ΅ ΠΈΠ·Π²ΡŠΡ€ΡˆΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅.\n"
- "\n"
- "Автоматично Ρ‰Π΅ Π·Π°ΠΏΠΎΡ‡Π½Π΅ Π½ΠΎΠ²Π° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°.\n"
- "\n"
++#: lib/transport.tcl:26
++msgid "Fetching new changes from all remotes"
++msgstr "ДоставянС Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΎΡ‚ Π²ΡΠΈΡ‡ΠΊΠΈ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
 +
- #: lib/merge.tcl:45
- #, tcl-format
- msgid ""
- "You are in the middle of a conflicted merge.\n"
- "\n"
- "File %s has merge conflicts.\n"
- "\n"
- "You must resolve them, stage the file, and commit to complete the current "
- "merge.  Only then can you begin another merge.\n"
++#: lib/transport.tcl:40
++msgid "remote prune all remotes"
++msgstr "окастрянС Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈ"
 +
- "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Ρ‚Π΅Ρ‡Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅, Π½ΠΎ ΠΈΠΌΠ° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ.\n"
- "\n"
- "ΠŸΠΎΠ³Π»Π΅Π΄Π½Π΅Ρ‚Π΅ Ρ„Π°ΠΉΠ»Π° β€ž%sβ€œ.\n"
- "\n"
- "Врябва Π΄Π° ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Ρ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈΡ‚Π΅ Π² Π½Π΅Π³ΠΎ, Π΄Π° Π³ΠΎ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚Π΅ ΠΊΡŠΠΌ ΠΈΠ½Π΄Π΅ΠΊΡΠ° ΠΈ Π΄Π° "
- "Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅ Ρ‡Ρ€Π΅Π· ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅. Π§Π°ΠΊ Ρ‚ΠΎΠ³Π°Π²Π° ΠΌΠΎΠΆΠ΅ Π΄Π° Π·Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ Π½ΠΎΠ²ΠΎ "
- "сливанС.\n"
++#: lib/transport.tcl:41
++msgid "Pruning tracking branches deleted from all remotes"
 +msgstr ""
- #: lib/merge.tcl:55
++"ΠžΠΊΠ°ΡΡ‚Ρ€ΡΠ½Π΅ Π½Π° ΡΠ»Π΅Π΄ΡΡ‰ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ Π½Π° ΠΈΠ·Ρ‚Ρ€ΠΈΡ‚ΠΈΡ‚Π΅ ΠΊΠ»ΠΎΠ½ΠΈ ΠΎΡ‚ Π²ΡΠΈΡ‡ΠΊΠΈ ΠΎΡ‚Π΄Π°Π»Π΅Ρ‡Π΅Π½ΠΈ "
++"Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°"
 +
- msgid ""
- "You are in the middle of a change.\n"
- "\n"
- "File %s is modified.\n"
- "\n"
- "You should complete the current commit before starting a merge.  Doing so "
- "will help you abort a failed merge, should the need arise.\n"
- msgstr ""
- "Π’ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° Ρ‚Π΅Ρ‡Π΅ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
- "\n"
- "Π€Π°ΠΉΠ»ΡŠΡ‚ β€ž%sβ€œ Π΅ ΠΏΡ€ΠΎΠΌΠ΅Π½Π΅Π½.\n"
- "\n"
- "Врябва Π΄Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰ΠΎΡ‚ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅, ΠΏΡ€Π΅Π΄ΠΈ Π΄Π° Π·Π°ΠΏΠΎΡ‡Π½Π΅Ρ‚Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅. Π’Π°ΠΊΠ° Ρ‰Π΅ "
- "ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»Π΅ΡΠ½ΠΎ Π΄Π° ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚Π΅ ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ, Π°ΠΊΠΎ Π²ΡŠΠ·Π½ΠΈΠΊΠ½Π΅ Π½ΡƒΠΆΠ΄Π°.\n"
++#: lib/transport.tcl:55
 +#, tcl-format
- #: lib/merge.tcl:108
++msgid "Pushing changes to %s"
++msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ Π½Π° ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅ ΠΊΡŠΠΌ β€ž%sβ€œ"
 +
- msgid "%s of %s"
- msgstr "%s ΠΎΡ‚ ΠΎΠ±Ρ‰ΠΎ %s"
++#: lib/transport.tcl:93
 +#, tcl-format
- #: lib/merge.tcl:122
++msgid "Mirroring to %s"
++msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ Π½Π° Π²ΡΠΈΡ‡ΠΊΠΎ ΠΊΡŠΠΌ β€ž%sβ€œ"
 +
- msgid "Merging %s and %s..."
- msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅ Π½Π° β€ž%sβ€œ ΠΈ β€ž%sβ€œβ€¦"
- #: lib/merge.tcl:133
- msgid "Merge completed successfully."
- msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ Π·Π°Π²ΡŠΡ€ΡˆΠΈ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ."
- #: lib/merge.tcl:135
- msgid "Merge failed.  Conflict resolution is required."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΡΠ»ΠΈΠ²Π°Π½Π΅ β€” ΠΈΠΌΠ° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΠΈ Π·Π° ΠΊΠΎΡ€ΠΈΠ³ΠΈΡ€Π°Π½Π΅."
++#: lib/transport.tcl:111
 +#, tcl-format
- #: lib/merge.tcl:160
- #, tcl-format
- msgid "Merge Into %s"
- msgstr "Π‘Π»ΠΈΠ²Π°Π½Π΅ Π² β€ž%sβ€œ"
++msgid "Pushing %s %s to %s"
++msgstr "Π˜Π·Ρ‚Π»Π°ΡΠΊΠ²Π°Π½Π΅ Π½Π° %s β€ž%sβ€œ ΠΊΡŠΠΌ β€ž%sβ€œ"
 +
- #: lib/merge.tcl:179
- msgid "Revision To Merge"
- msgstr "ВСрсия Π·Π° ΡΠ»ΠΈΠ²Π°Π½Π΅"
++#: lib/transport.tcl:132
++msgid "Push Branches"
++msgstr "Клони Π·Π° ΠΈΠ·Ρ‚ласкванС"
 +
- #: lib/merge.tcl:214
- msgid ""
- "Cannot abort while amending.\n"
- "\n"
- "You must finish amending this commit.\n"
- msgstr ""
- "ΠŸΠΎΠΏΡ€Π°Π²ΡΠ½Π΅Ρ‚ΠΎ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²Π΅Π½ΠΎ.\n"
- "\n"
- "Врябва Π΄Π° Π·Π°Π²ΡŠΡ€ΡˆΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ€Π°Π²ΠΊΠ°Ρ‚Π° Π½Π° Ρ‚ΠΎΠ²Π° ΠΏΠΎΠ΄Π°Π²Π°Π½Π΅.\n"
++#: lib/transport.tcl:147
++msgid "Source Branches"
++msgstr "Клони-ΠΈΠ·Ρ‚ΠΎΡ‡Π½ΠΈΡ†ΠΈ"
 +
- #: lib/merge.tcl:224
- msgid ""
- "Abort merge?\n"
- "\n"
- "Aborting the current merge will cause *ALL* uncommitted changes to be lost.\n"
- "\n"
- "Continue with aborting the current merge?"
- msgstr ""
- "Π”Π° ΡΠ΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈ Π»ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ?\n"
- "\n"
- "Π’ Ρ‚Π°ΠΊΡŠΠ² ΡΠ»ΡƒΡ‡Π°ΠΉ β—Π’Π‘Π˜Π§ΠšΠ˜β— Π½Π΅ΠΏΠΎΠ΄Π°Π΄Π΅Π½ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ Π±Π΅Π·Π²ΡŠΠ·Π²Ρ€Π°Ρ‚Π½ΠΎ Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ.\n"
- "\n"
- "Наистина Π»ΠΈ Π΄Π° ΡΠ΅ ΠΏΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈ ΡΠ»ΠΈΠ²Π°Π½Π΅Ρ‚ΠΎ?"
++#: lib/transport.tcl:162
++msgid "Destination Repository"
++msgstr "Π¦Π΅Π»Π΅Π²ΠΎ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅"
 +
- #: lib/merge.tcl:230
- msgid ""
- "Reset changes?\n"
- "\n"
- "Resetting the changes will cause *ALL* uncommitted changes to be lost.\n"
- "\n"
- "Continue with resetting the current changes?"
++#: lib/transport.tcl:205
++msgid "Transfer Options"
++msgstr "Настройки ΠΏΡ€ΠΈ ΠΏΡ€Π΅Π½Π°ΡΡΠ½Π΅Ρ‚ΠΎ"
 +
- "Π”Π° ΡΠ΅ Π·Π°Π½ΡƒΠ»ΡΡ‚ Π»ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅?\n"
- "\n"
- "Π’ Ρ‚Π°ΠΊΡŠΠ² ΡΠ»ΡƒΡ‡Π°ΠΉ β—Π’Π‘Π˜Π§ΠšΠ˜β— Π½Π΅ΠΏΠΎΠ΄Π°Π΄Π΅Π½ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ Ρ‰Π΅ Π±ΡŠΠ΄Π°Ρ‚ Π±Π΅Π·Π²ΡŠΠ·Π²Ρ€Π°Ρ‚Π½ΠΎ Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ.\n"
- "\n"
- "Наистина Π»ΠΈ Π΄Π° ΡΠ΅ Π·Π°Π½ΡƒΠ»ΡΡ‚ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈΡ‚Π΅?"
- #: lib/merge.tcl:241
- msgid "Aborting"
- msgstr "ΠŸΡ€Π΅ΡƒΡΡ‚Π°Π½ΠΎΠ²ΡΠ²Π°Π½Π΅"
++#: lib/transport.tcl:207
++msgid "Force overwrite existing branch (may discard changes)"
 +msgstr ""
- #: lib/merge.tcl:241
- msgid "files reset"
- msgstr "Ρ„Π°ΠΉΠ»Π° ΡΡŠΡ Π·Π°Π½ΡƒΠ»Π΅Π½ΠΈ ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ"
++"Π˜Π·Ρ€ΠΈΡ‡Π½ΠΎ ΠΏΡ€Π΅Π·Π°ΠΏΠΈΡΠ²Π°Π½Π΅ Π½Π° ΡΡŠΡ‰Π΅ΡΡ‚Π²ΡƒΠ²Π°Ρ‰ ΠΊΠ»ΠΎΠ½ (някои ΠΏΡ€ΠΎΠΌΠ΅Π½ΠΈ ΠΌΠΎΠΆΠ΅ Π΄Π° Π±ΡŠΠ΄Π°Ρ‚ "
++"Π·Π°Π³ΡƒΠ±Π΅Π½ΠΈ)"
 +
- #: lib/merge.tcl:269
- msgid "Abort failed."
- msgstr "ΠΠ΅ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΡ€Π΅ΡƒΡΡ‚ановяванС."
++#: lib/transport.tcl:211
++msgid "Use thin pack (for slow network connections)"
++msgstr "Максимална ΠΊΠΎΠΌΠΏΡ€Π΅ΡΠΈΡ (Π·Π° Π±Π°Π²Π½ΠΈ ΠΌΡ€Π΅ΠΆΠΎΠ²ΠΈ Π²Ρ€ΡŠΠ·ΠΊΠΈ)"
 +
- #: lib/merge.tcl:271
- msgid "Abort completed.  Ready."
- msgstr "УспСшно ΠΏΡ€Π΅ΡƒΡΡ‚ановяванС. Π“отовност Π·Π° ΡΠ»Π΅Π΄Π²Π°Ρ‰ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅."
++#: lib/transport.tcl:215
++msgid "Include tags"
++msgstr "Π’ΠΊΠ»ΡŽΡ‡Π²Π°Π½Π΅ Π½Π° Π΅Ρ‚ΠΈΠΊΠ΅Ρ‚ΠΈΡ‚Π΅"
 +
++#: lib/transport.tcl:229
++#, tcl-format
++msgid "%s (%s): Push"
++msgstr "%s (%s): Π˜Π·Ρ‚ласкванС"
index ca4343b40cd9a166fc9c3526d68b6182057e71a3,0000000000000000000000000000000000000000..9f5305c43eeb75c0e1b672efebe6a5aedca1a6ca
mode 100644,000000..100644
--- /dev/null
@@@ -1,2564 -1,0 +1,2382 @@@
- # Irina Riesen <irina.riesen@gmail.com>, 2007.
- #
 +# Translation of git-gui to russian
 +# Copyright (C) 2007 Shawn Pearce
 +# This file is distributed under the same license as the git-gui package.
- "Project-Id-Version: git-gui\n"
++# Translators:
++# Dimitriy Ryazantcev <DJm00n@mail.ru>, 2015-2016
++# Irina Riesen <irina.riesen@gmail.com>, 2007
 +msgid ""
 +msgstr ""
- "PO-Revision-Date: 2007-10-22 22:30-0200\n"
- "Last-Translator: Alex Riesen <raa.lkml@gmail.com>\n"
- "Language-Team: Russian Translation <git@vger.kernel.org>\n"
++"Project-Id-Version: Git Russian Localization Project\n"
 +"Report-Msgid-Bugs-To: \n"
 +"POT-Creation-Date: 2010-01-26 15:47-0800\n"
- msgstr ""
- "НСвозмоТно ΠΎΠΏΡ€Π΅Π΄Π΅Π»ΠΈΡ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡŽ Git\n"
- "\n"
- "%s ΡƒΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ Π½Π° Π²Π΅Ρ€ΡΠΈΡŽ '%s'.\n"
- "\n"
- "для %s Ρ‚рСбуСтся Π²Π΅Ρ€ΡΠΈΡ Git, Π½Π°Ρ‡ΠΈΠ½Π°Ρ Ρ 1.5.0\n"
- "\n"
- "ΠŸΡ€ΠΈΠ½ΡΡ‚ΡŒ '%s' ΠΊΠ°ΠΊ Π²Π΅Ρ€ΡΠΈΡŽ 1.5.0?\n"
++"PO-Revision-Date: 2016-06-30 12:39+0000\n"
++"Last-Translator: Dimitriy Ryazantcev <DJm00n@mail.ru>\n"
++"Language-Team: Russian (http://www.transifex.com/djm00n/git-po-ru/language/ru/)\n"
 +"MIME-Version: 1.0\n"
 +"Content-Type: text/plain; charset=UTF-8\n"
 +"Content-Transfer-Encoding: 8bit\n"
++"Language: ru\n"
++"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 +
 +#: git-gui.sh:41 git-gui.sh:793 git-gui.sh:807 git-gui.sh:820 git-gui.sh:903
 +#: git-gui.sh:922
 +msgid "git-gui: fatal error"
 +msgstr "git-gui: ΠΊΡ€ΠΈΡ‚ичСская ΠΎΡˆΠΈΠ±ΠΊΠ°"
 +
 +#: git-gui.sh:743
 +#, tcl-format
 +msgid "Invalid font specified in %s:"
 +msgstr "Π’ %s ΡƒΡΡ‚Π°Π½ΠΎΠ²Π»Π΅Π½ Π½Π΅Π²Π΅Ρ€Π½Ρ‹ΠΉ ΡˆΡ€ΠΈΡ„Ρ‚:"
 +
 +#: git-gui.sh:779
 +msgid "Main Font"
 +msgstr "Π¨Ρ€ΠΈΡ„Ρ‚ ΠΈΠ½Ρ‚СрфСйса"
 +
 +#: git-gui.sh:780
 +msgid "Diff/Console Font"
 +msgstr "Π¨Ρ€ΠΈΡ„Ρ‚ ΠΊΠΎΠ½ΡΠΎΠ»ΠΈ ΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ (diff)"
 +
 +#: git-gui.sh:794
 +msgid "Cannot find git in PATH."
 +msgstr "git Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½ Π² PATH."
 +
 +#: git-gui.sh:821
 +msgid "Cannot parse Git version string:"
 +msgstr "НСвозмоТно Ρ€Π°ΡΠΏΠΎΠ·Π½Π°Ρ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΡƒ Π²Π΅Ρ€ΡΠΈΠΈ Git: "
 +
 +#: git-gui.sh:839
 +#, tcl-format
 +msgid ""
 +"Git version cannot be determined.\n"
 +"\n"
 +"%s claims it is version '%s'.\n"
 +"\n"
 +"%s requires at least Git 1.5.0 or later.\n"
 +"\n"
 +"Assume '%s' is version 1.5.0?\n"
- msgstr "ОбновлСниС ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ ΠΎ ΡΠΎΡΡ‚оянии Ρ„Π°ΠΉΠ»ΠΎΠ²..."
++msgstr "НСвозмоТно ΠΎΠΏΡ€Π΅Π΄Π΅Π»ΠΈΡ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡŽ Git\n\n%s ΡƒΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ Π½Π° Π²Π΅Ρ€ΡΠΈΡŽ Β«%sΒ».\n\nдля %s Ρ‚рСбуСтся Π²Π΅Ρ€ΡΠΈΡ Git, Π½Π°Ρ‡ΠΈΠ½Π°Ρ Ρ 1.5.0\n\nΠŸΡ€Π΅Π΄ΠΏΠΎΠ»ΠΎΠΆΠΈΡ‚ΡŒ, Ρ‡Ρ‚ΠΎ Β«%sΒ» ΠΈ Π΅ΡΡ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡ 1.5.0?\n"
 +
 +#: git-gui.sh:1128
 +msgid "Git directory not found:"
 +msgstr "ΠšΠ°Ρ‚Π°Π»ΠΎΠ³ Git Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½:"
 +
 +#: git-gui.sh:1146
 +msgid "Cannot move to top of working directory:"
 +msgstr "НСвозмоТно ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ ΠΊΠΎΡ€Π½ΡŽ Ρ€Π°Π±ΠΎΡ‡Π΅Π³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория: "
 +
 +#: git-gui.sh:1154
 +msgid "Cannot use bare repository:"
 +msgstr "НСвозмоТно ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½ΠΈΠ΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π±Π΅Π· Ρ€Π°Π±ΠΎΡ‡Π΅Π³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π°:"
 +
 +#: git-gui.sh:1162
 +msgid "No working directory"
 +msgstr "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΠ΅Ρ‚ Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³"
 +
 +#: git-gui.sh:1334 lib/checkout_op.tcl:306
 +msgid "Refreshing file status..."
- msgstr "Поиск ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ²..."
++msgstr "ОбновлСниС ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ ΠΎ ΡΠΎΡΡ‚оянии Ρ„айлов…"
 +
 +#: git-gui.sh:1390
 +msgid "Scanning for modified files ..."
- msgstr "Π’Ρ‹Π·ΠΎΠ² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория prepare-commit-msg..."
++msgstr "Поиск ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Π½Ρ‹Ρ… Ρ„айлов…"
 +
 +#: git-gui.sh:1454
 +msgid "Calling prepare-commit-msg hook..."
- msgstr ""
- "Π‘ΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ ΠΏΡ€Π΅Ρ€Π²Π°Π½ΠΎ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория prepare-commit-msg"
++msgstr "Π’Ρ‹Π·ΠΎΠ² ΠΏΠ΅Ρ€Π΅Ρ…Π²Π°Ρ‚Ρ‡ΠΈΠΊΠ° prepare-commit-msg…"
 +
 +#: git-gui.sh:1471
 +msgid "Commit declined by prepare-commit-msg hook."
- msgstr "ИзмСнСно, Π½Π΅ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ"
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚ ΠΏΡ€Π΅Ρ€Π²Π°Π½ ΠΏΠ΅Ρ€Π΅Ρ…Π²Π°Ρ‚Ρ‡ΠΈΠΊΠΎΠΌ prepare-commit-msg."
 +
 +#: git-gui.sh:1629 lib/browser.tcl:246
 +msgid "Ready."
 +msgstr "Π“ΠΎΡ‚ΠΎΠ²ΠΎ."
 +
 +#: git-gui.sh:1787
 +#, tcl-format
 +msgid "Displaying only %s of %s files."
 +msgstr "Показано %s ΠΈΠ· %s Ρ„Π°ΠΉΠ»ΠΎΠ²."
 +
 +#: git-gui.sh:1913
 +msgid "Unmodified"
 +msgstr "НС ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΎ"
 +
 +#: git-gui.sh:1915
 +msgid "Modified, not staged"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "ИзмСнСно, Π½Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅"
 +
 +#: git-gui.sh:1916 git-gui.sh:1924
 +msgid "Staged for commit"
- msgstr "Части, ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹Π΅ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ΅ Π΄Π»Ρ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°"
 +
 +#: git-gui.sh:1917 git-gui.sh:1925
 +msgid "Portions staged for commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ Π΄Π»Ρ ΡΠΎΡ…ранСния, ΠΎΡ‚сутствуСт"
++msgstr "Части, Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅ Π΄Π»Ρ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°"
 +
 +#: git-gui.sh:1918 git-gui.sh:1926
 +msgid "Staged for commit, missing"
- msgstr "Π’ΠΈΠΏ Ρ„Π°ΠΉΠ»Π° ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½, Π½Π΅ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ"
++msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ΅ Π΄Π»Ρ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°, ΠΎΡ‚сутствуСт"
 +
 +#: git-gui.sh:1920
 +msgid "File type changed, not staged"
- msgstr "Π’ΠΈΠΏ Ρ„Π°ΠΉΠ»Π° ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½, ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ"
++msgstr "Π’ΠΈΠΏ Ρ„Π°ΠΉΠ»Π° ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½, Π½Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅"
 +
 +#: git-gui.sh:1921
 +msgid "File type changed, staged"
- msgstr "НС ΠΎΡ‚ΡΠ»Π΅ΠΆΠΈΠ²Π°Π΅Ρ‚ΡΡ, Π½Π΅ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ"
++msgstr "Π’ΠΈΠΏ Ρ„Π°ΠΉΠ»Π° ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½, Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅"
 +
 +#: git-gui.sh:1923
 +msgid "Untracked, not staged"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ Π΄Π»Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΡ"
++msgstr "НС ΠΎΡ‚ΡΠ»Π΅ΠΆΠΈΠ²Π°Π΅Ρ‚ΡΡ, Π½Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅"
 +
 +#: git-gui.sh:1928
 +msgid "Missing"
 +msgstr "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΠ΅Ρ‚"
 +
 +#: git-gui.sh:1929
 +msgid "Staged for removal"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ Π΄Π»Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΡ, Π΅Ρ‰Π΅ Π½Π΅ ΡƒΠ΄Π°Π»Π΅Π½ΠΎ"
++msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ΅ Π΄Π»Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΡ"
 +
 +#: git-gui.sh:1930
 +msgid "Staged for removal, still present"
- msgstr "ЗапускаСтся gitk... ΠŸΠΎΠ΄ΠΎΠΆΠ΄ΠΈΡ‚Π΅, ΠΏΠΎΠΆΠ°Π»ΡƒΠΉΡΡ‚Π°..."
++msgstr "Π’ ΠΈΠ½Π΄Π΅ΠΊΡΠ΅ Π΄Π»Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΡ, Π΅Ρ‰Π΅ Π½Π΅ ΡƒΠ΄Π°Π»Π΅Π½ΠΎ"
 +
 +#: git-gui.sh:1932 git-gui.sh:1933 git-gui.sh:1934 git-gui.sh:1935
 +#: git-gui.sh:1936 git-gui.sh:1937
 +msgid "Requires merge resolution"
 +msgstr "ВрСбуСтся Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π° ΠΏΡ€ΠΈ ΡΠ»ΠΈΡΠ½ΠΈΠΈ"
 +
 +#: git-gui.sh:1972
 +msgid "Starting gitk... please wait..."
- msgstr "Π’Π΅Ρ‚Π²ΡŒ"
++msgstr "ЗапускаСтся gitk… ΠŸΠΎΠ΄ΠΎΠΆΠ΄ΠΈΡ‚Π΅, ΠΏΠΎΠΆΠ°Π»ΡƒΠΉΡΡ‚а…"
 +
 +#: git-gui.sh:1984
 +msgid "Couldn't find gitk in PATH"
 +msgstr "gitk Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½ Π² PATH."
 +
 +#: git-gui.sh:2043
 +msgid "Couldn't find git gui in PATH"
 +msgstr "git gui Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½ Π² PATH."
 +
 +#: git-gui.sh:2455 lib/choose_repository.tcl:36
 +msgid "Repository"
 +msgstr "Π Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: git-gui.sh:2456
 +msgid "Edit"
 +msgstr "Π Π΅Π΄Π°ΠΊΡ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ"
 +
 +#: git-gui.sh:2458 lib/choose_rev.tcl:561
 +msgid "Branch"
- msgstr "БостояниС"
++msgstr "Π’Π΅Ρ‚ΠΊΠ°"
 +
 +#: git-gui.sh:2461 lib/choose_rev.tcl:548
 +msgid "Commit@@noun"
- msgstr "ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚"
 +
 +#: git-gui.sh:2464 lib/merge.tcl:121 lib/merge.tcl:150 lib/merge.tcl:168
 +msgid "Merge"
 +msgstr "БлияниС"
 +
 +#: git-gui.sh:2465 lib/choose_rev.tcl:557
 +msgid "Remote"
 +msgstr "Π’Π½Π΅ΡˆΠ½ΠΈΠ΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ"
 +
 +#: git-gui.sh:2468
 +msgid "Tools"
 +msgstr "Π’ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ"
 +
 +#: git-gui.sh:2477
 +msgid "Explore Working Copy"
 +msgstr "ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€ Ρ€Π°Π±ΠΎΡ‡Π΅Π³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π°"
 +
 +#: git-gui.sh:2483
 +msgid "Browse Current Branch's Files"
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Π²Π΅Ρ‚Π²ΠΈ..."
++msgstr "ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: git-gui.sh:2487
 +msgid "Browse Branch Files..."
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Π²Π΅Ρ‚ки…"
 +
 +#: git-gui.sh:2492
 +msgid "Visualize Current Branch's History"
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Π²ΡΠ΅Ρ… Π²Π΅Ρ‚Π²Π΅ΠΉ"
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: git-gui.sh:2496
 +msgid "Visualize All Branch History"
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Π²Π΅Ρ‚Π²ΠΈ %s"
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Π²ΡΠ΅Ρ… Π²Π΅Ρ‚ΠΎΠΊ"
 +
 +#: git-gui.sh:2503
 +#, tcl-format
 +msgid "Browse %s's Files"
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Π²Π΅Ρ‚Π²ΠΈ %s"
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Π²Π΅Ρ‚ΠΊΠΈ %s"
 +
 +#: git-gui.sh:2505
 +#, tcl-format
 +msgid "Visualize %s's History"
- msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ..."
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Π²Π΅Ρ‚ΠΊΠΈ %s"
 +
 +#: git-gui.sh:2510 lib/database.tcl:27 lib/database.tcl:67
 +msgid "Database Statistics"
 +msgstr "Бтатистика Π±Π°Π·Ρ‹ Π΄Π°Π½Π½Ρ‹Ρ…"
 +
 +#: git-gui.sh:2513 lib/database.tcl:34
 +msgid "Compress Database"
 +msgstr "Π‘ΠΆΠ°Ρ‚ΡŒ Π±Π°Π·Ρƒ Π΄Π°Π½Π½Ρ‹Ρ…"
 +
 +#: git-gui.sh:2516
 +msgid "Verify Database"
 +msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΈΡ‚ΡŒ Π±Π°Π·Ρƒ Π΄Π°Π½Π½Ρ‹Ρ…"
 +
 +#: git-gui.sh:2523 git-gui.sh:2527 git-gui.sh:2531 lib/shortcut.tcl:8
 +#: lib/shortcut.tcl:40 lib/shortcut.tcl:72
 +msgid "Create Desktop Icon"
 +msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ ΡΡ€Π»Ρ‹ΠΊ Π½Π° Ρ€Π°Π±ΠΎΡ‡Π΅ΠΌ ΡΡ‚ΠΎΠ»Π΅"
 +
 +#: git-gui.sh:2539 lib/choose_repository.tcl:183 lib/choose_repository.tcl:191
 +msgid "Quit"
 +msgstr "Π’Ρ‹Ρ…ΠΎΠ΄"
 +
 +#: git-gui.sh:2547
 +msgid "Undo"
 +msgstr "ΠžΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:2550
 +msgid "Redo"
 +msgstr "ΠŸΠΎΠ²Ρ‚ΠΎΡ€ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:2554 git-gui.sh:3109
 +msgid "Cut"
 +msgstr "Π’Ρ‹Ρ€Π΅Π·Π°Ρ‚ΡŒ"
 +
 +#: git-gui.sh:2557 git-gui.sh:3112 git-gui.sh:3186 git-gui.sh:3259
 +#: lib/console.tcl:69
 +msgid "Copy"
 +msgstr "ΠšΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ"
 +
 +#: git-gui.sh:2560 git-gui.sh:3115
 +msgid "Paste"
 +msgstr "Π’ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:2563 git-gui.sh:3118 lib/branch_delete.tcl:26
 +#: lib/remote_branch_delete.tcl:38
 +msgid "Delete"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:2567 git-gui.sh:3122 git-gui.sh:3263 lib/console.tcl:71
 +msgid "Select All"
 +msgstr "Π’Ρ‹Π΄Π΅Π»ΠΈΡ‚ΡŒ Π²ΡΠ΅"
 +
 +#: git-gui.sh:2576
 +msgid "Create..."
- msgstr "ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ..."
++msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2582
 +msgid "Checkout..."
- msgstr "ΠŸΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Ρ‚ΡŒ..."
++msgstr "ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈβ€¦"
 +
 +#: git-gui.sh:2588
 +msgid "Rename..."
- msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ..."
++msgstr "ΠŸΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Ρ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2593
 +msgid "Delete..."
- msgstr "Π‘Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ..."
++msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2598
 +msgid "Reset..."
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ"
++msgstr "Π‘Π±Ρ€ΠΎΡΠΈΡ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2608
 +msgid "Done"
 +msgstr "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ"
 +
 +#: git-gui.sh:2610
 +msgid "Commit@@verb"
- msgstr "НовоС ΡΠΎΡΡ‚ΠΎΡΠ½ΠΈΠ΅"
++msgstr "Π—Π°ΠΊΠΎΠΌΠΌΠΈΡ‚ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:2619 git-gui.sh:3050
 +msgid "New Commit"
- msgstr "Π˜ΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅Π΅ ΡΠΎΡΡ‚ояниС"
++msgstr "Новый ΠΊΠΎΠΌΠΌΠΈΡ‚"
 +
 +#: git-gui.sh:2627 git-gui.sh:3057
 +msgid "Amend Last Commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π˜ΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΏΠΎΡΠ»Π΅Π΄Π½ΠΈΠΉ ΠΊΠΎΠΌΠΌΠΈΡ‚"
 +
 +#: git-gui.sh:2637 git-gui.sh:3011 lib/remote_branch_delete.tcl:99
 +msgid "Rescan"
 +msgstr "ΠŸΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ"
 +
 +#: git-gui.sh:2643
 +msgid "Stage To Commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Π½Ρ‹Π΅ Ρ„Π°ΠΉΠ»Ρ‹ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π² ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: git-gui.sh:2649
 +msgid "Stage Changed Files To Commit"
- msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ ΠΈΠ· ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ³ΠΎ"
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½Π½Ρ‹Π΅ Ρ„Π°ΠΉΠ»Ρ‹ Π² ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: git-gui.sh:2655
 +msgid "Unstage From Commit"
- msgstr "ΠžΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ"
++msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ ΠΈΠ· ΠΈΠ·Π΄Π΅ΠΊΡΠ°"
 +
 +#: git-gui.sh:2661 lib/index.tcl:412
 +msgid "Revert Changes"
- msgstr "Π›ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠ΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅..."
++msgstr "ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ"
 +
 +#: git-gui.sh:2669 git-gui.sh:3310 git-gui.sh:3341
 +msgid "Show Less Context"
 +msgstr "МСньшС ΠΊΠΎΠ½Ρ‚Π΅ΠΊΡΡ‚Π°"
 +
 +#: git-gui.sh:2673 git-gui.sh:3314 git-gui.sh:3345
 +msgid "Show More Context"
 +msgstr "Π‘ΠΎΠ»ΡŒΡˆΠ΅ ΠΊΠΎΠ½Ρ‚Скста"
 +
 +#: git-gui.sh:2680 git-gui.sh:3024 git-gui.sh:3133
 +msgid "Sign Off"
 +msgstr "Π’ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Signed-off-by"
 +
 +#: git-gui.sh:2696
 +msgid "Local Merge..."
- msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΡΠ»ΠΈΡΠ½ΠΈΠ΅..."
++msgstr "Π›ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠ΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅β€¦"
 +
 +#: git-gui.sh:2701
 +msgid "Abort Merge..."
- msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ..."
++msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΡΠ»ΠΈΡΠ½ΠΈΠ΅β€¦"
 +
 +#: git-gui.sh:2713 git-gui.sh:2741
 +msgid "Add..."
- msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ..."
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2717
 +msgid "Push..."
- msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π²Π΅Ρ‚Π²ΡŒ..."
++msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2721
 +msgid "Delete Branch..."
- msgstr "Настройки..."
++msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π²Π΅Ρ‚ку…"
 +
 +#: git-gui.sh:2731 git-gui.sh:3292
 +msgid "Options..."
- msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ..."
++msgstr "Настройки…"
 +
 +#: git-gui.sh:2742
 +msgid "Remove..."
- msgstr "ВСкущая Π²Π΅Ρ‚Π²ΡŒ:"
++msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒβ€¦"
 +
 +#: git-gui.sh:2751 lib/choose_repository.tcl:50
 +msgid "Help"
 +msgstr "ΠŸΠΎΠΌΠΎΡ‰ΡŒ"
 +
 +#: git-gui.sh:2755 git-gui.sh:2759 lib/about.tcl:14
 +#: lib/choose_repository.tcl:44 lib/choose_repository.tcl:53
 +#, tcl-format
 +msgid "About %s"
 +msgstr "О %s"
 +
 +#: git-gui.sh:2783
 +msgid "Online Documentation"
 +msgstr "ДокумСнтация Π² ΠΈΠ½Ρ‚Π΅Ρ€Π½Π΅Ρ‚Π΅"
 +
 +#: git-gui.sh:2786 lib/choose_repository.tcl:47 lib/choose_repository.tcl:56
 +msgid "Show SSH Key"
 +msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΊΠ»ΡŽΡ‡ SSH"
 +
 +#: git-gui.sh:2893
 +#, tcl-format
 +msgid "fatal: cannot stat path %s: No such file or directory"
 +msgstr "критичСская ΠΎΡˆΠΈΠ±ΠΊΠ°: %s: Π½Π΅Ρ‚ Ρ‚Π°ΠΊΠΎΠ³ΠΎ Ρ„Π°ΠΉΠ»Π° ΠΈΠ»ΠΈ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π°"
 +
 +#: git-gui.sh:2926
 +msgid "Current Branch:"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ (Π±ΡƒΠ΄Π΅Ρ‚ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΎ)"
++msgstr "ВСкущая Π²Π΅Ρ‚ΠΊΠ°:"
 +
 +#: git-gui.sh:2947
 +msgid "Staged Changes (Will Commit)"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ Π²ΡΠ΅"
++msgstr "ИзмСнСния Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅ (Π±ΡƒΠ΄ΡƒΡ‚ Π·Π°ΠΊΠΎΠΌΠΌΠΈΡ‡Π΅Π½Ρ‹)"
 +
 +#: git-gui.sh:2967
 +msgid "Unstaged Changes"
 +msgstr "ИзмСнСно (Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΎ)"
 +
 +#: git-gui.sh:3017
 +msgid "Stage Changed"
- msgstr "ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΠΏΠ΅Ρ€Π²ΠΎΠΌΡƒ ΡΠΎΡΡ‚ΠΎΡΠ½ΠΈΡŽ:"
++msgstr "Π˜Π½Π΄Π΅ΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²ΡΡ‘"
 +
 +#: git-gui.sh:3036 lib/transport.tcl:104 lib/transport.tcl:193
 +msgid "Push"
 +msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:3071
 +msgid "Initial Commit Message:"
- msgstr "ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠΌΡƒ ΡΠΎΡΡ‚ΠΎΡΠ½ΠΈΡŽ:"
++msgstr "Π‘ΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°:"
 +
 +#: git-gui.sh:3072
 +msgid "Amended Commit Message:"
- msgstr "ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠΌΡƒ ΠΏΠ΅Ρ€Π²ΠΎΠ½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌΡƒ ΡΠΎΡΡ‚ΠΎΡΠ½ΠΈΡŽ:"
++msgstr "Π‘ΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°:"
 +
 +#: git-gui.sh:3073
 +msgid "Amended Initial Commit Message:"
- msgstr "ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠΌΡƒ ΡΠ»ΠΈΡΠ½ΠΈΡŽ:"
++msgstr "Π‘ΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°:"
 +
 +#: git-gui.sh:3074
 +msgid "Amended Merge Commit Message:"
- msgstr "ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΡΠ»ΠΈΡΠ½ΠΈΡŽ:"
++msgstr "Π‘ΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠ³ΠΎ ΡΠ»ΠΈΡΠ½ΠΈΡ:"
 +
 +#: git-gui.sh:3075
 +msgid "Merge Commit Message:"
- msgstr "ΠšΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΡΠΎΡΡ‚ΠΎΡΠ½ΠΈΡŽ:"
++msgstr "Π‘ΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΡΠ»ΠΈΡΠ½ΠΈΡ:"
 +
 +#: git-gui.sh:3076
 +msgid "Commit Message:"
- msgstr "ΠžΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ"
++msgstr "Π‘ΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°:"
 +
 +#: git-gui.sh:3125 git-gui.sh:3267 lib/console.tcl:73
 +msgid "Copy All"
 +msgstr "ΠšΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²ΡΠ΅"
 +
 +#: git-gui.sh:3149 lib/blame.tcl:104
 +msgid "File:"
 +msgstr "Π€Π°ΠΉΠ»:"
 +
 +#: git-gui.sh:3255
 +msgid "Refresh"
 +msgstr "ΠžΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ"
 +
 +#: git-gui.sh:3276
 +msgid "Decrease Font Size"
 +msgstr "Π£ΠΌΠ΅Π½ΡŒΡˆΠΈΡ‚ΡŒ Ρ€Π°Π·ΠΌΠ΅Ρ€ ΡˆΡ€ΠΈΡ„Ρ‚Π°"
 +
 +#: git-gui.sh:3280
 +msgid "Increase Font Size"
 +msgstr "Π£Π²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Ρ€Π°Π·ΠΌΠ΅Ρ€ ΡˆΡ€ΠΈΡ„Ρ‚Π°"
 +
 +#: git-gui.sh:3288 lib/blame.tcl:281
 +msgid "Encoding"
 +msgstr "ΠšΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΠ°"
 +
 +#: git-gui.sh:3299
 +msgid "Apply/Reverse Hunk"
 +msgstr "ΠŸΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ΡŒ/Π£Π±Ρ€Π°Ρ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠ΅"
 +
 +#: git-gui.sh:3304
 +msgid "Apply/Reverse Line"
 +msgstr "ΠŸΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ΡŒ/Π£Π±Ρ€Π°Ρ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΡƒ"
 +
 +#: git-gui.sh:3323
 +msgid "Run Merge Tool"
 +msgstr "Π—Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ ΡΠ»ΠΈΡΠ½ΠΈΡ"
 +
 +#: git-gui.sh:3328
 +msgid "Use Remote Version"
 +msgstr "Π’Π·ΡΡ‚ΡŒ Π²Π½Π΅ΡˆΠ½ΡŽΡŽ Π²Π΅Ρ€ΡΠΈΡŽ"
 +
 +#: git-gui.sh:3332
 +msgid "Use Local Version"
 +msgstr "Π’Π·ΡΡ‚ΡŒ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΡƒΡŽ Π²Π΅Ρ€ΡΠΈΡŽ"
 +
 +#: git-gui.sh:3336
 +msgid "Revert To Base"
- msgstr ""
++msgstr "ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ"
 +
 +#: git-gui.sh:3354
 +msgid "Visualize These Changes In The Submodule"
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²Π΅Ρ‚Π²ΠΈ ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Ρ"
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΡΡ‚ΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Ρ"
 +
 +#: git-gui.sh:3358
 +msgid "Visualize Current Branch History In The Submodule"
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Π²ΡΠ΅Ρ… Π²Π΅Ρ‚Π²Π΅ΠΉ ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Ρ"
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²Π΅Ρ‚ΠΊΠΈ ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Ρ"
 +
 +#: git-gui.sh:3362
 +msgid "Visualize All Branch History In The Submodule"
- msgstr ""
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ Π²ΡΠ΅Ρ… Π²Π΅Ρ‚ΠΎΠΊ ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Ρ"
 +
 +#: git-gui.sh:3367
 +msgid "Start git gui In The Submodule"
- msgstr "НС ΡΠΎΡ…Ρ€Π°Π½ΡΡ‚ΡŒ Ρ‡Π°ΡΡ‚ΡŒ"
++msgstr "Π—Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ git gui Π² ΠΏΠΎΠ΄ΠΌΠΎΠ΄ΡƒΠ»Π΅"
 +
 +#: git-gui.sh:3389
 +msgid "Unstage Hunk From Commit"
- msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΠΈ ΠΈΠ· ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ³ΠΎ"
++msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ Π±Π»ΠΎΠΊ ΠΈΠ· ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
 +#: git-gui.sh:3391
 +msgid "Unstage Lines From Commit"
- msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΡƒ ΠΈΠ· ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ³ΠΎ"
++msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΠΈ ΠΈΠ· ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
 +#: git-gui.sh:3393
 +msgid "Unstage Line From Commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ Ρ‡Π°ΡΡ‚ΡŒ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π£Π±Ρ€Π°Ρ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΡƒ ΠΈΠ· ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
 +#: git-gui.sh:3396
 +msgid "Stage Hunk For Commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΠΈ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π±Π»ΠΎΠΊ Π² ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: git-gui.sh:3398
 +msgid "Stage Lines For Commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΡƒ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΠΈ Π² ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: git-gui.sh:3400
 +msgid "Stage Line For Commit"
- msgstr "Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·Π°Ρ†ΠΈΡ..."
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΡΡ‚Ρ€ΠΎΠΊΡƒ Π² ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: git-gui.sh:3424
 +msgid "Initializing..."
- msgstr ""
- "Π’ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹ ΠΎΡˆΠΈΠ±ΠΊΠΈ Π² ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Π½Π½Ρ‹Ρ… ΠΎΠΊΡ€ΡƒΠΆΠ΅Π½ΠΈΡ.\n"
- "\n"
- "ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Π½Π½Ρ‹Π΅ ΠΎΠΊΡ€ΡƒΠΆΠ΅Π½ΠΈΡ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ\n"
- "Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΡ€ΠΎΠΈΠ³Π½ΠΎΡ€ΠΈΡ€ΠΎΠ²Π°Π½Ρ‹ ΠΊΠΎΠΌΠ°Π½Π΄Π°ΠΌΠΈ Git,\n"
- "Π·Π°ΠΏΡƒΡ‰Π΅Π½Π½Ρ‹ΠΌΠΈ ΠΈΠ· %s\n"
- "\n"
++msgstr "Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·Π°Ρ†ΠΈΡβ€¦"
 +
 +#: git-gui.sh:3541
 +#, tcl-format
 +msgid ""
 +"Possible environment issues exist.\n"
 +"\n"
 +"The following environment variables are probably\n"
 +"going to be ignored by any Git subprocess run\n"
 +"by %s:\n"
 +"\n"
- msgstr ""
- "\n"
- "Π­Ρ‚ΠΎ ΠΈΠ·Π²Π΅ΡΡ‚ная ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠ° Ρ Tcl,\n"
- "распространяСмым Cygwin."
++msgstr "Π’ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹ ΠΎΡˆΠΈΠ±ΠΊΠΈ Π² ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Π½Π½Ρ‹Ρ… ΠΎΠΊΡ€ΡƒΠΆΠ΅Π½ΠΈΡ.\n\nΠŸΠ΅Ρ€Π΅ΠΌΠ΅Π½Π½Ρ‹Π΅ ΠΎΠΊΡ€ΡƒΠΆΠ΅Π½ΠΈΡ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ\nΠ±ΡƒΠ΄ΡƒΡ‚ ΠΏΡ€ΠΎΠΈΠ³Π½ΠΎΡ€ΠΈΡ€ΠΎΠ²Π°Π½Ρ‹ ΠΊΠΎΠΌΠ°Π½Π΄Π°ΠΌΠΈ Git,\nΠ·Π°ΠΏΡƒΡ‰Π΅Π½Π½Ρ‹ΠΌΠΈ ΠΈΠ· %s\n\n"
 +
 +#: git-gui.sh:3570
 +msgid ""
 +"\n"
 +"This is due to a known issue with the\n"
 +"Tcl binary distributed by Cygwin."
- msgstr ""
- "\n"
- "\n"
- "ВмСсто ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½ΠΈΡ %s ΠΌΠΎΠΆΠ½ΠΎ\n"
- "ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π·Π½Π°Ρ‡Π΅Π½ΠΈΡ user.name ΠΈ\n"
- "user.email Π² Π’Π°ΡˆΠ΅ΠΌ ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΎΠΌ\n"
- "Ρ„Π°ΠΉΠ»Π΅ ~/.gitconfig.\n"
++msgstr "\nΠ­Ρ‚ΠΎ ΠΈΠ·Π²Π΅ΡΡ‚ная ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠ° Ρ Tcl,\nраспространяСмым Cygwin."
 +
 +#: git-gui.sh:3575
 +#, tcl-format
 +msgid ""
 +"\n"
 +"\n"
 +"A good replacement for %s\n"
 +"is placing values for the user.name and\n"
 +"user.email settings into your personal\n"
 +"~/.gitconfig file.\n"
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½Π΅Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС:"
++msgstr "\n\nВмСсто ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½ΠΈΡ %s ΠΌΠΎΠΆΠ½ΠΎ\nΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π·Π½Π°Ρ‡Π΅Π½ΠΈΡ user.name ΠΈ\nuser.email Π² Π’Π°ΡˆΠ΅ΠΌ ΠΏΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½ΠΎΠΌ\nΡ„Π°ΠΉΠ»Π΅ ~/.gitconfig.\n"
 +
 +#: lib/about.tcl:26
 +msgid "git-gui - a graphical user interface for Git."
 +msgstr "git-gui - Π³Ρ€Π°Ρ„ичСский ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΡΠΊΠΈΠΉ ΠΈΠ½Ρ‚СрфСйс ΠΊ Git."
 +
 +#: lib/blame.tcl:72
 +msgid "File Viewer"
 +msgstr "ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€ Ρ„Π°ΠΉΠ»Π°"
 +
 +#: lib/blame.tcl:78
 +msgid "Commit:"
- msgstr "Π‘ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ SHA-1"
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚:"
 +
 +#: lib/blame.tcl:271
 +msgid "Copy Commit"
- msgstr "Найти Ρ‚Скст..."
++msgstr "ΠšΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ SHA-1"
 +
 +#: lib/blame.tcl:275
 +msgid "Find Text..."
- msgstr "Π Π°ΡΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ ΡΠΎΡΡ‚ояниС ΠΏΡ€Π΅Π΄ΠΊΠ°"
++msgstr "Найти Ρ‚Скст…"
 +
 +#: lib/blame.tcl:284
 +msgid "Do Full Copy Detection"
 +msgstr "ΠŸΡ€ΠΎΠ²Π΅ΡΡ‚ΠΈ ΠΏΠΎΠ»Π½Ρ‹ΠΉ ΠΏΠΎΠΈΡΠΊ ΠΊΠΎΠΏΠΈΠΉ"
 +
 +#: lib/blame.tcl:288
 +msgid "Show History Context"
 +msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΈΡΡ‚оричСский ΠΊΠΎΠ½Ρ‚Скст"
 +
 +#: lib/blame.tcl:291
 +msgid "Blame Parent Commit"
- msgstr "Π§Ρ‚Π΅Π½ΠΈΠ΅ %s..."
++msgstr "Авторы Ρ€ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΡΠΊΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°"
 +
 +#: lib/blame.tcl:450
 +#, tcl-format
 +msgid "Reading %s..."
- msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° Π°Π½Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈ ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠΉ/ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Π½ΠΈΠΉ..."
++msgstr "Π§Ρ‚Π΅Π½ΠΈΠ΅ %s…"
 +
 +#: lib/blame.tcl:557
 +msgid "Loading copy/move tracking annotations..."
- msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° Π°Π½Π½ΠΎΡ‚Π°Ρ†ΠΈΠΉ ΠΏΠ΅Ρ€Π²ΠΎΠ½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΡ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π°..."
++msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° Π°Π½Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈ ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠΉ/пСрСимСнований…"
 +
 +#: lib/blame.tcl:577
 +msgid "lines annotated"
 +msgstr "строк ΠΏΡ€ΠΎΠΊΠΎΠΌΠΌΠ΅Π½Ρ‚ΠΈΡ€ΠΎΠ²Π°Π½ΠΎ"
 +
 +#: lib/blame.tcl:769
 +msgid "Loading original location annotations..."
- msgstr "Π’Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ ΠΏΠΎΠΈΡΠΊΠ° ΠΊΠΎΠΏΠΈΠΉ..."
++msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° Π°Π½Π½ΠΎΡ‚Π°Ρ†ΠΈΠΉ ΠΏΠ΅Ρ€Π²ΠΎΠ½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΡ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚а…"
 +
 +#: lib/blame.tcl:772
 +msgid "Annotation complete."
 +msgstr "Аннотация Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π°."
 +
 +#: lib/blame.tcl:802
 +msgid "Busy"
 +msgstr "Занят"
 +
 +#: lib/blame.tcl:803
 +msgid "Annotation process is already running."
 +msgstr "Аннотация ΡƒΠΆΠ΅ Π·Π°ΠΏΡƒΡ‰Π΅Π½Π°"
 +
 +#: lib/blame.tcl:842
 +msgid "Running thorough copy detection..."
- msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° Π°Π½Π½ΠΎΡ‚Π°Ρ†ΠΈΠΈ..."
++msgstr "Π’Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ ΠΏΠΎΠΈΡΠΊΠ° ΠΊΠΎΠΏΠΈΠΉβ€¦"
 +
 +#: lib/blame.tcl:910
 +msgid "Loading annotation..."
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½ΠΈΠ»:"
++msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° Π°Π½Π½ΠΎΡ‚ации…"
 +
 +#: lib/blame.tcl:963
 +msgid "Author:"
 +msgstr "Автор:"
 +
 +#: lib/blame.tcl:967
 +msgid "Committer:"
- msgstr "НСвозмоТно Π½Π°ΠΉΡ‚ΠΈ Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π΅ ΡΠΎΡΡ‚ояниС:"
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚Π΅Ρ€:"
 +
 +#: lib/blame.tcl:972
 +msgid "Original File:"
 +msgstr "Π˜ΡΡ…ΠΎΠ΄Π½Ρ‹ΠΉ Ρ„Π°ΠΉΠ»:"
 +
 +#: lib/blame.tcl:1020
 +msgid "Cannot find HEAD commit:"
- msgstr "НСвозмоТно Π½Π°ΠΉΡ‚ΠΈ ΡΠΎΡΡ‚ояниС ΠΏΡ€Π΅Π΄ΠΊΠ°:"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π½Π°ΠΉΡ‚ΠΈ Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π΅ ΡΠΎΡΡ‚ояниС:"
 +
 +#: lib/blame.tcl:1075
 +msgid "Cannot find parent commit:"
- msgstr "ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° Π²Π΅Ρ‚Π²ΡŒ"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π½Π°ΠΉΡ‚ΠΈ Ρ€ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΡΠΊΠΎΠ΅ ΡΠΎΡΡ‚ояниС:"
 +
 +#: lib/blame.tcl:1090
 +msgid "Unable to display parent"
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΊΠ°"
 +
 +#: lib/blame.tcl:1091 lib/diff.tcl:320
 +msgid "Error loading diff:"
 +msgstr "Ошибка Π·Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ:"
 +
 +#: lib/blame.tcl:1231
 +msgid "Originally By:"
 +msgstr "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ:"
 +
 +#: lib/blame.tcl:1237
 +msgid "In File:"
 +msgstr "Π€Π°ΠΉΠ»:"
 +
 +#: lib/blame.tcl:1242
 +msgid "Copied Or Moved Here By:"
 +msgstr "Π‘ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΎ/ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π΅Π½ΠΎ Π²:"
 +
 +#: lib/branch_checkout.tcl:14 lib/branch_checkout.tcl:19
 +msgid "Checkout Branch"
- msgstr "ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ ΠΈΠ· Π²Π½Π΅ΡˆΠ½Π΅ΠΉ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° Π²Π΅Ρ‚ΠΊΡƒ"
 +
 +#: lib/branch_checkout.tcl:23
 +msgid "Checkout"
 +msgstr "ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ"
 +
 +#: lib/branch_checkout.tcl:27 lib/branch_create.tcl:35
 +#: lib/branch_delete.tcl:32 lib/branch_rename.tcl:30 lib/browser.tcl:282
 +#: lib/checkout_op.tcl:579 lib/choose_font.tcl:43 lib/merge.tcl:172
 +#: lib/option.tcl:125 lib/remote_add.tcl:32 lib/remote_branch_delete.tcl:42
 +#: lib/tools_dlg.tcl:40 lib/tools_dlg.tcl:204 lib/tools_dlg.tcl:352
 +#: lib/transport.tcl:108
 +msgid "Cancel"
 +msgstr "ΠžΡ‚ΠΌΠ΅Π½Π°"
 +
 +#: lib/branch_checkout.tcl:32 lib/browser.tcl:287 lib/tools_dlg.tcl:328
 +msgid "Revision"
 +msgstr "ВСрсия"
 +
 +#: lib/branch_checkout.tcl:36 lib/branch_create.tcl:69 lib/option.tcl:280
 +msgid "Options"
 +msgstr "Настройки"
 +
 +#: lib/branch_checkout.tcl:39 lib/branch_create.tcl:92
 +msgid "Fetch Tracking Branch"
- msgstr "ΠžΡ‚ΡΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ ΠΎΡ‚ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠΉ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "Π˜Π·Π²Π»Π΅Ρ‡ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ ΠΈΠ· Π²Π½Π΅ΡˆΠ½Π΅ΠΉ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_checkout.tcl:44
 +msgid "Detach From Local Branch"
- msgstr "Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "ΠžΡ‚ΡΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ ΠΎΡ‚ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠΉ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_create.tcl:22
 +msgid "Create Branch"
- msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ Π½ΠΎΠ²ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ"
++msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ Π²Π΅Ρ‚ΠΊΡƒ"
 +
 +#: lib/branch_create.tcl:27
 +msgid "Create New Branch"
- msgstr "НазваниС Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ Π½ΠΎΠ²ΡƒΡŽ Π²Π΅Ρ‚ΠΊΡƒ"
 +
 +#: lib/branch_create.tcl:31 lib/choose_repository.tcl:381
 +msgid "Create"
 +msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ"
 +
 +#: lib/branch_create.tcl:40
 +msgid "Branch Name"
- msgstr "Π’Π·ΡΡ‚ΡŒ ΠΈΠ· ΠΈΠΌΠ΅Π½ Π²Π΅Ρ‚Π²Π΅ΠΉ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ"
++msgstr "Имя Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_create.tcl:43 lib/remote_add.tcl:39 lib/tools_dlg.tcl:50
 +msgid "Name:"
 +msgstr "НазваниС:"
 +
 +#: lib/branch_create.tcl:58
 +msgid "Match Tracking Branch Name"
- msgstr "ΠžΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠΌΠ΅ΡŽΡ‰ΡƒΡŽΡΡ Π²Π΅Ρ‚Π²ΡŒ:"
++msgstr "Π‘ΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΠΌΠ΅Π½ΠΈ ΠΎΡ‚слСТиваСмой Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_create.tcl:66
 +msgid "Starting Revision"
 +msgstr "ΠΠ°Ρ‡Π°Π»ΡŒΠ½Π°Ρ Π²Π΅Ρ€ΡΠΈΡ"
 +
 +#: lib/branch_create.tcl:72
 +msgid "Update Existing Branch:"
- msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ Π²Π΅Ρ‚Π²ΡŒ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ."
++msgstr "ΠžΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠΌΠ΅ΡŽΡ‰ΡƒΡŽΡΡ Π²Π΅Ρ‚ΠΊΡƒ:"
 +
 +#: lib/branch_create.tcl:75
 +msgid "No"
 +msgstr "НСт"
 +
 +#: lib/branch_create.tcl:80
 +msgid "Fast Forward Only"
 +msgstr "Волько Fast Forward"
 +
 +#: lib/branch_create.tcl:85 lib/checkout_op.tcl:571
 +msgid "Reset"
 +msgstr "Бброс"
 +
 +#: lib/branch_create.tcl:97
 +msgid "Checkout After Creation"
 +msgstr "ПослС ΡΠΎΠ·Π΄Π°Π½ΠΈΡ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ"
 +
 +#: lib/branch_create.tcl:131
 +msgid "Please select a tracking branch."
- msgstr "Π’Π΅Ρ‚Π²ΡŒ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ %s Π½Π΅ ΡΠ²Π»ΡΠ΅Ρ‚ся Π²Π΅Ρ‚Π²ΡŒΡŽ Π²ΠΎ Π²Π½Π΅ΡˆΠ½Π΅ΠΌ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ."
++msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ ΠΎΡ‚Π»Π΅ΠΆΠΈΠ²Π°Π΅ΠΌΡƒΡŽ Π²Π΅Ρ‚ΠΊΡƒ."
 +
 +#: lib/branch_create.tcl:140
 +#, tcl-format
 +msgid "Tracking branch %s is not a branch in the remote repository."
- msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ Π½Π°Π·Π²Π°Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ."
++msgstr "ΠžΡ‚ΡΠ»Π΅ΠΆΠΈΠ²Π°Π΅ΠΌΠ°Ρ Π²Π΅Ρ‚ΠΊΠ° %s Π½Π΅ ΡΠ²Π»ΡΠ΅Ρ‚ся Π²Π΅Ρ‚ΠΊΠΎΠΉ Π½Π° Π²Π½Π΅ΡˆΠ½Π΅ΠΌ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ."
 +
 +#: lib/branch_create.tcl:153 lib/branch_rename.tcl:86
 +msgid "Please supply a branch name."
- msgstr "НСдопустимоС Π½Π°Π·Π²Π°Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ '%s'."
++msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ ΠΈΠΌΡ Π²Π΅Ρ‚ΠΊΠΈ."
 +
 +#: lib/branch_create.tcl:164 lib/branch_rename.tcl:106
 +#, tcl-format
 +msgid "'%s' is not an acceptable branch name."
- msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "НСдопустимоС ΠΈΠΌΡ Π²Π΅Ρ‚ΠΊΠΈ Β«%sΒ»."
 +
 +#: lib/branch_delete.tcl:15
 +msgid "Delete Branch"
- msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ"
++msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_delete.tcl:20
 +msgid "Delete Local Branch"
- msgstr "Π›ΠΎΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΡƒΡŽ Π²Π΅Ρ‚ΠΊΡƒ"
 +
 +#: lib/branch_delete.tcl:37
 +msgid "Local Branches"
- msgstr "Π’Π΅Ρ‚Π²ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΡΠ»ΠΈΠ²Π°ΡŽΡ‚ся Ρ %s:"
++msgstr "Π›ΠΎΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_delete.tcl:52
 +msgid "Delete Only If Merged Into"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΡΠ»ΡƒΡ‡Π°Π΅, Π΅ΡΠ»ΠΈ Π±Ρ‹Π»ΠΎ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Ρ"
 +
 +#: lib/branch_delete.tcl:54 lib/remote_branch_delete.tcl:119
 +msgid "Always (Do not perform merge checks)"
 +msgstr "ВсСгда (Π½Π΅ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΡƒ Π½Π° ΡΠ»ΠΈΡΠ½ΠΈΠ΅)"
 +
 +#: lib/branch_delete.tcl:103
 +#, tcl-format
 +msgid "The following branches are not completely merged into %s:"
- msgstr ""
- "Π’ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΡƒΠ΄Π°Π»Π΅Π½Π½Ρ‹Π΅ Π²Π΅Ρ‚Π²ΠΈ ΡΠ»ΠΎΠΆΠ½ΠΎ.\n"
- "\n"
- "ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ?"
++msgstr "Π’Π΅Ρ‚ΠΊΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΡΠ»ΠΈΠ²Π°ΡŽΡ‚ся Ρ %s:"
 +
 +#: lib/branch_delete.tcl:115 lib/remote_branch_delete.tcl:217
 +msgid ""
 +"Recovering deleted branches is difficult.\n"
 +"\n"
 +"Delete the selected branches?"
- msgstr ""
- "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΡƒΠ΄Π°Π»ΠΈΡ‚ΡŒ Π²Π΅Ρ‚Π²ΠΈ:\n"
- "%s"
++msgstr "Π’ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΡƒΠ΄Π°Π»Π΅Π½Π½Ρ‹Π΅ Π²Π΅Ρ‚ΠΊΠΈ ΡΠ»ΠΎΠΆΠ½ΠΎ.\n\nΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ?"
 +
 +#: lib/branch_delete.tcl:141
 +#, tcl-format
 +msgid ""
 +"Failed to delete branches:\n"
 +"%s"
- msgstr "ΠŸΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΡƒΠ΄Π°Π»ΠΈΡ‚ΡŒ Π²Π΅Ρ‚ΠΊΠΈ:\n%s"
 +
 +#: lib/branch_rename.tcl:14 lib/branch_rename.tcl:22
 +msgid "Rename Branch"
- msgstr "Π’Π΅Ρ‚Π²ΡŒ:"
++msgstr "ΠŸΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Π½ΠΈΠ΅ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/branch_rename.tcl:26
 +msgid "Rename"
 +msgstr "ΠŸΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Ρ‚ΡŒ"
 +
 +#: lib/branch_rename.tcl:36
 +msgid "Branch:"
- msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ Π²Π΅Ρ‚Π²ΡŒ Π΄Π»Ρ ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Π½ΠΈΡ."
++msgstr "Π’Π΅Ρ‚ΠΊΠ°:"
 +
 +#: lib/branch_rename.tcl:39
 +msgid "New Name:"
 +msgstr "НовоС Π½Π°Π·Π²Π°Π½ΠΈΠ΅:"
 +
 +#: lib/branch_rename.tcl:75
 +msgid "Please select a branch to rename."
- msgstr "Π’Π΅Ρ‚Π²ΡŒ '%s' ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
++msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ Π²Π΅Ρ‚ΠΊΡƒ Π΄Π»Ρ ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Π½ΠΈΡ."
 +
 +#: lib/branch_rename.tcl:96 lib/checkout_op.tcl:202
 +#, tcl-format
 +msgid "Branch '%s' already exists."
- msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Ρ‚ΡŒ '%s'. "
++msgstr "Π’Π΅Ρ‚ΠΊΠ° Β«%sΒ» ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
 +
 +#: lib/branch_rename.tcl:117
 +#, tcl-format
 +msgid "Failed to rename '%s'."
- msgstr "Запуск..."
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Ρ‚ΡŒ Β«%sΒ». "
 +
 +#: lib/browser.tcl:17
 +msgid "Starting..."
- msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° %s..."
++msgstr "Запуск…"
 +
 +#: lib/browser.tcl:26
 +msgid "File Browser"
 +msgstr "ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€ ΡΠΏΠΈΡΠΊΠ° Ρ„Π°ΠΉΠ»ΠΎΠ²"
 +
 +#: lib/browser.tcl:126 lib/browser.tcl:143
 +#, tcl-format
 +msgid "Loading %s..."
- msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° %s…"
 +
 +#: lib/browser.tcl:187
 +msgid "[Up To Parent]"
 +msgstr "[На ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Π²Ρ‹ΡˆΠ΅]"
 +
 +#: lib/browser.tcl:267 lib/browser.tcl:273
 +msgid "Browse Branch Files"
- msgstr "ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ %s ΠΈΠ· %s "
++msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/browser.tcl:278 lib/choose_repository.tcl:398
 +#: lib/choose_repository.tcl:486 lib/choose_repository.tcl:497
 +#: lib/choose_repository.tcl:1028
 +msgid "Browse"
 +msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ"
 +
 +#: lib/checkout_op.tcl:85
 +#, tcl-format
 +msgid "Fetching %s from %s"
- msgstr "Π’Π΅Ρ‚Π²ΡŒ '%s' Π½Π΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚ "
++msgstr "Π˜Π·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ %s ΠΈΠ· %s "
 +
 +#: lib/checkout_op.tcl:133
 +#, tcl-format
 +msgid "fatal: Cannot resolve %s"
 +msgstr "критичСская ΠΎΡˆΠΈΠ±ΠΊΠ°: Π½Π΅Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°Π·Ρ€Π΅ΡˆΠΈΡ‚ΡŒ %s"
 +
 +#: lib/checkout_op.tcl:146 lib/console.tcl:81 lib/database.tcl:31
 +#: lib/sshkey.tcl:53
 +msgid "Close"
 +msgstr "Π—Π°ΠΊΡ€Ρ‹Ρ‚ΡŒ"
 +
 +#: lib/checkout_op.tcl:175
 +#, tcl-format
 +msgid "Branch '%s' does not exist."
- msgstr "Ошибка ΡΠΎΠ·Π΄Π°Π½ΠΈΡ ΡƒΠΏΡ€ΠΎΡ‰Ρ‘Π½Π½ΠΎΠΉ ΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€Π°Ρ†ΠΈΠΈ git pull Π΄Π»Ρ '%s'."
++msgstr "Π’Π΅Ρ‚ΠΊΠ° Β«%sΒ» Π½Π΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
 +
 +#: lib/checkout_op.tcl:194
 +#, tcl-format
 +msgid "Failed to configure simplified git-pull for '%s'."
- msgstr ""
- "Π’Π΅Ρ‚Π²ΡŒ '%s' ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚.\n"
- "\n"
- "Она Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‡Π΅Π½Π°(fast-forward) ΠΊ %s.\n"
- "ВрСбуСтся ΡΠ»ΠΈΡΠ½ΠΈΠ΅."
++msgstr "Ошибка ΡΠΎΠ·Π΄Π°Π½ΠΈΡ ΡƒΠΏΡ€ΠΎΡ‰Ρ‘Π½Π½ΠΎΠΉ ΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€Π°Ρ†ΠΈΠΈ git pull Π΄Π»Ρ Β«%sΒ»."
 +
 +#: lib/checkout_op.tcl:229
 +#, tcl-format
 +msgid ""
 +"Branch '%s' already exists.\n"
 +"\n"
 +"It cannot fast-forward to %s.\n"
 +"A merge is required."
- msgstr "НСизвСстная ΡΡ‚ратСгия ΡΠ»ΠΈΡΠ½ΠΈΡ: '%s'."
++msgstr "Π’Π΅Ρ‚ΠΊΠ° Β«%sΒ» ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚.\n\nОна Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠ΅Ρ€Π΅ΠΌΠΎΡ‚Π°Π½Π° Π²ΠΏΠ΅Ρ€Π΅Π΄ ΠΊ %s.\nВрСбуСтся ΡΠ»ΠΈΡΠ½ΠΈΠ΅."
 +
 +#: lib/checkout_op.tcl:243
 +#, tcl-format
 +msgid "Merge strategy '%s' not supported."
- msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ '%s'."
++msgstr "НСизвСстная ΡΡ‚ратСгия ΡΠ»ΠΈΡΠ½ΠΈΡ Β«%sΒ»."
 +
 +#: lib/checkout_op.tcl:262
 +#, tcl-format
 +msgid "Failed to update '%s'."
- "Another Git program has modified this repository since the last scan.  A "
- "rescan must be performed before the current branch can be changed.\n"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ Β«%sΒ»."
 +
 +#: lib/checkout_op.tcl:274
 +msgid "Staging area (index) is already locked."
 +msgstr "Рабочая ΠΎΠ±Π»Π°ΡΡ‚ΡŒ Π·Π°Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½Π° Π΄Ρ€ΡƒΠ³ΠΈΠΌ ΠΏΡ€ΠΎΡ†Π΅ΡΡΠΎΠΌ."
 +
 +#: lib/checkout_op.tcl:289
 +msgid ""
 +"Last scanned state does not match repository state.\n"
 +"\n"
- msgstr ""
- "ПослСднСС ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π½Π΅ ΡΠΎΠΎΡ‚вСтствуСт Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌΡƒ.\n"
- "\n"
- "Π‘ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅ΠΉ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ Git. "
- "НСобходимо ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ ΠΈΠ·ΠΌΠ΅Π½ΡΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ.\n"
- "\n"
- "Π­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ΄Π΅Π»Π°Π½ΠΎ ΡΠ΅ΠΉΡ‡Π°Ρ Π°Π²Ρ‚оматичСски.\n"
++"Another Git program has modified this repository since the last scan.  A rescan must be performed before the current branch can be changed.\n"
 +"\n"
 +"The rescan will be automatically started now.\n"
- msgstr "ОбновлСниС Ρ€Π°Π±ΠΎΡ‡Π΅Π³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° ΠΈΠ· '%s'..."
++msgstr "ПослСднСС ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π½Π΅ ΡΠΎΠΎΡ‚вСтствуСт Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌΡƒ.\n\nΠ‘ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅ΠΉ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ Git. ΠΠ΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ Ρ‚Скущая Π²Π΅Ρ‚ΠΊΠ° ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Π°.\n\nΠ­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ΄Π΅Π»Π°Π½ΠΎ ΡΠ΅ΠΉΡ‡Π°Ρ Π°Π²Ρ‚оматичСски.\n"
 +
 +#: lib/checkout_op.tcl:345
 +#, tcl-format
 +msgid "Updating working directory to '%s'..."
- msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Π½ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ Π½Π° '%s' (трСбуСтся ΡΠ»ΠΈΡΠ½ΠΈΠ΅ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Π½ΠΈΡ Ρ„Π°ΠΉΠ»ΠΎΠ²)"
++msgstr "ОбновлСниС Ρ€Π°Π±ΠΎΡ‡Π΅Π³ΠΎ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³Π° ΠΈΠ· Β«%s»…"
 +
 +#: lib/checkout_op.tcl:346
 +msgid "files checked out"
 +msgstr "Ρ„Π°ΠΉΠ»Ρ‹ ΠΈΠ·Π²Π»Π΅Ρ‡Π΅Π½Ρ‹"
 +
 +#: lib/checkout_op.tcl:376
 +#, tcl-format
 +msgid "Aborted checkout of '%s' (file level merging is required)."
- msgstr "Π’Π΅Ρ‚Π²ΡŒ '%s' ΠΎΡΡ‚аСтся Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ."
++msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Π½ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ Π½Π° Β«%sΒ» (трСбуСтся ΡΠ»ΠΈΡΠ½ΠΈΠ΅ ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΠΌΠΎΠ³ΠΎ Ρ„Π°ΠΉΠ»ΠΎΠ²)"
 +
 +#: lib/checkout_op.tcl:377
 +msgid "File level merge required."
 +msgstr "ВрСбуСтся ΡΠ»ΠΈΡΠ½ΠΈΠ΅ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Π½ΠΈΡ Ρ„Π°ΠΉΠ»ΠΎΠ²."
 +
 +#: lib/checkout_op.tcl:381
 +#, tcl-format
 +msgid "Staying on branch '%s'."
- "If you wanted to be on a branch, create one now starting from 'This Detached "
- "Checkout'."
- msgstr ""
- "Π’Ρ‹ Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚Π΅ΡΡŒ Π½Π΅ Π² Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠΉ Π²Π΅Ρ‚Π²ΠΈ.\n"
- "\n"
- "Если Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠ½ΠΎΠ²Π° Π²Π΅Ρ€Π½ΡƒΡ‚ΡŒΡΡ ΠΊ ΠΊΠ°ΠΊΠΎΠΉ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ Π²Π΅Ρ‚Π²ΠΈ, ΡΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ Π΅Π΅ ΡΠ΅ΠΉΡ‡Π°Ρ, "
- "начиная Ρ 'Π’Π΅ΠΊΡƒΡ‰Π΅Π³ΠΎ ΠΎΡ‚соСдинСнного ΡΠΎΡΡ‚ояния'."
++msgstr "Π’Π΅Ρ‚ΠΊΠ° Β«%sΒ» ΠΎΡΡ‚аётся Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ."
 +
 +#: lib/checkout_op.tcl:452
 +msgid ""
 +"You are no longer on a local branch.\n"
 +"\n"
- msgstr "Π’Π΅Ρ‚Π²ΡŒ '%s' ΡΠ΄Π΅Π»Π°Π½Π° Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ."
++"If you wanted to be on a branch, create one now starting from 'This Detached Checkout'."
++msgstr "Π’Ρ‹ Π±ΠΎΠ»Π΅Π΅ Π½Π΅ Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚Π΅ΡΡŒ Π½Π° Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠΉ Π²Π΅Ρ‚ΠΊΠ΅.\n\nЕсли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠ½ΠΎΠ²Π° Π²Π΅Ρ€Π½ΡƒΡ‚ΡŒΡΡ ΠΊ ΠΊΠ°ΠΊΠΎΠΉ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ Π²Π΅Ρ‚ΠΊΠ΅, ΡΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ Π΅Ρ‘ ΡΠ΅ΠΉΡ‡Π°Ρ, Π½Π°Ρ‡ΠΈΠ½Π°Ρ Ρ Β«Π’Π΅ΠΊΡƒΡ‰Π΅Π³ΠΎ ΠΎΡ‚соСдинСнного ΡΠΎΡΡ‚ояния»."
 +
 +#: lib/checkout_op.tcl:503 lib/checkout_op.tcl:507
 +#, tcl-format
 +msgid "Checked out '%s'."
- msgstr "Бброс '%s' Π² '%s' ΠΏΡ€ΠΈΠ²Π΅Π΄Π΅Ρ‚ ΠΊ ΠΏΠΎΡ‚Π΅Ρ€Π΅ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΡ… ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½Ρ‹Ρ… ΡΠΎΡΡ‚ояний: "
++msgstr "Π’Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ Π½Π° Β«%sΒ»."
 +
 +#: lib/checkout_op.tcl:535
 +#, tcl-format
 +msgid "Resetting '%s' to '%s' will lose the following commits:"
- msgstr "Π’ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΏΠΎΡ‚СрянныС ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½Ρ‹Π΅ ΡΠΎΡΡ‚ояния Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ»ΠΎΠΆΠ½ΠΎ."
++msgstr "Бброс Β«%sΒ»  Π½Π° Β«%sΒ» ΠΏΡ€ΠΈΠ²Π΅Π΄Π΅Ρ‚ ΠΊ ΠΏΠΎΡ‚Π΅Ρ€Π΅ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΡ… ΠΊΠΎΠΌΠΌΠΈΡ‚ΠΎΠ²:"
 +
 +#: lib/checkout_op.tcl:557
 +msgid "Recovering lost commits may not be easy."
- msgstr "Π‘Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ '%s'?"
++msgstr "Π’ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΏΠΎΡ‚СрянныС ΠΊΠΎΠΌΠΌΠΈΡ‚Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ»ΠΎΠΆΠ½ΠΎ."
 +
 +#: lib/checkout_op.tcl:562
 +#, tcl-format
 +msgid "Reset '%s'?"
- "This working directory is only partially switched.  We successfully updated "
- "your files, but failed to update an internal Git file.\n"
++msgstr "Π‘Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ Β«%sΒ»?"
 +
 +#: lib/checkout_op.tcl:567 lib/merge.tcl:164 lib/tools_dlg.tcl:343
 +msgid "Visualize"
 +msgstr "Наглядно"
 +
 +#: lib/checkout_op.tcl:635
 +#, tcl-format
 +msgid ""
 +"Failed to set current branch.\n"
 +"\n"
- msgstr ""
- "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ.\n"
- "\n"
- "Π’Π°Ρˆ Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‡Π°ΡΡ‚ΠΈΡ‡Π½ΠΎ. Π‘Ρ‹Π»ΠΈ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½Ρ‹ Π²ΡΠ΅ Ρ„Π°ΠΉΠ»Ρ‹ ΠΊΡ€ΠΎΠΌΠ΅ "
- "слуТСбных Ρ„Π°ΠΉΠ»ΠΎΠ² Git. \n"
- "\n"
- "Π­Ρ‚ΠΎΠ³ΠΎ Π½Π΅ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Π»ΠΎ ΠΏΡ€ΠΎΠΈΠ·ΠΎΠΉΡ‚ΠΈ. %s Π·Π°Π²Π΅Ρ€ΡˆΠ°Π΅Ρ‚ся."
++"This working directory is only partially switched.  We successfully updated your files, but failed to update an internal Git file.\n"
 +"\n"
 +"This should not have occurred.  %s will now close and give up."
- msgstr ""
- "Π­Ρ‚ΠΎ ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Ρ‚Скста.\n"
- "Если Π’Π°ΠΌ Π½Ρ€Π°Π²ΠΈΡ‚ся ΡΡ‚ΠΎΡ‚ Ρ‚Скст, ΡΡ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π’Π°Ρˆ ΡˆΡ€ΠΈΡ„Ρ‚."
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Π²Π΅Ρ‚ΠΊΡƒ.\n\nΠ’Π°Ρˆ Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³ ΠΎΠ±Π½ΠΎΠ²Π»Ρ‘Π½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‡Π°ΡΡ‚ΠΈΡ‡Π½ΠΎ. Π‘Ρ‹Π»ΠΈ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½Ρ‹ Π²ΡΠ΅ Ρ„Π°ΠΉΠ»Ρ‹ ΠΊΡ€ΠΎΠΌΠ΅ ΡΠ»ΡƒΠΆΠ΅Π±Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ² Git. \n\nΠ­Ρ‚ΠΎΠ³ΠΎ Π½Π΅ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Π»ΠΎ ΠΏΡ€ΠΎΠΈΠ·ΠΎΠΉΡ‚ΠΈ. %s Π·Π°Π²Π΅Ρ€ΡˆΠ°Π΅Ρ‚ся."
 +
 +#: lib/choose_font.tcl:39
 +msgid "Select"
 +msgstr "Π’Ρ‹Π±Ρ€Π°Ρ‚ΡŒ"
 +
 +#: lib/choose_font.tcl:53
 +msgid "Font Family"
 +msgstr "Π¨Ρ€ΠΈΡ„Ρ‚"
 +
 +#: lib/choose_font.tcl:74
 +msgid "Font Size"
 +msgstr "Π Π°Π·ΠΌΠ΅Ρ€ ΡˆΡ€ΠΈΡ„Ρ‚Π°"
 +
 +#: lib/choose_font.tcl:91
 +msgid "Font Example"
 +msgstr "ΠŸΡ€ΠΈΠΌΠ΅Ρ€ Ρ‚Скста"
 +
 +#: lib/choose_font.tcl:103
 +msgid ""
 +"This is example text.\n"
 +"If you like this text, it can be your font."
- msgstr "Новый..."
++msgstr "Π­Ρ‚ΠΎ ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Ρ‚Скста.\nЕсли Π’Π°ΠΌ Π½Ρ€Π°Π²ΠΈΡ‚ся ΡΡ‚ΠΎΡ‚ Ρ‚Скст, ΡΡ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π’Π°Ρˆ ΡˆΡ€ΠΈΡ„Ρ‚."
 +
 +#: lib/choose_repository.tcl:28
 +msgid "Git Gui"
 +msgstr "Git Gui"
 +
 +#: lib/choose_repository.tcl:87 lib/choose_repository.tcl:386
 +msgid "Create New Repository"
 +msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ Π½ΠΎΠ²Ρ‹ΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/choose_repository.tcl:93
 +msgid "New..."
- msgstr "Π‘ΠΊΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ..."
++msgstr "Новый…"
 +
 +#: lib/choose_repository.tcl:100 lib/choose_repository.tcl:471
 +msgid "Clone Existing Repository"
 +msgstr "Π‘ΠΊΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/choose_repository.tcl:106
 +msgid "Clone..."
- msgstr "ΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ..."
++msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒβ€¦"
 +
 +#: lib/choose_repository.tcl:113 lib/choose_repository.tcl:1016
 +msgid "Open Existing Repository"
 +msgstr "Π’Ρ‹Π±Ρ€Π°Ρ‚ΡŒ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/choose_repository.tcl:119
 +msgid "Open..."
- msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Ρ‹ΠΉ (Быстрый, ΠΏΠΎΠ»ΡƒΠΈΠ·Π±Ρ‹Ρ‚ΠΎΡ‡Π½Ρ‹ΠΉ, \"ТСсткиС\" ΡΡΡ‹Π»ΠΊΠΈ)"
++msgstr "ΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒβ€¦"
 +
 +#: lib/choose_repository.tcl:132
 +msgid "Recent Repositories"
 +msgstr "НСдавниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ"
 +
 +#: lib/choose_repository.tcl:138
 +msgid "Open Recent Repository:"
 +msgstr "ΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ ΠΏΠΎΡΠ»Π΅Π΄Π½ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/choose_repository.tcl:306 lib/choose_repository.tcl:313
 +#: lib/choose_repository.tcl:320
 +#, tcl-format
 +msgid "Failed to create repository %s:"
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ %s:"
 +
 +#: lib/choose_repository.tcl:391
 +msgid "Directory:"
 +msgstr "ΠšΠ°Ρ‚Π°Π»ΠΎΠ³:"
 +
 +#: lib/choose_repository.tcl:423 lib/choose_repository.tcl:550
 +#: lib/choose_repository.tcl:1052
 +msgid "Git Repository"
 +msgstr "Π Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/choose_repository.tcl:448
 +#, tcl-format
 +msgid "Directory %s already exists."
 +msgstr "ΠšΠ°Ρ‚Π°Π»ΠΎΠ³ '%s' ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
 +
 +#: lib/choose_repository.tcl:452
 +#, tcl-format
 +msgid "File %s already exists."
 +msgstr "Π€Π°ΠΉΠ» '%s' ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
 +
 +#: lib/choose_repository.tcl:466
 +msgid "Clone"
 +msgstr "Π‘ΠΊΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ"
 +
 +#: lib/choose_repository.tcl:479
 +msgid "Source Location:"
 +msgstr "Π˜ΡΡ…ΠΎΠ΄Π½ΠΎΠ΅ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅:"
 +
 +#: lib/choose_repository.tcl:490
 +msgid "Target Directory:"
 +msgstr "ΠšΠ°Ρ‚Π°Π»ΠΎΠ³ Π½Π°Π·Π½Π°Ρ‡Π΅Π½ΠΈΡ:"
 +
 +#: lib/choose_repository.tcl:502
 +msgid "Clone Type:"
 +msgstr "Π’ΠΈΠΏ ΠΊΠ»ΠΎΠ½Π°:"
 +
 +#: lib/choose_repository.tcl:508
 +msgid "Standard (Fast, Semi-Redundant, Hardlinks)"
- msgstr ""
++msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Ρ‹ΠΉ (Быстрый, ΠΏΠΎΠ»ΡƒΠΈΠ·Π±Ρ‹Ρ‚ΠΎΡ‡Π½Ρ‹ΠΉ, Β«ΠΆΠ΅ΡΡ‚ΠΊΠΈΠ΅Β» ΡΡΡ‹Π»ΠΊΠΈ)"
 +
 +#: lib/choose_repository.tcl:514
 +msgid "Full Copy (Slower, Redundant Backup)"
 +msgstr "Полная ΠΊΠΎΠΏΠΈΡ (ΠœΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ, ΡΠΎΠ·Π΄Π°Π΅Ρ‚ Ρ€Π΅Π·Π΅Ρ€Π²Π½ΡƒΡŽ ΠΊΠΎΠΏΠΈΡŽ)"
 +
 +#: lib/choose_repository.tcl:520
 +msgid "Shared (Fastest, Not Recommended, No Backup)"
 +msgstr "ΠžΠ±Ρ‰ΠΈΠΉ (Π‘Π°ΠΌΡ‹ΠΉ Π±Ρ‹ΡΡ‚Ρ€Ρ‹ΠΉ, Π½Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅Ρ‚ся, Π±Π΅Π· Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎΠΉ ΠΊΠΎΠΏΠΈΠΈ)"
 +
 +#: lib/choose_repository.tcl:556 lib/choose_repository.tcl:603
 +#: lib/choose_repository.tcl:749 lib/choose_repository.tcl:819
 +#: lib/choose_repository.tcl:1058 lib/choose_repository.tcl:1066
 +#, tcl-format
 +msgid "Not a Git repository: %s"
 +msgstr "ΠšΠ°Ρ‚Π°Π»ΠΎΠ³ Π½Π΅ ΡΠ²Π»ΡΠ΅Ρ‚ся Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠ΅ΠΌ: %s"
 +
 +#: lib/choose_repository.tcl:592
 +msgid "Standard only available for local repository."
 +msgstr "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Ρ‹ΠΉ ΠΊΠ»ΠΎΠ½ Π²ΠΎΠ·ΠΌΠΎΠΆΠ΅Π½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π΄Π»Ρ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠ³ΠΎ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория."
 +
 +#: lib/choose_repository.tcl:596
 +msgid "Shared only available for local repository."
 +msgstr "ΠžΠ±Ρ‰ΠΈΠΉ ΠΊΠ»ΠΎΠ½ Π²ΠΎΠ·ΠΌΠΎΠΆΠ΅Π½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π΄Π»Ρ Π»ΠΎΠΊΠ°Π»ΡŒΠ½ΠΎΠ³ΠΎ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория."
 +
 +#: lib/choose_repository.tcl:617
 +#, tcl-format
 +msgid "Location %s already exists."
 +msgstr "ΠŸΡƒΡ‚ΡŒ '%s' ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
 +
 +#: lib/choose_repository.tcl:628
 +msgid "Failed to configure origin"
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΡΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡΡ…ΠΎΠ΄Π½Ρ‹ΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ."
 +
 +#: lib/choose_repository.tcl:640
 +msgid "Counting objects"
 +msgstr "Π‘Ρ‡ΠΈΡ‚Π°ΡŽ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Ρ‹"
 +
 +#: lib/choose_repository.tcl:641
 +msgid "buckets"
- msgstr "НС ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π° Π²Π΅Ρ‚Π²ΡŒ 'master'."
++msgstr "Π±Π»ΠΎΠΊΠΈ"
 +
 +#: lib/choose_repository.tcl:665
 +#, tcl-format
 +msgid "Unable to copy objects/info/alternates: %s"
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΡΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ objects/info/alternates: %s"
 +
 +#: lib/choose_repository.tcl:701
 +#, tcl-format
 +msgid "Nothing to clone from %s."
 +msgstr "НСчСго ΠΊΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ %s."
 +
 +#: lib/choose_repository.tcl:703 lib/choose_repository.tcl:917
 +#: lib/choose_repository.tcl:929
 +msgid "The 'master' branch has not been initialized."
- msgstr "\"ЖСсткиС ΡΡΡ‹Π»ΠΊΠΈ\" Π½Π΅Π΄ΠΎΡΡ‚ΡƒΠΏΠ½Ρ‹. Π‘ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½ΠΎ ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅."
++msgstr "НС ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π° Π²Π΅Ρ‚Π²ΡŒ Β«masterΒ»."
 +
 +#: lib/choose_repository.tcl:716
 +msgid "Hardlinks are unavailable.  Falling back to copying."
- msgstr "НС ΠΌΠΎΠ³Ρƒ \"ТСстко ΡΠ²ΡΠ·Π°Ρ‚ΡŒ\" ΠΎΠ±ΡŠΠ΅ΠΊΡ‚: %s"
++msgstr "«ЖСсткиС ΡΡΡ‹Π»ΠΊΠΈΒ» Π½Π΅Π΄ΠΎΡΡ‚ΡƒΠΏΠ½Ρ‹. Π‘ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½ΠΎ ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅."
 +
 +#: lib/choose_repository.tcl:728
 +#, tcl-format
 +msgid "Cloning from %s"
 +msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ %s"
 +
 +#: lib/choose_repository.tcl:759
 +msgid "Copying objects"
 +msgstr "ΠšΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ objects"
 +
 +#: lib/choose_repository.tcl:760
 +msgid "KiB"
 +msgstr "ΠšΠ‘"
 +
 +#: lib/choose_repository.tcl:784
 +#, tcl-format
 +msgid "Unable to copy object: %s"
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΡΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚: %s"
 +
 +#: lib/choose_repository.tcl:794
 +msgid "Linking objects"
 +msgstr "Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ ΡΡΡ‹Π»ΠΎΠΊ Π½Π° objects"
 +
 +#: lib/choose_repository.tcl:795
 +msgid "objects"
 +msgstr "ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Ρ‹"
 +
 +#: lib/choose_repository.tcl:803
 +#, tcl-format
 +msgid "Unable to hardlink object: %s"
- msgstr ""
- "НС ΠΌΠΎΠ³Ρƒ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π²Π΅Ρ‚Π²ΠΈ ΠΈ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Ρ‹. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΈΠ½Ρ„ормация Π½Π° ΠΊΠΎΠ½ΡΠΎΠ»ΠΈ."
++msgstr "НС ΠΌΠΎΠ³Ρƒ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Β«ΠΆΠ΅ΡΡ‚ΠΊΡƒΡŽ ΡΡΡ‹Π»ΠΊΡƒΒ» Π½Π° ΠΎΠ±ΡŠΠ΅ΠΊΡ‚: %s"
 +
 +#: lib/choose_repository.tcl:858
 +msgid "Cannot fetch branches and objects.  See console output for details."
- msgstr "НС ΠΌΠΎΠ³Ρƒ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΌΠ΅Ρ‚ΠΊΠΈ. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΈΠ½Ρ„ормация Π½Π° ΠΊΠΎΠ½ΡΠΎΠ»ΠΈ."
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ Π²Π΅Ρ‚ΠΊΠΈ ΠΈ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Ρ‹. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΈΠ½Ρ„ормация Π½Π° ΠΊΠΎΠ½ΡΠΎΠ»ΠΈ."
 +
 +#: lib/choose_repository.tcl:869
 +msgid "Cannot fetch tags.  See console output for details."
- msgstr "НС Π±Ρ‹Π»ΠΎ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΎ Π²Π΅Ρ‚Π²ΠΈ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ."
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ ΠΌΠ΅Ρ‚ΠΊΠΈ. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΈΠ½Ρ„ормация Π½Π° ΠΊΠΎΠ½ΡΠΎΠ»ΠΈ."
 +
 +#: lib/choose_repository.tcl:893
 +msgid "Cannot determine HEAD.  See console output for details."
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΠΎΠΏΡ€Π΅Π΄Π΅Π»ΠΈΡ‚ΡŒ HEAD. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΈΠ½Ρ„ормация Π½Π° ΠΊΠΎΠ½ΡΠΎΠ»ΠΈ."
 +
 +#: lib/choose_repository.tcl:902
 +#, tcl-format
 +msgid "Unable to cleanup %s"
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΠΎΡ‡ΠΈΡΡ‚ΠΈΡ‚ΡŒ %s"
 +
 +#: lib/choose_repository.tcl:908
 +msgid "Clone failed."
 +msgstr "ΠšΠ»ΠΎΠ½ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ Π½Π΅ ΡƒΠ΄Π°Π»ΠΎΡΡŒ."
 +
 +#: lib/choose_repository.tcl:915
 +msgid "No default branch obtained."
- msgstr "НС ΠΌΠΎΠ³Ρƒ Ρ€Π°ΡΠΏΠΎΠ·Π½Π°Ρ‚ΡŒ %s ΠΊΠ°ΠΊ ΡΠΎΡΡ‚ояниС."
++msgstr "Π’Π΅Ρ‚ΠΊΠ° ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ Π½Π΅ Π±Ρ‹Π»Π° ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π°."
 +
 +#: lib/choose_repository.tcl:926
 +#, tcl-format
 +msgid "Cannot resolve %s as a commit."
- msgstr "Π›ΠΎΠΊΠ°Π»ΡŒΠ½Π°Ρ Π²Π΅Ρ‚Π²ΡŒ:"
++msgstr "НС ΠΌΠΎΠ³Ρƒ Ρ€Π°ΡΠΏΠΎΠ·Π½Π°Ρ‚ΡŒ %s ΠΊΠ°ΠΊ ΠΊΠΎΠΌΠΌΠΈΡ‚."
 +
 +#: lib/choose_repository.tcl:938
 +msgid "Creating working directory"
 +msgstr "Боздаю Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ ΠΊΠ°Ρ‚Π°Π»ΠΎΠ³"
 +
 +#: lib/choose_repository.tcl:939 lib/index.tcl:67 lib/index.tcl:130
 +#: lib/index.tcl:198
 +msgid "files"
 +msgstr "Ρ„Π°ΠΉΠ»ΠΎΠ²"
 +
 +#: lib/choose_repository.tcl:968
 +msgid "Initial file checkout failed."
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ„Π°ΠΉΠ»ΠΎΠ² Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория."
 +
 +#: lib/choose_repository.tcl:1011
 +msgid "Open"
 +msgstr "ΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ"
 +
 +#: lib/choose_repository.tcl:1021
 +msgid "Repository:"
 +msgstr "Π Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ:"
 +
 +#: lib/choose_repository.tcl:1072
 +#, tcl-format
 +msgid "Failed to open repository %s:"
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ %s:"
 +
 +#: lib/choose_rev.tcl:53
 +msgid "This Detached Checkout"
 +msgstr "Π’Π΅ΠΊΡƒΡ‰Π΅Π΅ ΠΎΡ‚соСдинСнноС ΡΠΎΡΡ‚ояниС"
 +
 +#: lib/choose_rev.tcl:60
 +msgid "Revision Expression:"
 +msgstr "Π’Ρ‹Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅ Π΄Π»Ρ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ΠΈΡ Π²Π΅Ρ€ΡΠΈΠΈ:"
 +
 +#: lib/choose_rev.tcl:74
 +msgid "Local Branch"
- msgstr "Π’Π΅Ρ‚Π²ΡŒ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ"
++msgstr "Π›ΠΎΠΊΠ°Π»ΡŒΠ½Π°Ρ Π²Π΅Ρ‚ΠΊΠ°:"
 +
 +#: lib/choose_rev.tcl:79
 +msgid "Tracking Branch"
- "You are about to create the initial commit.  There is no commit before this "
- "to amend.\n"
- msgstr ""
- "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΠ΅Ρ‚ ΡΠΎΡΡ‚ояниС Π΄Π»Ρ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡ.\n"
- "\n"
- "Π’Ρ‹ ΡΠΎΠ·Π΄Π°Π΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π²ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Π² Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ, Π·Π΄Π΅ΡΡŒ Π΅Ρ‰Π΅ Π½Π΅Ρ‡Π΅Π³ΠΎ ΠΈΡΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ.\n"
++msgstr "ΠžΡ‚ΡΠ»Π΅ΠΆΠΈΠ²Π°Π΅ΠΌΠ°Ρ Π²Π΅Ρ‚ΠΊΠ°"
 +
 +#: lib/choose_rev.tcl:84 lib/choose_rev.tcl:538
 +msgid "Tag"
 +msgstr "ΠœΠ΅Ρ‚ΠΊΠ°"
 +
 +#: lib/choose_rev.tcl:317
 +#, tcl-format
 +msgid "Invalid revision: %s"
 +msgstr "НСвСрная Π²Π΅Ρ€ΡΠΈΡ: %s"
 +
 +#: lib/choose_rev.tcl:338
 +msgid "No revision selected."
 +msgstr "ВСрсия Π½Π΅ ΡƒΠΊΠ°Π·Π°Π½Π°."
 +
 +#: lib/choose_rev.tcl:346
 +msgid "Revision expression is empty."
 +msgstr "ΠŸΡƒΡΡ‚ΠΎΠ΅ Π²Ρ‹Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅ Π΄Π»Ρ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ΠΈΡ Π²Π΅Ρ€ΡΠΈΠΈ."
 +
 +#: lib/choose_rev.tcl:531
 +msgid "Updated"
 +msgstr "ОбновлСно"
 +
 +#: lib/choose_rev.tcl:559
 +msgid "URL"
 +msgstr "Бсылка"
 +
 +#: lib/commit.tcl:9
 +msgid ""
 +"There is nothing to amend.\n"
 +"\n"
- "You are currently in the middle of a merge that has not been fully "
- "completed.  You cannot amend the prior commit unless you first abort the "
- "current merge activity.\n"
- msgstr ""
- "НСвозмоТно ΠΈΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΡΠΎΡΡ‚ояниС Π²ΠΎ Π²Ρ€Π΅ΠΌΡ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
- "\n"
- "Π’Π΅ΠΊΡƒΡ‰Π΅Π΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ. ΠΠ΅Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅Π΅ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½ΠΎΠ΅ "
- "состояниС, Π½Π΅ ΠΏΡ€Π΅Ρ€Ρ‹Π²Π°Ρ ΡΡ‚Ρƒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ.\n"
++"You are about to create the initial commit.  There is no commit before this to amend.\n"
++msgstr "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΠ΅Ρ‚ ΠΊΠΎΠΌΠΌΠΈΡ‚Ρ‹ Π΄Π»Ρ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡ.\n\nΠ’Ρ‹ ΡΠΎΠ·Π΄Π°Π΅Ρ‚Π΅ Π½Π°Ρ‡Π°Π»ΡŒΠ½Ρ‹ΠΉ ΠΊΠΎΠΌΠΌΠΈΡ‚, Π·Π΄Π΅ΡΡŒ Π΅Ρ‰Π΅ Π½Π΅Ρ‡Π΅Π³ΠΎ ΠΈΡΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ.\n"
 +
 +#: lib/commit.tcl:18
 +msgid ""
 +"Cannot amend while merging.\n"
 +"\n"
- msgstr "Ошибка ΠΏΡ€ΠΈ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΠ΅ Π΄Π°Π½Π½Ρ‹Ρ… Π΄Π»Ρ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½ΠΎΠ³ΠΎ ΡΠΎΡΡ‚ояния:"
++"You are currently in the middle of a merge that has not been fully completed.  You cannot amend the prior commit unless you first abort the current merge activity.\n"
++msgstr "НСвозмоТно ΠΈΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΊΠΎΠΌΠΌΠΈΡ‚ Π²ΠΎ Π²Ρ€Π΅ΠΌΡ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n\nΠ’Π΅ΠΊΡƒΡ‰Π΅Π΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ. ΠΠ΅Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΠΈΠΉ ΠΊΠΎΠΌΠΌΠΈΡ‚, Π½Π΅ ΠΏΡ€Π΅Ρ€Ρ‹Π²Π°Ρ ΡΡ‚Ρƒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ.\n"
 +
 +#: lib/commit.tcl:48
 +msgid "Error loading commit data for amend:"
- msgstr "НСвСрный GIT_COMMITTER_IDENT:"
++msgstr "Ошибка ΠΏΡ€ΠΈ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΠ΅ Π΄Π°Π½Π½Ρ‹Ρ… Π΄Π»Ρ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°:"
 +
 +#: lib/commit.tcl:75
 +msgid "Unable to obtain your identity:"
 +msgstr "НСвозмоТно ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡŽ ΠΎΠ± Π°Π²Ρ‚орствС:"
 +
 +#: lib/commit.tcl:80
 +msgid "Invalid GIT_COMMITTER_IDENT:"
- msgstr "ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅: Tcl Π½Π΅ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΡƒ '%s'."
++msgstr "НСдопустимый GIT_COMMITTER_IDENT:"
 +
 +#: lib/commit.tcl:129
 +#, tcl-format
 +msgid "warning: Tcl does not support encoding '%s'."
- "Another Git program has modified this repository since the last scan.  A "
- "rescan must be performed before another commit can be created.\n"
++msgstr "ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅: Tcl Π½Π΅ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΡƒ Β«%sΒ»."
 +
 +#: lib/commit.tcl:149
 +msgid ""
 +"Last scanned state does not match repository state.\n"
 +"\n"
- msgstr ""
- "ПослСднСС ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π½Π΅ ΡΠΎΠΎΡ‚вСтствуСт Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌΡƒ.\n"
- "\n"
- "Π‘ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅ΠΉ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ Git. "
- "НСобходимо ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ ΠΈΠ·ΠΌΠ΅Π½ΡΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ. \n"
- "\n"
- "Π­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ΄Π΅Π»Π°Π½ΠΎ ΡΠ΅ΠΉΡ‡Π°Ρ Π°Π²Ρ‚оматичСски.\n"
++"Another Git program has modified this repository since the last scan.  A rescan must be performed before another commit can be created.\n"
 +"\n"
 +"The rescan will be automatically started now.\n"
- "File %s has merge conflicts.  You must resolve them and stage the file "
- "before committing.\n"
- msgstr ""
- "НСльзя ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Ρ„Π°ΠΉΠ»Ρ‹ Ρ Π½Π΅Π·Π°Π²Π΅Ρ€ΡˆΡ‘Π½Π½ΠΎΠΉ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠ΅ΠΉ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
- "\n"
- "Для Ρ„Π°ΠΉΠ»Π° %s Π²ΠΎΠ·Π½ΠΈΠΊ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ ΡΠ»ΠΈΡΠ½ΠΈΡ. Π Π°Π·Ρ€Π΅ΡˆΠΈΡ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ ΠΈ Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ ΠΊ "
- "ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹ΠΌ Ρ„Π°ΠΉΠ»Π°ΠΌ ΠΏΠ΅Ρ€Π΅Π΄ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ΠΌ.\n"
++msgstr "ПослСднСС ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π½Π΅ ΡΠΎΠΎΡ‚вСтствуСт Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌΡƒ.\n\nΠ‘ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅ΠΉ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ Git. ΠΠ΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ ΠΈΠ·ΠΌΠ΅Π½ΡΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ. \n\nΠ­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ΄Π΅Π»Π°Π½ΠΎ ΡΠ΅ΠΉΡ‡Π°Ρ Π°Π²Ρ‚оматичСски.\n"
 +
 +#: lib/commit.tcl:172
 +#, tcl-format
 +msgid ""
 +"Unmerged files cannot be committed.\n"
 +"\n"
- msgstr ""
- "ΠžΠ±Π½Π°Ρ€ΡƒΠΆΠ΅Π½ΠΎ Π½Π΅ΠΈΠ·Π²Π΅ΡΡ‚Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ„Π°ΠΉΠ»Π° %s.\n"
- "\n"
- "Π€Π°ΠΉΠ» %s Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ Π΄Π°Π½Π½ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ.\n"
++"File %s has merge conflicts.  You must resolve them and stage the file before committing.\n"
++msgstr "НСльзя Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ ΠΊΠΎΠΌΠΌΠΈΡ‚ Ρ Π½Π΅Π·Π°Π²Π΅Ρ€ΡˆΡ‘Π½Π½ΠΎΠΉ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠ΅ΠΉ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n\nДля Ρ„Π°ΠΉΠ»Π° %s Π²ΠΎΠ·Π½ΠΈΠΊ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ ΡΠ»ΠΈΡΠ½ΠΈΡ. Π Π°Π·Ρ€Π΅ΡˆΠΈΡ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ ΠΈ Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ ΠΈΡ… Π² ΠΈΠ½Π΄Π΅ΠΊΡ ΠΏΠ΅Ρ€Π΅Π΄ Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ΠΌ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°.\n"
 +
 +#: lib/commit.tcl:180
 +#, tcl-format
 +msgid ""
 +"Unknown file state %s detected.\n"
 +"\n"
 +"File %s cannot be committed by this program.\n"
- msgstr ""
- "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π΄Π»Ρ ΡΠΎΡ…ранСния.\n"
- "\n"
- "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ Ρ…отя Π±Ρ‹ ΠΎΠ΄ΠΈΠ½ Ρ„Π°ΠΉΠ» Π΄ΠΎ ΡΠΎΠ·Π΄Π°Π½ΠΈΡ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½ΠΎΠ³ΠΎ ΡΠΎΡΡ‚ояния.\n"
++msgstr "ΠžΠ±Π½Π°Ρ€ΡƒΠΆΠ΅Π½ΠΎ Π½Π΅ΠΈΠ·Π²Π΅ΡΡ‚Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ„Π°ΠΉΠ»Π° %s.\n\nΠ€Π°ΠΉΠ» %s Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π·Π°ΠΊΠΎΠΌΠΌΠΈΡ‡Π΅Π½ ΡΡ‚ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ.\n"
 +
 +#: lib/commit.tcl:188
 +msgid ""
 +"No changes to commit.\n"
 +"\n"
 +"You must stage at least 1 file before you can commit.\n"
- msgstr ""
- "ΠΠ°ΠΏΠΈΡˆΠΈΡ‚Π΅ ΠΊΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΊ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½ΠΎΠΌΡƒ ΡΠΎΡΡ‚ΠΎΡΠ½ΠΈΡŽ.\n"
- "\n"
- "РСкомСндуСтся ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ Ρ„ΠΎΡ€ΠΌΠ°Ρ‚ ΠΊΠΎΠΌΠΌΠ΅Π½Ρ‚ария:\n"
- "\n"
- "- ΠΏΠ΅Ρ€Π²Π°Ρ ΡΡ‚Ρ€ΠΎΠΊΠ°: ΠΊΡ€Π°Ρ‚ΠΊΠΎΠ΅ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ ΡΠ΄Π΅Π»Π°Π½Π½Ρ‹Ρ… ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.\n"
- "- Π²Ρ‚орая ΡΡ‚Ρ€ΠΎΠΊΠ° ΠΏΡƒΡΡ‚ая\n"
- "- ΠΎΡΡ‚Π°Π²ΡˆΠΈΠ΅ΡΡ ΡΡ‚Ρ€ΠΎΠΊΠΈ: ΠΎΠΏΠΈΡˆΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Π΄Π°ΡŽΡ‚ Π²Π°ΡˆΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ.\n"
++msgstr "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π΄Π»Ρ ΡΠΎΡ…ранСния.\n\nΠ”ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ Π² ΠΈΠ½Π΄Π΅ΠΊΡ Ρ…отя Π±Ρ‹ ΠΎΠ΄ΠΈΠ½ Ρ„Π°ΠΉΠ» ΠΏΠ΅Ρ€Π΅Π΄ Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ΠΌ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°.\n"
 +
 +#: lib/commit.tcl:203
 +msgid ""
 +"Please supply a commit message.\n"
 +"\n"
 +"A good commit message has the following format:\n"
 +"\n"
 +"- First line: Describe in one sentence what you did.\n"
 +"- Second line: Blank\n"
 +"- Remaining lines: Describe why this change is good.\n"
- msgstr "Π’Ρ‹Π·ΠΎΠ² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория pre-commit..."
++msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°.\n\nРСкомСндуСтся ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ Ρ„ΠΎΡ€ΠΌΠ°Ρ‚ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΡ:\n\n- Π² ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΡΡ‚Ρ€ΠΎΠΊΠ΅ ΠΊΡ€Π°Ρ‚ΠΊΠΎΠ΅ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ ΡΠ΄Π΅Π»Π°Π½Π½Ρ‹Ρ… ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ\n- Π²Ρ‚орая ΡΡ‚Ρ€ΠΎΠΊΠ° ΠΏΡƒΡΡ‚ая\n- Π² ΠΎΡΡ‚Π°Π²ΡˆΠΈΡ…ΡΡ ΡΡ‚Ρ€ΠΎΠΊΠ°Ρ… ΠΎΠΏΠΈΡˆΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Π΄Π°ΡŽΡ‚ Π²Π°ΡˆΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ\n"
 +
 +#: lib/commit.tcl:234
 +msgid "Calling pre-commit hook..."
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ ΠΏΡ€Π΅Ρ€Π²Π°Π½ΠΎ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория pre-commit"
++msgstr "Π’Ρ‹Π·ΠΎΠ² ΠΏΠ΅Ρ€Π΅Ρ…Π²Π°Ρ‚Ρ‡ΠΈΠΊΠ° pre-commit…"
 +
 +#: lib/commit.tcl:249
 +msgid "Commit declined by pre-commit hook."
- msgstr "Π’Ρ‹Π·ΠΎΠ² ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория commit-msg..."
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚ ΠΏΡ€Π΅Ρ€Π²Π°Π½ ΠΏΠ΅Ρ€Π΅Π²Π°Ρ‚Ρ‡ΠΈΠΊΠΎΠΌ pre-commit."
 +
 +#: lib/commit.tcl:272
 +msgid "Calling commit-msg hook..."
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ ΠΏΡ€Π΅Ρ€Π²Π°Π½ΠΎ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория commit-msg"
++msgstr "Π’Ρ‹Π·ΠΎΠ² ΠΏΠ΅Ρ€Π΅Ρ…Π²Π°Ρ‚Ρ‡ΠΈΠΊΠ° commit-msg…"
 +
 +#: lib/commit.tcl:287
 +msgid "Commit declined by commit-msg hook."
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ..."
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚ ΠΏΡ€Π΅Ρ€Π²Π°Π½ ΠΏΠ΅Ρ€Π΅Π²Π°Ρ‚Ρ‡ΠΈΠΊΠΎΠΌ commit-msg"
 +
 +#: lib/commit.tcl:300
 +msgid "Committing changes..."
- msgstr "Π‘ΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΡΠΎΡΡ‚ояниС Π½Π΅ ΡƒΠ΄Π°Π»ΠΎΡΡŒ."
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉβ€¦"
 +
 +#: lib/commit.tcl:316
 +msgid "write-tree failed:"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° write-tree Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ»Π°ΡΡŒ Ρ ΠΎΡˆΠΈΠ±ΠΊΠΎΠΉ:"
 +
 +#: lib/commit.tcl:317 lib/commit.tcl:361 lib/commit.tcl:382
 +msgid "Commit failed."
- msgstr "БостояниС %s Π²Ρ‹Π³Π»ΡΠ΄ΠΈΡ‚ ΠΏΠΎΠ²Ρ€Π΅ΠΆΠ΄Π΅Π½Π½Ρ‹ΠΌ"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π·Π°ΠΊΠΎΠΌΠΌΠΈΡ‚ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ."
 +
 +#: lib/commit.tcl:334
 +#, tcl-format
 +msgid "Commit %s appears to be corrupt"
- msgstr ""
- "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π΄Π»Ρ ΡΠΎΡ…ранСния.\n"
- "\n"
- "Ни ΠΎΠ΄ΠΈΠ½ Ρ„Π°ΠΉΠ» Π½Π΅ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ ΠΈ Π½Π΅ Π±Ρ‹Π»ΠΎ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
- "\n"
- "БСйчас Π°Π²Ρ‚оматичСски Π·Π°ΠΏΡƒΡΡ‚ится ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Ρ‹Π²Π°Π½ΠΈΠ΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория.\n"
++msgstr "ΠšΠΎΠΌΠΌΠΈΡ‚ %s ΠΏΠΎΡ…ΠΎΠΆΠ΅ ΠΏΠΎΠ²Ρ€Π΅ΠΆΠ΄Π΅Π½"
 +
 +#: lib/commit.tcl:339
 +msgid ""
 +"No changes to commit.\n"
 +"\n"
 +"No files were modified by this commit and it was not a merge commit.\n"
 +"\n"
 +"A rescan will be automatically started now.\n"
- msgstr "ΠžΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π΄Π»Ρ ΡΠΎΡ…ранСния."
++msgstr "НСт ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π΄Π»Ρ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°.\n\nНи ΠΎΠ΄ΠΈΠ½ Ρ„Π°ΠΉΠ» Π½Π΅ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ ΠΈ Π½Π΅ Π±Ρ‹Π»ΠΎ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n\nБСйчас Π°Π²Ρ‚оматичСски Π·Π°ΠΏΡƒΡΡ‚ится ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Ρ‹Π²Π°Π½ΠΈΠ΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория.\n"
 +
 +#: lib/commit.tcl:346
 +msgid "No changes to commit."
- msgstr "Π‘ΠΎΠ·Π΄Π°Π½ΠΎ ΡΠΎΡΡ‚ояниС %s: %s "
++msgstr "НСт ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π΄Π»Ρ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°."
 +
 +#: lib/commit.tcl:360
 +msgid "commit-tree failed:"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° commit-tree Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ»Π°ΡΡŒ Ρ ΠΎΡˆΠΈΠ±ΠΊΠΎΠΉ:"
 +
 +#: lib/commit.tcl:381
 +msgid "update-ref failed:"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° update-ref Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ»Π°ΡΡŒ Ρ ΠΎΡˆΠΈΠ±ΠΊΠΎΠΉ:"
 +
 +#: lib/commit.tcl:469
 +#, tcl-format
 +msgid "Created commit %s: %s"
- msgstr "Π’ ΠΏΡ€ΠΎΡ†Π΅ΡΡΠ΅... ΠΏΠΎΠΆΠ°Π»ΡƒΠΉΡΡ‚Π°, ΠΆΠ΄ΠΈΡ‚Π΅..."
++msgstr "Π‘ΠΎΠ·Π΄Π°Π½ ΠΊΠΎΠΌΠΌΠΈΡ‚ %s: %s "
 +
 +#: lib/console.tcl:59
 +msgid "Working... please wait..."
- "To maintain optimal performance it is strongly recommended that you compress "
- "the database.\n"
++msgstr "Π’ ΠΏΡ€ΠΎΡ†Π΅ΡΡΠ΅β€¦ ΠΏΠΎΠΆΠ°Π»ΡƒΠΉΡΡ‚Π°, ΠΆΠ΄ΠΈΡ‚С…"
 +
 +#: lib/console.tcl:186
 +msgid "Success"
 +msgstr "ΠŸΡ€ΠΎΡ†Π΅ΡΡ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½"
 +
 +#: lib/console.tcl:200
 +msgid "Error: Command Failed"
 +msgstr "Ошибка: Π½Π΅ ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ"
 +
 +#: lib/database.tcl:43
 +msgid "Number of loose objects"
 +msgstr "ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Π½Π΅ΡΠ²ΡΠ·Π°Π½Π½Ρ‹Ρ… ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ²"
 +
 +#: lib/database.tcl:44
 +msgid "Disk space used by loose objects"
 +msgstr "ОбъСм Π΄ΠΈΡΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΡΡ‚ранства, Π·Π°Π½ΡΡ‚Ρ‹ΠΉ Π½Π΅ΡΠ²ΡΠ·Π°Π½Π½Ρ‹ΠΌΠΈ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π°ΠΌΠΈ"
 +
 +#: lib/database.tcl:45
 +msgid "Number of packed objects"
 +msgstr "ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ ΡƒΠΏΠ°ΠΊΠΎΠ²Π°Π½Π½Ρ‹Ρ… ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ²"
 +
 +#: lib/database.tcl:46
 +msgid "Number of packs"
 +msgstr "ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ pack-Ρ„Π°ΠΉΠ»ΠΎΠ²"
 +
 +#: lib/database.tcl:47
 +msgid "Disk space used by packed objects"
 +msgstr "ОбъСм Π΄ΠΈΡΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΡΡ‚ранства, Π·Π°Π½ΡΡ‚Ρ‹ΠΉ ΡƒΠΏΠ°ΠΊΠΎΠ²Π°Π½Π½Ρ‹ΠΌΠΈ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Π°ΠΌΠΈ"
 +
 +#: lib/database.tcl:48
 +msgid "Packed objects waiting for pruning"
 +msgstr "НСсвязанныС ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ΄Π°Π»ΠΈΡ‚ΡŒ"
 +
 +#: lib/database.tcl:49
 +msgid "Garbage files"
 +msgstr "ΠœΡƒΡΠΎΡ€"
 +
 +#: lib/database.tcl:72
 +msgid "Compressing the object database"
 +msgstr "Π‘ΠΆΠ°Ρ‚ΠΈΠ΅ Π±Π°Π·Ρ‹ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ²"
 +
 +#: lib/database.tcl:83
 +msgid "Verifying the object database with fsck-objects"
 +msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° Π±Π°Π·Ρ‹ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ² ΠΏΡ€ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΠΈ fsck"
 +
 +#: lib/database.tcl:107
 +#, tcl-format
 +msgid ""
 +"This repository currently has approximately %i loose objects.\n"
 +"\n"
- msgstr ""
- "Π­Ρ‚ΠΎΡ‚ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ ΡΠ΅ΠΉΡ‡Π°Ρ ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ %i ΡΠ²ΠΎΠ±ΠΎΠ΄Π½Ρ‹Ρ… ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ²\n"
- "\n"
- "Для Π»ΡƒΡ‡ΡˆΠ΅ΠΉ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅Ρ‚ся ΡΠΆΠ°Ρ‚ΡŒ Π±Π°Π·Ρƒ Π΄Π°Π½Π½Ρ‹Ρ….\n"
- "\n"
- "Π‘ΠΆΠ°Ρ‚ΡŒ Π±Π°Π·Ρƒ Π΄Π°Π½Π½Ρ‹Ρ… ΡΠ΅ΠΉΡ‡Π°Ρ?"
++"To maintain optimal performance it is strongly recommended that you compress the database.\n"
 +"\n"
 +"Compress the database now?"
- "The modification date of this file was updated by another application, but "
- "the content within the file was not changed.\n"
- "\n"
- "A rescan will be automatically started to find other files which may have "
- "the same state."
- msgstr ""
- "ИзмСнСний Π½Π΅ ΠΎΠ±Π½Π°Ρ€ΡƒΠΆΠ΅Π½ΠΎ.\n"
++msgstr "Π­Ρ‚ΠΎΡ‚ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ ΡΠ΅ΠΉΡ‡Π°Ρ ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ %i ΡΠ²ΠΎΠ±ΠΎΠ΄Π½Ρ‹Ρ… ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ²\n\nДля Π»ΡƒΡ‡ΡˆΠ΅ΠΉ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅Ρ‚ся ΡΠΆΠ°Ρ‚ΡŒ Π±Π°Π·Ρƒ Π΄Π°Π½Π½Ρ‹Ρ….\n\nΠ‘ΠΆΠ°Ρ‚ΡŒ Π±Π°Π·Ρƒ Π΄Π°Π½Π½Ρ‹Ρ… ΡΠ΅ΠΉΡ‡Π°Ρ?"
 +
 +#: lib/date.tcl:25
 +#, tcl-format
 +msgid "Invalid date from Git: %s"
 +msgstr "ΠΠ΅ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Π°Ρ Π΄Π°Ρ‚Π° Π² Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ: %s"
 +
 +#: lib/diff.tcl:64
 +#, tcl-format
 +msgid ""
 +"No differences detected.\n"
 +"\n"
 +"%s has no changes.\n"
 +"\n"
- "Π² %s ΠΎΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ.\n"
- "\n"
- "Π”Π°Ρ‚Π° ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Ρ„Π°ΠΉΠ»Π° Π±Ρ‹Π»Π° ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½Π° Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ, Π½ΠΎ ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΠΌΠΎΠ΅ Ρ„Π°ΠΉΠ»Π° "
- "ΠΎΡΡ‚Π°Π»ΠΎΡΡŒ ΠΏΡ€Π΅ΠΆΠ½ΠΈΠΌ.\n"
- "\n"
- "БСйчас Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°ΠΏΡƒΡ‰Π΅Π½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Ρ‹Π²Π°Π½ΠΈΠ΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΠΉΡ‚ΠΈ ΠΏΠΎΠ΄ΠΎΠ±Π½Ρ‹Π΅ Ρ„Π°ΠΉΠ»Ρ‹."
++"The modification date of this file was updated by another application, but the content within the file was not changed.\n"
 +"\n"
- msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ Π² %s..."
++"A rescan will be automatically started to find other files which may have the same state."
++msgstr "ИзмСнСний Π½Π΅ ΠΎΠ±Π½Π°Ρ€ΡƒΠΆΠ΅Π½ΠΎ.\n\nΠ² %s ΠΎΡ‚ΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ.\n\nΠ”Π°Ρ‚Π° ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Ρ„Π°ΠΉΠ»Π° Π±Ρ‹Π»Π° ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½Π° Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ, Π½ΠΎ ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΠΌΠΎΠ΅ Ρ„Π°ΠΉΠ»Π° ΠΎΡΡ‚Π°Π»ΠΎΡΡŒ ΠΏΡ€Π΅ΠΆΠ½ΠΈΠΌ.\n\nБСйчас Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°ΠΏΡƒΡ‰Π΅Π½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Ρ‹Π²Π°Π½ΠΈΠ΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΠΉΡ‚ΠΈ ΠΏΠΎΠ΄ΠΎΠ±Π½Ρ‹Π΅ Ρ„Π°ΠΉΠ»Ρ‹."
 +
 +#: lib/diff.tcl:104
 +#, tcl-format
 +msgid "Loading diff of %s..."
- msgstr ""
- "Π›ΠžΠšΠΠ›Π¬ΠΠž: ΡƒΠ΄Π°Π»Ρ‘Π½\n"
- "Π’ΠΠ•Π¨ΠΠ˜Π™:\n"
++msgstr "Π—Π°Π³Ρ€ΡƒΠ·ΠΊΠ° ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ %s…"
 +
 +#: lib/diff.tcl:125
 +msgid ""
 +"LOCAL: deleted\n"
 +"REMOTE:\n"
- msgstr ""
- "Π’ΠΠ•Π¨ΠΠ˜Π™: ΡƒΠ΄Π°Π»Ρ‘Π½\n"
- "Π›ΠžΠšΠΠ›Π¬ΠΠž:\n"
++msgstr "Π›ΠžΠšΠΠ›Π¬ΠΠž: ΡƒΠ΄Π°Π»Ρ‘Π½\nΠ’ΠΠ•Π¨ΠΠ˜Π™:\n"
 +
 +#: lib/diff.tcl:130
 +msgid ""
 +"REMOTE: deleted\n"
 +"LOCAL:\n"
- msgstr ""
- "* Π Π°Π·ΠΌΠ΅Ρ€ Π½Π΅ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ³ΠΎ Ρ„Π°ΠΉΠ»Π° %d Π±Π°ΠΉΡ‚.\n"
- "* ΠŸΠΎΠΊΠ°Π·Π°Π½ΠΎ ΠΏΠ΅Ρ€Π²Ρ‹Ρ… %d Π±Π°ΠΉΡ‚.\n"
++msgstr "Π’ΠΠ•Π¨ΠΠ˜Π™: ΡƒΠ΄Π°Π»Ρ‘Π½\nΠ›ΠžΠšΠΠ›Π¬ΠΠž:\n"
 +
 +#: lib/diff.tcl:137
 +msgid "LOCAL:\n"
 +msgstr "Π›ΠžΠšΠΠ›Π¬ΠΠž:\n"
 +
 +#: lib/diff.tcl:140
 +msgid "REMOTE:\n"
 +msgstr "Π’ΠΠ•Π¨ΠΠ˜Π™:\n"
 +
 +#: lib/diff.tcl:202 lib/diff.tcl:319
 +#, tcl-format
 +msgid "Unable to display %s"
 +msgstr "НС ΠΌΠΎΠ³Ρƒ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ %s"
 +
 +#: lib/diff.tcl:203
 +msgid "Error loading file:"
 +msgstr "Ошибка Π·Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ Ρ„Π°ΠΉΠ»Π°:"
 +
 +#: lib/diff.tcl:210
 +msgid "Git Repository (subproject)"
 +msgstr "Π Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Git (ΠΏΠΎΠ΄ΠΏΡ€ΠΎΠ΅ΠΊΡ‚)"
 +
 +#: lib/diff.tcl:222
 +msgid "* Binary file (not showing content)."
 +msgstr "* Π”Π²ΠΎΠΈΡ‡Π½Ρ‹ΠΉ Ρ„Π°ΠΉΠ» (содСрТимоС Π½Π΅ ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΎ)"
 +
 +#: lib/diff.tcl:227
 +#, tcl-format
 +msgid ""
 +"* Untracked file is %d bytes.\n"
 +"* Showing only first %d bytes.\n"
- msgstr ""
- "\n"
- "* ΠΠ΅ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹ΠΉ Ρ„Π°ΠΉΠ» ΠΎΠ±Ρ€Π΅Π·Π°Π½: %s.\n"
- "* Π§Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ Π²Π΅ΡΡŒ Ρ„Π°ΠΉΠ», ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ-Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€.\n"
++msgstr "* Π Π°Π·ΠΌΠ΅Ρ€ Π½Π΅ΠΎΡ‚слСТиваСмого Ρ„Π°ΠΉΠ»Π° %d Π±Π°ΠΉΡ‚.\n* ΠŸΠΎΠΊΠ°Π·Π°Π½ΠΎ ΠΏΠ΅Ρ€Π²Ρ‹Ρ… %d Π±Π°ΠΉΡ‚.\n"
 +
 +#: lib/diff.tcl:233
 +#, tcl-format
 +msgid ""
 +"\n"
 +"* Untracked file clipped here by %s.\n"
 +"* To see the entire file, use an external editor.\n"
- msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΊ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΡŽ Π²Ρ‹Π±Ρ€Π°Π½Π½ΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ."
++msgstr "\n* ΠΠ΅ΠΎΡ‚слСТиваСмый Ρ„Π°ΠΉΠ» ΠΎΠ±Ρ€Π΅Π·Π°Π½: %s.\n* Π§Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ Π²Π΅ΡΡŒ Ρ„Π°ΠΉΠ», ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Π²Π½Π΅ΡˆΠ½ΠΈΠΉ Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€.\n"
 +
 +#: lib/diff.tcl:482
 +msgid "Failed to unstage selected hunk."
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π²Ρ‹Π±Ρ€Π°Π½Π½ΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ."
 +
 +#: lib/diff.tcl:489
 +msgid "Failed to stage selected hunk."
- msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΊ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΡŽ Π²Ρ‹Π±Ρ€Π°Π½Π½ΡƒΡŽ ΡΡ‚Ρ€ΠΎΠΊΡƒ."
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΡ€ΠΎΠΈΠ½Π΄Π΅ΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Ρ‹Π±Ρ€Π°Π½Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ."
 +
 +#: lib/diff.tcl:568
 +msgid "Failed to unstage selected line."
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π²Ρ‹Π±Ρ€Π°Π½Π½ΡƒΡŽ ΡΡ‚Ρ€ΠΎΠΊΡƒ."
 +
 +#: lib/diff.tcl:576
 +msgid "Failed to stage selected line."
- msgstr "ΠŸΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ, ΠΈΡΠΏΡ€Π°Π²ΡŒΡ‚Π΅ Π²Ρ‹ΡˆΠ΅ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Π΅ ΠΎΡˆΠΈΠ±ΠΊΠΈ."
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΡ€ΠΎΠΈΠ½Π΄Π΅ΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Ρ‹Π±Ρ€Π°Π½Π½ΡƒΡŽ ΡΡ‚Ρ€ΠΎΠΊΡƒ."
 +
 +#: lib/encoding.tcl:443
 +msgid "Default"
 +msgstr "По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ"
 +
 +#: lib/encoding.tcl:448
 +#, tcl-format
 +msgid "System (%s)"
 +msgstr "БистСмная (%s)"
 +
 +#: lib/encoding.tcl:459 lib/encoding.tcl:465
 +msgid "Other"
 +msgstr "Другая"
 +
 +#: lib/error.tcl:20 lib/error.tcl:114
 +msgid "error"
 +msgstr "ошибка"
 +
 +#: lib/error.tcl:36
 +msgid "warning"
 +msgstr "ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅"
 +
 +#: lib/error.tcl:94
 +msgid "You must correct the above errors before committing."
- msgstr ""
- "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ½Π΄Π΅ΠΊΡ Git. Π‘остояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΡ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Π½ΠΎ "
- "автоматичСски."
++msgstr "ΠŸΠ΅Ρ€Π΅Π΄ ΠΊΠΎΠΌΠΌΠΈΡ‚ΠΎΠΌ, ΠΈΡΠΏΡ€Π°Π²ΡŒΡ‚Π΅ Π²Ρ‹ΡˆΠ΅ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Π΅ ΠΎΡˆΠΈΠ±ΠΊΠΈ."
 +
 +#: lib/index.tcl:6
 +msgid "Unable to unlock the index."
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: lib/index.tcl:15
 +msgid "Index Error"
 +msgstr "Ошибка Π² ΠΈΠ½Π΄Π΅ΠΊΡΠ΅"
 +
 +#: lib/index.tcl:17
 +msgid ""
 +"Updating the Git index failed.  A rescan will be automatically started to "
 +"resynchronize git-gui."
- msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ %s ΠΈΠ· ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ³ΠΎ"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ½Π΄Π΅ΠΊΡ Git. Π‘остояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΡ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Π½ΠΎ Π°Π²Ρ‚оматичСски."
 +
 +#: lib/index.tcl:28
 +msgid "Continue"
 +msgstr "ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ"
 +
 +#: lib/index.tcl:31
 +msgid "Unlock Index"
 +msgstr "Π Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΠ½Π΄Π΅ΠΊΡ"
 +
 +#: lib/index.tcl:289
 +#, tcl-format
 +msgid "Unstaging %s from commit"
- msgstr "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ Π΄Π»Ρ ΡΠΎΡ…ранСния"
++msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ %s ΠΈΠ· ΠΈΠ½Π΄Π΅ΠΊΡΠ°"
 +
 +#: lib/index.tcl:328
 +msgid "Ready to commit."
- msgstr "Π”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ %s..."
++msgstr "Π“ΠΎΡ‚ΠΎΠ² Π΄Π»Ρ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°."
 +
 +#: lib/index.tcl:341
 +#, tcl-format
 +msgid "Adding %s"
- msgstr "ΠžΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π² Ρ„Π°ΠΉΠ»Π΅ %s?"
++msgstr "Π”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ %s…"
 +
 +#: lib/index.tcl:398
 +#, tcl-format
 +msgid "Revert changes in file %s?"
- msgstr "ΠžΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π² %i Ρ„Π°ΠΉΠ»Π΅(-Π°Ρ…)?"
++msgstr "ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π² Ρ„Π°ΠΉΠ»Π΅ %s?"
 +
 +#: lib/index.tcl:400
 +#, tcl-format
 +msgid "Revert changes in these %i files?"
- msgstr ""
- "Π›ΡŽΠ±Ρ‹Π΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ, Π½Π΅ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹Π΅ ΠΊ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΡŽ, Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΠΎΡ‚Сряны ΠΏΡ€ΠΈ Π΄Π°Π½Π½ΠΎΠΉ "
- "ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ."
++msgstr "ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π² %i Ρ„Π°ΠΉΠ»Π΅(-Π°Ρ…)?"
 +
 +#: lib/index.tcl:408
 +msgid "Any unstaged changes will be permanently lost by the revert."
- msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ Π² Π²Ρ‹Π±Ρ€Π°Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»Π°Ρ…"
++msgstr "Π›ΡŽΠ±Ρ‹Π΅ Π½Π΅ΠΏΡ€ΠΎΠΈΠ½Π΄Π΅ΠΊΡΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ, Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΠΎΡ‚Сряны ΠΏΡ€ΠΈ ΠΎΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ."
 +
 +#: lib/index.tcl:411
 +msgid "Do Nothing"
 +msgstr "НичСго Π½Π΅ Π΄Π΅Π»Π°Ρ‚ΡŒ"
 +
 +#: lib/index.tcl:429
 +msgid "Reverting selected files"
- msgstr "ΠžΡ‚ΠΌΠ΅Π½Π° ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ Π² %s"
++msgstr "ΠžΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ Π² Π²Ρ‹Π±Ρ€Π°Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»Π°Ρ…"
 +
 +#: lib/index.tcl:433
 +#, tcl-format
 +msgid "Reverting %s"
- msgstr ""
- "НСвозмоТно Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π²ΠΎ Π²Ρ€Π΅ΠΌΡ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡ.\n"
- "\n"
- "Π—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚Π΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ Π΄Π°Π½Π½ΠΎΠ³ΠΎ ΡΠΎΡΡ‚ояния ΠΏΠ΅Ρ€Π΅Π΄ Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ΠΌ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
++msgstr "ΠžΠ±Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ Π² %s"
 +
 +#: lib/merge.tcl:13
 +msgid ""
 +"Cannot merge while amending.\n"
 +"\n"
 +"You must finish amending this commit before starting any type of merge.\n"
- "Another Git program has modified this repository since the last scan.  A "
- "rescan must be performed before a merge can be performed.\n"
++msgstr "НСвозмоТно Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π²ΠΎ Π²Ρ€Π΅ΠΌΡ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡ.\n\nΠ—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚Π΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ Π΄Π°Π½Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΌΠΈΡ‚Π° ΠΏΠ΅Ρ€Π΅Π΄ Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ΠΌ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
 +
 +#: lib/merge.tcl:27
 +msgid ""
 +"Last scanned state does not match repository state.\n"
 +"\n"
- msgstr ""
- "ПослСднСС ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π½Π΅ ΡΠΎΠΎΡ‚вСтствуСт Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌΡƒ.\n"
- "\n"
- "Π‘ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅ΠΉ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ Git. "
- "НСобходимо ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ ΠΈΠ·ΠΌΠ΅Π½ΡΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ.\n"
- "\n"
- "Π­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ΄Π΅Π»Π°Π½ΠΎ ΡΠ΅ΠΉΡ‡Π°Ρ Π°Π²Ρ‚оматичСски.\n"
++"Another Git program has modified this repository since the last scan.  A rescan must be performed before a merge can be performed.\n"
 +"\n"
 +"The rescan will be automatically started now.\n"
- "You must resolve them, stage the file, and commit to complete the current "
- "merge.  Only then can you begin another merge.\n"
- msgstr ""
- "ΠŸΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅Π΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ ΠΈΠ·-Π·Π° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°.\n"
- "\n"
- "Для Ρ„Π°ΠΉΠ»Π° %s Π²ΠΎΠ·Π½ΠΈΠΊ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
- "\n"
- "Π Π°Π·Ρ€Π΅ΡˆΠΈΡ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚, ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ Ρ„Π°ΠΉΠ» ΠΈ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚Π΅. Π’олько ΠΏΠΎΡΠ»Π΅ ΡΡ‚ΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ "
- "Π½Π°Ρ‡Π°Ρ‚ΡŒ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅.\n"
++msgstr "ПослСднСС ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½Π½ΠΎΠ΅ ΡΠΎΡΡ‚ояниС Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Π½Π΅ ΡΠΎΠΎΡ‚вСтствуСт Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌΡƒ.\n\nΠ‘ ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΠΎΡΠ»Π΅Π΄Π½Π΅ΠΉ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π±Ρ‹Π» ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ Git. ΠΠ΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΡΠ΄Π΅Π»Π°Π½ΠΎ.\n\nΠ­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠ΄Π΅Π»Π°Π½ΠΎ ΡΠ΅ΠΉΡ‡Π°Ρ Π°Π²Ρ‚оматичСски.\n"
 +
 +#: lib/merge.tcl:45
 +#, tcl-format
 +msgid ""
 +"You are in the middle of a conflicted merge.\n"
 +"\n"
 +"File %s has merge conflicts.\n"
 +"\n"
- "You should complete the current commit before starting a merge.  Doing so "
- "will help you abort a failed merge, should the need arise.\n"
- msgstr ""
- "ИзмСнСния Π½Π΅ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Ρ‹.\n"
- "\n"
- "Π€Π°ΠΉΠ» %s ΠΈΠ·ΠΌΠ΅Π½Π΅Π½.\n"
- "\n"
- "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ ΠΈ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ ΠΏΠ΅Ρ€Π΅Π΄ Π½Π°Ρ‡Π°Π»ΠΎΠΌ ΡΠ»ΠΈΡΠ½ΠΈΡ. Π’ ΡΠ»ΡƒΡ‡Π°Π΅ "
- "нСобходимости ΡΡ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ ΠΏΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
++"You must resolve them, stage the file, and commit to complete the current merge.  Only then can you begin another merge.\n"
++msgstr "ΠŸΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅Π΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ ΠΈΠ·-Π·Π° ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°.\n\nДля Ρ„Π°ΠΉΠ»Π° %s Π²ΠΎΠ·Π½ΠΈΠΊ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n\nΠ Π°Π·Ρ€Π΅ΡˆΠΈΡ‚Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚, Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ Ρ„Π°ΠΉΠ» Π² ΠΈΠ½Π΄Π΅ΠΊΡ ΠΈ Π·Π°ΠΊΠΎΠΌΠΌΠΈΡ‚ΡŒΡ‚Π΅. Π’олько ΠΏΠΎΡΠ»Π΅ ΡΡ‚ΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π΅ ΡΠ»ΠΈΡΠ½ΠΈΠ΅.\n"
 +
 +#: lib/merge.tcl:55
 +#, tcl-format
 +msgid ""
 +"You are in the middle of a change.\n"
 +"\n"
 +"File %s is modified.\n"
 +"\n"
- msgstr "БлияниС %s ΠΈ %s..."
++"You should complete the current commit before starting a merge.  Doing so will help you abort a failed merge, should the need arise.\n"
++msgstr "Π’Ρ‹ Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚Π΅ΡΡŒ Π² ΠΏΡ€ΠΎΡ†Π΅ΡΡΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.\n\nΠ€Π°ΠΉΠ» %s ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½.\n\nΠ’Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ Ρ‚Π΅ΠΊΡƒΡ‰ΠΈΠΉ ΠΊΠΎΠΌΠΌΠΈΡ‚ ΠΏΠ΅Ρ€Π΅Π΄ Π½Π°Ρ‡Π°Π»ΠΎΠΌ ΡΠ»ΠΈΡΠ½ΠΈΡ. Π’ ΡΠ»ΡƒΡ‡Π°Π΅ Π½Π΅ΠΎΠ±Ρ…одимости, ΡΡ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ ΠΏΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ ΡΠ»ΠΈΡΠ½ΠΈΡ.\n"
 +
 +#: lib/merge.tcl:107
 +#, tcl-format
 +msgid "%s of %s"
 +msgstr "%s ΠΈΠ· %s"
 +
 +#: lib/merge.tcl:120
 +#, tcl-format
 +msgid "Merging %s and %s..."
- msgstr ""
- "НСвозмоТно ΠΏΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅.\n"
- "\n"
- "Π—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½ΠΎΠ³ΠΎ ΡΠΎΡΡ‚ояния.\n"
++msgstr "БлияниС %s ΠΈ %s…"
 +
 +#: lib/merge.tcl:131
 +msgid "Merge completed successfully."
 +msgstr "БлияниС ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ."
 +
 +#: lib/merge.tcl:133
 +msgid "Merge failed.  Conflict resolution is required."
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ ΡΠ»ΠΈΡΠ½ΠΈΠ΅. Π’рСбуСтся Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°."
 +
 +#: lib/merge.tcl:158
 +#, tcl-format
 +msgid "Merge Into %s"
 +msgstr "БлияниС Ρ %s"
 +
 +#: lib/merge.tcl:177
 +msgid "Revision To Merge"
 +msgstr "ВСрсия, Ρ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ ΠΏΡ€ΠΎΠ²Π΅ΡΡ‚ΠΈ ΡΠ»ΠΈΡΠ½ΠΈΠ΅"
 +
 +#: lib/merge.tcl:212
 +msgid ""
 +"Cannot abort while amending.\n"
 +"\n"
 +"You must finish amending this commit.\n"
- msgstr ""
- "ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ ΡΠ»ΠΈΡΠ½ΠΈΡ?\n"
- "\n"
- "ΠŸΡ€Π΅Ρ€Ρ‹Π²Π°Π½ΠΈΠ΅ ΡΡ‚ΠΎΠΉ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΠΏΡ€ΠΈΠ²Π΅Π΄Π΅Ρ‚ ΠΊ ΠΏΠΎΡ‚Π΅Ρ€Π΅ *Π’Π‘Π•Π₯* Π½Π΅ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½Ρ‹Ρ… ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.\n"
- "\n"
- "ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ?"
++msgstr "НСвозмоТно ΠΏΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅.\n\nΠ—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚Π΅ Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π΅ ΠΈΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°.\n"
 +
 +#: lib/merge.tcl:222
 +msgid ""
 +"Abort merge?\n"
 +"\n"
 +"Aborting the current merge will cause *ALL* uncommitted changes to be lost.\n"
 +"\n"
 +"Continue with aborting the current merge?"
- msgstr ""
- "ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ ΡΠ»ΠΈΡΠ½ΠΈΡ?\n"
- "\n"
- "ΠŸΡ€Π΅Ρ€Ρ‹Π²Π°Π½ΠΈΠ΅ ΡΡ‚ΠΎΠΉ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΠΏΡ€ΠΈΠ²Π΅Π΄Π΅Ρ‚ ΠΊ ΠΏΠΎΡ‚Π΅Ρ€Π΅ *Π’Π‘Π•Π₯* Π½Π΅ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½Ρ‹Ρ… ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.\n"
- "\n"
- "ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ?"
++msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ ΡΠ»ΠΈΡΠ½ΠΈΡ?\n\nΠŸΡ€Π΅Ρ€Ρ‹Π²Π°Π½ΠΈΠ΅ Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π³ΠΎ ΡΠ»ΠΈΡΠ½ΠΈΡ ΠΏΡ€ΠΈΠ²Π΅Π΄Π΅Ρ‚ ΠΊ ΠΏΠΎΡ‚Π΅Ρ€Π΅ *Π’Π‘Π•Π₯* Π½Π΅ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½Ρ‹Ρ… ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.\n\nΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ?"
 +
 +#: lib/merge.tcl:228
 +msgid ""
 +"Reset changes?\n"
 +"\n"
 +"Resetting the changes will cause *ALL* uncommitted changes to be lost.\n"
 +"\n"
 +"Continue with resetting the current changes?"
- msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡŽ ΡΡ‚ΠΎΠΉ Π²Π΅Ρ‚Π²ΠΈ Π΄Π»Ρ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°?"
++msgstr "Π‘Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ?\n\nБброс ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ ΠΏΡ€ΠΈΠ²Π΅Π΄Π΅Ρ‚ ΠΊ ΠΏΠΎΡ‚Π΅Ρ€Π΅ *Π’Π‘Π•Π₯* Π½Π΅ΡΠΎΡ…Ρ€Π°Π½Π΅Π½Π½Ρ‹Ρ… ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.\n\nΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ?"
 +
 +#: lib/merge.tcl:239
 +msgid "Aborting"
 +msgstr "ΠŸΡ€Π΅Ρ€Ρ‹Π²Π°ΡŽ"
 +
 +#: lib/merge.tcl:239
 +msgid "files reset"
 +msgstr "измСнСния Π² Ρ„Π°ΠΉΠ»Π°Ρ… ΠΎΡ‚ΠΌΠ΅Π½Π΅Π½Ρ‹"
 +
 +#: lib/merge.tcl:267
 +msgid "Abort failed."
 +msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ Π½Π΅ ΡƒΠ΄Π°Π»ΠΎΡΡŒ."
 +
 +#: lib/merge.tcl:269
 +msgid "Abort completed.  Ready."
 +msgstr "ΠŸΡ€Π΅Ρ€Π²Π°Π½ΠΎ."
 +
 +#: lib/mergetool.tcl:8
 +msgid "Force resolution to the base version?"
 +msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π±Π°Π·ΠΎΠ²ΡƒΡŽ Π²Π΅Ρ€ΡΠΈΡŽ Π΄Π»Ρ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°?"
 +
 +#: lib/mergetool.tcl:9
 +msgid "Force resolution to this branch?"
- msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡŽ Π΄Ρ€ΡƒΠ³ΠΎΠΉ Π²Π΅Ρ‚Π²ΠΈ Π΄Π»Ρ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°?"
++msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡŽ ΠΈΠ· ΡΡ‚ΠΎΠΉ Π²Π΅Ρ‚ΠΊΠΈ Π΄Π»Ρ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°?"
 +
 +#: lib/mergetool.tcl:10
 +msgid "Force resolution to the other branch?"
- msgstr ""
- "Π’Π½ΠΈΠΌΠ°Π½ΠΈΠ΅! Π‘писок ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΡƒΡŽΡ‰ΠΈΠ΅ ΠΎΡ‚личия.\n"
- "\n"
- "%s Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΏΠΈΡΠ°Π½.\n"
- "\n"
- "Π­Ρ‚ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠ΅Ρ€Π΅Π·Π°ΠΏΡƒΡΠΊΠΎΠΌ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ."
++msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π²Π΅Ρ€ΡΠΈΡŽ ΠΈΠ· Π΄Ρ€ΡƒΠ³ΠΎΠΉ Π²Π΅Ρ‚ΠΊΠΈ Π΄Π»Ρ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Π°?"
 +
 +#: lib/mergetool.tcl:14
 +#, tcl-format
 +msgid ""
 +"Note that the diff shows only conflicting changes.\n"
 +"\n"
 +"%s will be overwritten.\n"
 +"\n"
 +"This operation can be undone only by restarting the merge."
- msgstr ""
- "Π€Π°ΠΉΠ» %s, ΠΏΠΎΡ…ΠΎΠΆΠ΅, ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚ Π½Π΅ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Ρ‹. ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΡƒ ΠΊ "
- "ΡΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΈΡŽ?"
++msgstr "Π’Π½ΠΈΠΌΠ°Π½ΠΈΠ΅! Π‘писок ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΡƒΡŽΡ‰ΠΈΠ΅ ΠΎΡ‚личия.\n\n%s Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΏΠΈΡΠ°Π½.\n\nΠ­Ρ‚ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠ΅Ρ€Π΅Π·Π°ΠΏΡƒΡΠΊΠΎΠΌ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ."
 +
 +#: lib/mergetool.tcl:45
 +#, tcl-format
 +msgid "File %s seems to have unresolved conflicts, still stage?"
- msgstr ""
- "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΡΠ»ΠΈΡΠ½ΠΈΡ Π½Π΅ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Ρ‹ Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠ΅ΠΌ ΠΈΠ»ΠΈ ΡƒΡ‡Π°ΡΡ‚ΠΈΠ΅ΠΌ ΡΡΡ‹Π»ΠΎΠΊ"
++msgstr "ΠŸΠΎΡ…ΠΎΠΆΠ΅, Ρ‡Ρ‚ΠΎ Ρ„Π°ΠΉΠ» %s ΡΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚ Π½Π΅Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Ρ‹. ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ ΠΈΠ½Π΄Π΅ΠΊΡΠ°Ρ†ΠΈΡŽ?"
 +
 +#: lib/mergetool.tcl:60
 +#, tcl-format
 +msgid "Adding resolution for %s"
 +msgstr "Π”ΠΎΠ±Π°Π²Π»ΡΡŽ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ Π΄Π»Ρ %s"
 +
 +#: lib/mergetool.tcl:141
 +msgid "Cannot resolve deletion or link conflicts using a tool"
- msgstr "'%s' Π½Π΅ ΡΠ²Π»ΡΠ΅Ρ‚ся ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ ΡΠ»ΠΈΡΠ½ΠΈΡ"
++msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΡΠ»ΠΈΡΠ½ΠΈΡ Π½Π΅ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚Ρ‹ Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠ΅ΠΌ ΠΈΠ»ΠΈ ΡƒΡ‡Π°ΡΡ‚ΠΈΠ΅ΠΌ ΡΡΡ‹Π»ΠΎΠΊ"
 +
 +#: lib/mergetool.tcl:146
 +msgid "Conflict file does not exist"
 +msgstr "ΠšΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΡƒΡŽΡ‰ΠΈΠΉ Ρ„Π°ΠΉΠ» Π½Π΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚"
 +
 +#: lib/mergetool.tcl:264
 +#, tcl-format
 +msgid "Not a GUI merge tool: '%s'"
- msgstr "НСизвСстная ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΡΠ»ΠΈΡΠ½ΠΈΡ '%s'"
++msgstr "Β«%sΒ» Π½Π΅ ΡΠ²Π»ΡΠ΅Ρ‚ся ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΎΠΉ ΡΠ»ΠΈΡΠ½ΠΈΡ"
 +
 +#: lib/mergetool.tcl:268
 +#, tcl-format
 +msgid "Unsupported merge tool '%s'"
- msgstr ""
- "Ошибка ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΡ Π²Π΅Ρ€ΡΠΈΠΉ:\n"
- "%s"
++msgstr "НСподдСрТиваСмая ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΡΠ»ΠΈΡΠ½ΠΈΡ Β«%sΒ»"
 +
 +#: lib/mergetool.tcl:303
 +msgid "Merge tool is already running, terminate it?"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΡΠ»ΠΈΡΠ½ΠΈΡ ΡƒΠΆΠ΅ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚. ΠŸΡ€Π΅Ρ€Π²Π°Ρ‚ΡŒ?"
 +
 +#: lib/mergetool.tcl:323
 +#, tcl-format
 +msgid ""
 +"Error retrieving versions:\n"
 +"%s"
- msgstr ""
- "Ошибка Π·Π°ΠΏΡƒΡΠΊΠ° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΡΠ»ΠΈΡΠ½ΠΈΡ:\n"
- "\n"
- "%s"
++msgstr "Ошибка ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΡ Π²Π΅Ρ€ΡΠΈΠΉ:\n%s"
 +
 +#: lib/mergetool.tcl:343
 +#, tcl-format
 +msgid ""
 +"Could not start the merge tool:\n"
 +"\n"
 +"%s"
- msgstr "Запуск ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΡΠ»ΠΈΡΠ½ΠΈΡ..."
++msgstr "Ошибка Π·Π°ΠΏΡƒΡΠΊΠ° ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΡΠ»ΠΈΡΠ½ΠΈΡ:\n\n%s"
 +
 +#: lib/mergetool.tcl:347
 +msgid "Running merge tool..."
- msgstr "Ошибка Π² Π³Π»ΠΎΠ±Π°Π»ΡŒΠ½ΠΎΠΉ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΊΠ΅ ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΠΈ '%s'"
++msgstr "Запуск ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΡΠ»ΠΈΡΠ½ΠΈΡβ€¦"
 +
 +#: lib/mergetool.tcl:375 lib/mergetool.tcl:383
 +msgid "Merge tool failed."
 +msgstr "Ошибка Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΡΠ»ΠΈΡΠ½ΠΈΡ."
 +
 +#: lib/option.tcl:11
 +#, tcl-format
 +msgid "Invalid global encoding '%s'"
- msgstr "НСвСрная ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΠ° Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория: '%s'"
++msgstr "НСвСрная Π³Π»ΠΎΠ±Π°Π»ΡŒΠ½Π°Ρ ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΠ° Β«%sΒ»"
 +
 +#: lib/option.tcl:19
 +#, tcl-format
 +msgid "Invalid repo encoding '%s'"
- msgstr "Π‘ΡƒΠΌΠΌΠ°Ρ€Π½Ρ‹ΠΉ ΠΊΠΎΠΌΠΌΠ΅Π½Ρ‚Π°Ρ€ΠΈΠΉ ΠΏΡ€ΠΈ ΡΠ»ΠΈΡΠ½ΠΈΠΈ"
++msgstr "НСвСрная ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΠ° Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория Β«%sΒ»"
 +
 +#: lib/option.tcl:117
 +msgid "Restore Defaults"
 +msgstr "Π’ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ"
 +
 +#: lib/option.tcl:121
 +msgid "Save"
 +msgstr "Π‘ΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ"
 +
 +#: lib/option.tcl:131
 +#, tcl-format
 +msgid "%s Repository"
 +msgstr "Для Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория %s"
 +
 +#: lib/option.tcl:132
 +msgid "Global (All Repositories)"
 +msgstr "ΠžΠ±Ρ‰ΠΈΠ΅ (для Π²ΡΠ΅Ρ… Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠ΅Π²)"
 +
 +#: lib/option.tcl:138
 +msgid "User Name"
 +msgstr "Имя ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Сля"
 +
 +#: lib/option.tcl:139
 +msgid "Email Address"
 +msgstr "АдрСс ΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Π½ΠΎΠΉ ΠΏΠΎΡ‡Ρ‚Ρ‹"
 +
 +#: lib/option.tcl:141
 +msgid "Summarize Merge Commits"
- msgstr "Чистка Π²Π΅Ρ‚Π²Π΅ΠΉ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ ΠΏΡ€ΠΈ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ"
++msgstr "Π‘ΡƒΠΌΠΌΠ°Ρ€Π½ΠΎΠ΅ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ ΡΠ»ΠΈΡΠ½ΠΈΠΈ"
 +
 +#: lib/option.tcl:142
 +msgid "Merge Verbosity"
 +msgstr "Π£Ρ€ΠΎΠ²Π΅Π½ΡŒ Π΄Π΅Ρ‚Π°Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΠΉ ΠΏΡ€ΠΈ ΡΠ»ΠΈΡΠ½ΠΈΠΈ"
 +
 +#: lib/option.tcl:143
 +msgid "Show Diffstat After Merge"
 +msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ ΠΎΡ‚Ρ‡Π΅Ρ‚ ΠΎΠ± ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡΡ… ΠΏΠΎΡΠ»Π΅ ΡΠ»ΠΈΡΠ½ΠΈΡ"
 +
 +#: lib/option.tcl:144
 +msgid "Use Merge Tool"
 +msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΄Π»Ρ ΡΠ»ΠΈΡΠ½ΠΈΡ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ"
 +
 +#: lib/option.tcl:146
 +msgid "Trust File Modification Timestamps"
 +msgstr "Π”ΠΎΠ²Π΅Ρ€ΡΡ‚ΡŒ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ ΠΌΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΈ Ρ„Π°ΠΉΠ»Π°"
 +
 +#: lib/option.tcl:147
 +msgid "Prune Tracking Branches During Fetch"
- msgstr "Имя Π½ΠΎΠ²ΠΎΠΉ Π²Π΅Ρ‚Π²ΠΈ Π²Π·ΡΡ‚ΡŒ ΠΈΠ· ΠΈΠΌΠ΅Π½ Π²Π΅Ρ‚Π²Π΅ΠΉ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ"
++msgstr "Чистка ΠΎΡ‚слСТиваСмых Π²Π΅Ρ‚ΠΎΠΊ ΠΏΡ€ΠΈ ΠΈΠ·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ"
 +
 +#: lib/option.tcl:148
 +msgid "Match Tracking Branches"
- msgstr "Π¨ΠΈΡ€ΠΈΠ½Π° Ρ‚Скста ΠΊΠΎΠΌΠΌΠ΅Π½Ρ‚ария"
++msgstr "Π’Π°ΠΊΠΎΠ΅ ΠΆΠ΅ ΠΈΠΌΡ, ΠΊΠ°ΠΊ ΠΈ Ρƒ ΠΎΡ‚слСТиваСмой Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/option.tcl:149
 +msgid "Blame Copy Only On Changed Files"
 +msgstr "Поиск ΠΊΠΎΠΏΠΈΠΉ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»Π°Ρ…"
 +
 +#: lib/option.tcl:150
 +msgid "Minimum Letters To Blame Copy On"
 +msgstr "МинимальноС ΠΊΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ ΡΠΈΠΌΠ²ΠΎΠ»ΠΎΠ² Π΄Π»Ρ ΠΏΠΎΠΈΡΠΊΠ° ΠΊΠΎΠΏΠΈΠΉ"
 +
 +#: lib/option.tcl:151
 +msgid "Blame History Context Radius (days)"
 +msgstr "Радиус ΠΈΡΡ‚оричСского ΠΊΠΎΠ½Ρ‚Скста (Π² Π΄Π½ΡΡ…)"
 +
 +#: lib/option.tcl:152
 +msgid "Number of Diff Context Lines"
 +msgstr "Число ΡΡ‚Ρ€ΠΎΠΊ Π² ΠΊΠΎΠ½Ρ‚СкстС diff"
 +
 +#: lib/option.tcl:153
 +msgid "Commit Message Text Width"
- msgstr "Π¨Π°Π±Π»ΠΎΠ½ Π΄Π»Ρ ΠΈΠΌΠ΅Π½ΠΈ Π½ΠΎΠ²ΠΎΠΉ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "Π¨ΠΈΡ€ΠΈΠ½Π° Ρ‚Скста ΡΠΎΠΎΠ±Ρ‰Π΅Π½ΠΈΡ ΠΊΠΎΠΌΠΌΠΈΡ‚Π°"
 +
 +#: lib/option.tcl:154
 +msgid "New Branch Name Template"
- # carbon copy
++msgstr "Π¨Π°Π±Π»ΠΎΠ½ Π΄Π»Ρ ΠΈΠΌΠ΅Π½ΠΈ Π½ΠΎΠ²ΠΎΠΉ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/option.tcl:155
 +msgid "Default File Contents Encoding"
 +msgstr "ΠšΠΎΠ΄ΠΈΡ€ΠΎΠ²ΠΊΠ° ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Π½ΠΈΡ Ρ„Π°ΠΉΠ»Π° ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ"
 +
 +#: lib/option.tcl:203
 +msgid "Change"
 +msgstr "Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ"
 +
 +#: lib/option.tcl:230
 +msgid "Spelling Dictionary:"
 +msgstr "Π‘Π»ΠΎΠ²Π°Ρ€ΡŒ Π΄Π»Ρ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ:"
 +
 +#: lib/option.tcl:254
 +msgid "Change Font"
 +msgstr "Π˜Π·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ"
 +
 +#: lib/option.tcl:258
 +#, tcl-format
 +msgid "Choose %s"
 +msgstr "Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ %s"
 +
- msgstr "ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ ΠΈΠ·"
 +#: lib/option.tcl:264
 +msgid "pt."
 +msgstr "pt."
 +
 +#: lib/option.tcl:278
 +msgid "Preferences"
 +msgstr "Настройки"
 +
 +#: lib/option.tcl:314
 +msgid "Failed to completely save options:"
 +msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π½Π°ΡΡ‚Ρ€ΠΎΠΉΠΊΠΈ:"
 +
 +#: lib/remote.tcl:163
 +msgid "Remove Remote"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ ΡΡΡ‹Π»ΠΊΡƒ Π½Π° Π²Π½Π΅ΡˆΠ½ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/remote.tcl:168
 +msgid "Prune from"
 +msgstr "Чистка"
 +
 +#: lib/remote.tcl:173
 +msgid "Fetch from"
- msgstr ""
++msgstr "Π˜Π·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ ΠΈΠ·"
 +
 +#: lib/remote.tcl:215
 +msgid "Push to"
 +msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ"
 +
 +#: lib/remote_add.tcl:19
 +msgid "Add Remote"
 +msgstr "Π—Π°Ρ€Π΅Π³ΠΈΡΡ‚Ρ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Π½Π΅ΡˆΠ½ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/remote_add.tcl:24
 +msgid "Add New Remote"
 +msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π²Π½Π΅ΡˆΠ½ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ"
 +
 +#: lib/remote_add.tcl:28 lib/tools_dlg.tcl:36
 +msgid "Add"
- msgstr "Π‘ΠΊΠ°Ρ‡Π°Ρ‚ΡŒ ΡΡ€Π°Π·Ρƒ"
++msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ"
 +
 +#: lib/remote_add.tcl:37
 +msgid "Remote Details"
 +msgstr "Π˜Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡ ΠΎ Π²Π½Π΅ΡˆΠ½Π΅ΠΌ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ"
 +
 +#: lib/remote_add.tcl:50
 +msgid "Location:"
 +msgstr "ПолоТСниС:"
 +
 +#: lib/remote_add.tcl:62
 +msgid "Further Action"
 +msgstr "Π‘Π»Π΅Π΄ΡƒΡŽΡ‰Π°Ρ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ"
 +
 +#: lib/remote_add.tcl:65
 +msgid "Fetch Immediately"
- msgstr "НСдопустимоС Π½Π°Π·Π²Π°Π½ΠΈΠ΅ Π²Π½Π΅ΡˆΠ½Π΅Π³ΠΎ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория '%s'."
++msgstr "Π‘Ρ€Π°Π·Ρƒ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ"
 +
 +#: lib/remote_add.tcl:71
 +msgid "Initialize Remote Repository and Push"
 +msgstr "Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Π½Π΅ΡˆΠ½ΠΈΠΉ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ ΠΈ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ"
 +
 +#: lib/remote_add.tcl:77
 +msgid "Do Nothing Else Now"
 +msgstr "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ Π΄Π΅Π»Π°Ρ‚ΡŒ"
 +
 +#: lib/remote_add.tcl:101
 +msgid "Please supply a remote name."
 +msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ Π½Π°Π·Π²Π°Π½ΠΈΠ΅ Π²Π½Π΅ΡˆΠ½Π΅Π³ΠΎ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория."
 +
 +#: lib/remote_add.tcl:114
 +#, tcl-format
 +msgid "'%s' is not an acceptable remote name."
- msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ '%s' ΠΈΠ· '%s'. "
++msgstr "Β«%sΒ» Π½Π΅ ΡΠ²Π»ΡΠ΅Ρ‚ся Π΄ΠΎΠΏΡƒΡΡ‚ΠΈΠΌΡ‹ΠΌ ΠΈΠΌΠ΅Π½Π΅ΠΌ Π²Π½Π΅ΡˆΠ½Π΅Π³ΠΎ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория."
 +
 +#: lib/remote_add.tcl:125
 +#, tcl-format
 +msgid "Failed to add remote '%s' of location '%s'."
- msgstr "ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ %s"
++msgstr "НС ΡƒΠ΄Π°Π»ΠΎΡΡŒ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Β«%sΒ» ΠΈΠ· Β«%sΒ». "
 +
 +#: lib/remote_add.tcl:133 lib/transport.tcl:6
 +#, tcl-format
 +msgid "fetch %s"
- msgstr "ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ %s"
++msgstr "ΠΈΠ·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ %s"
 +
 +#: lib/remote_add.tcl:134
 +#, tcl-format
 +msgid "Fetching the %s"
- msgstr "НСвозмоТно ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π² '%s'."
++msgstr "Π˜Π·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ %s"
 +
 +#: lib/remote_add.tcl:157
 +#, tcl-format
 +msgid "Do not know how to initialize repository at location '%s'."
- msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ Π²ΠΎ Π²Π½Π΅ΡˆΠ½Π΅ΠΌ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ"
++msgstr "НСвозмоТно ΠΈΠ½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π² Β«%sΒ»."
 +
 +#: lib/remote_add.tcl:163 lib/transport.tcl:25 lib/transport.tcl:63
 +#: lib/transport.tcl:81
 +#, tcl-format
 +msgid "push %s"
 +msgstr "ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ %s"
 +
 +#: lib/remote_add.tcl:164
 +#, tcl-format
 +msgid "Setting up the %s (at %s)"
 +msgstr "Настройка %s (Π² %s)"
 +
 +#: lib/remote_branch_delete.tcl:29 lib/remote_branch_delete.tcl:34
 +msgid "Delete Branch Remotely"
- msgstr "Π’Π΅Ρ‚Π²ΠΈ"
++msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‚ΠΊΠΈ Π²ΠΎ Π²Π½Π΅ΡˆΠ½Π΅ΠΌ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΈ"
 +
 +#: lib/remote_branch_delete.tcl:47
 +msgid "From Repository"
 +msgstr "Из Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ория"
 +
 +#: lib/remote_branch_delete.tcl:50 lib/transport.tcl:134
 +msgid "Remote:"
 +msgstr "внСшний:"
 +
 +#: lib/remote_branch_delete.tcl:66 lib/transport.tcl:149
 +msgid "Arbitrary Location:"
 +msgstr "Π£ΠΊΠ°Π·Π°Π½Π½ΠΎΠ΅ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅:"
 +
 +#: lib/remote_branch_delete.tcl:84
 +msgid "Branches"
- msgstr "Для ΠΎΠΏΡ†ΠΈΠΈ 'БлияниС Ρ' Ρ‚рСбуСтся ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ Π²Π΅Ρ‚Π²ΡŒ."
++msgstr "Π’Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/remote_branch_delete.tcl:109
 +msgid "Delete Only If"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΡΠ»ΡƒΡ‡Π°Π΅, Π΅ΡΠ»ΠΈ"
 +
 +#: lib/remote_branch_delete.tcl:111
 +msgid "Merged Into:"
 +msgstr "БлияниС Ρ:"
 +
 +#: lib/remote_branch_delete.tcl:152
 +msgid "A branch is required for 'Merged Into'."
- msgstr ""
- "Π‘Π»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ Π²Π΅Ρ‚Π²ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½Π΅Π½Ρ‹ Ρ %s ΠΏΡ€ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΠΈ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ:\n"
- "\n"
- " - %s"
++msgstr "Для ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ Β«Π‘лияниС ΡΒ» Ρ‚рСбуСтся ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ Π²Π΅Ρ‚ΠΊΡƒ."
 +
 +#: lib/remote_branch_delete.tcl:184
 +#, tcl-format
 +msgid ""
 +"The following branches are not completely merged into %s:\n"
 +"\n"
 +" - %s"
- msgstr ""
- "НСкоторыС Ρ‚Π΅ΡΡ‚Ρ‹ Π½Π° ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π½Π΅ ΠΏΡ€ΠΎΡˆΠ»ΠΈ, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ Π’Ρ‹ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΠ»ΠΈ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Π΅ "
- "состояния. ΠŸΠΎΠΏΡ‹Ρ‚Π°ΠΉΡ‚Π΅ΡΡŒ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΡ… ΠΈΠ· %s."
++msgstr "Π‘Π»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ Π²Π΅Ρ‚ΠΊΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½Π΅Π½Ρ‹ Ρ %s ΠΏΡ€ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΠΈ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ ΡΠ»ΠΈΡΠ½ΠΈΡ:\n\n - %s"
 +
 +#: lib/remote_branch_delete.tcl:189
 +#, tcl-format
 +msgid ""
 +"One or more of the merge tests failed because you have not fetched the "
 +"necessary commits.  Try fetching from %s first."
- msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ ΠΎΠ΄Π½Ρƒ ΠΈΠ»ΠΈ Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΎ Π²Π΅Ρ‚Π²Π΅ΠΉ Π΄Π»Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΡ."
++msgstr "НСкоторыС Ρ‚Π΅ΡΡ‚Ρ‹ Π½Π° ΡΠ»ΠΈΡΠ½ΠΈΠ΅ Π½Π΅ ΠΏΡ€ΠΎΡˆΠ»ΠΈ, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π½Π΅ ΠΈΠ·Π²Π»Π΅ΠΊΠ»ΠΈ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Π΅ ΠΊΠΎΠΌΠΌΠΈΡ‚Ρ‹. ΠŸΠΎΠΏΡ‹Ρ‚Π°ΠΉΡ‚Π΅ΡΡŒ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ ΠΈΡ… ΠΈΠ· %s."
 +
 +#: lib/remote_branch_delete.tcl:207
 +msgid "Please select one or more branches to delete."
- msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‚Π²Π΅ΠΉ ΠΈΠ· %s"
++msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ ΠΎΠ΄Π½Ρƒ ΠΈΠ»ΠΈ Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΎ Π²Π΅Ρ‚ΠΎΠΊ Π΄Π»Ρ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΡ."
 +
 +#: lib/remote_branch_delete.tcl:226
 +#, tcl-format
 +msgid "Deleting branches from %s"
- msgstr "ΠŸΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Ρ‹Π²Π°Π½ΠΈΠ΅ %s... "
++msgstr "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‚ΠΎΠΊ ΠΈΠ· %s"
 +
 +#: lib/remote_branch_delete.tcl:292
 +msgid "No repository selected."
 +msgstr "НС ΡƒΠΊΠ°Π·Π°Π½ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ."
 +
 +#: lib/remote_branch_delete.tcl:297
 +#, tcl-format
 +msgid "Scanning %s..."
- msgstr "Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅..."
++msgstr "ΠŸΠ΅Ρ€Π΅Ρ‡ΠΈΡ‚Ρ‹Π²Π°Π½ΠΈΠ΅ %s…"
 +
 +#: lib/search.tcl:21
 +msgid "Find:"
 +msgstr "Поиск:"
 +
 +#: lib/search.tcl:23
 +msgid "Next"
 +msgstr "Π”Π°Π»ΡŒΡˆΠ΅"
 +
 +#: lib/search.tcl:24
 +msgid "Prev"
 +msgstr "ΠžΠ±Ρ€Π°Ρ‚Π½ΠΎ"
 +
 +#: lib/search.tcl:25
 +msgid "Case-Sensitive"
 +msgstr "Игн. Π±ΠΎΠ»ΡŒΡˆΠΈΠ΅/малСнькиС"
 +
 +#: lib/shortcut.tcl:21 lib/shortcut.tcl:62
 +msgid "Cannot write shortcut:"
 +msgstr "НСвозмоТно Π·Π°ΠΏΠΈΡΠ°Ρ‚ΡŒ ΡΡΡ‹Π»ΠΊΡƒ:"
 +
 +#: lib/shortcut.tcl:137
 +msgid "Cannot write icon:"
 +msgstr "НСвозмоТно Π·Π°ΠΏΠΈΡΠ°Ρ‚ΡŒ Π·Π½Π°Ρ‡ΠΎΠΊ:"
 +
 +#: lib/spellcheck.tcl:57
 +msgid "Unsupported spell checker"
 +msgstr "НСподдСрТиваСмая ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ"
 +
 +#: lib/spellcheck.tcl:65
 +msgid "Spell checking is unavailable"
 +msgstr "ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ Π½Π΅ Π΄ΠΎΡΡ‚ΡƒΠΏΠ½Π°"
 +
 +#: lib/spellcheck.tcl:68
 +msgid "Invalid spell checking configuration"
 +msgstr "ΠΠ΅ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Π°Ρ ΠΊΠΎΠ½Ρ„игурация ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ"
 +
 +#: lib/spellcheck.tcl:70
 +#, tcl-format
 +msgid "Reverting dictionary to %s."
 +msgstr "Π‘Π»ΠΎΠ²Π°Ρ€ΡŒ Π²Π΅Ρ€Π½ΡƒΡ‚ ΠΊ %s."
 +
 +#: lib/spellcheck.tcl:73
 +msgid "Spell checker silently failed on startup"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ Π½Π΅ ΡΠΌΠΎΠ³Π»Π° Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒΡΡ"
 +
 +#: lib/spellcheck.tcl:80
 +msgid "Unrecognized spell checker"
 +msgstr "НСраспознанная ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ"
 +
 +#: lib/spellcheck.tcl:186
 +msgid "No Suggestions"
 +msgstr "Π˜ΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠΉ Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½ΠΎ"
 +
 +#: lib/spellcheck.tcl:388
 +msgid "Unexpected EOF from spell checker"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ ΠΏΡ€Π΅Ρ€Π²Π°Π»Π° ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Ρƒ Π΄Π°Π½Π½Ρ‹Ρ…"
 +
 +#: lib/spellcheck.tcl:392
 +msgid "Spell Checker Failed"
 +msgstr "Ошибка ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΠΏΡ€Π°Π²ΠΎΠΏΠΈΡΠ°Π½ΠΈΡ"
 +
 +#: lib/sshkey.tcl:31
 +msgid "No keys found."
 +msgstr "ΠšΠ»ΡŽΡ‡ Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½"
 +
 +#: lib/sshkey.tcl:34
 +#, tcl-format
 +msgid "Found a public key in: %s"
 +msgstr "ΠŸΡƒΠ±Π»ΠΈΡ‡Π½Ρ‹ΠΉ ΠΊΠ»ΡŽΡ‡ ΠΈΠ· %s"
 +
 +#: lib/sshkey.tcl:40
 +msgid "Generate Key"
 +msgstr "Π‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠ»ΡŽΡ‡"
 +
 +#: lib/sshkey.tcl:56
 +msgid "Copy To Clipboard"
 +msgstr "Π‘ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π² Π±ΡƒΡ„Π΅Ρ€ ΠΎΠ±ΠΌΠ΅Π½Π°"
 +
 +#: lib/sshkey.tcl:70
 +msgid "Your OpenSSH Public Key"
 +msgstr "Π’Π°Ρˆ ΠΏΡƒΠ±Π»ΠΈΡ‡Π½Ρ‹ΠΉ ΠΊΠ»ΡŽΡ‡ OpenSSH"
 +
 +#: lib/sshkey.tcl:78
 +msgid "Generating..."
- msgstr ""
- "Ошибка Π·Π°ΠΏΡƒΡΠΊΠ° ssh-keygen:\n"
- "\n"
- "%s"
++msgstr "БозданиС…"
 +
 +#: lib/sshkey.tcl:84
 +#, tcl-format
 +msgid ""
 +"Could not start ssh-keygen:\n"
 +"\n"
 +"%s"
- msgstr "%s ... %*i ΠΈΠ· %*i %s (%3i%%)"
++msgstr "Ошибка Π·Π°ΠΏΡƒΡΠΊΠ° ssh-keygen:\n\n%s"
 +
 +#: lib/sshkey.tcl:111
 +msgid "Generation failed."
 +msgstr "ΠšΠ»ΡŽΡ‡ Π½Π΅ ΡΠΎΠ·Π΄Π°Π½."
 +
 +#: lib/sshkey.tcl:118
 +msgid "Generation succeeded, but no keys found."
 +msgstr "Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ ΠΊΠ»ΡŽΡ‡Π° Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ»ΠΎΡΡŒ, Π½ΠΎ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚ Π½Π΅ Π±Ρ‹Π» Π½Π°ΠΉΠ΄Π΅Π½"
 +
 +#: lib/sshkey.tcl:121
 +#, tcl-format
 +msgid "Your key is in: %s"
 +msgstr "Π’Π°Ρˆ ΠΊΠ»ΡŽΡ‡ Π½Π°Ρ…одится Π²: %s"
 +
 +#: lib/status_bar.tcl:83
 +#, tcl-format
 +msgid "%s ... %*i of %*i %s (%3i%%)"
- msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ '/' Π΄Π»Ρ ΡΠΎΠ·Π΄Π°Π½ΠΈΡ ΠΏΠΎΠ΄ΠΌΠ΅Π½ΡŽ"
++msgstr "%s β€¦ %*i ΠΈΠ· %*i %s (%3i%%)"
 +
 +#: lib/tools.tcl:75
 +#, tcl-format
 +msgid "Running %s requires a selected file."
 +msgstr "Запуск %s Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π²Ρ‹Π±Ρ€Π°Π½Π½ΠΎΠ³ΠΎ Ρ„Π°ΠΉΠ»Π°."
 +
 +#: lib/tools.tcl:90
 +#, tcl-format
 +msgid "Are you sure you want to run %s?"
 +msgstr "Π”Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ %s?"
 +
 +#: lib/tools.tcl:110
 +#, tcl-format
 +msgid "Tool: %s"
 +msgstr "Π’ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ: %s"
 +
 +#: lib/tools.tcl:111
 +#, tcl-format
 +msgid "Running: %s"
 +msgstr "Π’Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅: %s"
 +
 +#: lib/tools.tcl:149
 +#, tcl-format
 +msgid "Tool completed successfully: %s"
 +msgstr "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠ° %s Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ»Π°ΡΡŒ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ."
 +
 +#: lib/tools.tcl:151
 +#, tcl-format
 +msgid "Tool failed: %s"
 +msgstr "Ошибка Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹: %s"
 +
 +#: lib/tools_dlg.tcl:22
 +msgid "Add Tool"
 +msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π²ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½ΡƒΡŽ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡŽ"
 +
 +#: lib/tools_dlg.tcl:28
 +msgid "Add New Tool Command"
 +msgstr "Новая Π²ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ"
 +
 +#: lib/tools_dlg.tcl:33
 +msgid "Add globally"
 +msgstr "Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π΄Π»Ρ Π²ΡΠ΅Ρ… Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠ΅Π²"
 +
 +#: lib/tools_dlg.tcl:45
 +msgid "Tool Details"
 +msgstr "ОписаниС Π²ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ"
 +
 +#: lib/tools_dlg.tcl:48
 +msgid "Use '/' separators to create a submenu tree:"
- msgstr "Π’ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ '%s' ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
++msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Β«/Β» Π΄Π»Ρ ΡΠΎΠ·Π΄Π°Π½ΠΈΡ ΠΏΠΎΠ΄ΠΌΠ΅Π½ΡŽ"
 +
 +#: lib/tools_dlg.tcl:61
 +msgid "Command:"
 +msgstr "Команда:"
 +
 +#: lib/tools_dlg.tcl:74
 +msgid "Show a dialog before running"
 +msgstr "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΡŒ Π΄ΠΈΠ°Π»ΠΎΠ³ ΠΏΠ΅Ρ€Π΅Π΄ Π·Π°ΠΏΡƒΡΠΊΠΎΠΌ"
 +
 +#: lib/tools_dlg.tcl:80
 +msgid "Ask the user to select a revision (sets $REVISION)"
 +msgstr "Запрос Π½Π° Π²Ρ‹Π±ΠΎΡ€ Π²Π΅Ρ€ΡΠΈΠΈ (устанавливаСт $REVISION)"
 +
 +#: lib/tools_dlg.tcl:85
 +msgid "Ask the user for additional arguments (sets $ARGS)"
 +msgstr "Запрос Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… Π°Ρ€Π³ΡƒΠΌΠ΅Π½Ρ‚ΠΎΠ² (устанавливаСт $ARGS)"
 +
 +#: lib/tools_dlg.tcl:92
 +msgid "Don't show the command output window"
 +msgstr "НС ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Ρ‚ΡŒ ΠΎΠΊΠ½ΠΎ Π²Ρ‹Π²ΠΎΠ΄Π° ΠΊΠΎΠΌΠ°Π½Π΄Ρ‹"
 +
 +#: lib/tools_dlg.tcl:97
 +msgid "Run only if a diff is selected ($FILENAME not empty)"
 +msgstr "Запуск Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π΅ΡΠ»ΠΈ ΠΏΠΎΠΊΠ°Π·Π°Π½ ΡΠΏΠΈΡΠΎΠΊ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ ($FILENAME Π½Π΅ ΠΏΡƒΡΡ‚ΠΎ)"
 +
 +#: lib/tools_dlg.tcl:121
 +msgid "Please supply a name for the tool."
 +msgstr "Π£ΠΊΠ°ΠΆΠΈΡ‚Π΅ Π½Π°Π·Π²Π°Π½ΠΈΠ΅ Π²ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ."
 +
 +#: lib/tools_dlg.tcl:129
 +#, tcl-format
 +msgid "Tool '%s' already exists."
- msgstr ""
- "Ошибка Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΡ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹:\n"
- "%s"
++msgstr "Π’ΡΠΏΠΎΠΌΠΎΠ³Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΡ Β«%sΒ» ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΠ΅Ρ‚."
 +
 +#: lib/tools_dlg.tcl:151
 +#, tcl-format
 +msgid ""
 +"Could not add tool:\n"
 +"%s"
- msgstr "ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ ΠΈΠ· %s "
++msgstr "Ошибка Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΡ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹:\n%s"
 +
 +#: lib/tools_dlg.tcl:190
 +msgid "Remove Tool"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ"
 +
 +#: lib/tools_dlg.tcl:196
 +msgid "Remove Tool Commands"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Ρ‹ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹"
 +
 +#: lib/tools_dlg.tcl:200
 +msgid "Remove"
 +msgstr "Π£Π΄Π°Π»ΠΈΡ‚ΡŒ"
 +
 +#: lib/tools_dlg.tcl:236
 +msgid "(Blue denotes repository-local tools)"
 +msgstr "(Π‘ΠΈΠ½ΠΈΠΌ Π²Ρ‹Π΄Π΅Π»Π΅Π½Ρ‹ ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΡ‹ Π»ΠΎΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΡŽ)"
 +
 +#: lib/tools_dlg.tcl:297
 +#, tcl-format
 +msgid "Run Command: %s"
 +msgstr "Запуск ΠΊΠΎΠΌΠ°Π½Π΄Ρ‹: %s"
 +
 +#: lib/tools_dlg.tcl:311
 +msgid "Arguments"
 +msgstr "АргумСнты"
 +
 +#: lib/tools_dlg.tcl:348
 +msgid "OK"
 +msgstr "OK"
 +
 +#: lib/transport.tcl:7
 +#, tcl-format
 +msgid "Fetching new changes from %s"
- # carbon copy
++msgstr "Π˜Π·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ ΠΈΠ· %s "
 +
- msgstr "Чистка Π²Π΅Ρ‚Π²Π΅ΠΉ ΡΠ»Π΅ΠΆΠ΅Π½ΠΈΡ, ΡƒΠ΄Π°Π»Π΅Π½Π½Ρ‹Ρ… ΠΈΠ· %s"
 +#: lib/transport.tcl:18
 +#, tcl-format
 +msgid "remote prune %s"
 +msgstr "чистка Π²Π½Π΅ΡˆΠ½Π΅Π³ΠΎ %s"
 +
 +#: lib/transport.tcl:19
 +#, tcl-format
 +msgid "Pruning tracking branches deleted from %s"
- msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΡ Π² Π²Π΅Ρ‚вях"
++msgstr "Чистка ΠΎΡ‚слСТиваСмых Π²Π΅Ρ‚ΠΎΠΊ, ΡƒΠ΄Π°Π»Ρ‘Π½Π½Ρ‹Ρ… ΠΈΠ· %s"
 +
 +#: lib/transport.tcl:26
 +#, tcl-format
 +msgid "Pushing changes to %s"
 +msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΊΠ° ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ Π² %s "
 +
 +#: lib/transport.tcl:64
 +#, tcl-format
 +msgid "Mirroring to %s"
 +msgstr "Π’ΠΎΡ‡Π½ΠΎΠ΅ ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ Π² %s"
 +
 +#: lib/transport.tcl:82
 +#, tcl-format
 +msgid "Pushing %s %s to %s"
 +msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΊΠ° %s %s Π² %s"
 +
 +#: lib/transport.tcl:100
 +msgid "Push Branches"
- msgstr "Π˜ΡΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π²Π΅Ρ‚Π²ΠΈ"
++msgstr "ΠžΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/transport.tcl:114
 +msgid "Source Branches"
- msgstr "НамСрСнно ΠΏΠ΅Ρ€Π΅ΠΏΠΈΡΠ°Ρ‚ΡŒ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΡƒΡŽ Π²Π΅Ρ‚Π²ΡŒ (Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΡ‚Сря ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ)"
++msgstr "Π˜ΡΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π²Π΅Ρ‚ΠΊΠΈ"
 +
 +#: lib/transport.tcl:131
 +msgid "Destination Repository"
 +msgstr "Π Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ Π½Π°Π·Π½Π°Ρ‡Π΅Π½ΠΈΡ"
 +
 +#: lib/transport.tcl:169
 +msgid "Transfer Options"
 +msgstr "Настройки ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠΈ"
 +
 +#: lib/transport.tcl:171
 +msgid "Force overwrite existing branch (may discard changes)"
++msgstr "ΠŸΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Π·Π°ΠΏΠΈΡΠ°Ρ‚ΡŒ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΡƒΡŽ Π²Π΅Ρ‚ΠΊΡƒ (Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΡ‚Сря ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ)"
 +
 +#: lib/transport.tcl:175
 +msgid "Use thin pack (for slow network connections)"
 +msgstr "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ thin pack (для ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹Ρ… ΡΠ΅Ρ‚Π΅Π²Ρ‹Ρ… ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠΉ)"
 +
 +#: lib/transport.tcl:179
 +msgid "Include tags"
 +msgstr "ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚ΡŒ ΠΌΠ΅Ρ‚ΠΊΠΈ"