diff options
author | Fabian Henneke <fabian@henneke.me> | 2020-05-14 11:07:01 +0200 |
---|---|---|
committer | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-05-14 12:00:30 +0200 |
commit | de4ce4453129d3bcf563c5cb6cd1957c9bccb0d4 (patch) | |
tree | 80d11dde7c8859984589395e81aa6f91d761810d /app/src/main/res | |
parent | f806438f2c822fcf248e431d794aa1d1b65df3fa (diff) |
Add specific error messages to GitServerConfigActivity
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/strings.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 2c2d4d55..1b2f9c52 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -363,7 +363,11 @@ <string name="connection_mode_openkeychain" translatable="false">OpenKeychain</string> <string name="connection_mode_none">None</string> <string name="git_server_config_save_success">Successfully saved configuration</string> - <string name="git_server_config_save_failure">Configuration error: please verify your settings and try again</string> + <string name="git_server_config_save_error_prefix">Configuration error: %s</string> + <string name="git_config_error_hostname_empty">empty hostname</string> + <string name="git_config_error_generic">please verify your settings and try again</string> + <string name="git_config_error_nonnumeric_port">port must be numeric</string> + <string name="git_config_error_custom_port_absolute">path must be absolute (start with \'/\') when using a custom port</string> <string name="git_operation_unable_to_open_ssh_key_title">Unable to open the ssh-key</string> <string name="git_operation_unable_to_open_ssh_key_message">Please check that it was imported.</string> <string name="git_operation_wrong_passphrase">Wrong passphrase</string> |