Tool Translator++ 4.9.28 Standard Version / Developer Version

5.00 star(s) 2 Votes

donor

Newbie
Jun 16, 2019
73
90

taglag

Well-Known Member
Aug 6, 2019
1,396
1,177
Set the target column as different, ok?

Why don't you check the game first after applying above then tell
Thing is I an trying to fix the over lap of the text box in a game that has pretty much already been translated.

and enormous part of the translated text is over lapping the in game text box.

I fully understand what you are saying in and initial translation this would be very helpful.

But I do not think it will help in this case (Not that I will not try it, okay!)

I do know there was a script that could be used with rpgm program that will keep the text proper in the text box.

But am unsure how to use it without RPGM.

I really thank you for staying with me on this, and I will check out what you said. Thank you.

By the way my column's are already set to 42, which should be even lower than your 62.
 

donor

Newbie
Jun 16, 2019
73
90
Alright if that is not working then I have no idea what your problem was so well keep looking and trying maybe

PS: Would be better if share the screenshot too next time it demonstrate the problem clearly.
 
  • Like
Reactions: taglag

ripno

Newbie
Jan 27, 2023
84
188
Is there anyone among you willing to share Translator++ v7.5.28 with all updated add-ons?

 
Last edited:
  • Like
Reactions: TheExorcist-

TheExorcist-

Member
Dec 8, 2019
178
185
I currently use GOOLE_PAGE
I have the same issue, unfortunately I have to fix it manually. Sometimes Google_page doesn't respond to single-line translations, so I have to use "Google Translate Webscrap" instead.
Note: Make sure your settings are the same as shown in the image.
 

YU_XIAN

Active Member
Mar 13, 2018
561
83
I have the same issue, unfortunately I have to fix it manually. Sometimes Google_page doesn't respond to single-line translations, so I have to use "Google Translate Webscrap" instead.
Note: Make sure your settings are the same as shown in the image.
I want to change the original text (left) to this (right)
1750284335747.png
 

Dark Pixel

Member
Nov 28, 2022
145
430
Select the desired file.
And enter the commands one by one
1.
Enter
2.
Enter

2025-06-19_01-34-53.png Снимок экрана 2025-06-19 013603.png

Command 1:

this.cells[1] = this.cells[0];

Transfers the text from the original to the initial
-----------------------------------------------------
Command 2:

const targetCellIndex = 1;
if (this.cells && this.cells.length > targetCellIndex && typeof this.cells[targetCellIndex] === 'string') {
let textToProcess = this.cells[targetCellIndex];
if (!textToProcess || textToProcess.trim() === "") {
return;
}
let processedText = textToProcess.split(/\s+/).join(' ').trim();
this.cells[targetCellIndex] = processedText;
} else {
}


Makes all lines in the column initial mono lines

---------------------------------------------------

Result:

Снимок экрана 2025-06-19 014858.png

Information provided by: Alex(GOD)
 
  • Like
Reactions: YU_XIAN and AVM666

YU_XIAN

Active Member
Mar 13, 2018
561
83
Select the desired file.
And enter the commands one by one
1.
Enter
2.
Enter

View attachment 4956610 View attachment 4956611

Command 1:

this.cells[1] = this.cells[0];

Transfers the text from the original to the initial
-----------------------------------------------------
Command 2:

const targetCellIndex = 1;
if (this.cells && this.cells.length > targetCellIndex && typeof this.cells[targetCellIndex] === 'string') {
let textToProcess = this.cells[targetCellIndex];
if (!textToProcess || textToProcess.trim() === "") {
return;
}
let processedText = textToProcess.split(/\s+/).join(' ').trim();
this.cells[targetCellIndex] = processedText;
} else {
}


Makes all lines in the column initial mono lines

---------------------------------------------------

Result:

View attachment 4956621

Information provided by: Alex(GOD)
Thanks
 

ripno

Newbie
Jan 27, 2023
84
188
Hi everyone!
Thanks a lot for all the shared updates and tools!
Does anyone have the latest version of Translator++?
The developers have released some new plugins for Translator++ : JSON Parser v0.5, Custom Parser v0.14, LiteLLM v0.18, and TransChatGPT v0.32. These plugins seem to be made for Translator++ version 7.6.25.

If you're able to share the latest version with the newest plugins, I'd really appreciate it!
Thanks in advance.
 
Last edited:
5.00 star(s) 2 Votes