aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChun Kuan Lee <[email protected]>2018-07-04 09:18:29 +0800
committerGitHub <[email protected]>2018-07-04 09:18:29 +0800
commit747ee89b4cabfe91e0cbcd6ba51a46ed3e29f0e6 (patch)
treef7ae0686e893f9a99bd4b79a07d0b5f70e3c9ff3 /doc
parentMerge #13522: [tests] Fix p2p_sendheaders race (diff)
downloaddiscoin-747ee89b4cabfe91e0cbcd6ba51a46ed3e29f0e6.tar.xz
discoin-747ee89b4cabfe91e0cbcd6ba51a46ed3e29f0e6.zip
Docs: Modify policy to not translate command-line help
Diffstat (limited to 'doc')
-rw-r--r--doc/translation_strings_policy.md10
1 files changed, 0 insertions, 10 deletions
diff --git a/doc/translation_strings_policy.md b/doc/translation_strings_policy.md
index b95259cdc..737d11f04 100644
--- a/doc/translation_strings_policy.md
+++ b/doc/translation_strings_policy.md
@@ -21,21 +21,11 @@ On a high level, these strings are to be translated:
- GUI strings, anything that appears in a dialog or window
-- Command-line option documentation
-
### GUI strings
Anything that appears to the user in the GUI is to be translated. This includes labels, menu items, button texts, tooltips and window titles.
This includes messages passed to the GUI through the UI interface through `InitMessage`, `ThreadSafeMessageBox` or `ShowProgress`.
-### Command-line options
-
-Documentation for the command line options in the output of `--help` should be translated as well.
-
-Make sure that default values do not end up in the string, but use string formatting like `strprintf(_("Threshold for disconnecting misbehaving peers (default: %u)"), 100)`. Putting default values in strings has led to accidental translations in the past, and forces the string to be retranslated every time the value changes.
-
-Do not translate messages that are only shown to developers, such as those that only appear when `--help-debug` is used.
-
General recommendations
------------------------