View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0007254 | GNUnet | conversation service | public | 2022-06-06 21:06 | 2022-06-06 21:06 |
Reporter | AmeliaThe1st | Assigned To | |||
Priority | low | Severity | text | Reproducibility | always |
Status | new | Resolution | open | ||
OS | GNU/Linux | ||||
Product Version | Git master | ||||
Summary | 0007254: Typo in `gnunet-conversation-test`. | ||||
Description | There is an inversion of two letters ('ew' should be 'We') in the text shown to the user of the program. There is also an inconsistency in the number of spaces after the end of each sentence. | ||||
Steps To Reproduce | Run `gnunet-conversation-test`. | ||||
Additional Information | Output of `git diff` after fixing both issues: ``` diff --git a/src/conversation/gnunet-conversation-test.c b/src/conversation/gnunet-conversation-test.c index 5e6bc805f..461ae4897 100644 --- a/src/conversation/gnunet-conversation-test.c +++ b/src/conversation/gnunet-conversation-test.c @@ -143,7 +143,7 @@ switch_to_speaker (void *cls) } fprintf (stderr, _ ( - "\new are now playing your recording back. If you can hear it, your audio settings are working...")); + "\nWe are now playing your recording back. If you can hear it, your audio settings are working...")); for (struct Recording *rec = rec_head; NULL != rec; rec = rec->next) { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, @@ -215,7 +215,7 @@ run (void *cls, NULL); fprintf (stderr, _ ( - "We will now be recording you for %s. After that time, the recording will be played back to you..."), + "We will now be recording you for %s. After that time, the recording will be played back to you..."), GNUNET_STRINGS_relative_time_to_string (TIMEOUT, GNUNET_YES)); if (GNUNET_OK != microphone->enable_microphone (microphone->cls, ``` | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2022-06-06 21:06 | AmeliaThe1st | New Issue |