{"id":72389,"date":"2026-02-04T00:18:03","date_gmt":"2026-02-03T15:18:03","guid":{"rendered":"https:\/\/www.yarakuzen.com\/?page_id=72389"},"modified":"2026-07-07T12:07:05","modified_gmt":"2026-07-07T03:07:05","slug":"features","status":"publish","type":"page","link":"https:\/\/www.yaraku.com\/en\/features\/","title":{"rendered":"Features of Yaraku Translate"},"content":{"rendered":"\n<div class=\"wp-block-group alignfull page-heading has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-bottom:0\">\n<h1 class=\"wp-block-heading page-heading__title\">Features<\/h1>\n\n\n\n<p class=\"page-heading__sub-title wp-block-paragraph\">Features of Yaraku Translate<\/p>\n<\/div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--60)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-core-group-is-layout-21d1823e wp-block-group-is-layout-flex\">\n<h2 class=\"wp-block-heading\">AI + You = Smarter Translation<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Elevating quality and accelerating speed through AI and human editing.<\/p>\n<\/div>\n\n\n\n<style data-wp-block-html=\"css\">\n\/* =====================================================\n   flow-anim \u2014 Translation Process Flow Diagram\n   ===================================================== *\/\n\n.flow-anim-section {\n  background: #fff;\n  padding: 10px 20px 10px;\n}\n\n.flow-anim-inner {\n  max-width: 720px;\n  margin: 0 auto;\n}\n\n\/* ---- Heading ---- *\/\n.flow-heading-wrap {\n  text-align: center;\n  margin-bottom: 40px;\n  opacity: 0;\n  transform: translateY(16px);\n  transition: opacity .5s ease, transform .5s ease;\n}\n\n.flow-heading-wrap.is-visible {\n  opacity: 1;\n  transform: none;\n}\n\n.flow-label {\n  display: inline-block;\n  font-size: .78rem;\n  font-weight: 700;\n  letter-spacing: .08em;\n  color: #fff;\n  background: #dc503c;\n  border-radius: 20px;\n  padding: 4px 14px;\n  margin-bottom: 12px;\n}\n\n.flow-title {\n  font-size: clamp(1.15rem, 2.4vw, 1.55rem);\n  font-weight: 700;\n  line-height: 1.6;\n  color: #1a1a1a;\n  font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', sans-serif;\n}\n\n\/* ---- SVG diagram ---- *\/\n.flow-svg {\n  width: 100%;\n  height: auto;\n  display: block;\n  overflow: visible;\n}\n<\/style>\n\n<script data-wp-block-html=\"js\">\n(function () {\n  'use strict';\n\n  function init() {\n    var section = document.getElementById('flowAnimSection');\n    if (!section) return;\n\n    var heading = document.getElementById('flowHeading');\n    var nd1 = document.getElementById('fnode1');\n    var nd2 = document.getElementById('fnode2');\n    var nd3 = document.getElementById('fnode3');\n    var ln1 = document.getElementById('fline1');\n    var ln2 = document.getElementById('fline2');\n    var rt1 = document.getElementById('fret1');\n    var rt2 = document.getElementById('fret2');\n    var rt3 = document.getElementById('fret3');\n    var tp1 = document.getElementById('ftip1');\n    var tp2 = document.getElementById('ftip2');\n    var tp3 = document.getElementById('ftip3');\n    var lb1 = document.getElementById('flabel1');\n    var lb2 = document.getElementById('flabel2');\n    var lb3 = document.getElementById('flabel3');\n\n    if (!heading || !nd1 || !nd2 || !nd3 ||\n        !ln1 || !ln2 || !rt1 || !rt2 || !rt3 ||\n        !tp1 || !tp2 || !tp3 || !lb1 || !lb2 || !lb3) return;\n\n    var played = false;\n    var timers = [];\n\n    function delay(fn, ms) {\n      var t = setTimeout(fn, ms);\n      timers.push(t);\n      return t;\n    }\n\n    function clearAll() {\n      timers.forEach(function (t) { clearTimeout(t); });\n      timers = [];\n    }\n\n    function animateDash(el, duration) {\n      el.style.transition = 'stroke-dashoffset ' + duration + 'ms ease';\n      el.setAttribute('stroke-dashoffset', '0');\n    }\n\n    function show(el) {\n      el.setAttribute('opacity', '1');\n    }\n\n    function resetAll() {\n      clearAll();\n      heading.classList.remove('is-visible');\n      [nd1, nd2, nd3].forEach(function (el) { el.setAttribute('opacity', '0'); });\n      [ln1, ln2, rt1, rt2, rt3].forEach(function (el) { el.style.transition = 'none'; });\n      ln1.setAttribute('stroke-dashoffset', '162');\n      ln2.setAttribute('stroke-dashoffset', '162');\n      rt1.setAttribute('stroke-dashoffset', '44');\n      rt2.setAttribute('stroke-dashoffset', '540');\n      rt3.setAttribute('stroke-dashoffset', '44');\n      [tp1, tp2, tp3, lb1, lb2, lb3].forEach(function (el) { el.setAttribute('opacity', '0'); });\n      played = false;\n    }\n\n    function play() {\n      if (played) return;\n      played = true;\n\n      delay(function () { heading.classList.add('is-visible'); }, 0);\n      delay(function () { show(nd1); }, 350);\n      delay(function () { show(lb1); animateDash(ln1, 500); }, 700);\n      delay(function () { show(tp1); }, 1100);\n      delay(function () { show(nd2); }, 1150);\n      delay(function () { show(lb2); animateDash(ln2, 500); }, 1450);\n      delay(function () { show(tp2); }, 1850);\n      delay(function () { show(nd3); }, 1900);\n      delay(function () { animateDash(rt1, 300); }, 2300);\n      delay(function () { animateDash(rt2, 700); }, 2600);\n      delay(function () { show(lb3); }, 2900);\n      delay(function () { animateDash(rt3, 300); }, 3300);\n      delay(function () { show(tp3); }, 3600);\n    }\n\n    if ('IntersectionObserver' in window) {\n      var playObs = new IntersectionObserver(function (entries) {\n        entries.forEach(function (e) { if (e.isIntersecting) play(); });\n      }, { threshold: 0.2 });\n      playObs.observe(section);\n\n      var resetObs = new IntersectionObserver(function (entries) {\n        entries.forEach(function (e) { if (!e.isIntersecting) resetAll(); });\n      }, { threshold: 0 });\n      resetObs.observe(section);\n    } else {\n      play();\n    }\n  }\n\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', init);\n  } else {\n    init();\n  }\n\n})();\n<\/script>\n\n<div class=\"flow-anim-section\" id=\"flowAnimSection\">\n  <div class=\"flow-anim-inner\">\n\n    <!-- \u898b\u51fa\u3057 -->\n    <div class=\"flow-heading-wrap\" id=\"flowHeading\">\n    <\/div>\n\n    <svg class=\"flow-svg\" id=\"flowSvg\" viewBox=\"0 0 720 230\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" aria-label=\"Yaraku Translate\u306e\u30d5\u30ed\u30fc\u56f3\">\n\n      <!-- \u30ce\u30fc\u30c91\uff1a\u30d5\u30ec\u30fc\u30ba\u96c6\uff06\u7528\u8a9e\u96c6\uff08DB\uff09 -->\n      <g id=\"fnode1\" opacity=\"0\">\n        <circle cx=\"90\" cy=\"72\" r=\"44\" fill=\"#fff\" filter=\"url(#fShadow)\"><\/circle>\n        <g transform=\"translate(64,46)\">\n          <ellipse cx=\"26\" cy=\"8\" rx=\"18\" ry=\"7\" fill=\"#e74c3c\"><\/ellipse>\n          <rect x=\"8\" y=\"8\" width=\"36\" height=\"10\" fill=\"#e74c3c\"><\/rect>\n          <ellipse cx=\"26\" cy=\"18\" rx=\"18\" ry=\"7\" fill=\"#c0392b\"><\/ellipse>\n          <rect x=\"8\" y=\"18\" width=\"36\" height=\"10\" fill=\"#c0392b\"><\/rect>\n          <ellipse cx=\"26\" cy=\"28\" rx=\"18\" ry=\"7\" fill=\"#e74c3c\"><\/ellipse>\n          <rect x=\"8\" y=\"28\" width=\"36\" height=\"10\" fill=\"#e74c3c\"><\/rect>\n          <ellipse cx=\"26\" cy=\"38\" rx=\"18\" ry=\"7\" fill=\"#c0392b\"><\/ellipse>\n        <\/g>\n        <text x=\"90\" y=\"134\" text-anchor=\"middle\" font-size=\"13\" font-weight=\"600\" fill=\"#575757\" font-family=\"'Noto Sans JP',sans-serif\">Phrases &amp; Glossary<\/text>\n      <\/g>\n\n      <!-- \u30ce\u30fc\u30c92\uff1aMachine Translation\uff08\u6b6f\u8eca\u30fb\u6b6f8\u672c\u3059\u3079\u3066\u88dc\u5b8c\u6e08\u307f\uff09 -->\n      <g id=\"fnode2\" opacity=\"0\">\n        <circle cx=\"360\" cy=\"72\" r=\"44\" fill=\"#fff\" filter=\"url(#fShadow)\"><\/circle>\n        <g transform=\"translate(334,46)\">\n          <circle cx=\"26\" cy=\"26\" r=\"14\" fill=\"#7f8c8d\"><\/circle>\n          <circle cx=\"26\" cy=\"26\" r=\"6\" fill=\"#c8cdd0\"><\/circle>\n          <!-- \u6b6f8\u672c\uff1a0\u00b0\/45\u00b0\/90\u00b0\/135\u00b0\/180\u00b0\/225\u00b0\/270\u00b0\/315\u00b0 -->\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(45  26 26)\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(90  26 26)\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(135 26 26)\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(180 26 26)\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(225 26 26)\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(270 26 26)\"><\/rect>\n          <rect x=\"24\" y=\"1\" width=\"4\" height=\"8\" rx=\"2\" fill=\"#95a5a6\" transform=\"rotate(315 26 26)\"><\/rect>\n        <\/g>\n        <text x=\"360\" y=\"134\" text-anchor=\"middle\" font-size=\"13\" font-weight=\"600\" fill=\"#575757\" font-family=\"'Noto Sans JP',sans-serif\">Machine Translation<\/text>\n      <\/g>\n\n      <!-- \u30ce\u30fc\u30c93\uff1aUser -->\n      <g id=\"fnode3\" opacity=\"0\">\n        <circle cx=\"630\" cy=\"72\" r=\"44\" fill=\"#fff\" filter=\"url(#fShadow)\"><\/circle>\n        <g transform=\"translate(604,46)\">\n          <circle cx=\"17\" cy=\"13\" r=\"9\" fill=\"#e6b86a\"><\/circle>\n          <path d=\"M0 42c0-9 6-14 17-14s17 5 17 14\" fill=\"#e6b86a\"><\/path>\n          <circle cx=\"32\" cy=\"15\" r=\"8\" fill=\"#b8864e\"><\/circle>\n          <path d=\"M16 42c1-8 7-12 16-12s15 4 15 12\" fill=\"#b8864e\"><\/path>\n        <\/g>\n        <text x=\"630\" y=\"134\" text-anchor=\"middle\" font-size=\"13\" font-weight=\"600\" fill=\"#575757\" font-family=\"'Noto Sans JP',sans-serif\">User<\/text>\n      <\/g>\n\n      <!-- \u77e2\u5370\u30e9\u30d9\u30eb -->\n      <text id=\"flabel1\" x=\"226\" y=\"44\" text-anchor=\"middle\" font-size=\"11\" fill=\"#999\" font-family=\"'Noto Sans JP',sans-serif\" opacity=\"0\">Applied to machine translation<\/text>\n      <text id=\"flabel2\" x=\"494\" y=\"44\" text-anchor=\"middle\" font-size=\"11\" fill=\"#999\" font-family=\"'Noto Sans JP',sans-serif\" opacity=\"0\">Human review<\/text>\n      <text id=\"flabel3\" x=\"360\" y=\"216\" text-anchor=\"middle\" font-size=\"11\" fill=\"#999\" font-family=\"'Noto Sans JP',sans-serif\" opacity=\"0\">Add to Phrases and Glossary<\/text>\n\n      <!-- \u77e2\u53701\uff1a\u30d5\u30ec\u30fc\u30ba\u96c6 \u2192 Machine Translation -->\n      <line id=\"fline1\" x1=\"148\" y1=\"72\" x2=\"310\" y2=\"72\" stroke=\"#ccc\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"162\" stroke-dashoffset=\"162\"><\/line>\n      <polygon id=\"ftip1\" points=\"316,72 306,67 306,77\" fill=\"#ccc\" opacity=\"0\"><\/polygon>\n\n      <!-- \u77e2\u53702\uff1aMachine Translation \u2192 User -->\n      <line id=\"fline2\" x1=\"410\" y1=\"72\" x2=\"572\" y2=\"72\" stroke=\"#ccc\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"162\" stroke-dashoffset=\"162\"><\/line>\n      <polygon id=\"ftip2\" points=\"578,72 568,67 568,77\" fill=\"#ccc\" opacity=\"0\"><\/polygon>\n\n      <!-- \u6298\u308a\u8fd4\u3057U\u5b57\uff1aUser \u2192 DB -->\n      <line id=\"fret1\" x1=\"630\" y1=\"152\" x2=\"630\" y2=\"196\" stroke=\"#ccc\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"44\" stroke-dashoffset=\"44\"><\/line>\n      <line id=\"fret2\" x1=\"630\" y1=\"196\" x2=\"90\" y2=\"196\" stroke=\"#ccc\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"540\" stroke-dashoffset=\"540\"><\/line>\n      <line id=\"fret3\" x1=\"90\" y1=\"196\" x2=\"90\" y2=\"152\" stroke=\"#ccc\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-dasharray=\"44\" stroke-dashoffset=\"44\"><\/line>\n      <polygon id=\"ftip3\" points=\"90,146 85,156 95,156\" fill=\"#ccc\" opacity=\"0\"><\/polygon>\n\n      <!-- \u30c9\u30ed\u30c3\u30d7\u30b7\u30e3\u30c9\u30a6 -->\n      <defs>\n        <filter id=\"fShadow\" x=\"-20%\" y=\"-20%\" width=\"140%\" height=\"140%\">\n          <feDropShadow dx=\"0\" dy=\"3\" stdDeviation=\"5\" flood-color=\"rgba(0,0,0,0.10)\"><\/feDropShadow>\n        <\/filter>\n      <\/defs>\n\n    <\/svg>\n\n  <\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-752344f3 wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-930d3512 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a02e3e81 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/translate.yaraku.com\/company-signup\">Try for free<\/a><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a02e3e81 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.yaraku.com\/en\/contact\/\">Contact us<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--30);height:var(--wp--preset--spacing--60)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center alignwide\">Achieve high-quality translations with Yaraku Translate<\/h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-core-columns-is-layout-930d3512 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"wp-block-paragraph\">\u3000<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With Yaraku Translate, you can translate while applying glossaries that store internal terminology and proper nouns, along with phrases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After machine translation, AI checks each sentence (segment) and highlights areas that may contain mistranslations.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A post-translation preview lets you see the finished document as you work, helping you complete high-quality translated documents.<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<figure class=\"wp-block-image alignright size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"978\" height=\"584\" src=\"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png\" alt=\"Yaraku Translate\u306e\u54c1\u8cea\u30c1\u30a7\u30c3\u30af\u753b\u9762\uff1aAI\u304c\u8aa4\u8a33\u7b87\u6240\u3092\u30cf\u30a4\u30e9\u30a4\u30c8\u8868\u793a\u3057\u7ffb\u8a33\u30d7\u30ec\u30d3\u30e5\u30fc\u3067\u54c1\u8cea\u78ba\u8a8d\" class=\"wp-image-85126\" style=\"aspect-ratio:1.6747239100545528;width:524px;height:auto\" srcset=\"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png 978w, https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu-300x179.png 300w, https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu-768x459.png 768w\" sizes=\"auto, (max-width: 978px) 100vw, 978px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30);height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\" id=\"postedit\">A full set of easy editing features<\/h2>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">Yaraku Translate displays the source and translated text side by side, making it much easier to check and fix mistranslations and omissions while significantly reducing manual work.<\/p>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">You can edit while checking translation progress in real time. Collaboration features also make it easy to request a second review.<\/p>\n\n\n\n<figure class=\"wp-block-image alignwide size-full has-custom-border\" style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)\"><img loading=\"lazy\" decoding=\"async\" width=\"1787\" height=\"768\" src=\"https:\/\/www.yaraku.com\/assets\/images\/features\/check_yaraku.png\" alt=\"Yaraku Translate\u306e\u30c1\u30fc\u30e0\u5171\u6709\u753b\u9762\uff1a\u7ffb\u8a33\u72b6\u6cc1\u3092\u4e00\u89a7\u8868\u793a\u3057\u30c1\u30fc\u30e0\u3067\u30e0\u30e9\u306a\u304f\u30c1\u30a7\u30c3\u30af\u30fb\u4fee\u6b63\" class=\"wp-image-85158\" style=\"border-top-left-radius:7px;border-top-right-radius:7px;border-bottom-left-radius:7px;border-bottom-right-radius:7px;box-shadow:var(--wp--preset--shadow--natural)\"\/><\/figure>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30);height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Download translated files in the original layout<\/h2>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">After translating and editing PDF, Word, Excel, PowerPoint, and other files, you can download the translated documents while keeping the original layout. This reduces the time spent adjusting layouts and helps you complete documents faster.<\/p>\n\n\n\n<figure class=\"wp-block-image alignwide size-full has-custom-border\" style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)\"><img decoding=\"async\" src=\"https:\/\/www.yaraku.com\/assets\/images\/features\/file_download_yaraku.png\" alt=\"Yaraku Translate\u306e\u30d5\u30a1\u30a4\u30eb\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u753b\u9762\uff1a\u5143\u30ec\u30a4\u30a2\u30a6\u30c8\u306e\u307e\u307eWord\u3084PowerPoint\u7ffb\u8a33\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\" class=\"wp-image-85191\" style=\"border-top-left-radius:7px;border-top-right-radius:7px;border-bottom-left-radius:7px;border-bottom-right-radius:7px;box-shadow:var(--wp--preset--shadow--natural)\"\/><\/figure>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30);height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Use multiple translation engines on one screen<\/h2>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">Yaraku Translate includes generative AI such as ChatGPT and Claude as translation engines. After entering a prompt and translating, you can edit the results directly in Yaraku Translate.<\/p>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">It also comes with machine translation engines such as Google Translate, so you can choose the right engine for each use case.<\/p>\n\n\n\n<figure class=\"wp-block-image alignwide size-full has-custom-border\" style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)\"><img loading=\"lazy\" decoding=\"async\" width=\"1479\" height=\"737\" src=\"https:\/\/www.yaraku.com\/assets\/images\/features\/multi_engine_yaraku.png\" alt=\"Yaraku Translate\u306e\u7ffb\u8a33\u30a8\u30f3\u30b8\u30f3\u9078\u629e\u753b\u9762\uff1a\u751f\u6210AI\u3084Google\u7ffb\u8a33\u306a\u3069\u8907\u6570\u30a8\u30f3\u30b8\u30f3\u3092\u7528\u9014\u5225\u306b\u4f7f\u3044\u5206\u3051\" class=\"wp-image-85202\" style=\"border-top-left-radius:7px;border-top-right-radius:7px;border-bottom-left-radius:7px;border-bottom-right-radius:7px;box-shadow:var(--wp--preset--shadow--natural)\"\/><\/figure>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30);height:var(--wp--preset--spacing--70)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">How it works: lower costs and faster translation<\/h2>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">Yaraku Translate delivers high-quality translations and effortless post-editing, significantly reducing the workload for checks and reviews.<\/p>\n\n\n\n<p class=\"has-text-align-left wp-block-paragraph\">As a result, translations can be completed faster and translation costs can be significantly reduced.<\/p>\n\n\n\n<div class=\"wp-block-group alignfull has-gray-600-color has-text-color has-link-color wp-elements-7b2736d68e4b7b35bcec6e37707ce894 is-layout-flow wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-dc582610 wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><\/p>\n<\/div>\n<\/div>\n\n\n\n<style data-wp-block-html=\"css\">\n.sgraph-wrap {\n  position: relative;\n  max-width: 1200px;\n  margin: 0 auto;\n  width: 100%;\n  font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', sans-serif;\n}\n\n.sgraph-section {\n  background: #fff;\n  border: 1px solid #e4e8f2;\n  border-radius: 14px;\n  padding: 28px 32px 20px;\n  margin-bottom: 20px;\n  box-shadow: 0 2px 12px rgba(0,0,0,.06);\n  position: relative;\n}\n\n.sgraph-sec-title {\n  font-size: .82rem;\n  font-weight: 700;\n  color: #374151;\n  margin-bottom: 16px;\n  letter-spacing: .02em;\n}\n\n.sgraph-legend {\n  display: flex;\n  gap: 20px;\n  flex-wrap: wrap;\n  margin-bottom: 22px;\n}\n\n.sgraph-legend-item {\n  display: flex;\n  align-items: center;\n  gap: 6px;\n  font-size: .75rem;\n  color: #555;\n}\n\n.sgraph-legend-dot {\n  width: 11px;\n  height: 11px;\n  border-radius: 3px;\n  flex-shrink: 0;\n}\n\n.sgraph-badge {\n  display: inline-block;\n  font-size: .7rem;\n  font-weight: 700;\n  border-radius: 5px;\n  padding: 2px 9px;\n  white-space: nowrap;\n}\n\n.sgraph-badge--yz { background: #4f7bff; color: #fff; }\n.sgraph-badge--ai { background: #e67e22; color: #fff; }\n\n.sgraph-row {\n  display: flex;\n  align-items: center;\n  gap: 14px;\n  margin-bottom: 14px;\n}\n\n.sgraph-row-label {\n  width: 96px;\n  flex-shrink: 0;\n  text-align: right;\n}\n\n.sgraph-bar-track {\n  flex: 1;\n  display: flex;\n  height: 36px;\n  border-radius: 6px;\n  overflow: hidden;\n  background: #f3f4f6;\n  position: relative;\n}\n\n.sgraph-bar-seg {\n  height: 100%;\n  transition: width .9s cubic-bezier(.4,0,.2,1);\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  overflow: hidden;\n  position: relative;\n  flex-shrink: 0;\n}\n\n.sgraph-bar-seg--trans { background: #4f7bff; }\n.sgraph-bar-seg--edit  { background: #93c5fd; }\n.sgraph-bar-seg--fix   { background: #22c55e; }\n\n.sgraph-bar-label {\n  font-size: .65rem;\n  font-weight: 600;\n  color: rgba(255,255,255,.92);\n  white-space: nowrap;\n  opacity: 0;\n  transition: opacity .3s ease .8s;\n  padding: 0 5px;\n}\n\n.sgraph-bar-seg.is-labeled .sgraph-bar-label { opacity: 1; }\n\n.sgraph-total {\n  width: 52px;\n  flex-shrink: 0;\n  font-size: .8rem;\n  font-weight: 700;\n  color: #374151;\n  text-align: left;\n  white-space: nowrap;\n  opacity: 0;\n  transition: opacity .4s ease 1s;\n}\n\n.sgraph-total.is-visible { opacity: 1; }\n\n.sgraph-xaxis {\n  display: flex;\n  justify-content: space-between;\n  padding: 6px 0 0 110px;\n  font-size: .68rem;\n  color: #9ca3af;\n}\n\n.sgraph-section--cost { padding-bottom: 20px; }\n\n.sgraph-bar-seg--cost-yz {\n  background: linear-gradient(90deg, #4f7bff 0%, #6d93ff 100%);\n}\n\n.sgraph-bar-seg--cost-ai {\n  background: linear-gradient(90deg, #e67e22 0%, #fb923c 100%);\n}\n\n.sgraph-cost-badge {\n  display: inline-flex;\n  align-items: center;\n  gap: 6px;\n  background: #fffbeb;\n  border: 1px solid #fcd34d;\n  border-radius: 20px;\n  padding: 7px 16px;\n  font-size: .82rem;\n  color: #92400e;\n  margin-top: 14px;\n  opacity: 0;\n  transform: translateY(6px);\n  transition: opacity .5s ease, transform .5s ease;\n}\n\n.sgraph-cost-badge.is-visible { opacity: 1; transform: none; }\n\n.sgraph-cost-badge strong { color: #b45309; font-size: .95rem; }\n\n@media (max-width: 620px) {\n  .sgraph-section { padding: 20px 16px 16px; }\n  .sgraph-row { gap: 8px; }\n  .sgraph-row-label { width: 72px; }\n  .sgraph-xaxis { padding-left: 80px; font-size: .6rem; }\n}\n<\/style>\n\n<script data-wp-block-html=\"js\">\n(function () {\n  'use strict';\n\n  var TIME_MAX = 12;\n  var COST_MAX = 100;\n\n  var DATA = {\n    yz: { trans: 1.5, edit: 1.0, fix: 0.5 }, \/\/ Total 3h\n    ai: { trans: 2.0, edit: 5.0, fix: 3.0 }  \/\/ Total 10h\n  };\n  var COST = { yz: 30, ai: 100 };\n\n  function init() {\n    var wrap = document.getElementById('ssecAnimWrap');\n    if (!wrap) return;\n\n    var sgAiTrans    = document.getElementById('sgAiTrans');\n    var sgAiEdit     = document.getElementById('sgAiEdit');\n    var sgAiFix      = document.getElementById('sgAiFix');\n    var sgAiTransLbl = document.getElementById('sgAiTransLbl');\n    var sgAiEditLbl  = document.getElementById('sgAiEditLbl');\n    var sgAiFixLbl   = document.getElementById('sgAiFixLbl');\n    var sgAiTotal    = document.getElementById('sgAiTotal');\n\n    var sgYzTrans    = document.getElementById('sgYzTrans');\n    var sgYzEdit     = document.getElementById('sgYzEdit');\n    var sgYzFix      = document.getElementById('sgYzFix');\n    var sgYzTransLbl = document.getElementById('sgYzTransLbl');\n    var sgYzEditLbl  = document.getElementById('sgYzEditLbl');\n    var sgYzFixLbl   = document.getElementById('sgYzFixLbl');\n    var sgYzTotal    = document.getElementById('sgYzTotal');\n\n    var sgCostAiBar   = document.getElementById('sgCostAiBar');\n    var sgCostAiLbl   = document.getElementById('sgCostAiLbl');\n    var sgCostAiTotal = document.getElementById('sgCostAiTotal');\n    var sgCostYzBar   = document.getElementById('sgCostYzBar');\n    var sgCostYzLbl   = document.getElementById('sgCostYzLbl');\n    var sgCostYzTotal = document.getElementById('sgCostYzTotal');\n    var sgCostBadge   = document.getElementById('sgCostBadge');\n    var sgCostDiff    = document.getElementById('sgCostDiff');\n\n    var timers = [];\n\n    function delay(fn, ms) {\n      var t = setTimeout(fn, ms); timers.push(t); return t;\n    }\n    function clearAllTimers() {\n      timers.forEach(function (t) { clearTimeout(t); }); timers = [];\n    }\n\n    function setBar(el, lbl, pct, labelText) {\n      if (!el) return;\n      el.style.width = pct + '%';\n      if (lbl) {\n        lbl.textContent = labelText;\n        setTimeout(function () {\n          if (pct > 6) el.classList.add('is-labeled');\n        }, 950);\n      }\n    }\n\n    function reset() {\n      [sgAiTrans, sgAiEdit, sgAiFix, sgYzTrans, sgYzEdit, sgYzFix].forEach(function (el) {\n        if (el) { el.style.width = '0%'; el.classList.remove('is-labeled'); }\n      });\n      [sgAiTransLbl, sgAiEditLbl, sgAiFixLbl,\n       sgYzTransLbl, sgYzEditLbl, sgYzFixLbl].forEach(function (el) {\n        if (el) el.textContent = '';\n      });\n      [sgAiTotal, sgYzTotal].forEach(function (el) {\n        if (el) { el.textContent = '\u2014'; el.classList.remove('is-visible'); }\n      });\n      [sgCostAiBar, sgCostYzBar].forEach(function (el) {\n        if (el) { el.style.width = '0%'; el.classList.remove('is-labeled'); }\n      });\n      [sgCostAiLbl, sgCostYzLbl].forEach(function (el) {\n        if (el) el.textContent = '';\n      });\n      [sgCostAiTotal, sgCostYzTotal].forEach(function (el) {\n        if (el) { el.textContent = '\u2014'; el.classList.remove('is-visible'); }\n      });\n      if (sgCostBadge) sgCostBadge.classList.remove('is-visible');\n      if (sgCostDiff)  sgCostDiff.textContent = '\u2014';\n    }\n\n    function runSequence() {\n      clearAllTimers();\n      reset();\n\n      \/* \u2460 Time graph: Gen AI, etc. (first) *\/\n      delay(function () { setBar(sgAiTrans, sgAiTransLbl, (DATA.ai.trans \/ TIME_MAX) * 100, '2h');    }, 400);\n      delay(function () { setBar(sgAiEdit,  sgAiEditLbl,  (DATA.ai.edit  \/ TIME_MAX) * 100, '5h'); }, 700);\n      delay(function () { setBar(sgAiFix,   sgAiFixLbl,   (DATA.ai.fix   \/ TIME_MAX) * 100, '3h');   }, 1000);\n      delay(function () {\n        var t = DATA.ai.trans + DATA.ai.edit + DATA.ai.fix;\n        if (sgAiTotal) { sgAiTotal.textContent = t + 'h'; sgAiTotal.classList.add('is-visible'); }\n      }, 1800);\n\n      \/* \u2461 Time graph: Yaraku Translate (second) *\/\n      delay(function () { setBar(sgYzTrans, sgYzTransLbl, (DATA.yz.trans \/ TIME_MAX) * 100, '1.5h');  }, 1200);\n      delay(function () { setBar(sgYzEdit,  sgYzEditLbl,  (DATA.yz.edit  \/ TIME_MAX) * 100, '1h'); }, 1500);\n      delay(function () { setBar(sgYzFix,   sgYzFixLbl,   (DATA.yz.fix   \/ TIME_MAX) * 100, '0.5h'); }, 1800);\n      delay(function () {\n        var t = DATA.yz.trans + DATA.yz.edit + DATA.yz.fix;\n        if (sgYzTotal) { sgYzTotal.textContent = t + 'h'; sgYzTotal.classList.add('is-visible'); }\n      }, 2600);\n\n      \/* \u2462 Cost graph: Gen AI, etc. (first) *\/\n      delay(function () { setBar(sgCostAiBar, sgCostAiLbl, (COST.ai \/ COST_MAX) * 100, '100'); }, 2700);\n      delay(function () {\n        if (sgCostAiTotal) { sgCostAiTotal.textContent = '100'; sgCostAiTotal.classList.add('is-visible'); }\n      }, 3500);\n\n      \/* \u2463 Cost graph: Yaraku Translate (second) *\/\n      delay(function () { setBar(sgCostYzBar, sgCostYzLbl, (COST.yz \/ COST_MAX) * 100, '30'); }, 3000);\n      delay(function () {\n        if (sgCostYzTotal) { sgCostYzTotal.textContent = '30'; sgCostYzTotal.classList.add('is-visible'); }\n      }, 3800);\n\n      \/* \u2464 Cost reduction badge *\/\n      delay(function () {\n        if (sgCostDiff)  sgCostDiff.textContent = 'Up to 70%';\n        if (sgCostBadge) sgCostBadge.classList.add('is-visible');\n      }, 4200);\n    }\n\n    \/* Intersection Observer: auto-play on scroll *\/\n    if ('IntersectionObserver' in window) {\n      var observer = new IntersectionObserver(function (entries) {\n        entries.forEach(function (entry) {\n          if (entry.isIntersecting) { observer.unobserve(entry.target); runSequence(); }\n        });\n      }, { threshold: 0.2 });\n      observer.observe(wrap);\n    } else {\n      runSequence(); \/* Fallback for unsupported browsers: play immediately *\/\n    }\n  }\n\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', init);\n  } else {\n    init();\n  }\n\n})();\n<\/script>\n\n<div class=\"sgraph-wrap\" id=\"ssecAnimWrap\">\n\n  <!-- ===== \u4e0a\u6bb5\uff1aTime breakdown to complete translation\uff08\u6a2a\u7a4d\u307f\u68d2\uff09 ===== -->\n  <div class=\"sgraph-section\">\n    <div class=\"sgraph-sec-title\">Breakdown of time to translation completion<\/div>\n\n    <!-- \u51e1\u4f8b -->\n    <div class=\"sgraph-legend\">\n      <span class=\"sgraph-legend-item\">\n        <span class=\"sgraph-legend-dot\" style=\"background:#4f7bff\"><\/span>Translation\n      <\/span>\n      <span class=\"sgraph-legend-item\">\n        <span class=\"sgraph-legend-dot\" style=\"background:#93c5fd\"><\/span>Review &amp; Post-editing \n      <\/span>\n      <span class=\"sgraph-legend-item\">\n        <span class=\"sgraph-legend-dot\" style=\"background:#22c55e\"><\/span>Revision &amp; Rework\n      <\/span>\n    <\/div>\n\n    <!-- Gen AI, etc. \u884c\uff08\u5148\uff09 -->\n    <div class=\"sgraph-row\" id=\"sgRowAi\">\n      <div class=\"sgraph-row-label\">\n        <span class=\"sgraph-badge sgraph-badge--ai\">Gen AI, etc.<\/span>\n      <\/div>\n      <div class=\"sgraph-bar-track\">\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--trans\" id=\"sgAiTrans\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgAiTransLbl\"><\/span>\n        <\/div>\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--edit\" id=\"sgAiEdit\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgAiEditLbl\"><\/span>\n        <\/div>\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--fix\" id=\"sgAiFix\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgAiFixLbl\"><\/span>\n        <\/div>\n      <\/div>\n      <div class=\"sgraph-total\" id=\"sgAiTotal\">\u2014<\/div>\n    <\/div>\n\n    <!-- Yaraku Translate \u884c\uff08\u5f8c\uff09 -->\n    <div class=\"sgraph-row\" id=\"sgRowYz\">\n      <div class=\"sgraph-row-label\">\n        <span class=\"sgraph-badge sgraph-badge--yz\">Yaraku Translate<\/span>\n      <\/div>\n      <div class=\"sgraph-bar-track\">\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--trans\" id=\"sgYzTrans\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgYzTransLbl\"><\/span>\n        <\/div>\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--edit\" id=\"sgYzEdit\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgYzEditLbl\"><\/span>\n        <\/div>\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--fix\" id=\"sgYzFix\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgYzFixLbl\"><\/span>\n        <\/div>\n      <\/div>\n      <div class=\"sgraph-total\" id=\"sgYzTotal\">\u2014<\/div>\n    <\/div>\n\n    <!-- X\u8ef8 -->\n    <div class=\"sgraph-xaxis\">\n      <span>0h<\/span><span>2h<\/span><span>4h<\/span><span>6h<\/span><span>8h<\/span><span>10h<\/span><span>12h<\/span>\n    <\/div>\n  <\/div><!-- \/.sgraph-section -->\n\n  <!-- ===== \u4e0b\u6bb5\uff1a\u30b3\u30b9\u30c8\u6bd4\u8f03\uff08\u6a2a\u68d2\u30b0\u30e9\u30d5\uff09 ===== -->\n  <div class=\"sgraph-section sgraph-section--cost\">\n    <div class=\"sgraph-sec-title\">Total cost comparison (Gen AI, etc. = 100)<\/div>\n\n    <!-- Gen AI, etc. \u884c\uff08\u5148\uff09 -->\n    <div class=\"sgraph-row\">\n      <div class=\"sgraph-row-label\">\n        <span class=\"sgraph-badge sgraph-badge--ai\">Gen AI, etc.<\/span>\n      <\/div>\n      <div class=\"sgraph-bar-track\">\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--cost-ai\" id=\"sgCostAiBar\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgCostAiLbl\"><\/span>\n        <\/div>\n      <\/div>\n      <div class=\"sgraph-total\" id=\"sgCostAiTotal\">\u2014<\/div>\n    <\/div>\n\n    <!-- Yaraku Translate \u884c\uff08\u5f8c\uff09 -->\n    <div class=\"sgraph-row\">\n      <div class=\"sgraph-row-label\">\n        <span class=\"sgraph-badge sgraph-badge--yz\">Yaraku Translate<\/span>\n      <\/div>\n      <div class=\"sgraph-bar-track\">\n        <div class=\"sgraph-bar-seg sgraph-bar-seg--cost-yz\" id=\"sgCostYzBar\" style=\"width:0%\">\n          <span class=\"sgraph-bar-label\" id=\"sgCostYzLbl\"><\/span>\n        <\/div>\n      <\/div>\n      <div class=\"sgraph-total\" id=\"sgCostYzTotal\">\u2014<\/div>\n    <\/div>\n\n    <!-- X\u8ef8 -->\n    <div class=\"sgraph-xaxis\">\n      <span>0<\/span><span>25<\/span><span>50<\/span><span>75<\/span><span>100<\/span>\n    <\/div>\n\n    <!-- \u30b3\u30b9\u30c8\u524a\u6e1b\u30d0\u30c3\u30b8 -->\n    <div class=\"sgraph-cost-badge\" id=\"sgCostBadge\">\n      <svg viewBox=\"0 0 16 16\" fill=\"none\" width=\"14\" height=\"14\" aria-hidden=\"true\">\n        <path d=\"M8 3l1.2 3.6H13l-3 2.2 1.1 3.6L8 10.5l-3.1 1.9L6 8.8l-3-2.2h3.8z\" fill=\"#f59e0b\"><\/path>\n      <\/svg>\n      Reduce costs by <strong id=\"sgCostDiff\">\u2014<\/strong>\n    <\/div>\n\n  <\/div><!-- \/.sgraph-section--cost -->\n\n<\/div><!-- \/.sgraph-wrap -->\n\n\n\n<p class=\"has-text-align-right alignwide wp-block-paragraph\" style=\"font-size:0.7rem\">* Reference: <a href=\"https:\/\/www.yaraku.com\/news\/cost-reduction_case\/\" target=\"_blank\" rel=\"noreferrer noopener\">Reduced translation costs by up to 70% with an AI translation workspace<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u3000<\/p>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-752344f3 wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-930d3512 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a02e3e81 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/translate.yaraku.com\/company-signup\">Try for free<\/a><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a02e3e81 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-outline is-style-outline--2\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.yaraku.com\/en\/contact\/\">Contact us<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div style=\"height:var(--wp--preset--spacing--60)\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<style>\n.scroll-fade-img {\n  opacity: 0;\n  transform: translateY(24px);\n  transition: opacity 0.7s ease, transform 0.7s ease;\n}\n.scroll-fade-img.is-visible {\n  opacity: 1;\n  transform: translateY(0);\n}\n<\/style>\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  function addFade() {\n    document.querySelectorAll(\n      \".wp-block-image img, .wp-block-media-text img, figure.wp-block-image img\"\n    ).forEach(function (img) {\n      if (!img.classList.contains(\"scroll-fade-img\")) {\n        img.classList.add(\"scroll-fade-img\");\n        obs.observe(img);\n      }\n    });\n  }\n\n  function revealInstant() {\n    document.querySelectorAll(\".scroll-fade-img\").forEach(function (img) {\n      var rect = img.getBoundingClientRect();\n      var inView = rect.top < window.innerHeight;\n      var aboveBottom = rect.bottom > 0;\n      if (inView && aboveBottom) {\n        img.style.transition = \"none\";\n        img.classList.add(\"is-visible\");\n        setTimeout(function () { img.style.transition = \"\"; }, 50);\n      }\n    });\n  }\n\n  var obs = new IntersectionObserver(function (entries) {\n    entries.forEach(function (e) {\n      if (e.isIntersecting) {\n        e.target.classList.add(\"is-visible\");\n        obs.unobserve(e.target);\n      }\n    });\n  }, { threshold: 0.1 });\n\n  addFade();\n\n  \/\/ Flag to track whether lightbox has been opened\n  var lightboxWasOpen = false;\n\n  var mo = new MutationObserver(function (mutations) {\n    mutations.forEach(function (mut) {\n      var el = mut.target;\n      if (!el.classList.contains(\"wp-lightbox-overlay\")) { return; }\n      if (el.classList.contains(\"active\")) {\n        \/\/ Lightbox opened\n        lightboxWasOpen = true;\n      } else if (lightboxWasOpen) {\n        \/\/ Lightbox was opened then closed \u2192 restore after 500ms\n        lightboxWasOpen = false;\n        setTimeout(function () {\n          addFade();\n          revealInstant();\n        }, 500);\n      }\n    });\n  });\n  mo.observe(document.body, { attributes: true, subtree: true, attributeFilter: [\"class\"] });\n});\n<\/script>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<div style=\"text-align: right; font-size: 10px; color: #888888; margin-top: 20px; margin-bottom: 20px; pointer-events: none; user-select: none; width: 100%;\">\n\u203bThis page has been automatically translated by AI.\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Features Features of Yaraku Translate AI + You = Smarter Translation Elevating quality and accelerating speed through AI and human editing. Phrases &amp; Glossary Machine Translation User Applied to machine translation Human review Add to Phrases and Glossary Achieve high-quality translations with Yaraku Translate \u3000 With Yaraku Translate, you can translate while applying glossaries that [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"content-type":"","footnotes":""},"class_list":["post-72389","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Features - &quot;Yaraku Translate&quot; Translation-specialized AI<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.yaraku.com\/en\/features\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Features - &quot;Yaraku Translate&quot; Translation-specialized AI\" \/>\n<meta property=\"og:description\" content=\"Features Features of Yaraku Translate AI + You = Smarter Translation Elevating quality and accelerating speed through AI and human editing. Phrases &amp; Glossary Machine Translation User Applied to machine translation Human review Add to Phrases and Glossary Achieve high-quality translations with Yaraku Translate \u3000 With Yaraku Translate, you can translate while applying glossaries that [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.yaraku.com\/en\/features\/\" \/>\n<meta property=\"og:site_name\" content=\"Yaraku Translate, an AI translation workspace for teams.\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-07T03:07:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png\" \/>\n\t<meta property=\"og:image:width\" content=\"978\" \/>\n\t<meta property=\"og:image:height\" content=\"584\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Features - &quot;Yaraku Translate&quot; Translation-specialized AI\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/\",\"url\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/\",\"name\":\"Features - \\\"Yaraku Translate\\\" Translation-specialized AI\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.yaraku.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/yaraku_hinshitsu.png\",\"datePublished\":\"2026-02-03T15:18:03+00:00\",\"dateModified\":\"2026-07-07T03:07:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.yaraku.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/yaraku_hinshitsu.png\",\"contentUrl\":\"https:\\\/\\\/www.yaraku.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/yaraku_hinshitsu.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/features\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.yaraku.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Features of Yaraku Translate\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.yaraku.com\\\/#website\",\"url\":\"https:\\\/\\\/www.yaraku.com\\\/\",\"name\":\"\u30e4\u30e9\u30af\u7ffb\u8a33\",\"description\":\"From AI-powered translation to editing, sharing, and outsourcing to professional agencies \u2014 all in one platform. Enterprise-grade security, intuitive interface, and over 1,000 manufacturers already trust us. Cut translation costs by up to 70%.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.yaraku.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Features - \"Yaraku Translate\" Translation-specialized AI","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.yaraku.com\/en\/features\/","og_locale":"en_US","og_type":"article","og_title":"Features - \"Yaraku Translate\" Translation-specialized AI","og_description":"Features Features of Yaraku Translate AI + You = Smarter Translation Elevating quality and accelerating speed through AI and human editing. Phrases &amp; Glossary Machine Translation User Applied to machine translation Human review Add to Phrases and Glossary Achieve high-quality translations with Yaraku Translate \u3000 With Yaraku Translate, you can translate while applying glossaries that [&hellip;]","og_url":"https:\/\/www.yaraku.com\/en\/features\/","og_site_name":"Yaraku Translate, an AI translation workspace for teams.","article_modified_time":"2026-07-07T03:07:05+00:00","og_image":[{"width":978,"height":584,"url":"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_title":"Features - \"Yaraku Translate\" Translation-specialized AI","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.yaraku.com\/en\/features\/","url":"https:\/\/www.yaraku.com\/en\/features\/","name":"Features - \"Yaraku Translate\" Translation-specialized AI","isPartOf":{"@id":"https:\/\/www.yaraku.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.yaraku.com\/en\/features\/#primaryimage"},"image":{"@id":"https:\/\/www.yaraku.com\/en\/features\/#primaryimage"},"thumbnailUrl":"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png","datePublished":"2026-02-03T15:18:03+00:00","dateModified":"2026-07-07T03:07:05+00:00","breadcrumb":{"@id":"https:\/\/www.yaraku.com\/en\/features\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.yaraku.com\/en\/features\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.yaraku.com\/en\/features\/#primaryimage","url":"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png","contentUrl":"https:\/\/www.yaraku.com\/wp-content\/uploads\/2026\/06\/yaraku_hinshitsu.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.yaraku.com\/en\/features\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.yaraku.com\/en\/"},{"@type":"ListItem","position":2,"name":"Features of Yaraku Translate"}]},{"@type":"WebSite","@id":"https:\/\/www.yaraku.com\/#website","url":"https:\/\/www.yaraku.com\/","name":"\u30e4\u30e9\u30af\u7ffb\u8a33","description":"From AI-powered translation to editing, sharing, and outsourcing to professional agencies \u2014 all in one platform. Enterprise-grade security, intuitive interface, and over 1,000 manufacturers already trust us. Cut translation costs by up to 70%.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.yaraku.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/pages\/72389","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/comments?post=72389"}],"version-history":[{"count":18,"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/pages\/72389\/revisions"}],"predecessor-version":[{"id":87546,"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/pages\/72389\/revisions\/87546"}],"wp:attachment":[{"href":"https:\/\/www.yaraku.com\/en\/wp-json\/wp\/v2\/media?parent=72389"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}