Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions resources/js/pages/studio/upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -707,8 +707,10 @@
v-else
class="w-full h-full flex flex-col items-center justify-center text-white/70 text-xs bg-gray-800"
>
<span class="text-lg mb-1">No preview</span>
<span>Upload a video to see it here</span>
<span class="text-lg mb-1">{{
$t('studio.noPreview')
}}</span>
<span>{{ $t('studio.uploadPreviewHelp') }}</span>
</div>

<div
Expand Down Expand Up @@ -769,7 +771,7 @@
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
></path>
</svg>
{{ isSubmitting ? 'Posting...' : 'Post' }}
{{ isSubmitting ? $t('common.posting') : $t('common.post') }}
</button>
<button
@click="handleDiscard"
Expand Down