-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'crowdin:main' into feat/notification-api
- Loading branch information
Showing
9 changed files
with
863 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
crowdin_api/api_resources/reports/requests/cost_estimation_post_editing.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from typing import Iterable | ||
|
||
from crowdin_api.api_resources.reports.types import Match | ||
from crowdin_api.typing import TypedDict | ||
|
||
|
||
class IndividualRate(TypedDict): | ||
languageIds: Iterable[str] | ||
userIds: Iterable[int] | ||
fullTranslation: float | ||
proofread: float | ||
|
||
|
||
class NetRateSchemes(TypedDict): | ||
tmMatch: Iterable[Match] |
17 changes: 17 additions & 0 deletions
17
crowdin_api/api_resources/reports/requests/group_translation_costs_post_editing.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from typing import Iterable | ||
|
||
from crowdin_api.api_resources.reports.types import Match | ||
from crowdin_api.typing import TypedDict | ||
|
||
|
||
class IndividualRate(TypedDict): | ||
languageIds: Iterable[str] | ||
userIds: Iterable[int] | ||
fullTranslation: float | ||
proofread: float | ||
|
||
|
||
class NetRateSchemes(TypedDict): | ||
tmMatch: Iterable[Match] | ||
mtMatch: Iterable[Match] | ||
suggestionMatch: Iterable[Match] |
16 changes: 16 additions & 0 deletions
16
crowdin_api/api_resources/reports/requests/translation_costs_post_editing.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from typing import Iterable | ||
from crowdin_api.api_resources.reports.types import Match | ||
from crowdin_api.typing import TypedDict | ||
|
||
|
||
class IndividualRate(TypedDict): | ||
languageIds: Iterable[str] | ||
userIds: Iterable[int] | ||
fullTranslation: float | ||
proofread: float | ||
|
||
|
||
class NetRateSchemes(TypedDict): | ||
tmMatch: Iterable[Match] | ||
mtMatch: Iterable[Match] | ||
suggestionMatch: Iterable[Match] |
Oops, something went wrong.