Skip to content

Commit

Permalink
Deploying from phrase/openapi@79da87b1
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Jun 4, 2024
1 parent 7dbfdc2 commit d82c36d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29605,9 +29605,9 @@ components:
locale_report:
example:
completed_translations_count: 2
translated_translations_percentage: 6
translated_translations_percentage: 6.027456183070403
word_count_missing: 1
reviewed_translations_percentage: 5
reviewed_translations_percentage: 5.962133916683182
locale:
id: abcd1234cdef1234abcd1234cdef1234
name: English
Expand All @@ -29616,22 +29616,22 @@ components:
word_count_unverified: 7
word_count: 4
keys_count: 0
unverified_translations_percentage: 1
unverified_translations_percentage: 1.4658129805029452
untranslated_keys_count: 7
untranslated_keys_percentage: 5
untranslated_keys_percentage: 5.637376656633329
reviewed_translations_count: 3
source_word_count: 2
properties:
keys_count:
type: integer
translated_translations_percentage:
type: integer
type: number
unverified_translations_percentage:
type: integer
type: number
reviewed_translations_percentage:
type: integer
type: number
untranslated_keys_percentage:
type: integer
type: number
completed_translations_count:
type: integer
untranslated_keys_count:
Expand Down
8 changes: 4 additions & 4 deletions docs/LocaleReport.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**KeysCount** | **int32** | | [optional]
**TranslatedTranslationsPercentage** | **int32** | | [optional]
**UnverifiedTranslationsPercentage** | **int32** | | [optional]
**ReviewedTranslationsPercentage** | **int32** | | [optional]
**UntranslatedKeysPercentage** | **int32** | | [optional]
**TranslatedTranslationsPercentage** | **float32** | | [optional]
**UnverifiedTranslationsPercentage** | **float32** | | [optional]
**ReviewedTranslationsPercentage** | **float32** | | [optional]
**UntranslatedKeysPercentage** | **float32** | | [optional]
**CompletedTranslationsCount** | **int32** | | [optional]
**UntranslatedKeysCount** | **int32** | | [optional]
**UnverifiedTranslationsCount** | **int32** | | [optional]
Expand Down
8 changes: 4 additions & 4 deletions model_locale_report.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package phrase
// LocaleReport struct for LocaleReport
type LocaleReport struct {
KeysCount int32 `json:"keys_count,omitempty"`
TranslatedTranslationsPercentage int32 `json:"translated_translations_percentage,omitempty"`
UnverifiedTranslationsPercentage int32 `json:"unverified_translations_percentage,omitempty"`
ReviewedTranslationsPercentage int32 `json:"reviewed_translations_percentage,omitempty"`
UntranslatedKeysPercentage int32 `json:"untranslated_keys_percentage,omitempty"`
TranslatedTranslationsPercentage float32 `json:"translated_translations_percentage,omitempty"`
UnverifiedTranslationsPercentage float32 `json:"unverified_translations_percentage,omitempty"`
ReviewedTranslationsPercentage float32 `json:"reviewed_translations_percentage,omitempty"`
UntranslatedKeysPercentage float32 `json:"untranslated_keys_percentage,omitempty"`
CompletedTranslationsCount int32 `json:"completed_translations_count,omitempty"`
UntranslatedKeysCount int32 `json:"untranslated_keys_count,omitempty"`
UnverifiedTranslationsCount int32 `json:"unverified_translations_count,omitempty"`
Expand Down

0 comments on commit d82c36d

Please sign in to comment.