Talking about documentation, translation, etc #12
Replies: 9 comments 32 replies
-
@susalulmumaO12 |
Beta Was this translation helpful? Give feedback.
-
Note: Japanese mixed with English somehow displays text in RTL paragraph configuration についてGenXPassword while is should be GenXPasswordについて, it has been confirmed to be in the right order in the translation file I have found this on topic. Does it not look the same on other machines? |
Beta Was this translation helpful? Give feedback.
-
I forgot to mention the source of some of the changes made on I read this article and this article, on "how to create a password", that way the translators familiarize themselves with the terms by seeing what the folk uses, for example: translating "special symbols" differs in dictionaries, while we can find multiple translations labeled as "computer term", choosing the friendliest one is what matters, the one used by normal people. And that about sums it up. |
Beta Was this translation helpful? Give feedback.
-
Topic: GenXPassword "leading ampersand" bugTL;DR: not solved.The bug has been bugging me so I wanted to inspect what's going on, I will list the results of my inspection below.
// passwordgenerator.cpp line 39
numericSwitch = new SwitchButton("Numeric characters", currentIndexTheme);
symbolsSwitch = new SwitchButton(QObject::tr("Symbols characters"), currentIndexTheme); Result: same as before.
I noticed that using any language based on Latin script will also have a leading Ampersand /* ja.ts line 30 */
<message>
<location filename="../src/passwordgenerator.cpp" line="39"/>
<location filename="../src/passwordgenerator.cpp" line="44"/>
<source>Numeric characters</source>
<translation>numeric</translation>
</message>
<message>
<location filename="../src/passwordgenerator.cpp" line="40"/>
<source>Symbols characters</source>
<translation>記号</translation>
</message> Yes, the affected part is only the Latin text.
// switchButton.cpp line 56
SwitchButton::SwitchButton(const QString &text, QWidget *const parent)
: SwitchButton{ parent }
{
setText("test");
} Not sure how this happened, or why, but I'm sure that I'm no exactly closer to the solution. I searched everywhere for similar problems, only thing I found is this not so similar thing, their problem was in Case is not yet closed, investigation continues.... Edit:I found this, which is much closer to our problem, and it makes total sense to why the text in the second image is the way it is, it states this:
So basically what needs to be done is to disable automatically setting shortcuts idk how, if this has already been stated by you, then I learned a thing or two through this, when I started I had 0 knowledge on qt so maybe you already knew this. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the feedback. I noticed the problem, didn't fix it right away, but had some strings to the fix, I found encountering with the leading ampersand (&) in the text of Since I fixed it eventually, but didn't try it, thanks for remembering me about this Bug. |
Beta Was this translation helpful? Give feedback.
-
Done, the project is nearly finished.
|
Beta Was this translation helpful? Give feedback.
-
No the install-scripts works like this: sudo ./install-scripts/install.sh install/uninstall then it can be a normal application in you OS, you can find it in |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I have alot of packaging I need to do, plus translation, plus configuring some stuff.
Beta Was this translation helpful? Give feedback.
All reactions