Advertisement
Arceked

Перевод голодача на русский язык

Jul 5th, 2016
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.33 KB | None | 0 0
  1. Самый свежий ключ на перевод: http://brantsteele.net/hungergames/r.php?c=7t5i5e6q
  2.  
  3. Инструкция по дополненному переводу:
  4. 1) Устанавливаете любой плагин для замены текста на ваш браузер.
  5. 2) Вписываете в плагин список замен.
  6.  
  7. Возможно заменить как весь английский текст, нужный для игры, так и только ту часть, что необходима для перевода только событий и ничего кроме их.
  8. ______________________________________________
  9.  
  10. Плагины для замены текста:
  11. Chrome: https://chrome.google.com/webstore/detail/word-replacer-ii/djakfbefalbkkdgnhkkdiihelkjdpbfh
  12. Firefox: https://addons.mozilla.org/rU/firefox/addon/foxreplace/
  13. _____________________________
  14. ОБЩИЙ ТЕКСТ ЗАМЕН, необходимый для ПЕРЕВОДА ТОЛЬКО СОБЫТИЙ, в общем виде:
  15. "runs away from the Cornucopia" -> "убегает от корнукопии"
  16. "decides not to go to The Feast." -> "решает не идти на Пир."
  17. " he "->" он "
  18. " she "->" она "
  19. " his "->" его "
  20. " her "->" её "
  21. " himself "->" ним "
  22. " herself "->" ней "
  23. " himself."->" ним."
  24. " his."->" его."
  25. " her."->" её."
  26.  
  27. Обратите внимание, что пробелы важны.
  28. _______________________________________________________________
  29. Код для Word Replacer II:
  30. {
  31. "version": "2.0.10",
  32. "replacements": [
  33. {
  34. "active": true,
  35. "case": "Maintain",
  36. "repA": "runs away from the Cornucopia",
  37. "repB": "убегает от корнукопии",
  38. "type": "Simple"
  39. },
  40. {
  41. "active": true,
  42. "case": "Maintain",
  43. "repA": " he ",
  44. "repB": " он ",
  45. "type": "Simple"
  46. },
  47. {
  48. "active": true,
  49. "case": "Maintain",
  50. "repA": " she ",
  51. "repB": " она ",
  52. "type": "Simple"
  53. },
  54. {
  55. "active": true,
  56. "case": "Maintain",
  57. "repA": " his ",
  58. "repB": " его ",
  59. "type": "Simple"
  60. },
  61. {
  62. "active": true,
  63. "case": "Maintain",
  64. "repA": " her ",
  65. "repB": " её ",
  66. "type": "Simple"
  67. },
  68. {
  69. "active": true,
  70. "case": "Maintain",
  71. "repA": " himself ",
  72. "repB": " ним ",
  73. "type": "Simple"
  74. },
  75. {
  76. "active": true,
  77. "case": "Maintain",
  78. "repA": " herself ",
  79. "repB": " ней ",
  80. "type": "Simple"
  81. },
  82. {
  83. "active": true,
  84. "case": "Maintain",
  85. "repA": " himself.",
  86. "repB": " ним.",
  87. "type": "Simple"
  88. },
  89. {
  90. "active": true,
  91. "case": "Maintain",
  92. "repA": " herself.",
  93. "repB": " ней.",
  94. "type": "Simple"
  95. },
  96. {
  97. "active": true,
  98. "case": "Maintain",
  99. "repA": " his.",
  100. "repB": " его.",
  101. "type": "Simple"
  102. },
  103. {
  104. "active": true,
  105. "case": "Maintain",
  106. "repA": " her.",
  107. "repB": " её.",
  108. "type": "Simple"
  109. },
  110. {
  111. "active": true,
  112. "case": "Maintain",
  113. "repA": "decides not to go to The Feast.",
  114. "repB": "решает не идти на Пир.",
  115. "type": "Simple"
  116. }
  117. ]
  118. }
  119. __________________________________________________________________________________________________
  120. FoxReplace НЕ УМЕЕТ импортировать ТЕКСТОМ, но может в виде ФАЙЛА. Следующий текст необходимо сохранить как FoxReplace.json и скормить
  121. плагину, нажав в нём ИМПОРТ. Также убедитесь, что в плагине стоит галочка в самом левом поле под названием ENABLED и нажмите ОК.
  122. Можно не заморачиваться и скачать файл с гуглодиска. https://drive.google.com/open?id=0ByU42BUOQ7L3YW1yeEQ5Wkp0Tms
  123.  
  124. {
  125. "version": "0.15",
  126. "groups": [
  127. {
  128. "name": "",
  129. "urls": [],
  130. "substitutions": [
  131. {
  132. "input": "runs away from the Cornucopia",
  133. "inputType": "text",
  134. "output": "убегает от корнукопии",
  135. "caseSensitive": true
  136. },
  137. {
  138. "input": " he ",
  139. "inputType": "text",
  140. "output": " он ",
  141. "caseSensitive": true
  142. },
  143. {
  144. "input": " she ",
  145. "inputType": "text",
  146. "output": " она ",
  147. "caseSensitive": true
  148. },
  149. {
  150. "input": " his ",
  151. "inputType": "text",
  152. "output": " его ",
  153. "caseSensitive": true
  154. },
  155. {
  156. "input": " her ",
  157. "inputType": "text",
  158. "output": " её ",
  159. "caseSensitive": true
  160. },
  161. {
  162. "input": " himself ",
  163. "inputType": "text",
  164. "output": " ним ",
  165. "caseSensitive": true
  166. },
  167. {
  168. "input": " herself ",
  169. "inputType": "text",
  170. "output": " ней ",
  171. "caseSensitive": true
  172. },
  173. {
  174. "input": " himself.",
  175. "inputType": "text",
  176. "output": " ним.",
  177. "caseSensitive": true
  178. },
  179. {
  180. "input": " herself.",
  181. "inputType": "text",
  182. "output": " ней.",
  183. "caseSensitive": true
  184. },
  185. {
  186. "input": " his.",
  187. "inputType": "text",
  188. "output": " его.",
  189. "caseSensitive": true
  190. },
  191. {
  192. "input": " her.",
  193. "inputType": "text",
  194. "output": " её.",
  195. "caseSensitive": true
  196. },
  197. {
  198. "input": "decides not to go to The Feast.",
  199. "inputType": "text",
  200. "output": "решает не идти на Пир.",
  201. "caseSensitive": true
  202. }
  203. ],
  204. "html": "none",
  205. "enabled": true
  206. }
  207. ]
  208. }
  209. __________________________________________________________________________________________
  210.  
  211. ПОЛНЫЙ КОД ЗАМЕН, ДЛЯ ПОЛНОГО ПЕРЕВОДА
  212. __________________________________________________________________________________________________
  213. Word Replacer II:
  214.  
  215. {
  216. "version": "2.0.10",
  217. "replacements": [
  218. {
  219. "active": true,
  220. "case": "Maintain",
  221. "repA": "runs away from the Cornucopia",
  222. "repB": "убегает от корнукопии",
  223. "type": "Simple"
  224. },
  225. {
  226. "active": true,
  227. "case": "Maintain",
  228. "repA": "As the tributes stand on their podiums, the horn sounds.",
  229. "repB": "Звучит горн, и трибуты стоят на своих платформах.",
  230. "type": "Simple"
  231. },
  232. {
  233. "active": true,
  234. "case": "Maintain",
  235. "repA": " he ",
  236. "repB": " он ",
  237. "type": "Simple"
  238. },
  239. {
  240. "active": true,
  241. "case": "Maintain",
  242. "repA": " she ",
  243. "repB": " она ",
  244. "type": "Simple"
  245. },
  246. {
  247. "active": true,
  248. "case": "Maintain",
  249. "repA": " his ",
  250. "repB": " его ",
  251. "type": "Simple"
  252. },
  253. {
  254. "active": true,
  255. "case": "Maintain",
  256. "repA": " her ",
  257. "repB": " её ",
  258. "type": "Simple"
  259. },
  260. {
  261. "active": true,
  262. "case": "Maintain",
  263. "repA": " himself ",
  264. "repB": " ним ",
  265. "type": "Simple"
  266. },
  267. {
  268. "active": true,
  269. "case": "Maintain",
  270. "repA": " herself ",
  271. "repB": " ней ",
  272. "type": "Simple"
  273. },
  274. {
  275. "active": true,
  276. "case": "Maintain",
  277. "repA": " himself.",
  278. "repB": " ним.",
  279. "type": "Simple"
  280. },
  281. {
  282. "active": true,
  283. "case": "Maintain",
  284. "repA": " herself.",
  285. "repB": " ней.",
  286. "type": "Simple"
  287. },
  288. {
  289. "active": true,
  290. "case": "Maintain",
  291. "repA": "No cannon shots can be heard in the distance",
  292. "repB": "Сегодня пушки не стреляют",
  293. "type": "Simple"
  294. },
  295. {
  296. "active": true,
  297. "case": "Maintain",
  298. "repA": " his.",
  299. "repB": " его.",
  300. "type": "Simple"
  301. },
  302. {
  303. "active": true,
  304. "case": "Maintain",
  305. "repA": " her.",
  306. "repB": " её.",
  307. "type": "Simple"
  308. },
  309. {
  310. "active": true,
  311. "case": "Maintain",
  312. "repA": "cannon shots can be heard in the distance",
  313. "repB": "раз стреляют пушки на расстоянии",
  314. "type": "Simple"
  315. },
  316. {
  317. "active": true,
  318. "case": "Maintain",
  319. "repA": "No deaths occurred.",
  320. "repB": "Не происходило смертей.",
  321. "type": "Simple"
  322. },
  323. {
  324. "active": true,
  325. "case": "Maintain",
  326. "repA": "The winner is",
  327. "repB": "Победитель ―",
  328. "type": "Simple"
  329. },
  330. {
  331. "active": true,
  332. "case": "Maintain",
  333. "repA": "from District",
  334. "repB": "из Дистрикта",
  335. "type": "Simple"
  336. },
  337. {
  338. "active": true,
  339. "case": "Maintain",
  340. "repA": "District Placements",
  341. "repB": "Итоги по Дистриктам",
  342. "type": "Simple"
  343. },
  344. {
  345. "active": true,
  346. "case": "Maintain",
  347. "repA": "Killer",
  348. "repB": "Убийца",
  349. "type": "Simple"
  350. },
  351. {
  352. "active": true,
  353. "case": "Maintain",
  354. "repA": "Killed",
  355. "repB": "Убит",
  356. "type": "Simple"
  357. },
  358. {
  359. "active": true,
  360. "case": "Maintain",
  361. "repA": "Proceed to the placements.",
  362. "repB": "Перейти к итогам.",
  363. "type": "Simple"
  364. },
  365. {
  366. "active": true,
  367. "case": "Maintain",
  368. "repA": "The Placements",
  369. "repB": "Итоги",
  370. "type": "Simple"
  371. },
  372. {
  373. "active": true,
  374. "case": "Maintain",
  375. "repA": "Proceed.",
  376. "repB": "Далее.",
  377. "type": "Simple"
  378. },
  379. {
  380. "active": true,
  381. "case": "Maintain",
  382. "repA": "Made",
  383. "repB": "Совершено",
  384. "type": "Simple"
  385. },
  386. {
  387. "active": true,
  388. "case": "Maintain",
  389. "repA": "District",
  390. "repB": "Дистрикт",
  391. "type": "Simple"
  392. },
  393. {
  394. "active": true,
  395. "case": "Maintain",
  396. "repA": "Tribute Placements",
  397. "repB": "Места Трибутов",
  398. "type": "Simple"
  399. },
  400. {
  401. "active": true,
  402. "case": "Maintain",
  403. "repA": "Arena Event",
  404. "repB": "Событие Арены",
  405. "type": "Simple"
  406. },
  407. {
  408. "active": true,
  409. "case": "Maintain",
  410. "repA": "Go back to fallen tributes",
  411. "repB": "Вернуться к павшим трибутам",
  412. "type": "Simple"
  413. },
  414. {
  415. "active": true,
  416. "case": "Maintain",
  417. "repA": "cannon shot can be heard in the distance.",
  418. "repB": "пушечный выстрел слышен на расстоянии.",
  419. "type": "Simple"
  420. },
  421. {
  422. "active": true,
  423. "case": "Maintain",
  424. "repA": "Day",
  425. "repB": "День",
  426. "type": "Simple"
  427. },
  428. {
  429. "active": true,
  430. "case": "Maintain",
  431. "repA": "Night",
  432. "repB": "Ночь",
  433. "type": "Simple"
  434. },
  435. {
  436. "active": true,
  437. "case": "Maintain",
  438. "repA": "Go Back To The Reaping!",
  439. "repB": "Вернуться к Жатве!",
  440. "type": "Simple"
  441. },
  442. {
  443. "active": true,
  444. "case": "Maintain",
  445. "repA": "The Bloodbath",
  446. "repB": "Бойня",
  447. "type": "Simple"
  448. },
  449. {
  450. "active": true,
  451. "case": "Maintain",
  452. "repA": "See everyone's status.",
  453. "repB": "Посмотреть статус всех трибутов.",
  454. "type": "Simple"
  455. },
  456. {
  457. "active": true,
  458. "case": "Maintain",
  459. "repA": "Deceased",
  460. "repB": "Покойник",
  461. "type": "Simple"
  462. },
  463. {
  464. "active": true,
  465. "case": "Maintain",
  466. "repA": "Fallen tributes",
  467. "repB": "Павшие трибуты",
  468. "type": "Simple"
  469. },
  470. {
  471. "active": true,
  472. "case": "Maintain",
  473. "repA": "Proceed to the summary",
  474. "repB": "Перейти к суммированию",
  475. "type": "Simple"
  476. },
  477. {
  478. "active": true,
  479. "case": "Maintain",
  480. "repA": "Statistics",
  481. "repB": "Статистика",
  482. "type": "Simple"
  483. },
  484. {
  485. "active": true,
  486. "case": "Maintain",
  487. "repA": "The Reaping",
  488. "repB": "Жатва",
  489. "type": "Simple"
  490. },
  491. {
  492. "active": true,
  493. "case": "Maintain",
  494. "repA": "Simulate Again",
  495. "repB": "Симулировать снова",
  496. "type": "Simple"
  497. },
  498. {
  499. "active": true,
  500. "case": "Maintain",
  501. "repA": "Adjust Size",
  502. "repB": "Изменить размер",
  503. "type": "Simple"
  504. },
  505. {
  506. "active": true,
  507. "case": "Maintain",
  508. "repA": "Edit Cast",
  509. "repB": "Редактировать персонажей",
  510. "type": "Simple"
  511. },
  512. {
  513. "active": true,
  514. "case": "Maintain",
  515. "repA": "Kills",
  516. "repB": "убийств",
  517. "type": "Simple"
  518. },
  519. {
  520. "active": true,
  521. "case": "Maintain",
  522. "repA": "Kill",
  523. "repB": "убийство",
  524. "type": "Simple"
  525. },
  526. {
  527. "active": true,
  528. "case": "Maintain",
  529. "repA": "The cornucopia is replenished with food, supplies, weapons, and memoirs from the tributes' families",
  530. "repB": "Корнукопия наполняется едой, припасами, оружием и посланиями от семей трибутов",
  531. "type": "Simple"
  532. },
  533. {
  534. "active": true,
  535. "case": "Maintain",
  536. "repA": "decides not to go to The Feast.",
  537. "repB": "решает не идти на Пир.",
  538. "type": "Simple"
  539. },
  540. {
  541. "active": true,
  542. "case": "Maintain",
  543. "repA": "Feast",
  544. "repB": "Пир",
  545. "type": "Simple"
  546. },
  547. {
  548. "active": true,
  549. "case": "Maintain",
  550. "repA": "Arena",
  551. "repB": "Арена",
  552. "type": "Simple"
  553. },
  554. {
  555. "active": true,
  556. "case": "Maintain",
  557. "repA": "12375757575757575757575",
  558. "repB": "Русский до мозга костей Голодачь",
  559. "type": "Simple"
  560. },
  561. {
  562. "active": true,
  563. "case": "Maintain",
  564. "repA": "Status",
  565. "repB": "Статус",
  566. "type": "Simple"
  567. },
  568. {
  569. "active": true,
  570. "case": "Maintain",
  571. "repA": "Alive",
  572. "repB": "В живых",
  573. "type": "Simple"
  574. },
  575. {
  576. "active": true,
  577. "case": "Maintain",
  578. "repA": "The Feast",
  579. "repB": "Пир",
  580. "type": "Simple"
  581. },
  582. {
  583. "active": true,
  584. "case": "Maintain",
  585. "repA": "Summary",
  586. "repB": "Суммирование",
  587. "type": "Simple"
  588. }
  589. ]
  590. }
  591.  
  592. _______________________________________________________________
  593. Для FoxReplace: мы работаем над этим.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement