mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-19 21:28:28 +02:00
Move field names to translation
This commit is contained in:
parent
2dc6f5f079
commit
89ee0a1dee
@ -477,21 +477,21 @@ func (gui *Gui) handleStatusFilterPressed() error {
|
||||
menuItems := []*menuItem{}
|
||||
|
||||
menuItems = append(menuItems, &menuItem{
|
||||
displayString: "Show only staged files",
|
||||
displayString: gui.Tr.FilterStagedFiles,
|
||||
onPress: func() error {
|
||||
return gui.setStatusFiltering(filetree.DisplayStaged)
|
||||
},
|
||||
})
|
||||
|
||||
menuItems = append(menuItems, &menuItem{
|
||||
displayString: "Show only unstaged files",
|
||||
displayString: gui.Tr.FilterUnstagedFiles,
|
||||
onPress: func() error {
|
||||
return gui.setStatusFiltering(filetree.DisplayUnstaged)
|
||||
},
|
||||
})
|
||||
|
||||
menuItems = append(menuItems, &menuItem{
|
||||
displayString: "Reset Filter",
|
||||
displayString: gui.Tr.ResetCommitFilterState,
|
||||
onPress: func() error {
|
||||
return gui.setStatusFiltering(filetree.DisplayAll)
|
||||
},
|
||||
|
@ -43,6 +43,9 @@ func dutchTranslationSet() TranslationSet {
|
||||
LcAbortMerge: "samenvoegen afbreken",
|
||||
LcResolveMergeConflicts: "los merge conflicten op",
|
||||
LcCommitFileFilter: "Commit dossiers filteren",
|
||||
FilterStagedFiles: "Show only staged files",
|
||||
FilterUnstagedFiles: "Show only unstaged files",
|
||||
ResetCommitFilterState: "Reset commit file state filter",
|
||||
MergeConflictsTitle: "Merge Conflicten",
|
||||
LcCheckout: "uitchecken",
|
||||
FileHasNoUnstagedChanges: "Het bestand heeft geen unstaged veranderingen om toe te voegen",
|
||||
|
@ -56,6 +56,9 @@ type TranslationSet struct {
|
||||
LcAbortMerge string
|
||||
LcResolveMergeConflicts string
|
||||
LcCommitFileFilter string
|
||||
FilterStagedFiles string
|
||||
FilterUnstagedFiles string
|
||||
ResetCommitFilterState string
|
||||
MergeConflictsTitle string
|
||||
LcCheckout string
|
||||
NoChangedFiles string
|
||||
@ -610,6 +613,9 @@ func englishTranslationSet() TranslationSet {
|
||||
MergeConflictsTitle: "Merge Conflicts",
|
||||
LcCheckout: "checkout",
|
||||
LcCommitFileFilter: "Filter commit files",
|
||||
FilterStagedFiles: "Show only staged files",
|
||||
FilterUnstagedFiles: "Show only unstaged files",
|
||||
ResetCommitFilterState: "Reset filter",
|
||||
NoChangedFiles: "No changed files",
|
||||
FileHasNoUnstagedChanges: "File has no unstaged changes to add",
|
||||
CannotGitAdd: "Cannot git add --patch untracked files",
|
||||
|
@ -38,6 +38,9 @@ func polishTranslationSet() TranslationSet {
|
||||
LcAbortMerge: "o scalaniu",
|
||||
LcResolveMergeConflicts: "rozwiąż konflikty scalania",
|
||||
LcCommitFileFilter: "Filtrowanie plików commitować",
|
||||
FilterStagedFiles: "Show only staged files",
|
||||
FilterUnstagedFiles: "Show only unstaged files",
|
||||
ResetCommitFilterState: "Reset commit file state filter",
|
||||
LcCheckout: "przełącz",
|
||||
NoChangedFiles: "Brak zmienionych plików",
|
||||
FileHasNoUnstagedChanges: "Plik nie zawiera żadnych nieopublikowanych zmian do dodania",
|
||||
|
Loading…
x
Reference in New Issue
Block a user