A few tweaks to translatable strings#596
Conversation
Replaced small Latin D (U+0064) with small Komi De (U+0501)
Replaced small Latin D (U+0064) with small Komi De (U+0501)
The word "new" can have multiple meanings, especially in the context of the "&New" buttons (to make, to create, etc...) Added additional context for the "&Edit" buttons to distinguish them from the "main/edit" name (in default_menu.json) Replaced the ampersand in the string "Copy to ¤t script ->" to "Copy &to current script ->" to prevent overlapping with the "&Copy" button
Removed the extra line break in the make_pot.sh script
|
Replacing letters in strings with Unicode lookalikes just to avoid collisions is not a good idea; this creates problems with accessibility, for example. What is the exact issue you were trying to solve with this? Which occurrences of |
|
It was way too long ago, so I've actually changed my mind about this PR
Well, my core problem is rather simple - there are multiple "&Edit"
I don't really know whether there's the same problem in other languages, but in my language menu tabs (
I actually thought about it. Almost the next day I came up with an ugly hack - just change "&Edit" located in two buttons in files I've spent countless hours to solve this issue, but in the end I don't think there's any other quickest and easiest solution |
In which instances does Edit need to be used in the "to edit" sense in your language? |
|
So you'd like the In that case, the best solution is to make |
|
Uh, I don't think that is feasible. I tried adding |

Turns out the
&Edittext in the default_menu_platform.json file was being caught by theif ! grep -Fq "msgid $msgid" aegisub.pot;check in the make_pot.sh, which is why I was having a verb in the noun-only tab menu. For that reason I replaced the Latindletter (U+0064) with visually similar Komiԁ(U+0501; there also is a small Roman numeral 500ⅾ(U+217E) in case something happens with the Komi De)Additionally, I added a few contexts for buttons I was having some troubles with and moved the ampersand in the string
Copy &to current script ->(it wasCopy to ¤t script ->and was conflicting with the&Copy)Originally, I tried making the DRAG_BIG_SQUAREs drawn in the visual_tool.cpp stop being visible all the time, but it became too much - I just wanna have a feature where only the selected lines in the subtitle grid will have their squares displayed. No luck with #379 too (I have to imagine someone else will be able to figure out both of these things in less than three seconds)