Skip to content

Commit 700c83d

Browse files
committed
SYnc with 'master'
2 parents 0d14398 + 44de152 commit 700c83d

6 files changed

Lines changed: 350 additions & 233 deletions

File tree

git-gui/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ ifndef V
6969
QUIET = @
7070
QUIET_GEN = $(QUIET)echo ' ' GEN '$@' &&
7171
QUIET_INDEX = $(QUIET)echo ' ' INDEX $(dir $@) &&
72-
QUIET_MSGFMT0 = $(QUIET)printf ' MSGFMT %12s ' $@ && v=`
73-
QUIET_MSGFMT1 = 2>&1` && echo "$$v" | sed -e 's/fuzzy translations/fuzzy/' | sed -e 's/ messages*//g'
72+
QUIET_MSGFMT = $(QUIET)echo ' ' MSGFMT '$@' &&
7473

7574
INSTALL_D0 = dir=
7675
INSTALL_D1 = && echo ' ' DEST $$dir && $(INSTALL) -d -m 755 "$$dir"
@@ -155,7 +154,7 @@ $(PO_TEMPLATE): $(SCRIPT_SH) $(ALL_LIBFILES)
155154
update-po:: $(PO_TEMPLATE)
156155
$(foreach p, $(ALL_POFILES), echo Updating $p ; msgmerge -U $p $(PO_TEMPLATE) ; )
157156
$(ALL_MSGFILES): %.msg : %.po
158-
$(QUIET_MSGFMT0)$(MSGFMT) --statistics --tcl -l $(basename $(notdir $<)) -d $(dir $@) $< $(QUIET_MSGFMT1)
157+
$(QUIET_MSGFMT)$(MSGFMT) --tcl -l $(basename $(notdir $<)) -d $(dir $@) $<
159158

160159
lib/tclIndex: $(ALL_LIBFILES) generate-tclindex.sh GIT-GUI-BUILD-OPTIONS
161160
$(QUIET_INDEX)$(SHELL_PATH) generate-tclindex.sh . ./GIT-GUI-BUILD-OPTIONS $(ALL_LIBFILES)

git-gui/lib/option.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ proc do_options {} {
155155
{i-0..300 gui.blamehistoryctx {mc "Blame History Context Radius (days)"}}
156156
{i-1..99 gui.diffcontext {mc "Number of Diff Context Lines"}}
157157
{t gui.diffopts {mc "Additional Diff Parameters"}}
158-
{i-0..99 gui.commitmsgwidth {mc "Commit Message Text Width"}}
158+
{i-0..9999 gui.commitmsgwidth {mc "Commit Message Text Width"}}
159159
{t gui.newbranchtemplate {mc "New Branch Name Template"}}
160160
{c gui.encoding {mc "Default File Contents Encoding"}}
161161
{b gui.warndetachedcommit {mc "Warn before committing to a detached head"}}

git-gui/po/bg.po

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: git-gui master\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-07-22 17:37+0200\n"
12-
"PO-Revision-Date: 2026-01-19 10:12+0100\n"
11+
"POT-Creation-Date: 2026-06-02 19:13+0200\n"
12+
"PO-Revision-Date: 2026-06-14 22:57+0200\n"
1313
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
1414
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
1515
"Language: bg\n"
@@ -43,18 +43,21 @@ msgstr "Прекалено ниска версия на git, необходим
4343
msgid "git returned:"
4444
msgstr "git върна:"
4545

46+
msgid "Invalid configuration:"
47+
msgstr "Неправилна настройка:"
48+
49+
msgid "Unusable repo/worktree:"
50+
msgstr "Неизползваемо хранилище/раб. дърво:"
51+
4652
msgid "Git directory not found:"
4753
msgstr "Директорията на Git не е открита:"
4854

49-
msgid "Cannot move to top of working directory:"
50-
msgstr "Не може да се премине към родителската директория."
55+
msgid "No working directory"
56+
msgstr "Работната директория липсва"
5157

5258
msgid "Cannot use bare repository:"
5359
msgstr "Голо хранилище не може да се използва:"
5460

55-
msgid "No working directory"
56-
msgstr "Работната директория липсва"
57-
5861
msgid "Refreshing file status..."
5962
msgstr "Обновяване на състоянието на файла…"
6063

@@ -305,12 +308,21 @@ msgstr "употреба:"
305308
msgid "Usage"
306309
msgstr "Употреба"
307310

308-
msgid "Error"
309-
msgstr "Грешка"
311+
#, tcl-format
312+
msgid "fatal: no such file '%s' in worktree"
313+
msgstr "фатална грешка: в работното дърво липсва файл „%s“"
314+
315+
#, tcl-format
316+
msgid "fatal: '%s' is not a valid rev'"
317+
msgstr "фатална грешка: „%s“ не е версия"
318+
319+
#, tcl-format
320+
msgid "'%s' is not a directory in rev '%s'"
321+
msgstr "„%s“ не е директория във версия „%s“"
310322

311323
#, tcl-format
312-
msgid "fatal: cannot stat path %s: No such file or directory"
313-
msgstr "ФАТАЛНА ГРЕШКА: пътят „%s“ липсва: такъв файл или директория няма"
324+
msgid "'%s' is not a filename in rev '%s'"
325+
msgstr "„%s“ не е име на файл във версия „%s“"
314326

315327
msgid "Current Branch:"
316328
msgstr "Текущ клон:"
@@ -461,6 +473,9 @@ msgstr "Анотиране на родителското подаване"
461473
msgid "Reading %s..."
462474
msgstr "Чете се „%s“…"
463475

476+
msgid "Error"
477+
msgstr "Грешка"
478+
464479
msgid "Loading copy/move tracking annotations..."
465480
msgstr "Зареждане на анотациите за проследяване на копирането/преместването…"
466481

gitk-git/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ PO_TEMPLATE = po/gitk.pot
4343
ALL_POFILES = $(wildcard po/*.po)
4444
ALL_MSGFILES = $(subst .po,.msg,$(ALL_POFILES))
4545

46+
ifneq ($(findstring s,$(firstword -$(MAKEFLAGS))),s)
4647
ifndef V
4748
QUIET = @
4849
QUIET_GEN = $(QUIET)echo ' ' GEN $@ &&
50+
QUIET_MSGFMT = $(QUIET)echo ' ' MSGFMT $@ &&
51+
endif
4952
endif
5053

5154
all:: gitk-wish $(ALL_MSGFILES)
@@ -75,8 +78,7 @@ update-po:: $(PO_TEMPLATE)
7578
echo; \
7679
echo " git config filter.gettext-no-location.clean \"msgcat --no-location -\""
7780
$(ALL_MSGFILES): %.msg : %.po
78-
@echo Generating catalog $@
79-
$(MSGFMT) --statistics --tcl -l $(basename $(notdir $<)) -d $(dir $@) $<
81+
$(QUIET_MSGFMT)$(MSGFMT) --tcl -l $(basename $(notdir $<)) -d $(dir $@) $<
8082

8183
.PHONY: all install uninstall clean update-po
8284
.PHONY: FORCE

gitk-git/po/bg.po

Lines changed: 33 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Bulgarian translation of gitk po-file.
2-
# Copyright (C) 2014, 2015, 2019, 2020, 2024, 2025 Alexander Shopov <ash@kambanaria.org>.
2+
# Copyright (C) 2014, 2015, 2019, 2020, 2024, 2025, 2026 Alexander Shopov <ash@kambanaria.org>.
33
# This file is distributed under the same license as the git package.
4-
# Alexander Shopov <ash@kambanaria.org>, 2014, 2015, 2019, 2020, 2024, 2025.
4+
# Alexander Shopov <ash@kambanaria.org>, 2014, 2015, 2019, 2020, 2024, 2025, 2026.
55
#
66
#
77
msgid ""
88
msgstr ""
99
"Project-Id-Version: Gitk master\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-07-22 18:34+0200\n"
12-
"PO-Revision-Date: 2025-07-28 13:38+0200\n"
11+
"POT-Creation-Date: 2026-04-18 17:41+0200\n"
12+
"PO-Revision-Date: 2026-06-14 22:45+0200\n"
1313
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
1414
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
1515
"Language: bg\n"
@@ -183,10 +183,10 @@ msgid "New version"
183183
msgstr "Нова версия"
184184

185185
msgid "Lines of context"
186-
msgstr "Контекст в редове"
186+
msgstr "Редове контекст"
187187

188188
msgid "Ignore space change"
189-
msgstr "Празните знаци без значение"
189+
msgstr "Празни знаци без значение"
190190

191191
msgid "Line diff"
192192
msgstr "Поредови разлики"
@@ -954,6 +954,9 @@ msgstr "Показване на локалните промени"
954954
msgid "Hide remote refs"
955955
msgstr "Скриване на отдалечените указатели"
956956

957+
msgid "Refs to hide (space-separated globs)"
958+
msgstr "Указатели за скриване (шаблони разделени с интервал):"
959+
957960
msgid "Copy commit ID to clipboard"
958961
msgstr "Копиране на контролната сума към буфера за обмен"
959962

@@ -999,14 +1002,23 @@ msgstr "Избор…"
9991002
msgid "Web browser"
10001003
msgstr "Уеб браузър"
10011004

1002-
msgid "Colors: press to choose"
1003-
msgstr "Цветове: избира се с натискане"
1005+
msgid "Themes - change requires restart"
1006+
msgstr "Теми — за прилагане трябва да рестартирате програмата"
10041007

1005-
msgid "Interface"
1006-
msgstr "Интерфейс"
1008+
msgid "Theme to use after restart"
1009+
msgstr "Тема за прилагане след рестартиране на програмата"
10071010

1008-
msgid "interface"
1009-
msgstr "интерфейс"
1011+
msgid "Theme definition file"
1012+
msgstr "Файл с тема"
1013+
1014+
msgid "The theme definition file may affect all themes."
1015+
msgstr "Файлът с тема може да повлияе на всички теми."
1016+
1017+
msgid "Apply theme"
1018+
msgstr "Прилагане на тема"
1019+
1020+
msgid "Colors: press to choose"
1021+
msgstr "Цветове: избира се с натискане"
10101022

10111023
msgid "Background"
10121024
msgstr "Фон"
@@ -1059,6 +1071,12 @@ msgstr "фон на отбелязан ред"
10591071
msgid "Select bg"
10601072
msgstr "Избор на фон"
10611073

1074+
msgid "Link"
1075+
msgstr "Връзка"
1076+
1077+
msgid "link"
1078+
msgstr "връзка"
1079+
10621080
msgid "Fonts: press to choose"
10631081
msgstr "Шрифтове: избира се с натискане"
10641082

@@ -1083,6 +1101,9 @@ msgstr "Цветове"
10831101
msgid "Fonts"
10841102
msgstr "Шрифтове"
10851103

1104+
msgid "Gitk: select theme definition"
1105+
msgstr "Gitk: избор на тема"
1106+
10861107
#, tcl-format
10871108
msgid "Gitk: choose color for %s"
10881109
msgstr "Gitk: избор на цвят на „%s“"

0 commit comments

Comments
 (0)