Skip to content

Commit

Permalink
[qa] fix missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoPennec committed Oct 17, 2023
1 parent 994a24c commit 5c00d87
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/lists/PreviewFileList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<td class="end-cell has-text-right">
<button-simple
class="mark-broken-button"
text="Mark as broken"
:text="$t('logs.preview_files.mark_broken')"
@click="$emit('mark-broken-clicked', previewFile.id)"
v-if="previewFile.status === 'processing'"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/Asset.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
currentAsset.castingAssetsByType[0].length > 0
"
>
<page-subtitle text="Linked" />
<page-subtitle :text="$t('assets.linked')" />
<div
v-if="
currentAsset.castingAssetsByType &&
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/MyChecks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<button-simple
class="flexrow-item"
@click="isPlaylist = true"
text="Build playlist from list"
:text="$t('tasks.build_playlist')"
/>
</div>

Expand Down
3 changes: 3 additions & 0 deletions src/locales/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default {
edit_title: 'Edit asset',
empty_list: 'There is no asset in the production. What about creating some?',
empty_list_client: 'There is no asset in this production.',
linked: 'Linked',
multiple_delete_error: 'An error occurred while deleting an asset. There is probably some data linked to an asset. Are you sure there is no task linked to a selected asset?',
only_current_episode: 'Only current episode',
new_asset: 'Create assets',
Expand Down Expand Up @@ -372,6 +373,7 @@ export default {
entity_name: 'Entity name',
explaination: 'This page lists all the preview files in an intermediary state: processing or broken. It lets you know how many preview files are processing or which files failed to be normalized and stored on Kitsu.',
file_name: 'File name',
mark_broken: 'Mark as broken',
person: 'User',
production: 'Production',
revision: 'Revision',
Expand Down Expand Up @@ -1225,6 +1227,7 @@ export default {
back_to_list: 'back to list',
bigger: 'Widen task panel',
big_thumbnails: 'Show big thumbnails',
build_playlist: 'Build playlist from list',
confirm_attachments: 'Add files as attachments',
change_status_to: 'Change task status to:',
change_status: 'Post comment',
Expand Down

0 comments on commit 5c00d87

Please sign in to comment.