Fix untranslatable strings#2311
Conversation
|
I also noticed a multi-line output block in |
|
AM-INSTALLER does not uses translations... but no matters. |
Some blocks are a mess. When translation support was added, $ were added wherever was available a message, or a Actually AM has hundreds of lines, containing ASCII characters and symbols. I would made them easier to translate... but I don't want to overwrite already existing translations of other users. |
|
Man, you did an amazing job. Congratulations! |
|
Haha, thanks! |
|
@cheack I don't know what's happened but I had to fix some lines containing quotes that were marked as invalid due to mismatches between original and translations For example, if the original had ", the translation had not " escaped. Maybe because they were in single quote before, and you fixed the original, and not thee translation. |
While working on the Russian translation, I noticed that some strings never appeared translated.
In a previous discussion, one of these strings (
No apps to update here!) was pointed out as already translatable - but it was actually using$'...', so it was never being translated.This PR replaces
$'...'with$"..."for all strings that are intended to be localized, and adds the corresponding translation entries for all supported languages.