View Issue Details

IDProjectCategoryView StatusLast Update
0007254GNUnetconversation servicepublic2022-06-06 21:06
ReporterAmeliaThe1st Assigned To 
PrioritylowSeveritytextReproducibilityalways
Status newResolutionopen 
OSGNU/Linux 
Product VersionGit master 
Summary0007254: Typo in `gnunet-conversation-test`.
DescriptionThere 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 ReproduceRun `gnunet-conversation-test`.
Additional InformationOutput 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,
```
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2022-06-06 21:06 AmeliaThe1st New Issue