Advertisement
kirya_shkolnik

Beckmann translates

Jul 25th, 2021
1,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let translates = new Map([
  2.   ['Aluminum Electrolytic Capacitors', 'Aluminium-Elektrolyt-Kondensatoren'], // Capacitors
  3.   ['Ceramic Capacitors', 'Keramik-Kondensatoren'],
  4.   ['DC Link Capacitors', 'DC-Link-Kondensatoren'],
  5.   ['Electric Double-Layer Capacitors','Doppelschicht-Kondensatoren'],
  6.   ['EMI Suppression Capacitors (X and Y)', 'Entstör-Kondensatoren (X und Y)'],
  7.   ['Film Capacitors', 'Folien-Kondensatoren'],
  8.   ['Metallized-Paper Capacitors', 'Metall-Papier-Kondensatoren'],
  9.   ['Polymer Capacitors', 'Polymer-Kondensatoren'],
  10.   ['Polymer Hybrid Capacitors', 'Polymer-Hybrid-Kondensatoren'],
  11.   ['Power Capacitors', 'Leistungskondensatoren'],
  12.   ['Tantalum Capacitors', 'Tantal-Kondensatoren'],
  13.   ['Capacitors', 'Kondensatoren'], // Capacitors
  14.   ['Current-Compensated Chokes','Stromkompensierte Drosseln'], //Inductive Components & Ferrites
  15.   ['Data Line Chokes','Datenleitungsdrosseln'],
  16.   ['Ferrite Chip Beads', 'Ferrite Chip Beads'],
  17.   ['Ferrites & Accessories','Ferrite & Zubehör'],
  18.   ['Inductors / Chokes & Coils', 'Induktivitäten / Drosseln & Spulen'],
  19.   ['PFC Chokes', 'PFC-Drosseln '],
  20.   ['Transformers', 'Transformatoren/Übertrager'],
  21.   ['Wireless Charging Coils', 'Ladespulen'],
  22.   ['Inductive Components & Ferrites', 'Induktive Bauelemente & Ferrite'], //Inductive Components & Ferrites
  23.   ['Surge Arresters', 'Ableiter'], // sensor
  24.   ['NTC Thermistors','NTC-Thermistoren'],
  25.   ['PTC Thermistors' , 'PTC-Thermistoren'],
  26.   ['Temperature Sensors', 'Temperatursensoren'],
  27.   ['TVS Diodes', 'TVS-Dioden'],
  28.   ['Varistors','Varistoren'],
  29.   ['Protection Components & Sensors','Schutzbauelemente & Sensoren'], // sensor
  30. ]);
  31.  
  32. translates.forEach((value, index, self) => {
  33.   jQuery('.jet-checkboxes-list__label:contains(' + index + ")").text(value);
  34. });
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement