π€
Defending Against DDoS with AWS WAF: Focusing on User Experience
Running a website inevitably means facing abnormal traffic attacks. Especially when aiming for global services, the domain itself becomes more exposed, increasi...
hhlee
2024-11-12
π
3-Minute YouTube Shorts: Everything You Need to Know
What are 3-Minute YouTube Shorts?Starting October 15, a new update allows users in North America to upload YouTube Shorts up to 3 minutes long. With this update...
Junwoo
2024-10-31
π€
Developing a Global Version Website with GPT & Copilot
When developing a website, you might be tempted to focus solely on your native language. However, if you're offering a SaaS service that can be sold globally, i...
hhlee
2024-10-29
π£
Why Video Editors Choose Videostew Over Premiere
Eduplus is the educational media arm of ET Edu, an educational corporation under the Electronic Newspaper Media Group, established in December 2018 with the goa...
Junwoo
2024-10-24
ποΈ
[Update] Launch of AI Image Generation Feature
We have introduced a new feature that allows you to generate and use AI images directly from the library.No need for complex scene description prompts—AI images...
Junwoo
2024-10-18
π
The Best inVideo AI Alternative for Content Marketers
Hello there! With a plethora of AI-based video editing tools flooding the market these days, have you ever pondered which tool to pick as a content marketer?In ...
Junwoo
2024-09-26
π£
Engaging Students with VideoStew: Real-Life Examples and Practical Guide
Digital Transformation of Education Using AIIn today's educational landscape, digital transformation is no longer optional but a necessity.Especially with the i...
Junwoo
2024-09-04
π
Short-Form Content Strategies for Media Companies: 3 Essential Tips for Running a Successful YouTube Channel
Recently, traditional and online newspapers are paying attention to short-form content. This can be seen as a strategic move to adapt to changing media consumpt...
Junwoo
2024-08-28
When developing a website, you might be tempted to focus solely on your native language. However, if you're offering a SaaS service that can be sold globally, it feels like you're missing out. Of course, aiming for a grand global strategy can be daunting and resource-intensive. Our team has come up with our own method to develop in our native language while still supporting global needs, without breaking a sweat.
Translation Completed in the Editor
Drawbacks of the Variable Handling Method
Typical i18n libraries handle multilingual support in the following way. There are various methods, but the basic structure is as follows. You create keys for each message and display them according to the user's language. At first glance, this seems like the most logical method.
This method represents the simplest form of multilingual operation. It has the advantage of allowing you to flexibly add various languages as your business grows. However, if your business is not yet mature and you're working with a small development team, you might encounter the following transitional issues.
These are minor chores, but when developing the front end that interacts with user messages, these processes can waste the already scarce development resources.
Embedding Language Messages in Code
To minimize these inconveniences, the Videostew team is developing multilingual versions at the speed of a single native version. However, we are limiting the multilingual version to just "English." As the market expands, this approach won't be sustainable, but at least in the global initial stage, it is very useful for appealing to users who can use "English."
VideostewTeam registers and uses a global helper called directTrans on both the backend and frontend. The implementation of this code is quite simple. It takes a Korean message as the first parameter, and a global English message as the second parameter.
To display messages to the user, it can be done as simply as shown below.
You might think, "Don't I have to translate into English while coding anyway?" But absolutely not, if you're using Copilot or Cursor AI tools. These tools reference frequently used helpers, function definitions of open tabs, and input patterns, so they understand the usage of frequently used helpers very well, as shown above.
When you input dtrans('.. with Korean, it deduces that the translated English message is inserted as the second parameter, allowing you to create a global version while coding in the editor.
< Type only in your native Korean, and the auto-translated English is added >
This method overcomes all the disadvantages of the standard global version development mentioned above.
As mentioned earlier, this method aims to quickly implement a global version without much effort. It is not suitable for achieving more precise translation quality or creating multiple language versions. As the service grows, the language system needs to be changed.
Asynchronous Translation for Blogs
Beyond user messages in code, our service involves numerous messages and writings. Fixed pages like landing pages or terms can be translated once and that's it, but content that is dynamically created and modified, like guides or blogs, is challenging to keep up with manually.
At Videostew, we register guides in our native Korean and automatically estimate modified parts after a certain period, using the GPT model on the backend to translate them into English. While there are various API services for translation, using LLMs offers the following advantages:
In practice, when dealing with large guides (almost book-length), it's impossible to translate the entire content every time a change is made. Therefore, we create a hash based on the content of each paragraph and only track and automatically translate the paragraphs that change.
< Hash values for modifying only changing paragraphs >
This type of call (though we don't use it) might be more cost-effective with GPT's bulk call discounts, allowing for more affordable mass translations.
Below is the address of this blog post provided in both Korean and English. The English version is the result of GPT's automatic translation, considering the characteristics of our service.
Customer Support Response
We create and use our own chatbot to ensure a perfectly consistent customer experience and real-time user information integration. For users whose information is not in their native language, the chatbot automatically attaches the native language alongside the original. When we respond in the native language, it is translated back into the user's language and delivered.
< Automatic translation for non-native questions >
This reduces delays caused by translations and enables us to provide seamless global service.
Conclusion
Many services have already adopted GPT for development and operations. For small teams like Videostew, using AI tools such as GPT allows us to efficiently offer global services.