Skip to content

Commit 3b3c434

Browse files
authored
feat: order translation docs (#746)
1 parent 98253bd commit 3b3c434

17 files changed

+157
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
slug: order-professional-translation
3+
title: 'Introducing Tolgee’s New Professional Translation Feature! 🌍✨'
4+
description: "Expand globally with Tolgee’s new professional translation feature—easily order, manage, and collaborate with agencies in one platform!"
5+
image: /img/blog/order-translation/cover-light.webp
6+
authors: [sgranat]
7+
tags: ['tolgee', 'dobco', 'next.js', 'integration']
8+
---
9+
10+
import ThemedImage from '@theme/ThemedImage';
11+
import useBaseUrl from '@docusaurus/useBaseUrl';
12+
13+
<ThemedImage
14+
alt="CSV Support Blog image"
15+
sources={{
16+
light: useBaseUrl(
17+
'/img/blog/order-translation/cover-light.webp'
18+
),
19+
dark: useBaseUrl(
20+
'/img/blog/order-translation/cover-dark.webp'
21+
),
22+
}}
23+
/>
24+
25+
<!-- truncate-->
26+
27+
Expand Your Reach with Tolgee’s New Professional Translation Feature! 🌍✨
28+
29+
Tolgee's latest feature—Order Professional Translation—makes it easier than ever to connect with global audiences by bringing expert translations directly into your project workflow! 🚀
30+
31+
### With just a few clicks, you can:
32+
33+
- Select a trusted agency from within Tolgee 🌐
34+
- Create translation tasks tailored to your specific needs 🎯
35+
- Collaborate seamlessly with your chosen agency right in the platform 🤝
36+
37+
No more juggling with translation files! This feature keeps everything in one place, giving you more time to focus on what you do best while Tolgee handles the translation process effortlessly. 🌟
38+
39+
### Ready to go global?
40+
41+
🌏 This feature is available for business and enterprise plans—unlock it today and start reaching new audiences with ease! For more info [check the documentation](/platform/projects_and_organizations/order_translation).
42+
43+
[![React banner](/img/blog/blog-banners/banner-demo.webp)](https://app.tolgee.io/sign_up)

package-lock.json

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"@types/react-router-dom": "^5.1.7",
4343
"@types/styled-components": "5.1.14",
4444
"@typescript-eslint/parser": "^7.5.0",
45+
"@untitled-ui/icons-react": "^0.1.3",
4546
"autoprefixer": "10.4.7",
4647
"clsx": "^1.1.1",
4748
"docusaurus-plugin-image-zoom": "^1.0.1",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
---
2+
id: order_translation
3+
title: Ordering professional translation
4+
---
5+
6+
import { ScreenshotWrapper } from '../shared/_ScreenshotWrapper';
7+
8+
:::info Feature availability
9+
Professional translations are introduced in business and enterprise plans. [Upgrade your plan](https://tolgee.io/pricing) to use this feature.
10+
11+
The feature is only available in Tolgee Cloud.
12+
:::
13+
14+
## Ordering professional translation
15+
16+
Go to the `Tasks` section in the project menu and click the `[Buy] Translation` button:
17+
18+
<ScreenshotWrapper
19+
src="/img/docs/platform/order-translation/order-translation-empty.webp"
20+
alt="Tasks page with order translation button"
21+
/>
22+
23+
You can also order translation directly from batch operations, to select exectly which keys should be included.
24+
25+
<ScreenshotWrapper
26+
src="/img/docs/platform/order-translation/order-translation-batch-operation.webp"
27+
alt="Task batch operations"
28+
/>
29+
30+
You will see a list of agencies to pick. Select the agency and follow the `Next` step.
31+
32+
<ScreenshotWrapper
33+
src="/img/docs/platform/order-translation/order-translation-agencies.webp"
34+
alt="Order translation agencies list"
35+
/>
36+
37+
Now, you can create a task for the agency, similar to a [regular task](./tasks.mdx). You can filter which languages and keys to include.
38+
39+
<ScreenshotWrapper
40+
src="/img/docs/platform/order-translation/order-translation-task.webp"
41+
alt="Order translation task creation"
42+
/>
43+
44+
You can invite the agency to your project immediately (with VIEW permissions).
45+
46+
## What happens next?
47+
48+
Once you `Request quote`, an agency task is created for each language.
49+
50+
<ScreenshotWrapper
51+
src="/img/docs/platform/order-translation/order-translation-agency-tasks.webp"
52+
alt="Agency task"
53+
/>
54+
55+
The agency will receive your request with an overview of the tasks (number of keys, words and characters).
56+
57+
They'll also receive your email address and contact you with a price estimate and you'll get an order confirmation on your email.
58+
59+
## Agency access to the project
60+
61+
You should see a pending invitation in the `Members` section if you've invited agency directly into the project.
62+
63+
<ScreenshotWrapper
64+
src="/img/docs/platform/order-translation/order-translation-invitation.webp"
65+
alt="Agency invitation"
66+
/>
67+
68+
If you want to invite an agency later, you can do the same operation through the `Invite user` button. In the dialog, click on the `Agency tab`.
69+
70+
<ScreenshotWrapper
71+
src="/img/docs/platform/order-translation/order-translation-invitation-dialog.webp"
72+
alt="Agency invitation dialog"
73+
/>
74+
75+
Once someone from the agency accepts the invitation, you'll see his account in the `Members` section.
76+
77+
<ScreenshotWrapper
78+
src="/img/docs/platform/order-translation/order-translation-member.webp"
79+
alt="Agency member"
80+
/>
81+
82+
All the agency members are marked, and you can filter them to see who has access to your project.
83+
84+
## Elevating agency permissions
85+
86+
Depending on the requirements, you can change agency account permissions to `Translate`, `Review` or `Manage`. If you want the agency to work more independently, you can grant them `Manage` access. This will allow them to make changes to your project, like inviting more members and creating new tasks.
87+
88+
Tolgee will mark all new users invited by the agency members as agency members as well, and all the tasks will also have an agency label. This way, you can easily distinguish what the agency is doing in your project.

platform/translation_keys/batch_operations.mdx

+8
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ Next, you can select the batch operation you want to perform from the dropdown l
4545

4646
- **Export translations** – This allows you to select exactly which keys you want to export, otherwise it works the same as [Export page](../projects_and_organizations/export.mdx).
4747

48+
- **Create task** – This operation allows you to create translation/review task with precisely selected keys.
49+
50+
- **Add keys to task** - Add aditional keys to existing task.
51+
52+
- **Remove keys from task** - Remove keys from existing task (only available when task is open).
53+
54+
- **Order professional translation** - Order translation from external agency for selected keys.
55+
4856
- **Add tags** – With this operation, you can add one or multiple tags to selected keys.
4957

5058
- **Remove tags** – This operation removes one or multiple tags from selected keys if they have them.

sidebarPlatform.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'projects_and_organizations/machine-translation-settings',
2020
'projects_and_organizations/ai-translation-customization',
2121
'projects_and_organizations/tasks',
22+
'projects_and_organizations/order_translation',
2223
'projects_and_organizations/members',
2324
'projects_and_organizations/import',
2425
'projects_and_organizations/export',
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)