summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-04-13 14:39:46 +1000
committerJesse Duffield <jessedduffield@gmail.com>2019-04-13 14:39:46 +1000
commit471733fe03f7f49734a50f31affcbec0a780164c (patch)
tree2135b8ca7e11e9e599d4576e4cc90990dc92007c /pkg/i18n
parent0d3a193ab5ed54f411b217ea26ba53d6bcd6fc57 (diff)
add english translations to dutch/polish i18n files for translation later
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/dutch.go6
-rw-r--r--pkg/i18n/polish.go6
2 files changed, 12 insertions, 0 deletions
diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go
index 3da767bf3..f55100cc8 100644
--- a/pkg/i18n/dutch.go
+++ b/pkg/i18n/dutch.go
@@ -727,6 +727,12 @@ func addDutch(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "CustomCommand",
Other: "Custom Command:",
+ }, &i18n.Message{
+ ID: "commitChangesWithoutHook",
+ Other: "commit changes without pre-commit hook",
+ }, &i18n.Message{
+ ID: "SkipHookPrefixNotConfigured",
+ Other: "You have not configured a commit message prefix for skipping hooks. Set `git.skipHookPrefix = 'WIP'` in your config",
},
)
}
diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go
index 372f4c090..60f36e35d 100644
--- a/pkg/i18n/polish.go
+++ b/pkg/i18n/polish.go
@@ -710,6 +710,12 @@ func addPolish(i18nObject *i18n.Bundle) error {
}, &i18n.Message{
ID: "CustomCommand",
Other: "Custom Command:",
+ }, &i18n.Message{
+ ID: "commitChangesWithoutHook",
+ Other: "commit changes without pre-commit hook",
+ }, &i18n.Message{
+ ID: "SkipHookPrefixNotConfigured",
+ Other: "You have not configured a commit message prefix for skipping hooks. Set `git.skipHookPrefix = 'WIP'` in your config",
},
)
}