Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change wordings in finish menu #1311

Merged
merged 3 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions src/i18n/locales/de-DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"finishMenu": {
"save-button": "Änderungen speichern",
"start-button": "Verarbeitung starten",
"start-button": "Änderungen speichern & verarbeiten",
"discard-button": "Änderungen verwerfen"
},
"save": {
Expand Down Expand Up @@ -80,7 +80,7 @@
"saveAndProcess-text": "Speichern & verarbeiten",
"selectWF-text": "Workflow wählen",
"noWorkflows-text": "Es gibt keine Workflows zum Verarbeiten Ihrer Änderungen. Bitte speichern Sie Ihre Änderungen und kontaktieren Sie einen Administrator.\n",
"oneWorkflow-text": "Das Video wird mit dem Workflow \"{{workflow}}\" geschnitten und verarbeitet. <3/> Dies wird einige Zeit dauern.\n",
"oneWorkflow-text": "Die Änderungen werden gespeichert und das Video wird mit dem Workflow \"{{workflow}}\" geschnitten und verarbeitet. <3/> Dies wird einige Zeit dauern.\n",
"manyWorkflows-text": "Wählen Sie aus, welchen Workflow Opencast für die Verarbeitung verwenden soll.",
"startProcessing-button": "Verarbeitung starten",
"back-button": "Zurück",
Expand Down
4 changes: 2 additions & 2 deletions src/i18n/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

"finishMenu": {
"save-button": "Save changes",
"start-button": "Start processing",
"start-button": "Save and process changes",
"discard-button": "Discard changes"
},

Expand Down Expand Up @@ -87,7 +87,7 @@
"saveAndProcess-text": "Save and Process",
"selectWF-text": "Select a workflow",
"noWorkflows-text": "There are no workflows to process your changes with. Please save your changes and contact an administrator.\n",
"oneWorkflow-text": "The video will be cut and processed with the workflow \"{{workflow}}\". <3/> This will take some time.\n",
"oneWorkflow-text": "The changes will be saved and the video will be cut and processed with the workflow \"{{workflow}}\". <3/> This will take some time.\n",
"manyWorkflows-text": "Select which workflow Opencast should use for processing.",
"startProcessing-button": "Start processing",
"back-button": "Take me back",
Expand Down
3 changes: 2 additions & 1 deletion src/main/WorkflowSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ const WorkflowSelection: React.FC = () => {
render(
t("workflowSelection.saveAndProcess-text"),
<Trans i18nKey="workflowSelection.oneWorkflow-text">
The video will be cut and processed with the workflow {{ workflow: workflows[0].name }}.<br />
The changes will be saved and the video will be cut and processed with
the workflow {{ workflow: workflows[0].name }}.<br />
This will take some time.
</Trans>,
false,
Expand Down
Loading