summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/polish.go
AgeCommit message (Collapse)Author
2022-05-06Merge pull request #1870 from mark2185/feature/stash-unstagedJesse Duffield
2022-05-05feat(i18n): japanese translationRyooooooga
2022-04-10Add option to stash only unstaged filesLuka Markušić
2022-03-26update cheatsheetJesse Duffield
2022-03-17include stash in commitish controllerJesse Duffield
2022-03-17fix some thingsJesse Duffield
2022-01-26ISSUE 1706: Ask confirmation before reverting a commitglendsoza
2022-01-15avoid deadlock in merge panelJesse Duffield
2022-01-09allow rewording old commitsJesse Duffield
2022-01-09start breaking up git structJesse Duffield
2021-12-25wrap branch names in quotesChris Burgin
2021-10-16Update polish.goAdam Łyskawa
Previous translation was completely unacceptable. As a native Polish speaker I consulted various Polish documentation files and translated almost all content. My translation may contain minor errors due to the possible lack of context for some text.
2021-09-19Remove unused stringsblack_desk
2021-08-25Fix translationsRyooooooga
2021-08-25Update as per review and add testsLiberatys
2021-08-25Move field names to translationLiberatys
2021-08-25Implement state filtering for commit filesLiberatys
2021-07-27Update docsDenis Palashevskii
2021-04-12better squash descriptionJesse Duffield
2021-04-12add random tip to command logJesse Duffield
2021-03-30update wordingJesse Duffield
2020-11-28Add lc prefixYuki Osaki
2020-11-28Visualize the commits for all branchesYuki Osaki
2020-11-21notify user upon copying something to clipboardJesse Duffield
2020-11-19Add mapping to copy a pull request URL to the clipboardFarzad Majidfayyaz
2020-10-10Add SSH key passphrase prompt to pull/push from/to remote git repoband-a-prend
This commit resolves issue with absence of ssh key prompting to pull from or push to remote git repository. I checked lazygit with this patch for successfully pull from and push to https://gitweb.gentoo.org/repo/proj/guru.git repository. While for lazygit-0.23.1 I'm not able to do that. The check for Passphrase follows the Password because of more long time before SSH key is prompt in terminal. Otherwise after timeout "Password" prompt is appears. Excuse me for google translated i18n dutch lines. Bug: https://github.com/jesseduffield/lazygit/issues/534 Signed-off-by: band-a-prend <torokhov-s-a@yandex.ru>
2020-10-10type i18nJesse Duffield
2020-09-26add in-built logging support for a better dev experienceJesse Duffield
2020-08-31implement config option for disabling force pushingFrancisco Miamoto
2020-08-23WIPJesse Duffield
2020-07-26Add tab keybinding in commit messageAxel Navarro
2020-07-17prompt to create new branch if branch not foundJesse Duffield
2020-07-17prompt to commit all files if committing with no staged filesJesse Duffield
2020-04-20Handle regex compilation errors and show them to the user.Kristijan Husak
2020-02-06Added feature to ignore tracked filesGlenn Vriesman
Signed-off-by: Glenn Vriesman <glenn.vriesman@gmail.com>
2019-11-21refactor confirmation prompt codeJesse Duffield
2019-11-21support viewing a remote branchJesse Duffield
2019-11-11specify upstream when pushing a branch for the first timev0.10.4Jesse Duffield
2019-11-10add mouse supportJesse Duffield
2019-11-10remove old add patch keybindingJesse Duffield
2019-11-05support line by line additions in staging and patch building contextsJesse Duffield
2019-10-27#480 Allow cycling side panels with number keysGiorgio Previtera
2019-07-14472 - Update error messageGiorgio Previtera
2019-07-14472 - Don't panic if not in a repositoryGiorgio Previtera
Display a friendly message and exit with an error if not in a Git repository. Using the same approach used in this PR: https://github.com/jesseduffield/lazydocker/pull/14/files
2019-06-06allow stashing staged changesJesse Duffield
reinstate old stash functionality with the 's' keybinding
2019-05-26request explicit return from subprocessJesse Duffield
Previously we were recording output from subprocesses using a multiwriter and hooking that up to the cmd's stdout to write to both os.Stdout and a buffer. We would then display the output after the program finished. This worked well for commands like 'ls' but not for commands like 'vi' which expect you to be in a tty, and when you've got the cmd's stdout pointing at a multiwriter, the subprogram thinks we're not in a tty and then things like terminal corruption can happen. This was the case with neovim, and even in vim a warning was given with a pause before starting the program. Now we're chucking out the multiwriter and instead making it that you need to press enter after the program has finished to return to lazygit. This allows you to view the output of the program (e.g. if it's ls) and then decide that you want to return. It's one level of unnecessary redirection for editors like vim, but even they could potentially have output to stderr/stdout that you want to look at before returning. Please enter the commit message for your changes. Lines starting
2019-05-06support resetting to a commit in either soft, hard, or mixed modeJesse Duffield
2019-04-26Translated missing sentencesmjarkk
2019-04-13add english translations to dutch/polish i18n files for translation laterJesse Duffield
2019-04-10Always include atleast 2 commits when doing squash and fixupPeter Lundberg