Çözüldü Locale String problem

Bu konu çözüme ulaştırılmıştır. Çözüm için konuya yazılan tüm yorumları okumayı unutmayın. Eğer konudaki yorumlar sorununuzu çözmediyse yeni bir konu açabilirsiniz.
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.

maradona150

Üye
Üye
Mesaj
91
Çözümler
1
Beğeni
42
Puan
339
Ticaret Puanı
0
I have a problem when I change words in local String
It appears in the source only and not in the local

For Example:

Locale_string:

"CARD_ TO DOWNLOAD_ICIN_BOS_YER_NO";
"[Okay System] You Don't Have Enough Space To Put Cards.";

Appear In Game:

CARD_ TO DOWNLOAD_ICIN_BOS_YER_NO

Just that ، This My Problem :(
 
Çözüm
The lines you want to edit just need to be known. Do not change the variable parts.
I think you're trying to edit both of them. And since the original code has changed, the system cannot find this code.

Sample:

"KART_KOYABILMEK_ICIN_BOS_YER_YOK"; >>>> Cannot be changed.
"[Okey Sistemi] áÇ ÊæÌÏ ãÓÇÍÉ áæÖÚ ÇáÈØÇŞÉ."; >>>>> The part to be edited.
When adding a new warning to source code, enclose it in LC_TEXT.

Example:
C++:
ChatPacket(CHAT_TYPE_INFO, LC_TEXT("CARD_ TO DOWNLOAD_ICIN_BOS_YER_NO"));
 
The lines you want to edit just need to be known. Do not change the variable parts.
I think you're trying to edit both of them. And since the original code has changed, the system cannot find this code.

Sample:

"KART_KOYABILMEK_ICIN_BOS_YER_YOK"; >>>> Cannot be changed.
"[Okey Sistemi] áÇ ÊæÌÏ ãÓÇÍÉ áæÖÚ ÇáÈØÇŞÉ."; >>>>> The part to be edited.
 
Çözüm
When adding a new warning to source code, enclose it in LC_TEXT.

Example:
[code = cpp] ChatPacket (CHAT_TYPE_INFO, LC_TEXT ("CARD_ TO DOWNLOAD_ICIN_BOS_YER_NO")); [/ code]
Yes I did and I checked it
The lines you want to edit just need to be known. Do not change the variable parts.
I think you're trying to edit both of them. And since the original code has changed, the system cannot find this code.

Sample:

"CARD_ TO DOWNLOAD_ICIN_BOS_YER_NO"; >>>> Cannot be changed.
"[Okey System] áÇ ÊæÌÏ ãÓÇÍÉ áæÖÚ ÇáÈØÇŞÉ."; >>>>> The part to be edited.
Yes I think it's the cause of the problem but I checked it
But now I change the position of the words from the bottom to the top and it works
I think the problem is in a code, and the program cannot read other words
Thanks everyone for the help
 
Yes I did and I checked it

Yes I think it's the cause of the problem but I checked it
But now I change the position of the words from the bottom to the top and it works
I think the problem is in a code, and the program cannot read other words
Thanks everyone for the help
Good.
Do not forget to leave a blank line on the bottom line of the locale_string.txt operation at the end of the edit. Otherwise, a reading problem may occur.
 
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.
Geri
Üst