[DiscordArchive] Is there a limit to the ID# of items in item_template?
[DiscordArchive] Is there a limit to the ID# of items in item_template?
Archived author: conFIGured • Posted: 2021-06-08T20:18:43.901000+00:00
Original source
Is there a limit to the ID# of items in item_template?
Archived author: Kitzunu • Posted: 2021-06-08T20:22:55.181000+00:00
Original source
Check what integer type the entry has, that will be the limit
Archived author: Teradrisile • Posted: 2021-06-08T22:48:18.465000+00:00
Original source
Hello, i have a question about translating from database, i explain, when i'm in quest_template_locale from World database and then i change language from english to french i've a problem, all translate aren't present in DB, someone have a french translating can shared ? In advance, thks
Archived author: stevej • Posted: 2021-06-08T22:51:22.726000+00:00
Original source
All the translations that the emulator has so far, are in that table, perhaps many are missing, in Spanish for example, we are working too, but it practically depends on the community and the desire to provide that information. If there are other sources of data, it would be interesting to integrate them to the emulator, even if it is little by little.
Archived author: Teradrisile • Posted: 2021-06-08T22:56:10.609000+00:00
Original source
<@!295970375571865600> Thanks for your answering. I will try to shared a lot of part of my job if people are interested it will be nice
Archived author: stevej • Posted: 2021-06-08T22:59:04.572000+00:00
Original source
Have several tools to be able to translate texts. For example, Keira3, "but don't forget to extract the SQL". Or also for example, this one that I created, which I hope still works. https://pangolp.github.io/azerothbuilder/ although it is not finished, but some tables work.
Archived author: stevej • Posted: 2021-06-08T22:59:17.390000+00:00
Original source
https://github.com/azerothcore/Keira3
![[Image: unknown.png?ex=690bd729&is=690a85a9&hm=3...e67f185e8&]](https://cdn.discordapp.com/attachments/689803159086170250/851959013331697674/unknown.png?ex=690bd729&is=690a85a9&hm=30d8f2cb614d6d7b1a2a4c344e1542c0f91f2b1a323944c2231504de67f185e8&)
Archived author: stevej • Posted: 2021-06-08T23:00:57.976000+00:00
Original source
![[Image: unknown.png?ex=690bd729&is=690a85a9&hm=3...e67f185e8&]](https://cdn.discordapp.com/attachments/689803159086170250/851959013331697674/unknown.png?ex=690bd729&is=690a85a9&hm=30d8f2cb614d6d7b1a2a4c344e1542c0f91f2b1a323944c2231504de67f185e8&)
Archived author: stevej • Posted: 2021-06-08T23:01:07.981000+00:00
Original source
```sql
-- Si vous le souhaitez, vous pouvez ajouter un commentaire, mais c'est facultatif.
DELETE FROM `quest_offer_reward_locale` WHERE `ID`=100 AND `locale`="frFR";
INSERT INTO `quest_offer_reward_locale` (`ID`, `locale`, `RewardText`, `VerifiedBuild`) VALUES
(100, "frFR", "Ce texte apparaît lorsque la mission est livrée.", 18019);
```
Archived author: Teradrisile • Posted: 2021-06-08T23:03:32.318000+00:00
Original source
Thank you i take a look