locales.mdx 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562
  1. ---
  2. sidebar_position: 10
  3. ---
  4. # Internationalisation
  5. Uppy speaks many languages, English being the default. You can use a locale pack
  6. to translate Uppy into your language of choice.
  7. :::tip
  8. Checkout
  9. [`@uppy/locales`](https://github.com/transloadit/uppy/tree/main/packages/%40uppy/locales)
  10. on GitHub to see the list of supported languages.
  11. :::
  12. ## Using a locale pack from npm
  13. This is the recommended way. Install `@uppy/locales` package from npm, then
  14. choose the locale you’d like to use: `@uppy/locales/lib/LANGUAGE_CODE`.
  15. ```bash
  16. npm i @uppy/core @uppy/locales
  17. ```
  18. ```js
  19. import Uppy from '@uppy/core';
  20. import German from '@uppy/locales/lib/de_DE';
  21. // see below for the full list of locales
  22. const uppy = new Uppy({
  23. debug: true,
  24. locale: German,
  25. });
  26. ```
  27. ## Using a locale pack from CDN
  28. Add a `<script>` tag with Uppy bundle and the locale pack you’d like to use. You
  29. can copy/paste the link from the CDN column in the locales table. The locale
  30. will attach itself to the `Uppy.locales` object.
  31. ```html
  32. <script src="https://releases.transloadit.com/uppy/v3.17.0/uppy.min.js"></script>
  33. <script src="https://releases.transloadit.com/uppy/locales/v3.3.1/de_DE.min.js"></script>
  34. <script>
  35. var uppy = new Uppy.Uppy({
  36. debug: true,
  37. locale: Uppy.locales.de_DE,
  38. });
  39. </script>
  40. ```
  41. ## Overriding locale strings for a specific plugin
  42. Many plugins come with their own locale strings, and the packs we provide
  43. consist of most of those strings. You can, however, override a locale string for
  44. a specific plugin, regardless of whether you are using locale pack or not. See
  45. the plugin documentation for the list of locale strings it uses.
  46. ```js
  47. import Uppy from '@uppy/core';
  48. import DragDrop from '@uppy/drag-drop';
  49. import Russian from '@uppy/locales/lib/ru_RU';
  50. const uppy = new Uppy({
  51. debug: true,
  52. autoProceed: true,
  53. locale: Russian,
  54. });
  55. uppy.use(DragDrop, {
  56. target: '.UppyDragDrop',
  57. // We are using the ru_RU locale pack (set above in Uppy options),
  58. // but you can also override specific strings like so:
  59. locale: {
  60. strings: {
  61. browse: 'выберите ;-)',
  62. },
  63. },
  64. });
  65. ```
  66. ## List of locales
  67. <table>
  68. <thead>
  69. <tr>
  70. <th>38 Locales</th>
  71. <th>NPM</th>
  72. <th>CDN</th>
  73. <th>Source on GitHub</th>
  74. </tr>
  75. </thead>
  76. <tbody>
  77. <tr>
  78. <td>
  79. Arabic <small>Saudi Arabia</small>
  80. </td>
  81. <td>
  82. <code class="raw">
  83. <a
  84. href="https://www.npmjs.com/package/@uppy/locales"
  85. target="_blank"
  86. rel="noopener"
  87. >
  88. @uppy/locales
  89. </a>
  90. /lib/ar_SA
  91. </code>
  92. </td>
  93. <td>
  94. <a
  95. href="https://releases.transloadit.com/uppy/locales/v3.3.1/ar_SA.min.js"
  96. target="_blank"
  97. rel="noopener"
  98. >
  99. <code>ar_SA.min.js</code>
  100. </a>
  101. </td>
  102. <td>
  103. ✏️{' '}
  104. <a
  105. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/ar_SA.ts"
  106. target="_blank"
  107. rel="noopener"
  108. >
  109. <code>ar_SA.ts</code>
  110. </a>
  111. </td>
  112. </tr>
  113. <tr>
  114. <td>
  115. Bulgarian <small>Bulgaria</small>
  116. </td>
  117. <td>
  118. <code class="raw">
  119. <a
  120. href="https://www.npmjs.com/package/@uppy/locales"
  121. target="_blank"
  122. rel="noopener"
  123. >
  124. @uppy/locales
  125. </a>
  126. /lib/bg_BG
  127. </code>
  128. </td>
  129. <td>
  130. <a
  131. href="https://releases.transloadit.com/uppy/locales/v3.3.1/bg_BG.min.js"
  132. target="_blank"
  133. rel="noopener"
  134. >
  135. <code>bg_BG.min.js</code>
  136. </a>
  137. </td>
  138. <td>
  139. ✏️{' '}
  140. <a
  141. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/bg_BG.ts"
  142. target="_blank"
  143. rel="noopener"
  144. >
  145. <code>bg_BG.ts</code>
  146. </a>
  147. </td>
  148. </tr>
  149. <tr>
  150. <td>
  151. Chinese <small>China</small>
  152. </td>
  153. <td>
  154. <code class="raw">
  155. <a
  156. href="https://www.npmjs.com/package/@uppy/locales"
  157. target="_blank"
  158. rel="noopener"
  159. >
  160. @uppy/locales
  161. </a>
  162. /lib/zh_CN
  163. </code>
  164. </td>
  165. <td>
  166. <a
  167. href="https://releases.transloadit.com/uppy/locales/v3.3.1/zh_CN.min.js"
  168. target="_blank"
  169. rel="noopener"
  170. >
  171. <code>zh_CN.min.js</code>
  172. </a>
  173. </td>
  174. <td>
  175. ✏️{' '}
  176. <a
  177. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/zh_CN.ts"
  178. target="_blank"
  179. rel="noopener"
  180. >
  181. <code>zh_CN.ts</code>
  182. </a>
  183. </td>
  184. </tr>
  185. <tr>
  186. <td>
  187. Chinese <small>Taiwan</small>
  188. </td>
  189. <td>
  190. <code class="raw">
  191. <a
  192. href="https://www.npmjs.com/package/@uppy/locales"
  193. target="_blank"
  194. rel="noopener"
  195. >
  196. @uppy/locales
  197. </a>
  198. /lib/zh_TW
  199. </code>
  200. </td>
  201. <td>
  202. <a
  203. href="https://releases.transloadit.com/uppy/locales/v3.3.1/zh_TW.min.js"
  204. target="_blank"
  205. rel="noopener"
  206. >
  207. <code>zh_TW.min.js</code>
  208. </a>
  209. </td>
  210. <td>
  211. ✏️{' '}
  212. <a
  213. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/zh_TW.ts"
  214. target="_blank"
  215. rel="noopener"
  216. >
  217. <code>zh_TW.ts</code>
  218. </a>
  219. </td>
  220. </tr>
  221. <tr>
  222. <td>
  223. Croatian <small>Croatia</small>
  224. </td>
  225. <td>
  226. <code class="raw">
  227. <a
  228. href="https://www.npmjs.com/package/@uppy/locales"
  229. target="_blank"
  230. rel="noopener"
  231. >
  232. @uppy/locales
  233. </a>
  234. /lib/hr_HR
  235. </code>
  236. </td>
  237. <td>
  238. <a
  239. href="https://releases.transloadit.com/uppy/locales/v3.3.1/hr_HR.min.js"
  240. target="_blank"
  241. rel="noopener"
  242. >
  243. <code>hr_HR.min.js</code>
  244. </a>
  245. </td>
  246. <td>
  247. ✏️{' '}
  248. <a
  249. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/hr_HR.ts"
  250. target="_blank"
  251. rel="noopener"
  252. >
  253. <code>hr_HR.ts</code>
  254. </a>
  255. </td>
  256. </tr>
  257. <tr>
  258. <td>
  259. Czech <small>Czechia</small>
  260. </td>
  261. <td>
  262. <code class="raw">
  263. <a
  264. href="https://www.npmjs.com/package/@uppy/locales"
  265. target="_blank"
  266. rel="noopener"
  267. >
  268. @uppy/locales
  269. </a>
  270. /lib/cs_CZ
  271. </code>
  272. </td>
  273. <td>
  274. <a
  275. href="https://releases.transloadit.com/uppy/locales/v3.3.1/cs_CZ.min.js"
  276. target="_blank"
  277. rel="noopener"
  278. >
  279. <code>cs_CZ.min.js</code>
  280. </a>
  281. </td>
  282. <td>
  283. ✏️{' '}
  284. <a
  285. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/cs_CZ.ts"
  286. target="_blank"
  287. rel="noopener"
  288. >
  289. <code>cs_CZ.ts</code>
  290. </a>
  291. </td>
  292. </tr>
  293. <tr>
  294. <td>
  295. Danish <small>Denmark</small>
  296. </td>
  297. <td>
  298. <code class="raw">
  299. <a
  300. href="https://www.npmjs.com/package/@uppy/locales"
  301. target="_blank"
  302. rel="noopener"
  303. >
  304. @uppy/locales
  305. </a>
  306. /lib/da_DK
  307. </code>
  308. </td>
  309. <td>
  310. <a
  311. href="https://releases.transloadit.com/uppy/locales/v3.3.1/da_DK.min.js"
  312. target="_blank"
  313. rel="noopener"
  314. >
  315. <code>da_DK.min.js</code>
  316. </a>
  317. </td>
  318. <td>
  319. ✏️{' '}
  320. <a
  321. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/da_DK.ts"
  322. target="_blank"
  323. rel="noopener"
  324. >
  325. <code>da_DK.ts</code>
  326. </a>
  327. </td>
  328. </tr>
  329. <tr>
  330. <td>
  331. Dutch <small>Netherlands</small>
  332. </td>
  333. <td>
  334. <code class="raw">
  335. <a
  336. href="https://www.npmjs.com/package/@uppy/locales"
  337. target="_blank"
  338. rel="noopener"
  339. >
  340. @uppy/locales
  341. </a>
  342. /lib/nl_NL
  343. </code>
  344. </td>
  345. <td>
  346. <a
  347. href="https://releases.transloadit.com/uppy/locales/v3.3.1/nl_NL.min.js"
  348. target="_blank"
  349. rel="noopener"
  350. >
  351. <code>nl_NL.min.js</code>
  352. </a>
  353. </td>
  354. <td>
  355. ✏️{' '}
  356. <a
  357. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/nl_NL.ts"
  358. target="_blank"
  359. rel="noopener"
  360. >
  361. <code>nl_NL.ts</code>
  362. </a>
  363. </td>
  364. </tr>
  365. <tr>
  366. <td>
  367. English <small>United States</small>
  368. </td>
  369. <td>
  370. <code class="raw">
  371. <a
  372. href="https://www.npmjs.com/package/@uppy/locales"
  373. target="_blank"
  374. rel="noopener"
  375. >
  376. @uppy/locales
  377. </a>
  378. /lib/en_US
  379. </code>
  380. </td>
  381. <td>
  382. <a
  383. href="https://releases.transloadit.com/uppy/locales/v3.3.1/en_US.min.js"
  384. target="_blank"
  385. rel="noopener"
  386. >
  387. <code>en_US.min.js</code>
  388. </a>
  389. </td>
  390. <td>
  391. ✏️{' '}
  392. <a
  393. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/en_US.ts"
  394. target="_blank"
  395. rel="noopener"
  396. >
  397. <code>en_US.ts</code>
  398. </a>
  399. </td>
  400. </tr>
  401. <tr>
  402. <td>
  403. Finnish <small>Finland</small>
  404. </td>
  405. <td>
  406. <code class="raw">
  407. <a
  408. href="https://www.npmjs.com/package/@uppy/locales"
  409. target="_blank"
  410. rel="noopener"
  411. >
  412. @uppy/locales
  413. </a>
  414. /lib/fi_FI
  415. </code>
  416. </td>
  417. <td>
  418. <a
  419. href="https://releases.transloadit.com/uppy/locales/v3.3.1/fi_FI.min.js"
  420. target="_blank"
  421. rel="noopener"
  422. >
  423. <code>fi_FI.min.js</code>
  424. </a>
  425. </td>
  426. <td>
  427. ✏️{' '}
  428. <a
  429. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/fi_FI.ts"
  430. target="_blank"
  431. rel="noopener"
  432. >
  433. <code>fi_FI.ts</code>
  434. </a>
  435. </td>
  436. </tr>
  437. <tr>
  438. <td>
  439. French <small>France</small>
  440. </td>
  441. <td>
  442. <code class="raw">
  443. <a
  444. href="https://www.npmjs.com/package/@uppy/locales"
  445. target="_blank"
  446. rel="noopener"
  447. >
  448. @uppy/locales
  449. </a>
  450. /lib/fr_FR
  451. </code>
  452. </td>
  453. <td>
  454. <a
  455. href="https://releases.transloadit.com/uppy/locales/v3.3.1/fr_FR.min.js"
  456. target="_blank"
  457. rel="noopener"
  458. >
  459. <code>fr_FR.min.js</code>
  460. </a>
  461. </td>
  462. <td>
  463. ✏️{' '}
  464. <a
  465. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/fr_FR.ts"
  466. target="_blank"
  467. rel="noopener"
  468. >
  469. <code>fr_FR.ts</code>
  470. </a>
  471. </td>
  472. </tr>
  473. <tr>
  474. <td>
  475. Galician <small>Spain</small>
  476. </td>
  477. <td>
  478. <code class="raw">
  479. <a
  480. href="https://www.npmjs.com/package/@uppy/locales"
  481. target="_blank"
  482. rel="noopener"
  483. >
  484. @uppy/locales
  485. </a>
  486. /lib/gl_ES
  487. </code>
  488. </td>
  489. <td>
  490. <a
  491. href="https://releases.transloadit.com/uppy/locales/v3.3.1/gl_ES.min.js"
  492. target="_blank"
  493. rel="noopener"
  494. >
  495. <code>gl_ES.min.js</code>
  496. </a>
  497. </td>
  498. <td>
  499. ✏️{' '}
  500. <a
  501. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/gl_ES.ts"
  502. target="_blank"
  503. rel="noopener"
  504. >
  505. <code>gl_ES.ts</code>
  506. </a>
  507. </td>
  508. </tr>
  509. <tr>
  510. <td>
  511. German <small>Germany</small>
  512. </td>
  513. <td>
  514. <code class="raw">
  515. <a
  516. href="https://www.npmjs.com/package/@uppy/locales"
  517. target="_blank"
  518. rel="noopener"
  519. >
  520. @uppy/locales
  521. </a>
  522. /lib/de_DE
  523. </code>
  524. </td>
  525. <td>
  526. <a
  527. href="https://releases.transloadit.com/uppy/locales/v3.3.1/de_DE.min.js"
  528. target="_blank"
  529. rel="noopener"
  530. >
  531. <code>de_DE.min.js</code>
  532. </a>
  533. </td>
  534. <td>
  535. ✏️{' '}
  536. <a
  537. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/de_DE.ts"
  538. target="_blank"
  539. rel="noopener"
  540. >
  541. <code>de_DE.ts</code>
  542. </a>
  543. </td>
  544. </tr>
  545. <tr>
  546. <td>
  547. Greek <small>Greece</small>
  548. </td>
  549. <td>
  550. <code class="raw">
  551. <a
  552. href="https://www.npmjs.com/package/@uppy/locales"
  553. target="_blank"
  554. rel="noopener"
  555. >
  556. @uppy/locales
  557. </a>
  558. /lib/el_GR
  559. </code>
  560. </td>
  561. <td>
  562. <a
  563. href="https://releases.transloadit.com/uppy/locales/v3.3.1/el_GR.min.js"
  564. target="_blank"
  565. rel="noopener"
  566. >
  567. <code>el_GR.min.js</code>
  568. </a>
  569. </td>
  570. <td>
  571. ✏️{' '}
  572. <a
  573. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/el_GR.ts"
  574. target="_blank"
  575. rel="noopener"
  576. >
  577. <code>el_GR.ts</code>
  578. </a>
  579. </td>
  580. </tr>
  581. <tr>
  582. <td>
  583. Hebrew <small>Israel</small>
  584. </td>
  585. <td>
  586. <code class="raw">
  587. <a
  588. href="https://www.npmjs.com/package/@uppy/locales"
  589. target="_blank"
  590. rel="noopener"
  591. >
  592. @uppy/locales
  593. </a>
  594. /lib/he_IL
  595. </code>
  596. </td>
  597. <td>
  598. <a
  599. href="https://releases.transloadit.com/uppy/locales/v3.3.1/he_IL.min.js"
  600. target="_blank"
  601. rel="noopener"
  602. >
  603. <code>he_IL.min.js</code>
  604. </a>
  605. </td>
  606. <td>
  607. ✏️{' '}
  608. <a
  609. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/he_IL.ts"
  610. target="_blank"
  611. rel="noopener"
  612. >
  613. <code>he_IL.ts</code>
  614. </a>
  615. </td>
  616. </tr>
  617. <tr>
  618. <td>
  619. Hindi <small>India</small>
  620. </td>
  621. <td>
  622. <code class="raw">
  623. <a
  624. href="https://www.npmjs.com/package/@uppy/locales"
  625. target="_blank"
  626. rel="noopener"
  627. >
  628. @uppy/locales
  629. </a>
  630. /lib/hi_IN
  631. </code>
  632. </td>
  633. <td>
  634. <a
  635. href="https://releases.transloadit.com/uppy/locales/v3.3.1/hi_IN.min.js"
  636. target="_blank"
  637. rel="noopener"
  638. >
  639. <code>hi_IN.min.js</code>
  640. </a>
  641. </td>
  642. <td>
  643. ✏️{' '}
  644. <a
  645. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/hi_IN.ts"
  646. target="_blank"
  647. rel="noopener"
  648. >
  649. <code>hi_IN.ts</code>
  650. </a>
  651. </td>
  652. </tr>
  653. <tr>
  654. <td>
  655. Hungarian <small>Hungary</small>
  656. </td>
  657. <td>
  658. <code class="raw">
  659. <a
  660. href="https://www.npmjs.com/package/@uppy/locales"
  661. target="_blank"
  662. rel="noopener"
  663. >
  664. @uppy/locales
  665. </a>
  666. /lib/hu_HU
  667. </code>
  668. </td>
  669. <td>
  670. <a
  671. href="https://releases.transloadit.com/uppy/locales/v3.3.1/hu_HU.min.js"
  672. target="_blank"
  673. rel="noopener"
  674. >
  675. <code>hu_HU.min.js</code>
  676. </a>
  677. </td>
  678. <td>
  679. ✏️{' '}
  680. <a
  681. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/hu_HU.ts"
  682. target="_blank"
  683. rel="noopener"
  684. >
  685. <code>hu_HU.ts</code>
  686. </a>
  687. </td>
  688. </tr>
  689. <tr>
  690. <td>
  691. Icelandic <small>Iceland</small>
  692. </td>
  693. <td>
  694. <code class="raw">
  695. <a
  696. href="https://www.npmjs.com/package/@uppy/locales"
  697. target="_blank"
  698. rel="noopener"
  699. >
  700. @uppy/locales
  701. </a>
  702. /lib/is_IS
  703. </code>
  704. </td>
  705. <td>
  706. <a
  707. href="https://releases.transloadit.com/uppy/locales/v3.3.1/is_IS.min.js"
  708. target="_blank"
  709. rel="noopener"
  710. >
  711. <code>is_IS.min.js</code>
  712. </a>
  713. </td>
  714. <td>
  715. ✏️{' '}
  716. <a
  717. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/is_IS.ts"
  718. target="_blank"
  719. rel="noopener"
  720. >
  721. <code>is_IS.ts</code>
  722. </a>
  723. </td>
  724. </tr>
  725. <tr>
  726. <td>
  727. Indonesian <small>Indonesia</small>
  728. </td>
  729. <td>
  730. <code class="raw">
  731. <a
  732. href="https://www.npmjs.com/package/@uppy/locales"
  733. target="_blank"
  734. rel="noopener"
  735. >
  736. @uppy/locales
  737. </a>
  738. /lib/id_ID
  739. </code>
  740. </td>
  741. <td>
  742. <a
  743. href="https://releases.transloadit.com/uppy/locales/v3.3.1/id_ID.min.js"
  744. target="_blank"
  745. rel="noopener"
  746. >
  747. <code>id_ID.min.js</code>
  748. </a>
  749. </td>
  750. <td>
  751. ✏️{' '}
  752. <a
  753. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/id_ID.ts"
  754. target="_blank"
  755. rel="noopener"
  756. >
  757. <code>id_ID.ts</code>
  758. </a>
  759. </td>
  760. </tr>
  761. <tr>
  762. <td>
  763. Italian <small>Italy</small>
  764. </td>
  765. <td>
  766. <code class="raw">
  767. <a
  768. href="https://www.npmjs.com/package/@uppy/locales"
  769. target="_blank"
  770. rel="noopener"
  771. >
  772. @uppy/locales
  773. </a>
  774. /lib/it_IT
  775. </code>
  776. </td>
  777. <td>
  778. <a
  779. href="https://releases.transloadit.com/uppy/locales/v3.3.1/it_IT.min.js"
  780. target="_blank"
  781. rel="noopener"
  782. >
  783. <code>it_IT.min.js</code>
  784. </a>
  785. </td>
  786. <td>
  787. ✏️{' '}
  788. <a
  789. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/it_IT.ts"
  790. target="_blank"
  791. rel="noopener"
  792. >
  793. <code>it_IT.ts</code>
  794. </a>
  795. </td>
  796. </tr>
  797. <tr>
  798. <td>
  799. Japanese <small>Japan</small>
  800. </td>
  801. <td>
  802. <code class="raw">
  803. <a
  804. href="https://www.npmjs.com/package/@uppy/locales"
  805. target="_blank"
  806. rel="noopener"
  807. >
  808. @uppy/locales
  809. </a>
  810. /lib/ja_JP
  811. </code>
  812. </td>
  813. <td>
  814. <a
  815. href="https://releases.transloadit.com/uppy/locales/v3.3.1/ja_JP.min.js"
  816. target="_blank"
  817. rel="noopener"
  818. >
  819. <code>ja_JP.min.js</code>
  820. </a>
  821. </td>
  822. <td>
  823. ✏️{' '}
  824. <a
  825. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/ja_JP.ts"
  826. target="_blank"
  827. rel="noopener"
  828. >
  829. <code>ja_JP.ts</code>
  830. </a>
  831. </td>
  832. </tr>
  833. <tr>
  834. <td>
  835. Korean <small>South Korea</small>
  836. </td>
  837. <td>
  838. <code class="raw">
  839. <a
  840. href="https://www.npmjs.com/package/@uppy/locales"
  841. target="_blank"
  842. rel="noopener"
  843. >
  844. @uppy/locales
  845. </a>
  846. /lib/ko_KR
  847. </code>
  848. </td>
  849. <td>
  850. <a
  851. href="https://releases.transloadit.com/uppy/locales/v3.3.1/ko_KR.min.js"
  852. target="_blank"
  853. rel="noopener"
  854. >
  855. <code>ko_KR.min.js</code>
  856. </a>
  857. </td>
  858. <td>
  859. ✏️{' '}
  860. <a
  861. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/ko_KR.ts"
  862. target="_blank"
  863. rel="noopener"
  864. >
  865. <code>ko_KR.ts</code>
  866. </a>
  867. </td>
  868. </tr>
  869. <tr>
  870. <td>
  871. Norwegian Bokmål <small>Norway</small>
  872. </td>
  873. <td>
  874. <code class="raw">
  875. <a
  876. href="https://www.npmjs.com/package/@uppy/locales"
  877. target="_blank"
  878. rel="noopener"
  879. >
  880. @uppy/locales
  881. </a>
  882. /lib/nb_NO
  883. </code>
  884. </td>
  885. <td>
  886. <a
  887. href="https://releases.transloadit.com/uppy/locales/v3.3.1/nb_NO.min.js"
  888. target="_blank"
  889. rel="noopener"
  890. >
  891. <code>nb_NO.min.js</code>
  892. </a>
  893. </td>
  894. <td>
  895. ✏️{' '}
  896. <a
  897. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/nb_NO.ts"
  898. target="_blank"
  899. rel="noopener"
  900. >
  901. <code>nb_NO.ts</code>
  902. </a>
  903. </td>
  904. </tr>
  905. <tr>
  906. <td>
  907. Persian <small>Iran</small>
  908. </td>
  909. <td>
  910. <code class="raw">
  911. <a
  912. href="https://www.npmjs.com/package/@uppy/locales"
  913. target="_blank"
  914. rel="noopener"
  915. >
  916. @uppy/locales
  917. </a>
  918. /lib/fa_IR
  919. </code>
  920. </td>
  921. <td>
  922. <a
  923. href="https://releases.transloadit.com/uppy/locales/v3.3.1/fa_IR.min.js"
  924. target="_blank"
  925. rel="noopener"
  926. >
  927. <code>fa_IR.min.js</code>
  928. </a>
  929. </td>
  930. <td>
  931. ✏️{' '}
  932. <a
  933. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/fa_IR.ts"
  934. target="_blank"
  935. rel="noopener"
  936. >
  937. <code>fa_IR.ts</code>
  938. </a>
  939. </td>
  940. </tr>
  941. <tr>
  942. <td>
  943. Polish <small>Poland</small>
  944. </td>
  945. <td>
  946. <code class="raw">
  947. <a
  948. href="https://www.npmjs.com/package/@uppy/locales"
  949. target="_blank"
  950. rel="noopener"
  951. >
  952. @uppy/locales
  953. </a>
  954. /lib/pl_PL
  955. </code>
  956. </td>
  957. <td>
  958. <a
  959. href="https://releases.transloadit.com/uppy/locales/v3.3.1/pl_PL.min.js"
  960. target="_blank"
  961. rel="noopener"
  962. >
  963. <code>pl_PL.min.js</code>
  964. </a>
  965. </td>
  966. <td>
  967. ✏️{' '}
  968. <a
  969. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/pl_PL.ts"
  970. target="_blank"
  971. rel="noopener"
  972. >
  973. <code>pl_PL.ts</code>
  974. </a>
  975. </td>
  976. </tr>
  977. <tr>
  978. <td>
  979. Portuguese <small>Brazil</small>
  980. </td>
  981. <td>
  982. <code class="raw">
  983. <a
  984. href="https://www.npmjs.com/package/@uppy/locales"
  985. target="_blank"
  986. rel="noopener"
  987. >
  988. @uppy/locales
  989. </a>
  990. /lib/pt_BR
  991. </code>
  992. </td>
  993. <td>
  994. <a
  995. href="https://releases.transloadit.com/uppy/locales/v3.3.1/pt_BR.min.js"
  996. target="_blank"
  997. rel="noopener"
  998. >
  999. <code>pt_BR.min.js</code>
  1000. </a>
  1001. </td>
  1002. <td>
  1003. ✏️{' '}
  1004. <a
  1005. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/pt_BR.ts"
  1006. target="_blank"
  1007. rel="noopener"
  1008. >
  1009. <code>pt_BR.ts</code>
  1010. </a>
  1011. </td>
  1012. </tr>
  1013. <tr>
  1014. <td>
  1015. Portuguese <small>Portugal</small>
  1016. </td>
  1017. <td>
  1018. <code class="raw">
  1019. <a
  1020. href="https://www.npmjs.com/package/@uppy/locales"
  1021. target="_blank"
  1022. rel="noopener"
  1023. >
  1024. @uppy/locales
  1025. </a>
  1026. /lib/pt_PT
  1027. </code>
  1028. </td>
  1029. <td>
  1030. <a
  1031. href="https://releases.transloadit.com/uppy/locales/v3.3.1/pt_PT.min.js"
  1032. target="_blank"
  1033. rel="noopener"
  1034. >
  1035. <code>pt_PT.min.js</code>
  1036. </a>
  1037. </td>
  1038. <td>
  1039. ✏️{' '}
  1040. <a
  1041. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/pt_PT.ts"
  1042. target="_blank"
  1043. rel="noopener"
  1044. >
  1045. <code>pt_PT.ts</code>
  1046. </a>
  1047. </td>
  1048. </tr>
  1049. <tr>
  1050. <td>
  1051. Romanian <small>Romania</small>
  1052. </td>
  1053. <td>
  1054. <code class="raw">
  1055. <a
  1056. href="https://www.npmjs.com/package/@uppy/locales"
  1057. target="_blank"
  1058. rel="noopener"
  1059. >
  1060. @uppy/locales
  1061. </a>
  1062. /lib/ro_RO
  1063. </code>
  1064. </td>
  1065. <td>
  1066. <a
  1067. href="https://releases.transloadit.com/uppy/locales/v3.3.1/ro_RO.min.js"
  1068. target="_blank"
  1069. rel="noopener"
  1070. >
  1071. <code>ro_RO.min.js</code>
  1072. </a>
  1073. </td>
  1074. <td>
  1075. ✏️{' '}
  1076. <a
  1077. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/ro_RO.ts"
  1078. target="_blank"
  1079. rel="noopener"
  1080. >
  1081. <code>ro_RO.ts</code>
  1082. </a>
  1083. </td>
  1084. </tr>
  1085. <tr>
  1086. <td>
  1087. Russian <small>Russia</small>
  1088. </td>
  1089. <td>
  1090. <code class="raw">
  1091. <a
  1092. href="https://www.npmjs.com/package/@uppy/locales"
  1093. target="_blank"
  1094. rel="noopener"
  1095. >
  1096. @uppy/locales
  1097. </a>
  1098. /lib/ru_RU
  1099. </code>
  1100. </td>
  1101. <td>
  1102. <a
  1103. href="https://releases.transloadit.com/uppy/locales/v3.3.1/ru_RU.min.js"
  1104. target="_blank"
  1105. rel="noopener"
  1106. >
  1107. <code>ru_RU.min.js</code>
  1108. </a>
  1109. </td>
  1110. <td>
  1111. ✏️{' '}
  1112. <a
  1113. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/ru_RU.ts"
  1114. target="_blank"
  1115. rel="noopener"
  1116. >
  1117. <code>ru_RU.ts</code>
  1118. </a>
  1119. </td>
  1120. </tr>
  1121. <tr>
  1122. <td>
  1123. Serbian <small>Serbia</small>
  1124. <small>(Cyrillic)</small>
  1125. </td>
  1126. <td>
  1127. <code class="raw">
  1128. <a
  1129. href="https://www.npmjs.com/package/@uppy/locales"
  1130. target="_blank"
  1131. rel="noopener"
  1132. >
  1133. @uppy/locales
  1134. </a>
  1135. /lib/sr_RS_Cyrillic
  1136. </code>
  1137. </td>
  1138. <td>
  1139. <a
  1140. href="https://releases.transloadit.com/uppy/locales/v3.3.1/sr_RS_Cyrillic.min.js"
  1141. target="_blank"
  1142. rel="noopener"
  1143. >
  1144. <code>sr_RS_Cyrillic.min.js</code>
  1145. </a>
  1146. </td>
  1147. <td>
  1148. ✏️{' '}
  1149. <a
  1150. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/sr_RS_Cyrillic.ts"
  1151. target="_blank"
  1152. rel="noopener"
  1153. >
  1154. <code>sr_RS_Cyrillic.ts</code>
  1155. </a>
  1156. </td>
  1157. </tr>
  1158. <tr>
  1159. <td>
  1160. Serbian <small>Serbia</small>
  1161. <small>(Latin)</small>
  1162. </td>
  1163. <td>
  1164. <code class="raw">
  1165. <a
  1166. href="https://www.npmjs.com/package/@uppy/locales"
  1167. target="_blank"
  1168. rel="noopener"
  1169. >
  1170. @uppy/locales
  1171. </a>
  1172. /lib/sr_RS_Latin
  1173. </code>
  1174. </td>
  1175. <td>
  1176. <a
  1177. href="https://releases.transloadit.com/uppy/locales/v3.3.1/sr_RS_Latin.min.js"
  1178. target="_blank"
  1179. rel="noopener"
  1180. >
  1181. <code>sr_RS_Latin.min.js</code>
  1182. </a>
  1183. </td>
  1184. <td>
  1185. ✏️{' '}
  1186. <a
  1187. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/sr_RS_Latin.ts"
  1188. target="_blank"
  1189. rel="noopener"
  1190. >
  1191. <code>sr_RS_Latin.ts</code>
  1192. </a>
  1193. </td>
  1194. </tr>
  1195. <tr>
  1196. <td>
  1197. Slovak <small>Slovakia</small>
  1198. </td>
  1199. <td>
  1200. <code class="raw">
  1201. <a
  1202. href="https://www.npmjs.com/package/@uppy/locales"
  1203. target="_blank"
  1204. rel="noopener"
  1205. >
  1206. @uppy/locales
  1207. </a>
  1208. /lib/sk_SK
  1209. </code>
  1210. </td>
  1211. <td>
  1212. <a
  1213. href="https://releases.transloadit.com/uppy/locales/v3.3.1/sk_SK.min.js"
  1214. target="_blank"
  1215. rel="noopener"
  1216. >
  1217. <code>sk_SK.min.js</code>
  1218. </a>
  1219. </td>
  1220. <td>
  1221. ✏️{' '}
  1222. <a
  1223. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/sk_SK.ts"
  1224. target="_blank"
  1225. rel="noopener"
  1226. >
  1227. <code>sk_SK.ts</code>
  1228. </a>
  1229. </td>
  1230. </tr>
  1231. <tr>
  1232. <td>
  1233. Spanish <small>Spain</small>
  1234. </td>
  1235. <td>
  1236. <code class="raw">
  1237. <a
  1238. href="https://www.npmjs.com/package/@uppy/locales"
  1239. target="_blank"
  1240. rel="noopener"
  1241. >
  1242. @uppy/locales
  1243. </a>
  1244. /lib/es_ES
  1245. </code>
  1246. </td>
  1247. <td>
  1248. <a
  1249. href="https://releases.transloadit.com/uppy/locales/v3.3.1/es_ES.min.js"
  1250. target="_blank"
  1251. rel="noopener"
  1252. >
  1253. <code>es_ES.min.js</code>
  1254. </a>
  1255. </td>
  1256. <td>
  1257. ✏️{' '}
  1258. <a
  1259. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/es_ES.ts"
  1260. target="_blank"
  1261. rel="noopener"
  1262. >
  1263. <code>es_ES.ts</code>
  1264. </a>
  1265. </td>
  1266. </tr>
  1267. <tr>
  1268. <td>
  1269. Spanish <small>Mexico</small>
  1270. </td>
  1271. <td>
  1272. <code class="raw">
  1273. <a
  1274. href="https://www.npmjs.com/package/@uppy/locales"
  1275. target="_blank"
  1276. rel="noopener"
  1277. >
  1278. @uppy/locales
  1279. </a>
  1280. /lib/es_MX
  1281. </code>
  1282. </td>
  1283. <td>
  1284. <a
  1285. href="https://releases.transloadit.com/uppy/locales/v3.3.1/es_MX.min.js"
  1286. target="_blank"
  1287. rel="noopener"
  1288. >
  1289. <code>es_MX.min.js</code>
  1290. </a>
  1291. </td>
  1292. <td>
  1293. ✏️{' '}
  1294. <a
  1295. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/es_MX.ts"
  1296. target="_blank"
  1297. rel="noopener"
  1298. >
  1299. <code>es_MX.ts</code>
  1300. </a>
  1301. </td>
  1302. </tr>
  1303. <tr>
  1304. <td>
  1305. Swedish <small>Sweden</small>
  1306. </td>
  1307. <td>
  1308. <code class="raw">
  1309. <a
  1310. href="https://www.npmjs.com/package/@uppy/locales"
  1311. target="_blank"
  1312. rel="noopener"
  1313. >
  1314. @uppy/locales
  1315. </a>
  1316. /lib/sv_SE
  1317. </code>
  1318. </td>
  1319. <td>
  1320. <a
  1321. href="https://releases.transloadit.com/uppy/locales/v3.3.1/sv_SE.min.js"
  1322. target="_blank"
  1323. rel="noopener"
  1324. >
  1325. <code>sv_SE.min.js</code>
  1326. </a>
  1327. </td>
  1328. <td>
  1329. ✏️{' '}
  1330. <a
  1331. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/sv_SE.ts"
  1332. target="_blank"
  1333. rel="noopener"
  1334. >
  1335. <code>sv_SE.ts</code>
  1336. </a>
  1337. </td>
  1338. </tr>
  1339. <tr>
  1340. <td>
  1341. Thai <small>Thailand</small>
  1342. </td>
  1343. <td>
  1344. <code class="raw">
  1345. <a
  1346. href="https://www.npmjs.com/package/@uppy/locales"
  1347. target="_blank"
  1348. rel="noopener"
  1349. >
  1350. @uppy/locales
  1351. </a>
  1352. /lib/th_TH
  1353. </code>
  1354. </td>
  1355. <td>
  1356. <a
  1357. href="https://releases.transloadit.com/uppy/locales/v3.3.1/th_TH.min.js"
  1358. target="_blank"
  1359. rel="noopener"
  1360. >
  1361. <code>th_TH.min.js</code>
  1362. </a>
  1363. </td>
  1364. <td>
  1365. ✏️{' '}
  1366. <a
  1367. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/th_TH.ts"
  1368. target="_blank"
  1369. rel="noopener"
  1370. >
  1371. <code>th_TH.ts</code>
  1372. </a>
  1373. </td>
  1374. </tr>
  1375. <tr>
  1376. <td>
  1377. Turkish <small>Turkey</small>
  1378. </td>
  1379. <td>
  1380. <code class="raw">
  1381. <a
  1382. href="https://www.npmjs.com/package/@uppy/locales"
  1383. target="_blank"
  1384. rel="noopener"
  1385. >
  1386. @uppy/locales
  1387. </a>
  1388. /lib/tr_TR
  1389. </code>
  1390. </td>
  1391. <td>
  1392. <a
  1393. href="https://releases.transloadit.com/uppy/locales/v3.3.1/tr_TR.min.js"
  1394. target="_blank"
  1395. rel="noopener"
  1396. >
  1397. <code>tr_TR.min.js</code>
  1398. </a>
  1399. </td>
  1400. <td>
  1401. ✏️{' '}
  1402. <a
  1403. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/tr_TR.ts"
  1404. target="_blank"
  1405. rel="noopener"
  1406. >
  1407. <code>tr_TR.ts</code>
  1408. </a>
  1409. </td>
  1410. </tr>
  1411. <tr>
  1412. <td>
  1413. Ukrainian <small>Ukraine</small>
  1414. </td>
  1415. <td>
  1416. <code class="raw">
  1417. <a
  1418. href="https://www.npmjs.com/package/@uppy/locales"
  1419. target="_blank"
  1420. rel="noopener"
  1421. >
  1422. @uppy/locales
  1423. </a>
  1424. /lib/uk_UA
  1425. </code>
  1426. </td>
  1427. <td>
  1428. <a
  1429. href="https://releases.transloadit.com/uppy/locales/v3.3.1/uk_UA.min.js"
  1430. target="_blank"
  1431. rel="noopener"
  1432. >
  1433. <code>uk_UA.min.js</code>
  1434. </a>
  1435. </td>
  1436. <td>
  1437. ✏️{' '}
  1438. <a
  1439. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/uk_UA.ts"
  1440. target="_blank"
  1441. rel="noopener"
  1442. >
  1443. <code>uk_UA.ts</code>
  1444. </a>
  1445. </td>
  1446. </tr>
  1447. <tr>
  1448. <td>
  1449. Uzbek <small>Uzbekistan</small>
  1450. </td>
  1451. <td>
  1452. <code class="raw">
  1453. <a
  1454. href="https://www.npmjs.com/package/@uppy/locales"
  1455. target="_blank"
  1456. rel="noopener"
  1457. >
  1458. @uppy/locales
  1459. </a>
  1460. /lib/uz_UZ
  1461. </code>
  1462. </td>
  1463. <td>
  1464. <a
  1465. href="https://releases.transloadit.com/uppy/locales/v3.3.1/uz_UZ.min.js"
  1466. target="_blank"
  1467. rel="noopener"
  1468. >
  1469. <code>uz_UZ.min.js</code>
  1470. </a>
  1471. </td>
  1472. <td>
  1473. ✏️{' '}
  1474. <a
  1475. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/uz_UZ.ts"
  1476. target="_blank"
  1477. rel="noopener"
  1478. >
  1479. <code>uz_UZ.ts</code>
  1480. </a>
  1481. </td>
  1482. </tr>
  1483. <tr>
  1484. <td>
  1485. Vietnamese <small>Vietnam</small>
  1486. </td>
  1487. <td>
  1488. <code class="raw">
  1489. <a
  1490. href="https://www.npmjs.com/package/@uppy/locales"
  1491. target="_blank"
  1492. rel="noopener"
  1493. >
  1494. @uppy/locales
  1495. </a>
  1496. /lib/vi_VN
  1497. </code>
  1498. </td>
  1499. <td>
  1500. <a
  1501. href="https://releases.transloadit.com/uppy/locales/v3.3.1/vi_VN.min.js"
  1502. target="_blank"
  1503. rel="noopener"
  1504. >
  1505. <code>vi_VN.min.js</code>
  1506. </a>
  1507. </td>
  1508. <td>
  1509. ✏️{' '}
  1510. <a
  1511. href="https://github.com/transloadit/uppy/blob/main/packages/%40uppy/locales/src/vi_VN.ts"
  1512. target="_blank"
  1513. rel="noopener"
  1514. >
  1515. <code>vi_VN.ts</code>
  1516. </a>
  1517. </td>
  1518. </tr>
  1519. </tbody>
  1520. </table>
  1521. ## Contributing a new language
  1522. If you speak a language we don’t yet support, you can contribute! Here’s how you
  1523. do it:
  1524. 1. Go to the
  1525. [uppy/locales](https://github.com/transloadit/uppy/tree/main/packages/%40uppy/locales/src)
  1526. directory in the Uppy GitHub repo.
  1527. 2. Go to `en_US.js` and copy its contents, as English is the most up-to-date
  1528. locale.
  1529. 3. Press “Create new file”, name it according to the
  1530. [`language_COUNTRY` format](http://www.i18nguy.com/unicode/language-identifiers.html),
  1531. make sure to use underscore `_` as a divider. Examples: `en_US`, `en_GB`,
  1532. `ru_RU`, `ar_AE`. Variants should be trailing, for example `sr_RS_Latin` for
  1533. Serbian Latin vs Cyrillic.
  1534. 4. If your language has different pluralization rules than English, update the
  1535. `pluralize` implementation. If you are unsure how to do this, please ask us
  1536. for help in a [GitHub issue](https://github.com/transloadit/uppy/issues/new).
  1537. 5. Paste what you’ve copied from `en_US.js` and use it as a starting point to
  1538. translate strings into your language.
  1539. 6. When you are ready, save the file — this should create a PR that we’ll then
  1540. review 🎉 Thanks!