summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/dutch.go
diff options
context:
space:
mode:
authorDawid Dziurla <dawidd0811@gmail.com>2018-09-01 16:57:41 +0200
committerDawid Dziurla <dawidd0811@gmail.com>2018-09-03 17:54:06 +0200
commit83b7c60246e96799b840700da2e9dcacf2067c4c (patch)
tree477802906ed5988e4a5c3d3e44bdd1e6f38d526f /pkg/i18n/dutch.go
parent323016aa012309f4b9d87ed2b39be26fda224070 (diff)
add untranslated dutch strings
@mjarkk
Diffstat (limited to 'pkg/i18n/dutch.go')
-rw-r--r--pkg/i18n/dutch.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index ff588b264..0abb41771 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -35,12 +35,21 @@ func addDutch(i18nObject *i18n.Bundle) error {
ID: "CommitChanges",
Other: "Commit Veranderingen",
}, &i18n.Message{
+ ID: "CommitChangesWithEditor",
+ Other: "commit changes using git editor",
+ }, &i18n.Message{
ID: "StatusTitle",
Other: "Status",
}, &i18n.Message{
ID: "navigate",
Other: "navigeer",
}, &i18n.Message{
+ ID: "help",
+ Other: "help",
+ }, &i18n.Message{
+ ID: "execute",
+ Other: "execute",
+ }, &i18n.Message{
ID: "stashFiles",
Other: "stash-bestanden",
}, &i18n.Message{
@@ -173,6 +182,9 @@ func addDutch(i18nObject *i18n.Bundle) error {
ID: "CloseConfirm",
Other: "{{.keyBindClose}}: Sluiten, {{.keyBindConfirm}}: Bevestigen",
}, &i18n.Message{
+ ID: "close",
+ Other: "close",
+ }, &i18n.Message{
ID: "SureResetThisCommit",
Other: "Weet je het zeker dat je wil resetten naar deze commit?",
}, &i18n.Message{
@@ -295,6 +307,27 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "MergeAborted",
Other: "Merge afgebroken",
+ }, &i18n.Message{
+ ID: "removeFile",
+ Other: `delete if untracked / checkout if tracked (aka go away)`,
+ }, &i18n.Message{
+ ID: "editFile",
+ Other: `edit file`,
+ }, &i18n.Message{
+ ID: "openFile",
+ Other: `open file`,
+ }, &i18n.Message{
+ ID: "ignoreFile",
+ Other: `add to .gitignore`,
+ }, &i18n.Message{
+ ID: "refreshFiles",
+ Other: `refresh files`,
+ }, &i18n.Message{
+ ID: "resetHard",
+ Other: `reset hard`,
+ }, &i18n.Message{
+ ID: "mergeIntoCurrentBranch",
+ Other: `merge into currently checked out branch`,
},
)
}