vitalii201

modDesc.xml(mit Russischer Übersetzung) für Ballenzähler. 30.11.20

Nov 29th, 2020 (edited)
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" standalone="no" ?>
  2. <modDesc descVersion="51">
  3. <author>Ifko[nator] - lsfarming-mods.de -</author>
  4.  
  5. <title>
  6. <en>Bale Counter</en>
  7. <de>Ballenzähler</de>
  8. <ru>Счётчик тюков</ru>
  9. </title>
  10.  
  11. <description>
  12. <en><![CDATA[Specialization to count the dropped bales.]]></en>
  13. <de><![CDATA[Spezialisierung zum zählen der gepressten Ballen.]]></de>
  14. <ru><![CDATA[Подсчёт спрессованных и обёрнутых тюков.]]></ru>
  15. </description>
  16.  
  17. <multiplayer supported="true"/>
  18. <iconFilename>store.dds</iconFilename>
  19. <version>1.0.0.1</version>
  20.  
  21. <extraSourceFiles>
  22. <sourceFile filename="l10nFix.lua" />
  23. <sourceFile filename="RegisterSpecialization.lua" />
  24. </extraSourceFiles>
  25.  
  26. <l10n>
  27. <text name="PRESSED"><de>Gepresste</de><en>pressed</en><ru>Спрессованно</ru></text>
  28. <text name="WRAPPED"><de>Gewickelte</de><en>wrapped</en><ru>Обёрнуто</ru></text>
  29. <text name="BALES_TODAY"><de>Ballen Heute</de><en>bales today</en><ru>Тюков сегодня</ru></text>
  30. <text name="TOTAL"><de>Gesamt</de><en>total</en><ru>Всего</ru></text>
  31.  
  32. <text name="input_RESET_BALE_COUNT_DAY_BUTTON"><de>Ballenzähler für gepresste Ballen zurücksetzen</de><en>reset bale counter</en><ru>Сброс счётчика спрессованных тюков</ru></text>
  33. <text name="input_RESET_WRAPPED_BALE_COUNT_DAY_BUTTON"><de>Ballenzähler für gewickelte Ballen zurücksetzen</de><en>reset wrapped bale counter</en><ru>Сброс счётчика обёрнутых тюков</ru></text>
  34. </l10n>
  35.  
  36. <actions>
  37. <action name="RESET_BALE_COUNT_DAY_BUTTON" category="VEHICLE" ignoreComboMask="false"/>
  38. <action name="RESET_WRAPPED_BALE_COUNT_DAY_BUTTON" category="VEHICLE" ignoreComboMask="false"/>
  39. </actions>
  40.  
  41. <inputBinding>
  42. <actionBinding action="RESET_BALE_COUNT_DAY_BUTTON">
  43. <binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_y" axisComponent="+" neutralInput="0" index="1"/>
  44. <binding device="0_XINPUT_GAMEPAD" input="BUTTON_5 BUTTON_6 BUTTON_2" axisComponent="+" neutralInput="0" index="1"/>
  45. </actionBinding>
  46.  
  47. <actionBinding action="RESET_WRAPPED_BALE_COUNT_DAY_BUTTON">
  48. <binding device="KB_MOUSE_DEFAULT" input="KEY_lalt KEY_x" axisComponent="+" neutralInput="0" index="1"/>
  49. <binding device="0_XINPUT_GAMEPAD" input="BUTTON_5 BUTTON_6 BUTTON_1" axisComponent="+" neutralInput="0" index="1"/>
  50. </actionBinding>
  51. </inputBinding>
  52.  
  53. <registerSpecializations>
  54. <registerSpecialization name="wrappedBaleCounter" className="WrappedBaleCounter" filename="WrappedBaleCounter.lua" searchedSpecializations="baleWrapper"/>
  55. <registerSpecialization name="baleCounter" className="BaleCounter" filename="BaleCounter.lua" searchedSpecializations="baler"/>
  56. </registerSpecializations>
  57. </modDesc>
Advertisement
Add Comment
Please, Sign In to add comment