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

Adding tsv content for tA,obs-tQ,tQ #280

Merged
merged 1 commit into from
Jan 2, 2024
Merged
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
6 changes: 3 additions & 3 deletions renderer/src/components/Resources/ListResources.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,19 +106,19 @@ export const ListResources = ({
await fetchTranslationResource('TSV Translation Words Links', settranslationWordList, selectResource, selectedPreProd, snackBarAction);
break;
case 'tq':
await fetchTranslationResource('Translation Questions', setTranslationQuestion, selectResource, selectedPreProd, snackBarAction);
await fetchTranslationResource('Translation Questions&subject=tsv Translation Questions', setTranslationQuestion, selectResource, selectedPreProd, snackBarAction);
break;
case 'obs-tn':
await fetchTranslationResource('OBS Translation Notes&subject=tsv obs Translation notes', setObsTranslationNote, selectResource, selectedPreProd, snackBarAction);
break;
case 'obs-tq':
await fetchTranslationResource('OBS Translation Questions', setObsTranslationQuestion, selectResource, selectedPreProd, snackBarAction);
await fetchTranslationResource('OBS Translation Questions&subject=tsv obs Translation Questions', setObsTranslationQuestion, selectResource, selectedPreProd, snackBarAction);
break;
case 'obs-twlm':
await fetchTranslationResource('TSV OBS Translation Words Links', setObsTranslationWordList, selectResource, selectedPreProd, snackBarAction);
break;
case 'ta':
await fetchTranslationResource('Translation Academy', setTranslationAcademy, selectResource, selectedPreProd, snackBarAction);
await fetchTranslationResource('Translation Academy&subject=tsv Translation Academy', setTranslationAcademy, selectResource, selectedPreProd, snackBarAction);
break;
default:
break;
Expand Down
Loading