diff --git a/docs/keybindings/Keybindings_nl.md b/docs/keybindings/Keybindings_nl.md index a334f7763..1b739ee35 100644 --- a/docs/keybindings/Keybindings_nl.md +++ b/docs/keybindings/Keybindings_nl.md @@ -40,7 +40,7 @@
   space: uitchecken
   o: maak een pull-aanvraag
-  O: Creëer pull request opties
+  O: bekijk opties voor pull-aanvraag
   ctrl+y: kopieer de URL van het pull-verzoek naar het klembord
   c: uitchecken bij naam
   F: forceer checkout
diff --git a/pkg/commands/pull_request.go b/pkg/commands/pull_request.go
index 72eec9ff4..c06a27e2e 100644
--- a/pkg/commands/pull_request.go
+++ b/pkg/commands/pull_request.go
@@ -38,7 +38,7 @@ func NewService(typeName string, repositoryDomain string, siteDomain string) *Se
 			Name: repositoryDomain,
 			PullRequestURL: func(owner string, repository string, from string, to string) string {
 				if to == "" {
-					return fmt.Sprintf("https://%s/%s/%s/compare/%s?expand=1",siteDomain, owner, repository, from)
+					return fmt.Sprintf("https://%s/%s/%s/compare/%s?expand=1", siteDomain, owner, repository, from)
 				} else {
 					return fmt.Sprintf("https://%s/%s/%s/compare/%s...%s?expand=1", siteDomain, owner, repository, to, from)
 				}
@@ -151,7 +151,7 @@ func (pr *PullRequest) getPullRequestURL(from *models.Branch, to *models.Branch)
 	repoInfo := getRepoInfoFromURL(repoURL)
 	toBranchName := ""
 	if to != nil {
-	        toBranchName = to.Name
+		toBranchName = to.Name
 	}
 	pullRequestURL := gitService.PullRequestURL(repoInfo.Owner, repoInfo.Repository, from.Name, toBranchName)
 
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index fca78466e..cd8e2160c 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -396,7 +396,7 @@ func dutchTranslationSet() TranslationSet {
 		LcInitSubmodule:                     "initialiseer submodule",
 		LcViewBulkSubmoduleOptions:          "bekijk bulk submodule opties",
 		LcViewStashFiles:                    "bekijk bestanden van stash entry",
-		CreatePullRequestOptions:            "Creëer pull request opties",
-		LcCreatePullRequestOptions:          "creëer pull request opties",
+		CreatePullRequestOptions:            "Bekijk opties voor pull-aanvraag",
+		LcCreatePullRequestOptions:          "bekijk opties voor pull-aanvraag",
 	}
 }