On Wed Jul 16 15:40:27 2025 +0000, Elizabeth Figura wrote:
> It doesn't break anything, but it's not necessary. Trace messages aren't
> localized in the first place, and if we try to standardize them to some
> dialect, we'll be here forever.
This was the only one that showed up. If we're standardising all strings we may as well standardise the traces as well. They're easier to update than other strings because they're not translated. It's no different to correcting a typo.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8570#note_110098
Fix tab completion for commands like:
```
cd "[2025] Tax Documents"
```
while still allowing tab completion for commands like:
```
copy file1+file2 file3
```
to work.
Without this change, tab completion for cd "[2025] Tax Documents" yields cd "[2025][2025] Tax Documents". Completed text is inserted into the incorrect location due to the closing ']' which was erroneously interpreted as a delimiter before this change.
--
v5: cmd: tab completion: Treat most delimiters as literals if user specified quotes.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8573