@sigmaott/base-next 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/hyrd-ui.preset.ts +463 -0
- package/i18n.config.ts +3 -0
- package/locales/en.yaml +719 -0
- package/locales/vi.yaml +726 -0
- package/nuxt-config.ts +23 -0
- package/nuxt.config.ts +267 -0
- package/package.json +119 -0
- package/public/routes.json +34 -0
- package/src/MediaInfoModule.wasm +0 -0
- package/src/api/api.ts +15 -0
- package/src/api/axios.ts +125 -0
- package/src/api/service-loading.ts +50 -0
- package/src/api-client-auth/.openapi-generator/FILES +83 -0
- package/src/api-client-auth/.openapi-generator/VERSION +1 -0
- package/src/api-client-auth/.openapi-generator-ignore +23 -0
- package/src/api-client-auth/api/admin-groups-api.ts +612 -0
- package/src/api-client-auth/api/admin-members-api.ts +708 -0
- package/src/api-client-auth/api/administration-api-groups-api.ts +547 -0
- package/src/api-client-auth/api/administration-apps-api.ts +709 -0
- package/src/api-client-auth/api/administration-packages-api.ts +547 -0
- package/src/api-client-auth/api/api-groups-api.ts +296 -0
- package/src/api-client-auth/api/apps-api.ts +1613 -0
- package/src/api-client-auth/api/basic-credential-api.ts +950 -0
- package/src/api-client-auth/api/groups-api.ts +702 -0
- package/src/api-client-auth/api/members-api.ts +708 -0
- package/src/api-client-auth/api/members-on-premise-api.ts +351 -0
- package/src/api-client-auth/api/packages-api.ts +296 -0
- package/src/api-client-auth/api/users-api.ts +1387 -0
- package/src/api-client-auth/api.ts +30 -0
- package/src/api-client-auth/base.ts +72 -0
- package/src/api-client-auth/common.ts +150 -0
- package/src/api-client-auth/configuration.ts +101 -0
- package/src/api-client-auth/git_push.sh +57 -0
- package/src/api-client-auth/index.ts +18 -0
- package/src/api-client-auth/models/add-member-dto.ts +42 -0
- package/src/api-client-auth/models/admin-permission.ts +44 -0
- package/src/api-client-auth/models/api-group-collection.ts +57 -0
- package/src/api-client-auth/models/api-group.ts +80 -0
- package/src/api-client-auth/models/api.ts +44 -0
- package/src/api-client-auth/models/app-collection.ts +57 -0
- package/src/api-client-auth/models/app.ts +147 -0
- package/src/api-client-auth/models/backdoor-cred.ts +39 -0
- package/src/api-client-auth/models/basic-cred-collection.ts +57 -0
- package/src/api-client-auth/models/basic-cred.ts +83 -0
- package/src/api-client-auth/models/change-password-dto.ts +42 -0
- package/src/api-client-auth/models/create-admin-group-dto.ts +39 -0
- package/src/api-client-auth/models/create-api-group-dto.ts +42 -0
- package/src/api-client-auth/models/create-app-by-user-dto.ts +36 -0
- package/src/api-client-auth/models/create-app-dto.ts +65 -0
- package/src/api-client-auth/models/create-basic-cred-dto.ts +39 -0
- package/src/api-client-auth/models/create-group-dto.ts +39 -0
- package/src/api-client-auth/models/create-package-dto.ts +48 -0
- package/src/api-client-auth/models/create-user-dto.ts +60 -0
- package/src/api-client-auth/models/free-trial.ts +54 -0
- package/src/api-client-auth/models/general-app.ts +48 -0
- package/src/api-client-auth/models/generate-app-id.ts +30 -0
- package/src/api-client-auth/models/group-collection.ts +57 -0
- package/src/api-client-auth/models/group.ts +75 -0
- package/src/api-client-auth/models/index.ts +60 -0
- package/src/api-client-auth/models/invite-email-dto.ts +30 -0
- package/src/api-client-auth/models/invite-member-dto.ts +36 -0
- package/src/api-client-auth/models/live-stream-quota.ts +42 -0
- package/src/api-client-auth/models/login-dto.ts +36 -0
- package/src/api-client-auth/models/login-result.ts +39 -0
- package/src/api-client-auth/models/member-collection.ts +57 -0
- package/src/api-client-auth/models/member.ts +92 -0
- package/src/api-client-auth/models/package-collection.ts +57 -0
- package/src/api-client-auth/models/package-permission.ts +44 -0
- package/src/api-client-auth/models/package.ts +66 -0
- package/src/api-client-auth/models/permission.ts +44 -0
- package/src/api-client-auth/models/quota.ts +45 -0
- package/src/api-client-auth/models/re-get-password-dto.ts +30 -0
- package/src/api-client-auth/models/register-dto.ts +54 -0
- package/src/api-client-auth/models/register-through-email-dto.ts +36 -0
- package/src/api-client-auth/models/rename-app-dto.ts +30 -0
- package/src/api-client-auth/models/resend-confirmation-dto.ts +30 -0
- package/src/api-client-auth/models/resend-invitation-dto.ts +30 -0
- package/src/api-client-auth/models/resend-result.ts +36 -0
- package/src/api-client-auth/models/reset-password-dto.ts +36 -0
- package/src/api-client-auth/models/revoke-basic-dto.ts +38 -0
- package/src/api-client-auth/models/signup-result.ts +45 -0
- package/src/api-client-auth/models/token-check-result.ts +36 -0
- package/src/api-client-auth/models/trial-remaining-days.ts +42 -0
- package/src/api-client-auth/models/update-admin-group-dto.ts +39 -0
- package/src/api-client-auth/models/update-api-group-dto.ts +30 -0
- package/src/api-client-auth/models/update-app-by-admin-dto.ts +48 -0
- package/src/api-client-auth/models/update-app-by-user-dto.ts +36 -0
- package/src/api-client-auth/models/update-basic-cred-dto.ts +30 -0
- package/src/api-client-auth/models/update-group-dto.ts +39 -0
- package/src/api-client-auth/models/update-member-dto.ts +30 -0
- package/src/api-client-auth/models/update-package-dto.ts +42 -0
- package/src/api-client-auth/models/update-password-member-dto.ts +30 -0
- package/src/api-client-auth/models/update-user-by-user-dto.ts +48 -0
- package/src/api-client-auth/models/user.ts +120 -0
- package/src/api-client-auth/models/validate-app-id.ts +36 -0
- package/src/api-client-billing/.openapi-generator/FILES +38 -0
- package/src/api-client-billing/.openapi-generator/VERSION +1 -0
- package/src/api-client-billing/.openapi-generator-ignore +23 -0
- package/src/api-client-billing/api/invoice-api.ts +363 -0
- package/src/api-client-billing/api/payment-methods-api.ts +414 -0
- package/src/api-client-billing/api/payment-plan-api.ts +121 -0
- package/src/api-client-billing/api/subscriptions-api.ts +121 -0
- package/src/api-client-billing/api/usages-api.ts +121 -0
- package/src/api-client-billing/api/vnpay-provider-api.ts +327 -0
- package/src/api-client-billing/api.ts +23 -0
- package/src/api-client-billing/base.ts +72 -0
- package/src/api-client-billing/common.ts +150 -0
- package/src/api-client-billing/configuration.ts +101 -0
- package/src/api-client-billing/git_push.sh +57 -0
- package/src/api-client-billing/index.ts +18 -0
- package/src/api-client-billing/models/common-paginate-response.ts +48 -0
- package/src/api-client-billing/models/dto-billing-item-info.ts +60 -0
- package/src/api-client-billing/models/dto-billing-item.ts +36 -0
- package/src/api-client-billing/models/dto-create-draft-invoice-request.ts +33 -0
- package/src/api-client-billing/models/dto-create-draft-invoice-response.ts +57 -0
- package/src/api-client-billing/models/dto-create-vnpay-card-form.ts +48 -0
- package/src/api-client-billing/models/dto-return-uri-response.ts +30 -0
- package/src/api-client-billing/models/index.ts +22 -0
- package/src/api-client-billing/models/invoices-get200-response.ts +42 -0
- package/src/api-client-billing/models/model-charge.ts +47 -0
- package/src/api-client-billing/models/model-charges-usage.ts +57 -0
- package/src/api-client-billing/models/model-graduated-range.ts +48 -0
- package/src/api-client-billing/models/model-info.ts +42 -0
- package/src/api-client-billing/models/model-invoice.ts +105 -0
- package/src/api-client-billing/models/model-item-usage.ts +54 -0
- package/src/api-client-billing/models/model-payment-method.ts +135 -0
- package/src/api-client-billing/models/model-product.ts +51 -0
- package/src/api-client-billing/models/model-properties.ts +39 -0
- package/src/api-client-billing/models/model-quota.ts +48 -0
- package/src/api-client-billing/models/model-subscription.ts +51 -0
- package/src/api-client-billing/models/model-usage-payment.ts +87 -0
- package/src/api-client-billing/models/payment-methods-get200-response.ts +42 -0
- package/src/api-client-billing/models/subscriptions-get200-response.ts +42 -0
- package/src/api-client-machine/.openapi-generator/FILES +90 -0
- package/src/api-client-machine/.openapi-generator/VERSION +1 -0
- package/src/api-client-machine/.openapi-generator-ignore +23 -0
- package/src/api-client-machine/api/apps-config-api.ts +523 -0
- package/src/api-client-machine/api/component-clusters-api.ts +741 -0
- package/src/api-client-machine/api/expose-api.ts +141 -0
- package/src/api-client-machine/api/machine-actions-api.ts +850 -0
- package/src/api-client-machine/api/machines-api.ts +524 -0
- package/src/api-client-machine/api/networks-api.ts +375 -0
- package/src/api-client-machine/api/sigma-clusters-api.ts +741 -0
- package/src/api-client-machine/api/sigma-machine-actions-api.ts +292 -0
- package/src/api-client-machine/api/sigma-machine-apps-configuration-api.ts +523 -0
- package/src/api-client-machine/api/sigma-machines-api.ts +557 -0
- package/src/api-client-machine/api/sigma-vod-server-api.ts +478 -0
- package/src/api-client-machine/api/sigma-vod-server-app-config-api.ts +980 -0
- package/src/api-client-machine/api/transcoder-configuration-api.ts +359 -0
- package/src/api-client-machine/api.ts +30 -0
- package/src/api-client-machine/base.ts +72 -0
- package/src/api-client-machine/common.ts +150 -0
- package/src/api-client-machine/configuration.ts +101 -0
- package/src/api-client-machine/git_push.sh +57 -0
- package/src/api-client-machine/index.ts +18 -0
- package/src/api-client-machine/models/actions-to-app-dto.ts +38 -0
- package/src/api-client-machine/models/add-license-machine-dto.ts +30 -0
- package/src/api-client-machine/models/app-status.ts +47 -0
- package/src/api-client-machine/models/check-quota-limit-result.ts +36 -0
- package/src/api-client-machine/models/cluster-log.ts +54 -0
- package/src/api-client-machine/models/component-cluster-collection.ts +57 -0
- package/src/api-client-machine/models/component-cluster.ts +116 -0
- package/src/api-client-machine/models/create-component-machine-cluster-dto.ts +86 -0
- package/src/api-client-machine/models/create-sigma-machine-cluster-dto.ts +77 -0
- package/src/api-client-machine/models/create-vodroute-dto.ts +42 -0
- package/src/api-client-machine/models/decklink-collection.ts +57 -0
- package/src/api-client-machine/models/decklink.ts +42 -0
- package/src/api-client-machine/models/http-app.ts +45 -0
- package/src/api-client-machine/models/https-config.ts +42 -0
- package/src/api-client-machine/models/index.ts +67 -0
- package/src/api-client-machine/models/info-channel.ts +42 -0
- package/src/api-client-machine/models/ingest-app.ts +60 -0
- package/src/api-client-machine/models/ingest-config.ts +74 -0
- package/src/api-client-machine/models/ingest-update-config-dto.ts +68 -0
- package/src/api-client-machine/models/machine-cluster-collection.ts +57 -0
- package/src/api-client-machine/models/machine-cluster.ts +120 -0
- package/src/api-client-machine/models/machine-details-license.ts +42 -0
- package/src/api-client-machine/models/machine-details.ts +127 -0
- package/src/api-client-machine/models/machine-dto.ts +42 -0
- package/src/api-client-machine/models/machine-dump.ts +108 -0
- package/src/api-client-machine/models/machine.ts +42 -0
- package/src/api-client-machine/models/network-collection.ts +57 -0
- package/src/api-client-machine/models/network-interface.ts +36 -0
- package/src/api-client-machine/models/network.ts +66 -0
- package/src/api-client-machine/models/origin-config.ts +50 -0
- package/src/api-client-machine/models/origin-update-config-dto.ts +59 -0
- package/src/api-client-machine/models/packager-component-cluster.ts +42 -0
- package/src/api-client-machine/models/packager-live-cluster.ts +42 -0
- package/src/api-client-machine/models/packager-to-component-cluster.ts +51 -0
- package/src/api-client-machine/models/quotas-result.ts +30 -0
- package/src/api-client-machine/models/registration-config.ts +48 -0
- package/src/api-client-machine/models/sigma-cluster-ingest-config.ts +42 -0
- package/src/api-client-machine/models/sigma-cluster-origin-config.ts +30 -0
- package/src/api-client-machine/models/sigma-ingest-config-entity.ts +42 -0
- package/src/api-client-machine/models/sigma-ingest-config.ts +42 -0
- package/src/api-client-machine/models/sigma-origin-config-entity.ts +30 -0
- package/src/api-client-machine/models/sigma-origin-config.ts +30 -0
- package/src/api-client-machine/models/stats.ts +57 -0
- package/src/api-client-machine/models/status.ts +36 -0
- package/src/api-client-machine/models/stop-channel.ts +48 -0
- package/src/api-client-machine/models/transcoder-apps.ts +42 -0
- package/src/api-client-machine/models/transcoder-collection.ts +57 -0
- package/src/api-client-machine/models/transcoder-component-cluster.ts +42 -0
- package/src/api-client-machine/models/transcoder-license.ts +42 -0
- package/src/api-client-machine/models/transcoder-live-cluster.ts +42 -0
- package/src/api-client-machine/models/transcoder-live-to-component-cluster.ts +45 -0
- package/src/api-client-machine/models/transcoder-network.ts +42 -0
- package/src/api-client-machine/models/transcoder.ts +276 -0
- package/src/api-client-machine/models/update-app-config-dto-config-data.ts +33 -0
- package/src/api-client-machine/models/update-app-config-dto.ts +33 -0
- package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto-config-data.ts +30 -0
- package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto.ts +33 -0
- package/src/api-client-machine/models/update-component-cluster-dto.ts +72 -0
- package/src/api-client-machine/models/update-machine-cluster-dto.ts +63 -0
- package/src/api-client-machine/models/update-machine-dto.ts +42 -0
- package/src/api-client-machine/models/update-packager-live-cluster.ts +42 -0
- package/src/api-client-machine/models/update-packager-to-component-cluster.ts +51 -0
- package/src/api-client-machine/models/update-route-config-of-sigma-vod-server.ts +33 -0
- package/src/api-client-machine/models/update-route-config-sigma-machine.ts +42 -0
- package/src/api-client-machine/models/update-transcoder-live-cluster.ts +42 -0
- package/src/api-client-machine/models/update-transcoder-to-component-cluster.ts +45 -0
- package/src/api-client-machine/models/video-encoder.ts +56 -0
- package/src/api-client-machine/models/vodroute.ts +60 -0
- package/src/api-client-noti/.openapi-generator/FILES +13 -0
- package/src/api-client-noti/.openapi-generator/VERSION +1 -0
- package/src/api-client-noti/.openapi-generator-ignore +23 -0
- package/src/api-client-noti/api/notification-api.ts +386 -0
- package/src/api-client-noti/api.ts +18 -0
- package/src/api-client-noti/base.ts +72 -0
- package/src/api-client-noti/common.ts +150 -0
- package/src/api-client-noti/configuration.ts +101 -0
- package/src/api-client-noti/git_push.sh +57 -0
- package/src/api-client-noti/index.ts +18 -0
- package/src/api-client-noti/models/index.ts +2 -0
- package/src/api-client-noti/models/notification-collection.ts +57 -0
- package/src/api-client-noti/models/notification.ts +101 -0
- package/src/api-client-transcode/.openapi-generator/FILES +129 -0
- package/src/api-client-transcode/.openapi-generator/VERSION +1 -0
- package/src/api-client-transcode/.openapi-generator-ignore +23 -0
- package/src/api-client-transcode/api/alert-logs-apiapi.ts +281 -0
- package/src/api-client-transcode/api/channel-package-inputs-apiapi.ts +650 -0
- package/src/api-client-transcode/api/channel-transcode-inputs-apiapi.ts +650 -0
- package/src/api-client-transcode/api/channels-crudapiapi.ts +869 -0
- package/src/api-client-transcode/api/channels-job-action-apiapi.ts +434 -0
- package/src/api-client-transcode/api/drm-credentials-api.ts +525 -0
- package/src/api-client-transcode/api/event-channel-action-apiapi.ts +363 -0
- package/src/api-client-transcode/api/event-channel-crudapiapi.ts +545 -0
- package/src/api-client-transcode/api/fast-channel-action-apiapi.ts +301 -0
- package/src/api-client-transcode/api/fast-channel-apiapi.ts +525 -0
- package/src/api-client-transcode/api/fast-channel-programs-api-api.ts +525 -0
- package/src/api-client-transcode/api/multi-channel-action-apiapi.ts +387 -0
- package/src/api-client-transcode/api/sigma-transcode-live-interactive-action-api.ts +152 -0
- package/src/api-client-transcode/api/single-channel-action-apiapi.ts +1155 -0
- package/src/api-client-transcode/api/transcode-templates-apiapi.ts +541 -0
- package/src/api-client-transcode/api.ts +32 -0
- package/src/api-client-transcode/base.ts +71 -0
- package/src/api-client-transcode/common.ts +138 -0
- package/src/api-client-transcode/configuration.ts +101 -0
- package/src/api-client-transcode/git_push.sh +57 -0
- package/src/api-client-transcode/index.ts +18 -0
- package/src/api-client-transcode/models/ads-dto.ts +137 -0
- package/src/api-client-transcode/models/alert-log-collection.ts +55 -0
- package/src/api-client-transcode/models/audio-watermark-dto.ts +59 -0
- package/src/api-client-transcode/models/blackout-slate-dto.ts +36 -0
- package/src/api-client-transcode/models/catchup-dto.ts +43 -0
- package/src/api-client-transcode/models/channel-collection.ts +55 -0
- package/src/api-client-transcode/models/channel-config-advance-dto-info.ts +25 -0
- package/src/api-client-transcode/models/channel-config-advance-dto.ts +121 -0
- package/src/api-client-transcode/models/channel-config-advance-info-dto.ts +78 -0
- package/src/api-client-transcode/models/channel-config-base.ts +69 -0
- package/src/api-client-transcode/models/channel-config-blackout-entity.ts +36 -0
- package/src/api-client-transcode/models/channel-config-dto.ts +72 -0
- package/src/api-client-transcode/models/channel-config-interactive-entity.ts +30 -0
- package/src/api-client-transcode/models/channel-config-template-dto.ts +66 -0
- package/src/api-client-transcode/models/channel-detail-catchup-dto.ts +37 -0
- package/src/api-client-transcode/models/channel-detail-dto.ts +69 -0
- package/src/api-client-transcode/models/channel-detail-input.ts +43 -0
- package/src/api-client-transcode/models/channel-detail-package.ts +50 -0
- package/src/api-client-transcode/models/channel-detail-transcode.ts +37 -0
- package/src/api-client-transcode/models/channel-job-detail.ts +84 -0
- package/src/api-client-transcode/models/channel-stats.ts +36 -0
- package/src/api-client-transcode/models/channel-template-data-dto.ts +59 -0
- package/src/api-client-transcode/models/channel-template-dto-data.ts +28 -0
- package/src/api-client-transcode/models/channel-template-dto.ts +63 -0
- package/src/api-client-transcode/models/channel.ts +168 -0
- package/src/api-client-transcode/models/create-alert-log-dto.ts +138 -0
- package/src/api-client-transcode/models/create-channel-dto.ts +84 -0
- package/src/api-client-transcode/models/create-drm-credential-dto.ts +63 -0
- package/src/api-client-transcode/models/create-event-channel-dto-targets.ts +26 -0
- package/src/api-client-transcode/models/create-event-channel-dto.ts +76 -0
- package/src/api-client-transcode/models/create-fast-channel-dto.ts +42 -0
- package/src/api-client-transcode/models/create-fast-program-dto.ts +72 -0
- package/src/api-client-transcode/models/drm-credential-collection.ts +55 -0
- package/src/api-client-transcode/models/drm-credential-entity.ts +87 -0
- package/src/api-client-transcode/models/drm-data-dto.ts +54 -0
- package/src/api-client-transcode/models/drm-data-entity.ts +54 -0
- package/src/api-client-transcode/models/drm-dto.ts +103 -0
- package/src/api-client-transcode/models/event-channel-collection.ts +55 -0
- package/src/api-client-transcode/models/event-channel-config-dto.ts +78 -0
- package/src/api-client-transcode/models/event-channel-config-entity.ts +75 -0
- package/src/api-client-transcode/models/event-channel-input-dto.ts +45 -0
- package/src/api-client-transcode/models/event-channel-input-entity.ts +45 -0
- package/src/api-client-transcode/models/event-channel-transcoder-dto.ts +56 -0
- package/src/api-client-transcode/models/event-channel.ts +147 -0
- package/src/api-client-transcode/models/event-profile-dto.ts +62 -0
- package/src/api-client-transcode/models/event-target-data-dto.ts +95 -0
- package/src/api-client-transcode/models/event-target-dto.ts +49 -0
- package/src/api-client-transcode/models/fast-channel-collection.ts +55 -0
- package/src/api-client-transcode/models/fast-channel.ts +75 -0
- package/src/api-client-transcode/models/fast-program-collection.ts +55 -0
- package/src/api-client-transcode/models/fast-program.ts +84 -0
- package/src/api-client-transcode/models/fingerprint-dto.ts +42 -0
- package/src/api-client-transcode/models/index.ts +104 -0
- package/src/api-client-transcode/models/input-collection.ts +55 -0
- package/src/api-client-transcode/models/input-data-dto.ts +104 -0
- package/src/api-client-transcode/models/input-data-item-dto.ts +42 -0
- package/src/api-client-transcode/models/input-dto.ts +30 -0
- package/src/api-client-transcode/models/input-entity.ts +30 -0
- package/src/api-client-transcode/models/input-info-response.ts +31 -0
- package/src/api-client-transcode/models/input-info.ts +123 -0
- package/src/api-client-transcode/models/input-machine-config.ts +45 -0
- package/src/api-client-transcode/models/input-program.ts +66 -0
- package/src/api-client-transcode/models/interactive-dto.ts +30 -0
- package/src/api-client-transcode/models/interactive-publish-dto.ts +30 -0
- package/src/api-client-transcode/models/job-entity.ts +102 -0
- package/src/api-client-transcode/models/low-latency-dto.ts +68 -0
- package/src/api-client-transcode/models/machine-config-dto.ts +75 -0
- package/src/api-client-transcode/models/main-input-dto.ts +62 -0
- package/src/api-client-transcode/models/main-input-entity.ts +54 -0
- package/src/api-client-transcode/models/maintenance-dto.ts +30 -0
- package/src/api-client-transcode/models/manifest-dto.ts +62 -0
- package/src/api-client-transcode/models/package-input-collection.ts +55 -0
- package/src/api-client-transcode/models/package-input-data-dto.ts +99 -0
- package/src/api-client-transcode/models/package-input-list.ts +36 -0
- package/src/api-client-transcode/models/package-input.ts +115 -0
- package/src/api-client-transcode/models/post-input-dto.ts +48 -0
- package/src/api-client-transcode/models/post-input-entity.ts +48 -0
- package/src/api-client-transcode/models/pre-input-dto.ts +54 -0
- package/src/api-client-transcode/models/pre-input-entity.ts +54 -0
- package/src/api-client-transcode/models/preset-dto.ts +247 -0
- package/src/api-client-transcode/models/profile-default-response-dto.ts +30 -0
- package/src/api-client-transcode/models/profile-dto.ts +62 -0
- package/src/api-client-transcode/models/profile-entity.ts +60 -0
- package/src/api-client-transcode/models/scte35-dto.ts +36 -0
- package/src/api-client-transcode/models/start-over-dto.ts +30 -0
- package/src/api-client-transcode/models/switch-input-dto.ts +56 -0
- package/src/api-client-transcode/models/switch-input-entity.ts +44 -0
- package/src/api-client-transcode/models/target-data-dto.ts +101 -0
- package/src/api-client-transcode/models/target-dto.ts +44 -0
- package/src/api-client-transcode/models/target-entity.ts +55 -0
- package/src/api-client-transcode/models/target-profile-dto.ts +71 -0
- package/src/api-client-transcode/models/target-profile.ts +71 -0
- package/src/api-client-transcode/models/target-template-dto.ts +44 -0
- package/src/api-client-transcode/models/target-update-dto.ts +50 -0
- package/src/api-client-transcode/models/transcode-input.ts +144 -0
- package/src/api-client-transcode/models/transcoder.ts +36 -0
- package/src/api-client-transcode/models/trick-play-dto.ts +54 -0
- package/src/api-client-transcode/models/update-channel-dto-targets.ts +27 -0
- package/src/api-client-transcode/models/update-channel-dto.ts +84 -0
- package/src/api-client-transcode/models/update-drm-management-dto.ts +63 -0
- package/src/api-client-transcode/models/update-event-channel-dto.ts +76 -0
- package/src/api-client-transcode/models/update-fast-channel-dto.ts +42 -0
- package/src/api-client-transcode/models/update-fast-program-dto.ts +30 -0
- package/src/api-client-transcode/models/watermark-dto.ts +66 -0
- package/src/api-client-transcode/models/watermark-entity.ts +102 -0
- package/src/app/spa-loading-template.html +127 -0
- package/src/app.config.ts +2 -0
- package/src/assets/global.css.ts +3 -0
- package/src/assets/scss/element/dark.scss +13 -0
- package/src/assets/scss/element/index.scss +26 -0
- package/src/assets/scss/index.scss +181 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItem.vue +180 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItemCustom.vue +165 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItemDefined.vue +298 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItemSchedule.vue +293 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterMain.vue +196 -0
- package/src/components/AdvancedFilter/types.ts +37 -0
- package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItem.vue +110 -0
- package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItemDefined.vue +159 -0
- package/src/components/AdvancedFilterReport/SSAdvancedFilterReportMain.vue +197 -0
- package/src/components/AdvancedFilterReport/types.ts +19 -0
- package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItem.vue +102 -0
- package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItemDefined.vue +119 -0
- package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiMain.vue +194 -0
- package/src/components/AdvancedFilterSsai/types.ts +19 -0
- package/src/components/Asset/AssetAddPlaylist.vue +169 -0
- package/src/components/Asset/AssetExtra.vue +46 -0
- package/src/components/Asset/AssetImportLinks.vue +281 -0
- package/src/components/Asset/AssetInfiniteSelect.vue +62 -0
- package/src/components/Asset/AssetItem.vue +194 -0
- package/src/components/Asset/AssetItemPreview.vue +117 -0
- package/src/components/Asset/AssetList.vue +869 -0
- package/src/components/Asset/AssetMeta.vue +97 -0
- package/src/components/Asset/AssetPicker.vue +204 -0
- package/src/components/Asset/AssetPlaylist.vue +414 -0
- package/src/components/Asset/AssetPlaylistInfiniteSelect.vue +136 -0
- package/src/components/Asset/AssetPlaylistModalAdd.vue +138 -0
- package/src/components/Asset/AssetPreview.vue +89 -0
- package/src/components/Asset/AssetShareModal.vue +131 -0
- package/src/components/Asset/AssetTable.vue +365 -0
- package/src/components/Asset/FormUploadAsset.vue +647 -0
- package/src/components/Asset/FormUploadAssetItem.vue +115 -0
- package/src/components/Asset/FormUploadAssetProgress.vue +161 -0
- package/src/components/Asset/Scrubber.vue +57 -0
- package/src/components/Asset/VideoPlayer.vue +226 -0
- package/src/components/Asset/VideoPreview.vue +102 -0
- package/src/components/Asset/VideoPreviewConfig.vue +329 -0
- package/src/components/Asset/VideoPreviewConfigMessage.vue +120 -0
- package/src/components/Asset/VideoPreviewConfigVod.vue +287 -0
- package/src/components/Asset/VideoPreviewNew.vue +66 -0
- package/src/components/Asset/VideoPreviewNewLoader.vue +144 -0
- package/src/components/Asset/VideoPreviewWrapper.vue +208 -0
- package/src/components/Asset/asset-context.ts +24 -0
- package/src/components/Asset/usePickerStore.ts +55 -0
- package/src/components/AuthLayout/AuthLayoutSimple.vue +150 -0
- package/src/components/AuthLayout/index.vue +151 -0
- package/src/components/AutoRefresh/AutoRefresh.vue +91 -0
- package/src/components/AutoRefresh/AutoRefreshOld.vue +87 -0
- package/src/components/AutoRefresh/useRefresh.ts +93 -0
- package/src/components/BackButton.vue +13 -0
- package/src/components/Card/CardInfo.vue +21 -0
- package/src/components/Channel/AIConfig.vue +101 -0
- package/src/components/Channel/AdvancedForm.vue +542 -0
- package/src/components/Channel/ChannelListGrid.vue +154 -0
- package/src/components/Channel/ConfigBlackout.vue +98 -0
- package/src/components/Channel/ConfigCensorship.vue +387 -0
- package/src/components/Channel/ConfigForensicWatermark.vue +152 -0
- package/src/components/Channel/ConfigForm.vue +102 -0
- package/src/components/Channel/ConfigInformation.vue +191 -0
- package/src/components/Channel/ConfigInteraction.vue +11 -0
- package/src/components/Channel/ConfigNameModifier.vue +15 -0
- package/src/components/Channel/ConfigOptionItem.vue +114 -0
- package/src/components/Channel/ConfigOptions.vue +181 -0
- package/src/components/Channel/ConfigPte.vue +368 -0
- package/src/components/Channel/ConfigScte.vue +442 -0
- package/src/components/Channel/ConfigTranscoder.vue +353 -0
- package/src/components/Channel/ConfigWaterMarkAudio.vue +52 -0
- package/src/components/Channel/ConfigWatermark.vue +76 -0
- package/src/components/Channel/ConfigWatermarkEventChannel.vue +86 -0
- package/src/components/Channel/ConfigWatermarkItem.vue +239 -0
- package/src/components/Channel/HeaderItem.vue +75 -0
- package/src/components/Channel/InputDetail.vue +68 -0
- package/src/components/Channel/InputForm.vue +175 -0
- package/src/components/Channel/InputList.vue +38 -0
- package/src/components/Channel/InputPackageDetail.vue +125 -0
- package/src/components/Channel/MediaProfileFormModal.vue +79 -0
- package/src/components/Channel/MediaProfileModify.vue +229 -0
- package/src/components/Channel/MessageButtonGetHelp.vue +30 -0
- package/src/components/Channel/MessageTooltipAi.vue +29 -0
- package/src/components/Channel/MultipleSelectProfile.vue +312 -0
- package/src/components/Channel/PackageInputItem.vue +13 -0
- package/src/components/Channel/PresetConfigItem.vue +1957 -0
- package/src/components/Channel/PresetConfigItemExtra.vue +59 -0
- package/src/components/Channel/PresetConfigItemPId.vue +145 -0
- package/src/components/Channel/ProfileConfigItem.vue +829 -0
- package/src/components/Channel/ProfileDetailsList.vue +160 -0
- package/src/components/Channel/ProfileForm.vue +134 -0
- package/src/components/Channel/ProfileList.vue +228 -0
- package/src/components/Channel/SelectServer.vue +134 -0
- package/src/components/Channel/SignalLoss.vue +92 -0
- package/src/components/Channel/SwitchInputButton.vue +38 -0
- package/src/components/Channel/TargetCatchup.vue +75 -0
- package/src/components/Channel/TargetDataInfo.vue +100 -0
- package/src/components/Channel/TargetDestination.vue +375 -0
- package/src/components/Channel/TargetDrm.vue +518 -0
- package/src/components/Channel/TargetForm.vue +136 -0
- package/src/components/Channel/TargetList.vue +159 -0
- package/src/components/Channel/TargetLowLatency.vue +107 -0
- package/src/components/Channel/TargetMabrOutput.vue +58 -0
- package/src/components/Channel/TargetMabrOutputItem.vue +91 -0
- package/src/components/Channel/TargetManifest.vue +94 -0
- package/src/components/Channel/TargetNetworkInterface.vue +95 -0
- package/src/components/Channel/TargetOutputMultiplex.vue +237 -0
- package/src/components/Channel/TargetOutputType.vue +201 -0
- package/src/components/Channel/TargetOutputUdp.vue +200 -0
- package/src/components/Channel/TargetPreset.vue +541 -0
- package/src/components/Channel/TargetProfileAudioGroup.vue +27 -0
- package/src/components/Channel/TargetProfileProgram.vue +43 -0
- package/src/components/Channel/TargetProfileURI.vue +68 -0
- package/src/components/Channel/TargetSrtOutput.vue +35 -0
- package/src/components/Channel/TargetSrtOutputItem.vue +83 -0
- package/src/components/Channel/TargetStartover.vue +40 -0
- package/src/components/Channel/WarningName.vue +39 -0
- package/src/components/Channel/WarningOutput.vue +40 -0
- package/src/components/CollapseTagsTooltip/CollapseTagsTooltip.vue +87 -0
- package/src/components/CollapseTagsTooltip/index.ts +1 -0
- package/src/components/CopyButton.vue +46 -0
- package/src/components/CopyText.vue +40 -0
- package/src/components/CopyTextButton.vue +40 -0
- package/src/components/DefaultLayout/DefaultLayout.vue +134 -0
- package/src/components/DefaultLayout/GlobalASide.vue +75 -0
- package/src/components/DefaultLayout/GlobalFooter.vue +15 -0
- package/src/components/DefaultLayout/GlobalHeader.vue +43 -0
- package/src/components/DefaultLayout/Logo.vue +35 -0
- package/src/components/DefaultLayout/Menu.vue +464 -0
- package/src/components/DefaultLayout/RightMenu.vue +93 -0
- package/src/components/DialogWarningAddLicense.vue +37 -0
- package/src/components/Epg/Epg.vue +24 -0
- package/src/components/Epg/components/Channel.vue +28 -0
- package/src/components/Epg/components/Channels.vue +33 -0
- package/src/components/Epg/components/Layout.vue +121 -0
- package/src/components/Epg/components/Line.vue +41 -0
- package/src/components/Epg/components/Loader.vue +23 -0
- package/src/components/Epg/components/Program.vue +101 -0
- package/src/components/Epg/components/SideBar.vue +18 -0
- package/src/components/Epg/components/Timeline.vue +72 -0
- package/src/components/Epg/helpers/common.ts +68 -0
- package/src/components/Epg/helpers/epg.ts +192 -0
- package/src/components/Epg/helpers/index.ts +5 -0
- package/src/components/Epg/helpers/interfaces.ts +54 -0
- package/src/components/Epg/helpers/time.ts +51 -0
- package/src/components/Epg/helpers/types.ts +26 -0
- package/src/components/Epg/helpers/variables.ts +33 -0
- package/src/components/Epg/hooks/index.ts +2 -0
- package/src/components/Epg/hooks/useEpg.ts +160 -0
- package/src/components/Epg/hooks/useLayout.ts +187 -0
- package/src/components/Epg/hooks/useProgram.ts +63 -0
- package/src/components/Epg/hooks/useTimeline.ts +35 -0
- package/src/components/Epg/index.ts +4 -0
- package/src/components/Epg/store.ts +85 -0
- package/src/components/Epg/theme.ts +44 -0
- package/src/components/Exception/403.png +0 -0
- package/src/components/Exception/403.vue +58 -0
- package/src/components/Exception/404.png +0 -0
- package/src/components/Exception/404.vue +59 -0
- package/src/components/Exception/500.png +0 -0
- package/src/components/Exception/500.vue +39 -0
- package/src/components/Exception/index.scss +30 -0
- package/src/components/Field.vue +193 -0
- package/src/components/FilterQuerySchema/FilterQuerySchemaForm.vue +200 -0
- package/src/components/FilterQuerySchema/QueryTag.vue +109 -0
- package/src/components/FilterQuerySchema/Tag.vue +68 -0
- package/src/components/FilterTimeDimensions.vue +265 -0
- package/src/components/FilterTimeDimensionsSingle.vue +214 -0
- package/src/components/HelpPanel.vue +87 -0
- package/src/components/HexagonPro.vue +7 -0
- package/src/components/IconCopyButton.vue +43 -0
- package/src/components/InformationLabel.vue +67 -0
- package/src/components/Input/InputTags.vue +136 -0
- package/src/components/Input/index.ts +1 -0
- package/src/components/MainDefaultLayout/index.vue +120 -0
- package/src/components/NoticeAddLicense.vue +20 -0
- package/src/components/NoticeRunningOutResources.vue +20 -0
- package/src/components/Pagination.vue +61 -0
- package/src/components/QueryBuilder/QueryBuilder.vue +141 -0
- package/src/components/QueryBuilder/components/inputs/DateInputField.vue +105 -0
- package/src/components/QueryBuilder/components/inputs/FieldSelect.vue +44 -0
- package/src/components/QueryBuilder/components/inputs/InputMultiSelect.vue +60 -0
- package/src/components/QueryBuilder/components/inputs/InputSelect.vue +39 -0
- package/src/components/QueryBuilder/components/inputs/NumberInputField.vue +91 -0
- package/src/components/QueryBuilder/components/inputs/OperatorSelect.vue +59 -0
- package/src/components/QueryBuilder/components/inputs/TextInput.vue +40 -0
- package/src/components/QueryBuilder/components/inputs/TimeInputField.vue +114 -0
- package/src/components/QueryBuilder/components/inputs/logics.ts +27 -0
- package/src/components/QueryBuilder/components/item/InputMultiOptions.vue +56 -0
- package/src/components/QueryBuilder/components/item/QueryGroup.vue +71 -0
- package/src/components/QueryBuilder/components/item/QueryGroupActions.vue +76 -0
- package/src/components/QueryBuilder/components/item/QueryRule.vue +233 -0
- package/src/components/QueryBuilder/useConfigStore.ts +27 -0
- package/src/components/QueryBuilder/utils/config.ts +194 -0
- package/src/components/QueryBuilder/utils/index.ts +3 -0
- package/src/components/QueryBuilder/utils/mongodb.ts +175 -0
- package/src/components/QueryBuilder/utils/rules.ts +213 -0
- package/src/components/RecommendedConfigurationPTE.vue +238 -0
- package/src/components/Server/MachineConfig.vue +333 -0
- package/src/components/Server/ServerConfig.vue +599 -0
- package/src/components/Server/useQueryMachine.ts +380 -0
- package/src/components/Server/validator.ts +13 -0
- package/src/components/SwitchDark.vue +19 -0
- package/src/components/SwitchLang.vue +31 -0
- package/src/components/TableEmpty.vue +50 -0
- package/src/components/Toast/ToastNoti.vue +52 -0
- package/src/components/Tool/ForensicWatermarkingDialog.vue +39 -0
- package/src/components/Tool/FormRecord.vue +162 -0
- package/src/components/Tool/FormUpload.vue +118 -0
- package/src/components/Tool/ResultChecking.vue +103 -0
- package/src/components/Tool/Watermarking.vue +159 -0
- package/src/components/Tool/record.js +92 -0
- package/src/components/Tooltip/Ellipsis.vue +52 -0
- package/src/components/Tooltip/index.vue +47 -0
- package/src/components/app/AppList.vue +50 -0
- package/src/components/button/Button.vue +27 -0
- package/src/components/button/index.ts +37 -0
- package/src/components/context-menu/ContextMenu.vue +15 -0
- package/src/components/context-menu/ContextMenuCheckboxItem.vue +39 -0
- package/src/components/context-menu/ContextMenuContent.vue +35 -0
- package/src/components/context-menu/ContextMenuGroup.vue +11 -0
- package/src/components/context-menu/ContextMenuItem.vue +33 -0
- package/src/components/context-menu/ContextMenuLabel.vue +24 -0
- package/src/components/context-menu/ContextMenuPortal.vue +11 -0
- package/src/components/context-menu/ContextMenuRadioGroup.vue +19 -0
- package/src/components/context-menu/ContextMenuRadioItem.vue +39 -0
- package/src/components/context-menu/ContextMenuSeparator.vue +19 -0
- package/src/components/context-menu/ContextMenuShortcut.vue +13 -0
- package/src/components/context-menu/ContextMenuSub.vue +19 -0
- package/src/components/context-menu/ContextMenuSubContent.vue +34 -0
- package/src/components/context-menu/ContextMenuSubTrigger.vue +33 -0
- package/src/components/context-menu/ContextMenuTrigger.vue +13 -0
- package/src/components/context-menu/index.ts +14 -0
- package/src/components/dashboard/SSDashboardChartRoot.vue +18 -0
- package/src/components/dashboard/SSDashboardDocument.vue +45 -0
- package/src/components/dashboard/SSDashboardEmpty.vue +16 -0
- package/src/components/dashboard/SSDashboardGuideline.vue +45 -0
- package/src/components/dashboard/SSDashboardInfo.vue +36 -0
- package/src/components/dashboard/SSDashboardInfoRoot.vue +9 -0
- package/src/components/dashboard/SSDashboardInfoTime.vue +38 -0
- package/src/components/markdown/Markdown.vue +295 -0
- package/src/components/tabs/Tabs.vue +15 -0
- package/src/components/tabs/TabsContent.vue +22 -0
- package/src/components/tabs/TabsList.vue +22 -0
- package/src/components/tabs/TabsTrigger.vue +26 -0
- package/src/composables/asset.ts +13 -0
- package/src/composables/channel.ts +333 -0
- package/src/composables/country.ts +788 -0
- package/src/composables/error.ts +24 -0
- package/src/composables/form.ts +351 -0
- package/src/composables/getBuildTime.ts +7 -0
- package/src/composables/micro.ts +113 -0
- package/src/composables/microState.ts +22 -0
- package/src/composables/notiGlobal.ts +19 -0
- package/src/composables/plan.ts +162 -0
- package/src/composables/refReset.ts +12 -0
- package/src/composables/resetInfiniteQueryPagination.ts +18 -0
- package/src/composables/route.ts +19 -0
- package/src/composables/toast.ts +21 -0
- package/src/composables/useApp.ts +6 -0
- package/src/composables/useAsyncSchema.ts +58 -0
- package/src/composables/useChannelActions.ts +151 -0
- package/src/composables/useComplexSearchParam.ts +293 -0
- package/src/composables/useFilterSchema.ts +106 -0
- package/src/composables/useGetInputDetail.ts +36 -0
- package/src/composables/useGetServerAddLicense.ts +21 -0
- package/src/composables/useJobPreview.ts +438 -0
- package/src/composables/useLayoutStore.ts +106 -0
- package/src/composables/usePermission.ts +5 -0
- package/src/composables/usePickerStore.ts +53 -0
- package/src/composables/useQueryAssets.ts +56 -0
- package/src/composables/useQueryParams.ts +20 -0
- package/src/composables/useRouteParams.ts +36 -0
- package/src/composables/useRouteQueries.ts +54 -0
- package/src/composables/useRouterHistory.ts +76 -0
- package/src/composables/useSearchQuery.ts +27 -0
- package/src/composables/useTooltipEllipsis.ts +12 -0
- package/src/constants/env.ts +11 -0
- package/src/constants/filterable.ts +32 -0
- package/src/constants/languageCode.ts +185 -0
- package/src/constants/micro.ts +1 -0
- package/src/constants/queryKeys.ts +11 -0
- package/src/constants/regex.ts +8 -0
- package/src/constants/storage.ts +41 -0
- package/src/enums/index.ts +24 -0
- package/src/layouts/empty.vue +7 -0
- package/src/modules/api-party/kit.ts +30 -0
- package/src/modules/api-party/module.ts +259 -0
- package/src/modules/api-party/openapi.ts +74 -0
- package/src/modules/api-party/runtime/composables/$api.ts +157 -0
- package/src/modules/api-party/runtime/composables/useApiData.ts +229 -0
- package/src/modules/api-party/runtime/constants.ts +1 -0
- package/src/modules/api-party/runtime/formData.ts +85 -0
- package/src/modules/api-party/runtime/server/$api.ts +29 -0
- package/src/modules/api-party/runtime/server/handler.ts +92 -0
- package/src/modules/api-party/runtime/types.ts +97 -0
- package/src/modules/api-party/runtime/utils.ts +43 -0
- package/src/pages/403.vue +11 -0
- package/src/pages/500.vue +11 -0
- package/src/pages/[...all].vue +11 -0
- package/src/pages/login.vue +67 -0
- package/src/plugins/auth.ts +10 -0
- package/src/plugins/build-time.ts +5 -0
- package/src/plugins/dayjs.ts +14 -0
- package/src/plugins/i18n.ts +6 -0
- package/src/plugins/router.ts +6 -0
- package/src/plugins/vue-json-pretty.ts +5 -0
- package/src/plugins/vue-query.ts +41 -0
- package/src/plugins/wujie.ts +19 -0
- package/src/public/apple-touch-icon.png +0 -0
- package/src/public/audio-recorder.js +31 -0
- package/src/public/build-time.json +1 -0
- package/src/public/favicon.ico +0 -0
- package/src/public/icon-block-free-app.png +0 -0
- package/src/public/maskable-icon.png +0 -0
- package/src/public/nuxt.svg +3 -0
- package/src/public/preview/step-1.png +0 -0
- package/src/public/preview/step-2.png +0 -0
- package/src/public/preview/step-3.png +0 -0
- package/src/public/pwa-192x192.png +0 -0
- package/src/public/pwa-512x512.png +0 -0
- package/src/public/robots.txt +2 -0
- package/src/public/vite.png +0 -0
- package/src/pwa/config.ts +61 -0
- package/src/pwa/index.ts +194 -0
- package/src/pwa/runtime/VitePwaManifest.ts +33 -0
- package/src/pwa/types.ts +56 -0
- package/src/pwa/utils.ts +16 -0
- package/src/schemas/authServiceApi.json +6709 -0
- package/src/schemas/billingApi.json +1083 -0
- package/src/schemas/chatApi.json +497 -0
- package/src/schemas/libraryApi.json +2009 -0
- package/src/schemas/licenseApi.json +772 -0
- package/src/schemas/livestreamApi.json +3354 -0
- package/src/schemas/lrmApi.json +2848 -0
- package/src/schemas/machineApi.json +4604 -0
- package/src/schemas/metricApi.json +141 -0
- package/src/schemas/notificationApi.json +1 -0
- package/src/schemas/playoutApi.json +8315 -0
- package/src/schemas/ssaiApi.json +1108 -0
- package/src/schemas/transcodeApi.json +9670 -0
- package/src/schemas/vastControlApi.json +961 -0
- package/src/schemas/vodApi.json +3974 -0
- package/src/server/plugins/loading.css +111 -0
- package/src/server/plugins/loading.html +12 -0
- package/src/server/plugins/loading.ts +134 -0
- package/src/templates/pwa.client.ts +136 -0
- package/src/utils/$apiOptions.ts +79 -0
- package/src/utils/app.ts +23 -0
- package/src/utils/cn.ts +3 -0
- package/src/utils/format.ts +88 -0
- package/src/utils/gen-routes.ts +100 -0
- package/src/utils/helper.ts +56 -0
- package/src/utils/micro.ts +207 -0
- package/src/utils/popoverSelectAttrs.ts +24 -0
- package/src/utils/popup.ts +96 -0
- package/src/utils/pwa.ts +86 -0
- package/src/utils/query-filter.ts +111 -0
- package/src/utils/table.ts +35 -0
- package/src/utils/tryCatch.ts +25 -0
- package/src/utils/utils.ts +58 -0
- package/src/utils/validator.ts +185 -0
- package/src/utils/videojs.ts +490 -0
- package/src/utils/wujie.ts +1 -0
- package/tsconfig.json +3 -0
- package/uno.config.ts +375 -0
package/locales/vi.yaml
ADDED
|
@@ -0,0 +1,726 @@
|
|
|
1
|
+
'403':
|
|
2
|
+
messsage_mutation: Tài khoản của bạn hiện ở chế độ chỉ xem và không có quyền chỉnh sửa
|
|
3
|
+
Actions:
|
|
4
|
+
add: Thêm
|
|
5
|
+
apply: Áp dụng
|
|
6
|
+
back: Trở lại
|
|
7
|
+
cancel: Hủy
|
|
8
|
+
load_more: Tải thêm
|
|
9
|
+
'no': Không
|
|
10
|
+
ok: Đồng ý
|
|
11
|
+
run: Chạy
|
|
12
|
+
save_and_run: Lưu và chạy
|
|
13
|
+
save_as_copy: Lưu dưới dạng bản sao
|
|
14
|
+
submit: Xác nhận
|
|
15
|
+
upgrade_version: Nâng cấp version
|
|
16
|
+
'yes': Đồng ý
|
|
17
|
+
Asset:
|
|
18
|
+
upload_success: Tải lên thành công
|
|
19
|
+
Channel:
|
|
20
|
+
actions:
|
|
21
|
+
'off': tắt
|
|
22
|
+
'on': bật
|
|
23
|
+
reset: khởi động lại
|
|
24
|
+
start: bắt đầu
|
|
25
|
+
stop: dừng
|
|
26
|
+
blackout_activated_successfully: Bật blackout thành công!
|
|
27
|
+
blackout_deactivated_successfully: Tắt blackout thành công!
|
|
28
|
+
confirmMessage: Bạn có chắc chắn muốn {action} kênh này?
|
|
29
|
+
confirmMessageTurnOnSwitchBlackout: Bạn có chắc bạn muốn {action} blackout cho kênh {name} không?
|
|
30
|
+
confirmTitle: Xác nhận
|
|
31
|
+
form:
|
|
32
|
+
label:
|
|
33
|
+
DrmSystem: Hệ thống Drm
|
|
34
|
+
Header: Tiêu đề
|
|
35
|
+
content: Nội dung
|
|
36
|
+
endpoint: Điểm cuối
|
|
37
|
+
placeholder_endpoint: http://example.com
|
|
38
|
+
validate:
|
|
39
|
+
formatContentId: Content ID bao gồm các ký tự hợp lệ (A-Z, a-z, 0-9, "-", "_")
|
|
40
|
+
requiredContentId: Vui lòng nhập ID nội dung
|
|
41
|
+
requiredDrmSystem: Vui lòng nhập hệ thống Drm
|
|
42
|
+
requiredEndpoint: Vui lòng nhập Điểm cuối
|
|
43
|
+
requiredEnvironment: Vui lòng nhập Môi trường
|
|
44
|
+
requiredHeaders: Vui lòng nhập Tiêu đề
|
|
45
|
+
requiredHeadersKey: Vui lòng nhập khóa
|
|
46
|
+
requiredHeadersValue: Vui lòng nhập Giá trị
|
|
47
|
+
requiredKey: Vui lòng nhập khóa
|
|
48
|
+
requiredKeyId: Vui lòng nhập ID khóa
|
|
49
|
+
requiredKeyUri: 'Vui lòng nhập khóa URI '
|
|
50
|
+
requiredUriKeyIdTranscode: 'Vui lòng nhập giao thức: http:// hoặc https://'
|
|
51
|
+
requiredValue: Vui lòng nhập Giá trị
|
|
52
|
+
output_aspect_ratio: Frame Size
|
|
53
|
+
reset_channel_successfully: Đặt lại kênh thành công!
|
|
54
|
+
restart_channel: Khởi động lại kênh
|
|
55
|
+
start_channel: Khởi động kênh
|
|
56
|
+
start_channel_successfully: Bắt đầu kênh thành công!
|
|
57
|
+
stop_channel: Dừng kênh
|
|
58
|
+
stop_channel_successfully: Dừng kênh thành công!
|
|
59
|
+
turn_off_blackout: Tắt blackout
|
|
60
|
+
turn_on_blackout: Bật blackout
|
|
61
|
+
warning: Cảnh báo
|
|
62
|
+
Dashboard:
|
|
63
|
+
api_documentation: Tài liệu API
|
|
64
|
+
developer_guide: Hướng dẫn cho nhà phát triển
|
|
65
|
+
documentation: Tài liệu
|
|
66
|
+
faqs: Câu hỏi thường gặp
|
|
67
|
+
getting_started: Bắt đầu
|
|
68
|
+
glossary: Bảng chú giải
|
|
69
|
+
overview: Tổng quan
|
|
70
|
+
see_more: Xem thêm
|
|
71
|
+
user_guide: Hướng dẫn sử dụng
|
|
72
|
+
DateTime:
|
|
73
|
+
dateRange: Khoảng ngày
|
|
74
|
+
timeRange: Khoảng thời gian
|
|
75
|
+
EventChannel:
|
|
76
|
+
placeholder:
|
|
77
|
+
enter: Nhập
|
|
78
|
+
Filter:
|
|
79
|
+
operator:
|
|
80
|
+
begins_with: Bắt đầu với
|
|
81
|
+
between: Khoảng giữa
|
|
82
|
+
contains: Chứa
|
|
83
|
+
ends_with: Kết thúc với
|
|
84
|
+
equal: Bằng
|
|
85
|
+
greater: Lớn hơn
|
|
86
|
+
greater_or_equal: Lớn hơn hoặc bằng
|
|
87
|
+
in: Bao gồm
|
|
88
|
+
is_empty: Rỗng
|
|
89
|
+
is_not_empty: Không rỗng
|
|
90
|
+
is_not_null: Tồn tại
|
|
91
|
+
is_null: Không tồn tại
|
|
92
|
+
less: Nhỏ hơn
|
|
93
|
+
less_or_equal: Nhỏ hơn hoặc bằng
|
|
94
|
+
not_begins_with: Không bắt đầu với
|
|
95
|
+
not_between: Ngoài khoảng giữa
|
|
96
|
+
not_contains: Không chứa
|
|
97
|
+
not_ends_with: Không kết thúc với
|
|
98
|
+
not_equal: Không bằng
|
|
99
|
+
not_in: Không bao gồm
|
|
100
|
+
GPU:
|
|
101
|
+
requires_gpu_to_enable_this_feature: Yêu cầu GPU để kích hoạt tính năng này
|
|
102
|
+
Preset:
|
|
103
|
+
list: Danh sách Preset
|
|
104
|
+
Profile:
|
|
105
|
+
list: Danh sách Profile
|
|
106
|
+
ReportSchedule:
|
|
107
|
+
add_people_to_receive_this_report: Thêm người để nhận báo cáo này
|
|
108
|
+
add_recipients: Thêm người nhận
|
|
109
|
+
choose_when_the_report_is_generated_and_sent: Chọn khi báo cáo được tạo và gửi
|
|
110
|
+
duplicate-email: Email được trùng lặp, vui lòng nhập một email khác
|
|
111
|
+
invalid-email-address: Địa chỉ email không hợp lệ
|
|
112
|
+
limit-member: |-
|
|
113
|
+
Giới hạn tối đa đạt được!
|
|
114
|
+
Bạn chỉ có thể thêm tối đa 20 email
|
|
115
|
+
please_input_the_email_recipients: Vui lòng nhập những người nhận email
|
|
116
|
+
repeat_on: Lặp lại trên
|
|
117
|
+
schedule: Lịch trình
|
|
118
|
+
scheduled_time: Thời gian dự kiến
|
|
119
|
+
send_now: Gửi ngay bây giờ
|
|
120
|
+
the_report_will_be_sent_on_the_first_day_of_each_month_at: Báo cáo sẽ được gửi vào ngày đầu tiên của mỗi tháng tại
|
|
121
|
+
the_report_will_be_sent_weekly_on_the_selected_days_at: Báo cáo sẽ được gửi hàng tuần vào những ngày đã chọn tại
|
|
122
|
+
this_report_will_be_generated_and_sent_daily_at: Báo cáo này sẽ được tạo và gửi hàng ngày tại
|
|
123
|
+
you_must_select_at_least_one_day_of_the_week_for_weekly_report: Bạn phải chọn ít nhất một ngày trong tuần để báo cáo hàng tuần
|
|
124
|
+
SSConfig:
|
|
125
|
+
add_ouput: Thêm đầu ra
|
|
126
|
+
adobe_protocol_for_adaptive_bitrate_streaming_via_http: Adobe protocol for adaptive bitrate streaming via HTTP.
|
|
127
|
+
adobe_protocol_for_low-latency_video_and_audio_streaming: Giao thức Adobe để truyền phát video và âm thanh có độ trễ thấp.
|
|
128
|
+
ai-based_detection_insertion_scte-35: >-
|
|
129
|
+
Phát hiện và chèn quảng cáo dựa trên AI bằng tín hiệu SCTE-35 để tích hợp
|
|
130
|
+
liền mạch.
|
|
131
|
+
apple_protocol_for_streaming_live: Giao thức phát trực tiếp của Apple
|
|
132
|
+
are_you_sure_you_want_to_delete: Bạn có chắc chắn muốn xóa không?
|
|
133
|
+
aspect_ratio: Aspect Ratio
|
|
134
|
+
assetId: Vui lòng nhập ID nội dung
|
|
135
|
+
asset_not_found: Không tìm thấy nội dung
|
|
136
|
+
audiorate_khong_duoc_be_hon_minrate: Tốc độ bit không được nhỏ hơn 32000 và lớn hơn 2000000
|
|
137
|
+
base_on_machine: Cấu hình máy chủ
|
|
138
|
+
buffsize_cannot_be_less_than_64000_and_greater_than_60000000: Kích thước buff không thể nhỏ hơn 10000 và lớn hơn 60000000
|
|
139
|
+
cbr_less_0_greater_51: CQ không thể nhỏ hơn 0 và lớn hơn 51
|
|
140
|
+
channel_name: tên kênh
|
|
141
|
+
check_preset_video_audio_profile: Hồ sơ phải có ít nhất 1 video hoặc 1 audio, vui lòng kiểm tra {0}
|
|
142
|
+
codec_detail: Codec Detail
|
|
143
|
+
color_space: Color Space
|
|
144
|
+
combined_use_of_hls_and_dash_for_broader_compatibility: Combined use of HLS and DASH for broader compatibility.
|
|
145
|
+
config_server: Máy chủ cấu hình
|
|
146
|
+
create_profile: Tạo hồ sơ
|
|
147
|
+
dash_multicast_adaptive_bitrate: (DASH Multicast Adaptive Bitrate)
|
|
148
|
+
deleted_successfully: Đã xóa thành công!
|
|
149
|
+
duplicate_profile: Nhân bản hồ sơ
|
|
150
|
+
dynamic_adaptive_streaming_over_http: (Truyền phát thích ứng động qua HTTP)
|
|
151
|
+
enable_label: Kích hoạt
|
|
152
|
+
enhances_dash_with_multicast_for_scalable_live_streaming: Enhances DASH with multicast for scalable live streaming.
|
|
153
|
+
enter_the_pid_placeholder: 'Nhập PID (ở định dạng thập phân hoặc thập lục phân, ví dụ: 100 hoặc 0x64)'
|
|
154
|
+
example_path_to_model: 'ví dụ: /path/to/model'
|
|
155
|
+
form:
|
|
156
|
+
label:
|
|
157
|
+
DrmSystem: Hệ thống Drm
|
|
158
|
+
Header: Header
|
|
159
|
+
baseOnMachine: Dựa trên máy chủ
|
|
160
|
+
channelConfig: Cấu hình kênh
|
|
161
|
+
content: Nội dung
|
|
162
|
+
enable: Cho phép
|
|
163
|
+
endpoint: Endpoint
|
|
164
|
+
filter: Lọc
|
|
165
|
+
key: Chìa khóa
|
|
166
|
+
key_placeholder: Nhập UUID
|
|
167
|
+
placeholder_endpoint: http://example.com
|
|
168
|
+
playlist: Danh sách phát
|
|
169
|
+
serverConfig: Cấu hình máy chủ
|
|
170
|
+
time: Thời gian
|
|
171
|
+
placeholder:
|
|
172
|
+
enterDescription: Nhập mô tả
|
|
173
|
+
enterName: Nhập tên
|
|
174
|
+
validate:
|
|
175
|
+
channel_mode: Vui lòng chọn chế độ Kênh
|
|
176
|
+
existMachine: Máy chủ không tồn tại
|
|
177
|
+
formatContentId: Content ID bao gồm các ký tự hợp lệ (A-Z, a-z, 0-9, "-", "_")
|
|
178
|
+
formatDescription: Mô tả bao gồm các ký tự hợp lệ (A-Z, a-z, 0-9, "-", "_", " ")
|
|
179
|
+
formatName: Tên bao gồm các ký tự hợp lệ (A-Z, a-z, 0-9, "-", "_")
|
|
180
|
+
formatUUID: Định dạng trường {field} không phải là UUID hợp lệ
|
|
181
|
+
formatUri: Định dạng trường uri không hợp lệ
|
|
182
|
+
length: Độ dài phải từ {min} đến {max}
|
|
183
|
+
primary: Vui lòng nhập URI
|
|
184
|
+
require: Không nên để trống
|
|
185
|
+
requireBlackout: Vui lòng chọn mất điện
|
|
186
|
+
requireProfile: Vui lòng chọn hồ sơ
|
|
187
|
+
requireTranscoder: Vui lòng chọn bộ chuyển mã
|
|
188
|
+
requiredContentId: Vui lòng nhập URI khóa
|
|
189
|
+
requiredDrmSystem: ''
|
|
190
|
+
requiredEndpoint: Vui lòng nhập Điểm cuối
|
|
191
|
+
requiredEnvironment: ''
|
|
192
|
+
requiredKey: Vui lòng nhập khóa
|
|
193
|
+
requiredKeyId: Vui lòng nhập ID khóa
|
|
194
|
+
requiredKeyUri: Vui lòng nhập URI khóa
|
|
195
|
+
requiredUriKeyIdTranscode: '''Vui lòng nhập giao thức: http:// hoặc https://'''
|
|
196
|
+
requrieDrm: Vui lòng chọn thông tin xác thực DRM
|
|
197
|
+
setup_type: Vui lòng chọn kiểu cài đặt
|
|
198
|
+
type: Vui lòng chọn loại
|
|
199
|
+
fps_less_10_greater_60: FPS không thể nhỏ hơn 10 và lớn hơn 60
|
|
200
|
+
frame_rate: Frame Rate
|
|
201
|
+
general_information: General Information
|
|
202
|
+
gop_size: Gop Size
|
|
203
|
+
gop_value_required: Kích thước Gop là bắt buộc
|
|
204
|
+
gopsize_cannot_be_less_than_17_and_greater_than_300: Khung không thể nhỏ hơn 17 và lớn hơn 300
|
|
205
|
+
height_less_0_greater_7680: Chiều cao không thể nhỏ hơn 0 và lớn hơn 4320
|
|
206
|
+
http_dynamic_streaming: (HTTP Dynamic Streaming)
|
|
207
|
+
http_live_streaming: (HTTP Live Streaming)
|
|
208
|
+
input_pid_cannot_exceed_50_characters: PID đầu vào không thể vượt quá 50 ký tự
|
|
209
|
+
invalid_ip: ip không hợp lệ
|
|
210
|
+
invalid_url: URI không hợp lệ
|
|
211
|
+
label:
|
|
212
|
+
channel_mode: Chế độ kênh
|
|
213
|
+
cluster: Cụm
|
|
214
|
+
description: Sự miêu tả
|
|
215
|
+
machineType: Loại máy chủ
|
|
216
|
+
machines: Máy chủ
|
|
217
|
+
mode: Cách thức
|
|
218
|
+
name: Tên
|
|
219
|
+
name-modifier: Công cụ sửa đổi tên
|
|
220
|
+
primaryServer: Máy chủ chính
|
|
221
|
+
primarySource: Nguồn chính
|
|
222
|
+
primary_sdi_backup_input: Máy chủ dự phòng đầu vào SDI chính
|
|
223
|
+
primary_sdi_input: Đầu vào SDI chính
|
|
224
|
+
profiles: Hồ sơ
|
|
225
|
+
secondarySource: Nguồn phụ
|
|
226
|
+
secondary_sdi_backup_input: Máy chủ dự phòng đầu vào SDI thứ cấp
|
|
227
|
+
secondary_sdi_input: Đầu vào SDI thứ cấp
|
|
228
|
+
selectProfile: Chọn hồ sơ
|
|
229
|
+
setup_type: Loại thiết lập
|
|
230
|
+
tags: Thẻ
|
|
231
|
+
type: Kiểu
|
|
232
|
+
username: Tên người dùng
|
|
233
|
+
list: Danh sách profile
|
|
234
|
+
load: Tải
|
|
235
|
+
maxrate_khong_duoc_lon_hon_60m: Tốc độ tối đa không thể lớn hơn 60000000
|
|
236
|
+
maxrate_khong_duoc_lon_hon_bitrate: Tốc độ tối đa không thể nhỏ hơn Bitrate
|
|
237
|
+
message:
|
|
238
|
+
confirmDeleteAsset: Bạn có chắc chắn xóa nội dung không?
|
|
239
|
+
confirmDeleteWatermark: Bạn có chắc chắn xóa hình mờ không?
|
|
240
|
+
confirm_delete: Bạn có chắc chắn muốn xóa
|
|
241
|
+
createCompleted: Đã tạo thành công!
|
|
242
|
+
noData: không có dữ liệu
|
|
243
|
+
require-name-target: Vui lòng nhập tên
|
|
244
|
+
selectMachineAndCluster: Vui lòng chọn máy chủ/cụm
|
|
245
|
+
selectMachineFirst: Vui lòng chọn một máy chủ
|
|
246
|
+
selectMachineType: Vui lòng chọn loại máy chủ
|
|
247
|
+
the_program_id_already_exists: ID chương trình đã tồn tại
|
|
248
|
+
updateCompleted: Cập nhật thành công!
|
|
249
|
+
warning: Cảnh báo
|
|
250
|
+
microsoft_smooth_streaming: (Microsoft Smooth Streaming)
|
|
251
|
+
microsoft_technology_for_adaptive_streaming_of_video: Microsoft technology for adaptive streaming of video.
|
|
252
|
+
model_is_required: Vui lòng nhập Model
|
|
253
|
+
mpeg_standard_for_adaptive_bitrate_streaming_over_http: Tiêu chuẩn MPEG để truyền phát tốc độ bit thích ứng qua HTTP.
|
|
254
|
+
name_modifier: sửa đổi tên
|
|
255
|
+
name_modifier_is_required: Vui lòng nhập từ sửa đổi Tên
|
|
256
|
+
network_protocol_for_efficient_multi-recipient_data_delivery: Giao thức mạng để phân phối dữ liệu hiệu quả cho nhiều người nhận.
|
|
257
|
+
new_profile: Hồ sơ mới
|
|
258
|
+
only_a_maximum_of_10_profiles_can_be_added: Chỉ có thể thêm tối đa 10 hồ sơ
|
|
259
|
+
other: Other
|
|
260
|
+
output_pid_cannot_exceed_50_characters: PID đầu ra không thể vượt quá 50 ký tự
|
|
261
|
+
path_model: Mô hình đường dẫn
|
|
262
|
+
placeholder:
|
|
263
|
+
enter: Đi vào
|
|
264
|
+
enterDescription: Nhập mô tả
|
|
265
|
+
enterName: Nhập tên
|
|
266
|
+
searchName: Tên tìm kiếm
|
|
267
|
+
select: Lựa chọn
|
|
268
|
+
selectDrm: Chọn thông tin xác thực DRM
|
|
269
|
+
please_configure_the_input: Vui lòng cấu hình đầu vào!
|
|
270
|
+
please_enter_a_valid_value_after_the_0x_prefix: Vui lòng nhập giá trị hợp lệ sau tiền tố 0x
|
|
271
|
+
please_enter_a_value_from_0x0010_to_0x1ffe: Vui lòng nhập giá trị từ 0x0010 đến 0x1FFE
|
|
272
|
+
please_enter_a_value_from_16_to_8190: Vui lòng nhập giá trị từ 16 đến 8190
|
|
273
|
+
please_enter_pid: Vui lòng nhập PID
|
|
274
|
+
please_fill_in_all_fields: Vui lòng điền vào tất cả các trường
|
|
275
|
+
please_input_ip: Vui lòng nhập ip
|
|
276
|
+
please_input_path_model: Vui lòng nhập mô hình đường dẫn
|
|
277
|
+
please_select_profile: Vui lòng chọn hồ sơ
|
|
278
|
+
preset_is_required: Vui lòng chọn Preset
|
|
279
|
+
rate_control: Rate Control
|
|
280
|
+
real-time_messaging_protocol: (Real-Time Messaging Protocol)
|
|
281
|
+
replaced_name: Tên thay thế
|
|
282
|
+
second_cannot_be_less_than_17_and_greater_than_300: Thứ hai không thể nhỏ hơn 1 và lớn hơn 16
|
|
283
|
+
technique_for_transmitting_multiple_signals_over_one_medium: Technique for transmitting multiple signals over one medium.
|
|
284
|
+
template: Bản mẫu
|
|
285
|
+
the_number_of_outputs_that_can_be_generated_ranges_from_1_to_10: Số lượng đầu ra có thể được tạo ra trong khoảng từ 1 đến 10
|
|
286
|
+
this_feature_is_only_supported_when_using_nvenc_please_switch_to_nvenc_or_disable_the_feature_to_continue: >-
|
|
287
|
+
Tính năng này chỉ hỗ trợ khi sử dụng NVENC. Vui lòng chuyển sang NVENC hoặc
|
|
288
|
+
tắt tính năng để tiếp tục
|
|
289
|
+
this_field_is_required: Trường này là bắt buộc
|
|
290
|
+
time_offset: Bù thời gian
|
|
291
|
+
transcode:
|
|
292
|
+
secure_low-latency_streaming_protocol: Secure, low-latency streaming protocol
|
|
293
|
+
update_profile: Cập nhật hồ sơ
|
|
294
|
+
validate:
|
|
295
|
+
required: Không nên để trống
|
|
296
|
+
width_less_0_greater_7680: Chiều rộng không thể nhỏ hơn 0 và lớn hơn 7680
|
|
297
|
+
SSconfig:
|
|
298
|
+
drm:
|
|
299
|
+
title: Thông tin xác thực DRM
|
|
300
|
+
Server:
|
|
301
|
+
locked_due_to_role_assignments_from_primary_server: Bị khóa do phân công vai trò từ máy chủ chính
|
|
302
|
+
User:
|
|
303
|
+
user: Người dùng
|
|
304
|
+
VastControl:
|
|
305
|
+
add_condition: Thêm điều kiện
|
|
306
|
+
apply: Áp dụng
|
|
307
|
+
please_input_value: Vui lòng nhập giá trị
|
|
308
|
+
Vod:
|
|
309
|
+
ai_config: AI Cấu hình nâng cao
|
|
310
|
+
app: Ứng dụng
|
|
311
|
+
create_ai_config_for_job: Tạo cấu hình AI cho công việc
|
|
312
|
+
Warning: Cảnh báo
|
|
313
|
+
actions:
|
|
314
|
+
download: Tải xuống
|
|
315
|
+
get_help: Nhận trợ giúp
|
|
316
|
+
select: Lựa chọn
|
|
317
|
+
addLicense: Thêm giấy phép
|
|
318
|
+
add_license: Thêm giấy phép
|
|
319
|
+
add_media_from_links: Thêm phương tiện từ các liên kết
|
|
320
|
+
add_video_just_paste_links_your_video_below_link_format: |-
|
|
321
|
+
Thêm video bằng cách chỉ cần dán các liên kết tới video của bạn bên dưới!
|
|
322
|
+
Định dạng liên kết là một liên kết trên mỗi dòng.
|
|
323
|
+
Liên kết tối đa cho mỗi lần tải lên: 100 liên kết.
|
|
324
|
+
Các liên kết này sẽ không được tải lên bộ nhớ nhưng có sẵn để sử dụng ngay
|
|
325
|
+
admin_main:
|
|
326
|
+
if_you_do_not_enable_two-factor_authentication_you_will_not_be_able_to_access: Nếu bạn không kích hoạt xác thực hai yếu tố, bạn sẽ không thể truy cập.
|
|
327
|
+
the_sigma_admin_site_now_requires_all_users_to_enable_2-factor: >-
|
|
328
|
+
Trang Sigma Admin hiện yêu cầu tất cả người dùng bật xác thực 2 yếu tố khi
|
|
329
|
+
đăng nhập. Bạn nên bật xác thực 2 yếu tố để truy cập ứng dụng
|
|
330
|
+
an_invalid_link_exists: Tồn tại liên kết không hợp lệ
|
|
331
|
+
app:
|
|
332
|
+
back-to-app-list: Quay lại danh sách ứng dụng
|
|
333
|
+
are_you_sure_you_want_to_cancel_import_from_links: Bạn có chắc chắn muốn hủy nhập từ liên kết
|
|
334
|
+
asset:
|
|
335
|
+
data not found: Dữ liệu không tồn tại
|
|
336
|
+
authenticator:
|
|
337
|
+
access_denied: Truy cập bị từ chối!
|
|
338
|
+
account_disabled_2fa: |-
|
|
339
|
+
Tài khoản của bạn hiện chưa bật xác thực hai yếu tố.
|
|
340
|
+
Bạn nên kích hoạt xác thực hai yếu tố để truy cập ứng dụng
|
|
341
|
+
application_access_failed: Truy cập ứng dụng không thành công
|
|
342
|
+
complete: Hoàn thành
|
|
343
|
+
confirm_turn_off_2fa: Bạn có chắc chắn muốn tắt xác thực hai yếu tố không?
|
|
344
|
+
copied: Đã sao chép!
|
|
345
|
+
copy_codes: Sao chép mã
|
|
346
|
+
des_enter_confirm_code: Vui lòng nhập mã xác nhận bạn thấy trên ứng dụng xác thực của mình
|
|
347
|
+
des_enter_confirm_code_login: >-
|
|
348
|
+
Nhập mã 6 chữ số từ ứng dụng xác thực mà bạn thiết lập hoặc sử dụng mã khôi
|
|
349
|
+
phục
|
|
350
|
+
des_recovery_code: >-
|
|
351
|
+
Nếu bạn bị mất điện thoại hoặc quyền truy cập vào mật khẩu bí mật dùng một
|
|
352
|
+
lần của mình, mỗi mã khôi phục này có thể được sử dụng một lần để lấy lại
|
|
353
|
+
quyền truy cập vào tài khoản của bạn.
|
|
354
|
+
|
|
355
|
+
Vui lòng lưu chúng ở nơi an toàn, nếu không bạn sẽ mất quyền truy cập vào
|
|
356
|
+
tài khoản của mình.
|
|
357
|
+
des_switch_2fa: >-
|
|
358
|
+
Sử dụng ứng dụng như Google Authenticator để tạo mã xác minh nhằm bảo vệ tốt
|
|
359
|
+
hơn
|
|
360
|
+
description_scan_qr: >-
|
|
361
|
+
Vui lòng sử dụng ứng dụng xác thực của bạn (chẳng hạn như Google
|
|
362
|
+
Authenticator) để quét mã QR này
|
|
363
|
+
enter_confirmation_code: Nhập mã xác nhận
|
|
364
|
+
enter_the_6-digit_code: Nhập mã gồm 6 chữ số
|
|
365
|
+
enter_the_login_code: Nhập mã đăng nhập
|
|
366
|
+
or_enter_this_code_into_your_authentication_app: Hoặc nhập mã này vào ứng dụng xác thực của bạn
|
|
367
|
+
regenerate_recovery_codes: Tạo lại mã khôi phục
|
|
368
|
+
'set_up_via_third_party_authenticator ': Thiết lập thông qua trình xác thực của bên thứ ba
|
|
369
|
+
sorry_you_have_no_permission_to_visit_this_page: Xin lỗi, bạn không có quyền truy cập trang này
|
|
370
|
+
success_disable_2fa: Xác thực hai yếu tố đã được tắt thành công!
|
|
371
|
+
success_enable_2fa: |-
|
|
372
|
+
Chúc mừng!
|
|
373
|
+
Bạn đã kích hoạt xác thực hai yếu tố!
|
|
374
|
+
this_app_requires_enabling_two-factor_authentication: >-
|
|
375
|
+
Ứng dụng này yêu cầu kích hoạt xác thực hai yếu tố để tài khoản người dùng
|
|
376
|
+
của bạn truy cập ứng dụng
|
|
377
|
+
turn_off_two_factor_authentication: Tắt xác thực hai yếu tố?
|
|
378
|
+
turn_on_two-factor_authentication: Bật xác thực hai yếu tố
|
|
379
|
+
two-factor_authentication_recovery_code: Xác thực hai yếu tố Mã khôi phục
|
|
380
|
+
view_recovery_code: Xem mã khôi phục
|
|
381
|
+
base:
|
|
382
|
+
advanced_config_error: Lỗi cấu hình nâng cao AI
|
|
383
|
+
after_you_change_the_default_information_you_should_click_the_reload_to_reload_the_video: Sau khi thay đổi thông tin mặc định bạn nhấn vào Tải lại để tải lại video
|
|
384
|
+
all: Tất cả
|
|
385
|
+
all_media_type: Tất cả media type
|
|
386
|
+
all_status: Tất cả các trạng thái
|
|
387
|
+
an_error_occurred_while_loading_data_please_try_again_later: |-
|
|
388
|
+
Đã xảy ra lỗi khi tải dữ liệu.
|
|
389
|
+
Vui lòng thử lại sau
|
|
390
|
+
are_you_sure_you_want_to_send_the_report_now: Bạn có chắc là bạn muốn gửi báo cáo ngay bây giờ?
|
|
391
|
+
cancel: Hủy bỏ
|
|
392
|
+
cannot_contain_all_space: '{name} không thể chứa tất cả khoảng trắng'
|
|
393
|
+
clear_filter: Xóa bộ lọc
|
|
394
|
+
created_at: Thời gian tạo
|
|
395
|
+
created_successfully: Đã tạo thành công!
|
|
396
|
+
enter_your_app_id: Nhập App ID của bạn
|
|
397
|
+
enter_your_merchant_id: Nhập Merchant ID của bạn
|
|
398
|
+
enter_your_session_id: Nhập Session ID của bạn
|
|
399
|
+
enter_your_user_id: Nhập User ID của bạn
|
|
400
|
+
error_loading_data: Lỗi tải dữ liệu
|
|
401
|
+
filter_assets_to_fit_gap: Filter Assets to Fit Gap
|
|
402
|
+
last_12_hours: 12 giờ trước
|
|
403
|
+
last_1_hour: 1 giờ trước
|
|
404
|
+
last_24_hours: ' 24 giờ trước'
|
|
405
|
+
last_3_hours: 3 giờ trước
|
|
406
|
+
last_6_hours: 6 giờ trước
|
|
407
|
+
learn_more: Tìm hiểu thêm
|
|
408
|
+
maximum_files_per_upload_100_files: 'Số tệp tối đa mỗi lần tải lên: 100 tệp'
|
|
409
|
+
move_down: Di chuyển xuống
|
|
410
|
+
move_up: Di chuyển lên
|
|
411
|
+
name: tên
|
|
412
|
+
name_can_not_contain_special_characters: '{name} không được chứa ký tự đặc biệt hay khoảng trắng'
|
|
413
|
+
name_can_not_contain_special_characters_with_s: '{name} không được chứa ký tự đặc biệt'
|
|
414
|
+
name_can_not_special_characters: '{name} không được chứa ký tự đặc biệt'
|
|
415
|
+
name_cannot_contain_accented_characters: '{name} không chứa kí tự có dấu'
|
|
416
|
+
name_should_not_empty: '{name} không được để trống'
|
|
417
|
+
no_alternative_program: Không có chương trình thay thế
|
|
418
|
+
no_data: Không có dữ liệu
|
|
419
|
+
no_matches: Không có kết quả phù hợp
|
|
420
|
+
please_add_a_name: Vui lòng thêm một {name}
|
|
421
|
+
please_input_app_id: Vui lòng nhập App ID
|
|
422
|
+
please_input_merchant_id: Vui lòng nhập Merchant ID
|
|
423
|
+
please_input_name: Vui lòng nhập {name}
|
|
424
|
+
please_input_session_id: Vui lòng nhập Session ID
|
|
425
|
+
please_input_user_id: Vui lòng nhập User ID
|
|
426
|
+
please_select_at_least_one_playlist: Vui lòng chọn ít nhất một danh sách phát
|
|
427
|
+
reload: Tải lại
|
|
428
|
+
remove: Loại bỏ
|
|
429
|
+
retry: Thử lại
|
|
430
|
+
seconds: giây
|
|
431
|
+
select_category: Chọn danh mục
|
|
432
|
+
select_time: Chọn thời gian
|
|
433
|
+
send_report_now: Gửi báo cáo ngay bây giờ?
|
|
434
|
+
send_successfully: Đã gửi thành công!
|
|
435
|
+
swap_successfully: Đã hoán đổi thành công!
|
|
436
|
+
the_name_should_not_exceed_50_characters: '{name} không được vượt quá 50 ký tự'
|
|
437
|
+
the_report_has_been_sent_successfully: Báo cáo đã được gửi thành công!
|
|
438
|
+
there_is_no_data_to_display: Không có dữ liệu để hiển thị
|
|
439
|
+
updated_at: Cập nhật
|
|
440
|
+
updated_successfully: Đã cập nhật thành công!
|
|
441
|
+
upload: Tải lên
|
|
442
|
+
upload_asset: Tải lên asset
|
|
443
|
+
upload_multimedia_content_for_use_with_in-app_products: Tải lên nội dung đa phương tiện để sử dụng với sản phẩm trong ứng dụng.
|
|
444
|
+
validate:
|
|
445
|
+
formatName: 'Tên bao gồm các ký tự hợp lệ: A-Z, a-z, 0-9, "-", "_"'
|
|
446
|
+
min-max: Giá trị phải là một số nguyên giữa {min} và {max}
|
|
447
|
+
view: Xem
|
|
448
|
+
we_cant_find_a_match: Chúng tôi không thể tìm thấy kết quả phù hợp
|
|
449
|
+
with_the_delay_time_being: với thời gian delay là
|
|
450
|
+
with_the_select_time_being: với thời gian chọn
|
|
451
|
+
with_the_timeshift_time_being: với thời gian timeshift là
|
|
452
|
+
you_are_currently_viewing_the_preview_with_the_mode_being: Bạn hiện đang xem bản xem trước với chế độ
|
|
453
|
+
base_libary:
|
|
454
|
+
are_you_sure_you_want_to_resync_the_data_0: Bạn có chắc là bạn muốn đồng bộ lại dữ liệu {0}?
|
|
455
|
+
base_library:
|
|
456
|
+
label:
|
|
457
|
+
tags: Thẻ
|
|
458
|
+
bucket_name:
|
|
459
|
+
bucket_names_can_consist_only_of_lowercase_letters_numbers_dots_and_hyphens_-: >-
|
|
460
|
+
Bucket names chỉ có thể bao gồm các chữ cái viết thường, số, dấu chấm (.) và
|
|
461
|
+
dấu gạch nối (-)
|
|
462
|
+
bucket_names_must_begin_and_end_with_a_letter_or_number: Tên nhóm phải bắt đầu và kết thúc bằng chữ thường hoặc số
|
|
463
|
+
bucket_names_must_not_be_formatted_as_an_ip_address: Bucket names không được định dạng dưới dạng địa chỉ IP
|
|
464
|
+
bucket_names_must_not_contain_two_adjacent_periods: Bucket names không được chứa hai chứa hai dấu chấm liền nhau
|
|
465
|
+
bucket_names_must_not_end_with_the_suffix_--ol-s3: Bucket names không được kết thúc bằng hậu tố --ol-s3
|
|
466
|
+
bucket_names_must_not_start_with_the_prefix_xn--_and_sthree-_and_the_prefix_sthree-configurator: >-
|
|
467
|
+
Bucket names không được bắt đầu bằng tiền tố xn-- và sthree- và tiền tố
|
|
468
|
+
sthree-configurator
|
|
469
|
+
placeholder: Nhập bucket name
|
|
470
|
+
valid_length: Bucket names phải dài từ 3 (tối thiểu) đến 63 (tối đa) ký tự
|
|
471
|
+
bucket_name_invalid: Bucket Name không hợp lệ
|
|
472
|
+
cancel: Hủy bỏ
|
|
473
|
+
channel:
|
|
474
|
+
are_you_sure_you_want_to_go_back_this_will_discard_any_unsaved_changes: |-
|
|
475
|
+
Bạn có chắc chắn muốn quay lại không?
|
|
476
|
+
Thao tác này sẽ loại bỏ mọi thay đổi chưa được lưu
|
|
477
|
+
name: Tên
|
|
478
|
+
source_index_is_required: Vui lòng nhập chỉ mục nguồn
|
|
479
|
+
do_not_exceed_100_links_links: Không vượt quá 100 link, link vượt quá giới hạn sẽ tự động bị xóa khi gửi
|
|
480
|
+
does_not_have_a_license_or_the_license_has_expired_please_add_a_license_for_the_server: |-
|
|
481
|
+
không có giấy phép hoặc giấy phép đã hết hạn.
|
|
482
|
+
Vui lòng thêm giấy phép cho máy chủ.
|
|
483
|
+
expired_license_a_license_for_the_server: |-
|
|
484
|
+
không có giấy phép hoặc giấy phép đã hết hạn.
|
|
485
|
+
Vui lòng thêm giấy phép cho máy chủ.
|
|
486
|
+
fast_channel:
|
|
487
|
+
duration: Khoảng thời gian
|
|
488
|
+
duration_cannot_exceed_1_hours: Thời lượng không thể vượt quá 1 giờ
|
|
489
|
+
duration_must_be_at_least_30_seconds: Thời lượng phải là ít nhất 30 giây
|
|
490
|
+
go_back: Quay lại
|
|
491
|
+
no_input: Không có đầu vào
|
|
492
|
+
select_vod: Chọn VOD
|
|
493
|
+
forensic:
|
|
494
|
+
enter_the_wm_in_hexadecimal_format_e_g_0x64: 'Nhập WM (ở định dạng thập lục phân, ví dụ: 0x64)'
|
|
495
|
+
type_is_required: Loại là bắt buộc
|
|
496
|
+
wm_is_required: wm là bắt buộc
|
|
497
|
+
form:
|
|
498
|
+
form_validation_failed: |-
|
|
499
|
+
Xác thực biểu mẫu không thành công.
|
|
500
|
+
Vui lòng kiểm tra lại
|
|
501
|
+
formatted_links: Định dạng liên kết
|
|
502
|
+
general:
|
|
503
|
+
action: Hành động
|
|
504
|
+
are_you_sure_you_want_to_close: Bạn có chắc chắn muốn đóng không?
|
|
505
|
+
close: Đóng
|
|
506
|
+
condition: Tình trạng
|
|
507
|
+
confirm: Xác nhận
|
|
508
|
+
create: Tạo
|
|
509
|
+
default_value: Giá trị mặc định
|
|
510
|
+
delete: Xóa bỏ
|
|
511
|
+
edit: Chỉnh sửa
|
|
512
|
+
enum: Cho phép chọn trong tập hợp
|
|
513
|
+
example: Ví dụ
|
|
514
|
+
information: Thông tin
|
|
515
|
+
loading_failed: Tải thất bại
|
|
516
|
+
maximum_value: Giá trị tối đa
|
|
517
|
+
maxlength: Độ dài tối đa
|
|
518
|
+
minimum: tối thiểu
|
|
519
|
+
minimum_value: Giá trị tối thiểu
|
|
520
|
+
minlength: Độ dài tối thiểu
|
|
521
|
+
name: Tên
|
|
522
|
+
ok: Đồng ý
|
|
523
|
+
rename: Đổi tên
|
|
524
|
+
save: Lưu
|
|
525
|
+
state: Trạng thái
|
|
526
|
+
status: Trạng thái
|
|
527
|
+
submit: Xác nhận
|
|
528
|
+
updated_at: Thời gian cập nhật
|
|
529
|
+
valid_file: Tệp hợp lệ
|
|
530
|
+
warning: Cảnh báo
|
|
531
|
+
global:
|
|
532
|
+
error: Lỗi
|
|
533
|
+
loading: Đang tải...
|
|
534
|
+
import_from_links: Nhập liên kết
|
|
535
|
+
label:
|
|
536
|
+
source: Nguồn
|
|
537
|
+
tag: Thẻ
|
|
538
|
+
library:
|
|
539
|
+
add_asset_to_playlist: Thêm asset vào playlist
|
|
540
|
+
add_assets_to_playlist_successfully: Thêm tài sản vào danh sách phát thành công
|
|
541
|
+
add_to_playlist: Thêm vào playlist
|
|
542
|
+
are_you_sure_to_delete_this_asset: Bạn có chắc chắn xóa asset này không?
|
|
543
|
+
are_you_sure_you_want_to_close_this: Bạn có chắc bạn muốn đóng cái này không?
|
|
544
|
+
are_you_sure_you_want_to_delete_0_assets: Bạn có chắc là bạn muốn xóa {0} assets không?
|
|
545
|
+
duplicate: Nhân bản
|
|
546
|
+
edit: Chỉnh sửa
|
|
547
|
+
key: Key
|
|
548
|
+
select_all: Chọn tất cả
|
|
549
|
+
selected_0_assets: Đã chọn {0} assets
|
|
550
|
+
title: tiêu đề
|
|
551
|
+
value: giá trị
|
|
552
|
+
library_profile:
|
|
553
|
+
must_have_at_least_1_video_preset_and_1_audio_preset: Phải có ít nhất 1 preset video hoặc 1 preset audio
|
|
554
|
+
link_invalid: liên kết không hợp lệ
|
|
555
|
+
links: liên kết
|
|
556
|
+
links_valid: liên kết hợp lệ
|
|
557
|
+
login:
|
|
558
|
+
email_invalid: Vui lòng nhập email hợp lệ
|
|
559
|
+
email_label: E-mail
|
|
560
|
+
email_placeholder: Nhập email của bạn
|
|
561
|
+
email_required: Vui lòng nhập email
|
|
562
|
+
password_invalid: Mật khẩu phải chứa ít nhất 1 kí tự in hoa, 1 kí tự in thường và số
|
|
563
|
+
password_label: Mật khẩu
|
|
564
|
+
password_length: Mật khẩu phải có ít nhất 8 ký tự và tối đa 64 ký tự
|
|
565
|
+
password_placeholder: Nhập mật khẩu của bạn
|
|
566
|
+
password_required: Xin vui lòng nhập mật khẩu
|
|
567
|
+
password_use_only: Chỉ sử dụng các chữ cái, số và các ký tự dấu câu phổ biến
|
|
568
|
+
please_enter_password: Xin vui lòng nhập mật khẩu
|
|
569
|
+
sign_in: Đăng nhập
|
|
570
|
+
sign_out: Đăng xuất
|
|
571
|
+
logout:
|
|
572
|
+
dialog:
|
|
573
|
+
cancel: Hủy bỏ
|
|
574
|
+
confirm: Xác nhận
|
|
575
|
+
message: Bạn có chắc chắn muốn đăng xuất không?
|
|
576
|
+
title: Đăng xuất khỏi Sigma
|
|
577
|
+
success: Đăng xuất thành công!
|
|
578
|
+
main:
|
|
579
|
+
action: Hành động
|
|
580
|
+
ask_anything: Nhập câu hỏi của bạn
|
|
581
|
+
chat_name: Tên trò chuyện
|
|
582
|
+
chat_with_us: Chat với chúng tôi
|
|
583
|
+
check_the_current_status_of_the_entire_system: Kiểm tra trạng thái hiện tại của toàn bộ hệ thống
|
|
584
|
+
check_the_status_of_the_entire_system_yesterday: Kiểm tra trạng thái của toàn bộ hệ thống trong hôm qua
|
|
585
|
+
clear_chat: Xoá lịch sử chat
|
|
586
|
+
close_chat: Đóng
|
|
587
|
+
close_chat_fullscreen: Đóng toàn màn hình
|
|
588
|
+
close_history_sidebar: Đóng danh sách trò chuyện
|
|
589
|
+
confirmDeleteMessage: |-
|
|
590
|
+
Bạn có chắc là bạn muốn xóa hội thoại "{chatTitle}" không?
|
|
591
|
+
Hành động này không thể được hoàn tác.
|
|
592
|
+
conversation_deleted_successfully: Cuộc trò chuyện đã xóa thành công
|
|
593
|
+
delete: Xóa bỏ
|
|
594
|
+
delete_conversation: Xóa cuộc trò chuyện
|
|
595
|
+
enter_your_message: Nhập nội dung cần hỗ trợ
|
|
596
|
+
expand_chat: Mở rộng trò chuyện
|
|
597
|
+
failed_to_load_conversation: Không thể tải cuộc trò chuyện. Vui lòng thử lại.
|
|
598
|
+
failed_to_load_conversations: Không tải các cuộc hội thoại
|
|
599
|
+
handling_task_error_of_sigma_media_server: Xử lý lỗi tác vụ của Sigma Media Server
|
|
600
|
+
hello_there_need_help_reach_out_to_us_right_here: Xin chào! Bạn cần trợ giúp? Hãy liên hệ với chúng tôi ngay tại đây!
|
|
601
|
+
history: Lịch sử
|
|
602
|
+
loading_conversation: Đang tải cuộc trò chuyện...
|
|
603
|
+
new_chat: Trò chuyện mới
|
|
604
|
+
new_conversation: Trò chuyện mới
|
|
605
|
+
open_history_sidebar: Mở danh sách trò chuyện
|
|
606
|
+
rename: Đổi tên
|
|
607
|
+
search_conversations: Tìm kiếm
|
|
608
|
+
start_new_chat: Bắt đầu trò chuyện mới
|
|
609
|
+
the_message_is_only_stored_for_30_days: Chỉ hiển thị tối đa 10 tin nhắn mới nhất.
|
|
610
|
+
there_was_an_error_loading_your_chat_history_please_try_again: |-
|
|
611
|
+
Có một lỗi khi tải lịch sử trò chuyện của bạn.
|
|
612
|
+
Hãy thử lại.
|
|
613
|
+
thinking: Vui lòng chờ trong giây lát
|
|
614
|
+
total_conversations: 'Tổng số: {count} hội thoại'
|
|
615
|
+
try_again: Hãy thử lại
|
|
616
|
+
updated_at: Cập nhật
|
|
617
|
+
waiting_for_response: Đang chờ phản hồi ...
|
|
618
|
+
what_can_i_help_with: Tôi có thể giúp gì với?
|
|
619
|
+
message:
|
|
620
|
+
Warning: Cảnh báo
|
|
621
|
+
recheck_success: Kiểm tra lại thành công!
|
|
622
|
+
name_playlist: Danh sách phát
|
|
623
|
+
notification: Thông báo
|
|
624
|
+
playout:
|
|
625
|
+
actions: Hành động
|
|
626
|
+
asset_not_found: Không tìm thấy asset
|
|
627
|
+
input_not_found: Không tìm thấy Input
|
|
628
|
+
learn_more: Tìm hiểu thêm
|
|
629
|
+
no_signal: Không có tín hiệu
|
|
630
|
+
preview_is_not_valid: >-
|
|
631
|
+
Không thể xem trước. Vui lòng kiểm tra trạng thái kênh và trạng thái của job
|
|
632
|
+
tương ứng
|
|
633
|
+
select_live: Chọn Live
|
|
634
|
+
select_the: Chọn
|
|
635
|
+
sorry_the_preview_is_currently_unavailable_due_to_an_issue: |-
|
|
636
|
+
Xin lỗi, bản xem trước hiện không có sẵn do vấn đề.
|
|
637
|
+
Để giải quyết điều này, vui lòng làm theo các hướng dẫn cài đặt bên dưới.
|
|
638
|
+
to_end_the_segment_to_be_kept: để kết thúc segment được giữ
|
|
639
|
+
to_start_and_the: để bắt đầu và
|
|
640
|
+
please_enter_link: Vui lòng nhập liên kết
|
|
641
|
+
please_input_links: Vui lòng nhập link
|
|
642
|
+
ratio_height_less_0_greater_1000: Khẩu phần khía cạnh chiều cao không thể nhỏ hơn 0 và lớn hơn 1000
|
|
643
|
+
ratio_width_less_0_greater_1000: Khẩu phần khung hình chiều rộng không thể nhỏ hơn 0 và lớn hơn 1000
|
|
644
|
+
seeMoreOptions: Xem thêm tùy chọn
|
|
645
|
+
select_app:
|
|
646
|
+
failed_to_check_quota: Không kiểm tra hạn ngạch
|
|
647
|
+
quota_check_service_not_available: Dịch vụ kiểm tra hạn ngạch không khả dụng
|
|
648
|
+
the_server: Máy chủ
|
|
649
|
+
title:
|
|
650
|
+
warning: Cảnh báo
|
|
651
|
+
transcode:
|
|
652
|
+
are_you_sure_you_want_to_delete_this_option: Bạn có chắc là bạn muốn xóa tùy chọn này không?
|
|
653
|
+
invalid_url: URI không hợp lệ
|
|
654
|
+
key_already_exists: Chìa khóa đã tồn tại!
|
|
655
|
+
key_includes_valid_characters_a-z_a-z: 'Khóa bao gồm các ký tự hợp lệ: A-Z, A-Z'
|
|
656
|
+
load: Tải
|
|
657
|
+
path: Đường dẫn
|
|
658
|
+
path_model: Mô hình đường dẫn
|
|
659
|
+
please_input_path_model: Vui lòng nhập mô hình đường dẫn
|
|
660
|
+
secure_low-latency_streaming_protocol: Giao thức truyền phát an toàn, độ trễ thấp
|
|
661
|
+
secure_reliable_transport: (Vận chuyển an toàn đáng tin cậy)
|
|
662
|
+
template: Bản mẫu
|
|
663
|
+
the_channel_information_has_been_changed_please_restart_the_channel_to_ensure_stable_operation: >-
|
|
664
|
+
Kênh đã được thay đổi thông tin, hãy thực hiện restart kênh để đảm bảo hoạt
|
|
665
|
+
động ổn định.
|
|
666
|
+
the_channel_information_has_been_changed_please_restart_the_job_to_ensure_stable_operation: >-
|
|
667
|
+
Kênh đã được thay đổi thông tin, hãy thực hiện restart job để đảm bảo hoạt
|
|
668
|
+
động ổn định.
|
|
669
|
+
value_includes_valid_characters_a-z_a-z_0-9_-: 'Giá trị bao gồm các ký tự hợp lệ: A-Z, A-Z, 0-9, "-", "_'
|
|
670
|
+
upload_files: Tải tập tin lên
|
|
671
|
+
urls_required: Vui lòng nhập link
|
|
672
|
+
user:
|
|
673
|
+
setting: Cài đặt
|
|
674
|
+
utilize_feature_you_must_first_complete: >-
|
|
675
|
+
Để sử dụng tính năng này, trước tiên bạn phải hoàn thành cấu hình lưu trữ đầu
|
|
676
|
+
ra
|
|
677
|
+
validate:
|
|
678
|
+
input_name_required: Vui lòng nhập Tên
|
|
679
|
+
input_url_invalid: Vui lòng nhập URL
|
|
680
|
+
invalid_url: URL không hợp lệ
|
|
681
|
+
tags:
|
|
682
|
+
accentedCharacters: Thẻ không thể chứa các ký tự có dấu và khoảng cách
|
|
683
|
+
noSpecialCharacters: Mục thẻ không được chứa ký tự đặc biệt
|
|
684
|
+
watermark:
|
|
685
|
+
an_error_occurred_during_the_process_please_try_again: Đã xảy ra lỗi trong quá trình này, vui lòng thử lại.
|
|
686
|
+
audio_file_size_cannot_exceed_50mb: Kích thước tệp âm thanh không được vượt quá 50MB
|
|
687
|
+
cancel: Hủy bỏ
|
|
688
|
+
channel: kênh
|
|
689
|
+
channels: kênh truyền hình
|
|
690
|
+
check: Kiểm tra
|
|
691
|
+
check_forensic_watermarking: Kiểm tra watermarking
|
|
692
|
+
check_other_watermarking: Kiểm tra watermark khác
|
|
693
|
+
check_your_system_settings_to_make_sure_sigma_streaming_has_permission_to_access_your_microphone_and_try_again: >-
|
|
694
|
+
Kiểm tra cài đặt hệ thống của bạn để đảm bảo Sigma streaming có quyền truy
|
|
695
|
+
cập micrô của bạn và thử lại
|
|
696
|
+
checking_please_wait: Đang kiểm tra, vui lòng đợi...
|
|
697
|
+
click_to_upload: bấm vào để tải lên
|
|
698
|
+
confirm: Xác nhận
|
|
699
|
+
description_watermark_detect: >-
|
|
700
|
+
Nội dung kiểm tra audio watermark được ghi âm từ luồng cần kiểm tra thông
|
|
701
|
+
qua một thiết bị điện tử, với điều kiện mức tạp âm xung quanh được duy trì ở
|
|
702
|
+
mức tối thiểu để nâng cao độ chính xác.
|
|
703
|
+
drop_file_here_or: Thả tập tin ở đây hoặc
|
|
704
|
+
duration_cannot_be_greater_than_20_seconds: Thời lượng không thể lớn hơn 20 giây
|
|
705
|
+
file_type_is_not_supported: Tệp không hợp lệ, vui lòng chọn tệp khác
|
|
706
|
+
forensic_watermarking: Forensic watermarking
|
|
707
|
+
found_count_channels_with_watermarking: Đã tìm thấy {count} {channel} có watermark
|
|
708
|
+
message:
|
|
709
|
+
handleConfirmClose: Bạn có chắc chắn muốn đóng không?
|
|
710
|
+
name: Tên
|
|
711
|
+
new_recording: Bản ghi mới
|
|
712
|
+
no_channels_found_with_watermarking: Không tìm thấy kênh nào có hình mờ
|
|
713
|
+
no_watermark_found: Không tìm thấy watermark
|
|
714
|
+
please_allow_access_to_your_microphone_to_continue: Vui lòng cho phép quyền truy cập vào micrô của bạn để tiếp tục
|
|
715
|
+
please_grant_permission_to_use_the_microphone_for_the_tool: Vui lòng cấp quyền sử dụng micro cho công cụ
|
|
716
|
+
press_the_button_to_start_recording: Nhấn nút để bắt đầu ghi âm
|
|
717
|
+
result_watermark_not_found_in_your_record_please_try_another_record: >-
|
|
718
|
+
Kết quả: Không tìm thấy watermark trong bản ghi của bạn, vui lòng thử bản
|
|
719
|
+
ghi khác.
|
|
720
|
+
stop: Dừng
|
|
721
|
+
the_system_automatically_stops_because_the_recording_duration_reaches_the_limit_of_20_seconds: |-
|
|
722
|
+
Thời lượng không thể vượt quá 20 giây.
|
|
723
|
+
Hệ thống sẽ tự động dừng khi thời lượng ghi đạt đến giới hạn 20 giây.
|
|
724
|
+
valid_file: Kích thước tệp âm thanh hợp lệ phải nhỏ hơn 50 MB.
|
|
725
|
+
warning: Cảnh báo
|
|
726
|
+
your_application_currently_has_a_server: Ứng dụng của bạn hiện có một máy chủ
|