summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-01-26 13:46:01 +1100
committerGitHub <noreply@github.com>2023-01-26 13:46:01 +1100
commit679b0456f3db7c505b398def84e7d023e5b55a8d (patch)
tree413196fe4adb8353c8142df78f62538243ee0078
parentb942df02a18bd0e9c1bebb7a2587014a8729cf11 (diff)
parent069af50f50b1791f717c3764f2ad5963657d1479 (diff)
Merge pull request #2388 from Ryooooooga/remove-unused-texts
-rw-r--r--pkg/i18n/chinese.go3
-rw-r--r--pkg/i18n/dutch.go3
-rw-r--r--pkg/i18n/english.go6
-rw-r--r--pkg/i18n/japanese.go3
-rw-r--r--pkg/i18n/korean.go3
-rw-r--r--pkg/i18n/polish.go2
6 files changed, 0 insertions, 20 deletions
diff --git a/pkg/i18n/chinese.go b/pkg/i18n/chinese.go
index 67cf264ce..e9d1ee475 100644
--- a/pkg/i18n/chinese.go
+++ b/pkg/i18n/chinese.go
@@ -73,8 +73,6 @@ func chineseTranslationSet() TranslationSet {
MergeConflictsTitle: "合并冲突",
LcCheckout: "检出",
NoChangedFiles: "没有更改过文件",
- NoFilesDisplay: "没有文件可显示",
- NotAFile: "不是文件",
PullWait: "正在拉取…",
PushWait: "正在推送…",
FetchWait: "正在抓取…",
@@ -104,7 +102,6 @@ func chineseTranslationSet() TranslationSet {
LcSquashDown: "向下压缩",
LcFixupCommit: "修正提交(fixup)",
NoCommitsThisBranch: "该分支没有提交",
- OnlySquashTopmostCommit: "只能压缩最顶层的提交",
YouNoCommitsToSquash: "您没有提交可以压缩",
Fixup: "修正(fixup)",
SureFixupThisCommit: "您确定要“修正”此提交吗?它将合并到下面的提交中",
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 4436d653c..0127c07ad 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -39,8 +39,6 @@ func dutchTranslationSet() TranslationSet {
ResetCommitFilterState: "Reset commit file state filter",
MergeConflictsTitle: "Merge Conflicten",
LcCheckout: "uitchecken",
- NoFilesDisplay: "Geen bestanden om te laten zien",
- NotAFile: "Dit is geen bestand",
PullWait: "Pullen...",
PushWait: "Pushen...",
FetchWait: "Fetchen...",
@@ -69,7 +67,6 @@ func dutchTranslationSet() TranslationSet {
LcQuit: "quit",
LcSquashDown: "squash beneden",
LcFixupCommit: "Fixup commit",
- OnlySquashTopmostCommit: "Kan alleen bovenste commit squashen",
YouNoCommitsToSquash: "Je hebt geen commits om mee te squashen",
Fixup: "Fixup",
SureFixupThisCommit: "Weet je zeker dat je fixup wil uitvoeren op deze commit? De commit hieronder zol worden squashed in deze",
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index f1c081018..c3a391795 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -59,8 +59,6 @@ type TranslationSet struct {
MergeConflictsTitle string
LcCheckout string
NoChangedFiles string
- NoFilesDisplay string
- NotAFile string
PullWait string
PushWait string
FetchWait string
@@ -89,7 +87,6 @@ type TranslationSet struct {
LcQuit string
LcSquashDown string
LcFixupCommit string
- OnlySquashTopmostCommit string
YouNoCommitsToSquash string
Fixup string
SureFixupThisCommit string
@@ -709,8 +706,6 @@ func EnglishTranslationSet() TranslationSet {
FilterUnstagedFiles: "Show only unstaged files",
ResetCommitFilterState: "Reset filter",
NoChangedFiles: "No changed files",
- NoFilesDisplay: "No file to display",
- NotAFile: "Not a file",
PullWait: "Pulling...",
PushWait: "Pushing...",
FetchWait: "Fetching...",
@@ -740,7 +735,6 @@ func EnglishTranslationSet() TranslationSet {
LcSquashDown: "squash down",
LcFixupCommit: "fixup commit",
NoCommitsThisBranch: "No commits for this branch",
- OnlySquashTopmostCommit: "Can only squash topmost commit",
YouNoCommitsToSquash: "You have no commits to squash with",
Fixup: "Fixup",
SureFixupThisCommit: "Are you sure you want to 'fixup' this commit? It will be merged into the commit below",
diff --git a/pkg/i18n/japanese.go b/pkg/i18n/japanese.go
index bfdf492f8..b119b0a63 100644
--- a/pkg/i18n/japanese.go
+++ b/pkg/i18n/japanese.go
@@ -64,8 +64,6 @@ func japaneseTranslationSet() TranslationSet {
FilterUnstagedFiles: "ステージされていないファイルのみを表示",
ResetCommitFilterState: "フィルタをリセット",
// NoChangedFiles: "No changed files",
- // NoFilesDisplay: "No file to display",
- // NotAFile: "Not a file",
PullWait: "Pull中...",
PushWait: "Push中...",
FetchWait: "Fetch中...",
@@ -95,7 +93,6 @@ func japaneseTranslationSet() TranslationSet {
// LcSquashDown: "squash down",
// LcFixupCommit: "fixup commit",
// NoCommitsThisBranch: "No commits for this branch",
- // OnlySquashTopmostCommit: "Can only squash topmost commit",
// YouNoCommitsToSquash: "You have no commits to squash with",
// Fixup: "Fixup",
// SureFixupThisCommit: "Are you sure you want to 'fixup' this commit? It will be merged into the commit below",
diff --git a/pkg/i18n/korean.go b/pkg/i18n/korean.go
index 573f22bdc..b891d83c3 100644
--- a/pkg/i18n/korean.go
+++ b/pkg/i18n/korean.go
@@ -63,8 +63,6 @@ func koreanTranslationSet() TranslationSet {
FilterUnstagedFiles: "Stage되지 않은 파일만 표시",
ResetCommitFilterState: "필터 리셋",
NoChangedFiles: "변경된 파일이 없습니다.",
- NoFilesDisplay: "표시할 파일이 없습니다",
- NotAFile: "파일이 아닙니다.",
PullWait: "업데이트 중...",
PushWait: "푸시 중...",
FetchWait: "패치 중...",
@@ -94,7 +92,6 @@ func koreanTranslationSet() TranslationSet {
LcSquashDown: "squash down",
LcFixupCommit: "fixup commit",
NoCommitsThisBranch: "이 브랜치에 커밋이 없습니다.",
- OnlySquashTopmostCommit: "Can only squash topmost commit",
YouNoCommitsToSquash: "You have no commits to squash with",
Fixup: "Fixup",
SureFixupThisCommit: "Are you sure you want to 'fixup' this commit? It will be merged into the commit below",
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 8bcc460e1..05534c365 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -35,7 +35,6 @@ func polishTranslationSet() TranslationSet {
ResetCommitFilterState: "Resetuj filtr commitów",
LcCheckout: "przełącz",
NoChangedFiles: "Brak zmienionych plików",
- NoFilesDisplay: "Brak plików do wyświetlenia",
PullWait: "Pobieranie zmian...",
PushWait: "Wysyłanie zmian...",
FetchWait: "Pobieram...",
@@ -63,7 +62,6 @@ func polishTranslationSet() TranslationSet {
LcSquashDown: "ściśnij",
LcFixupCommit: "napraw commit",
NoCommitsThisBranch: "Brak commitów dla tej gałęzi",
- OnlySquashTopmostCommit: "Można tylko spłaszczyć najwyższy commit",
YouNoCommitsToSquash: "Nie masz commitów do spłaszczenia",
Fixup: "Napraw",
SureFixupThisCommit: "Jesteś pewny, ze chcesz naprawić ten commit? Commit poniżej zostanie spłaszczony w górę wraz z tym",