From 7f67fdbbc18f402ff9ce88ffd4c48c0b46c95972 Mon Sep 17 00:00:00 2001 From: vipinpaul Date: Thu, 7 Dec 2023 12:17:41 +0530 Subject: [PATCH 1/2] Updated the about text and other text --- renderer/src/layouts/editor/AboutModal.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/renderer/src/layouts/editor/AboutModal.js b/renderer/src/layouts/editor/AboutModal.js index a1c95363a..4c12e32fc 100644 --- a/renderer/src/layouts/editor/AboutModal.js +++ b/renderer/src/layouts/editor/AboutModal.js @@ -160,7 +160,7 @@ export default function AboutModal(props) { {tabNumber === 0 && (

- This is a standalone desktop application which hopes to aid and be a friendly companion of the Bible Translator. In essence it is a basic USFM editor which is capable of import and export of USFM files. It has handy features like color-coded diffs across imported texts for comparison between revisions, search and replace and export to formatted HTML and Scribe Scripture will include capabilities for syncing data with online repositories and that this application is licensed differently. + Scribe Scripture Editor is a free and open-licensed desktop application that is designed to support the Bible translator with drafting and checking scripture in both text and audio formats as well as provides support for translating Open Bible Stories in different modes. The features include multi-project support, revision control (cloud sync), audio recording and seamless basic USFM editing. It has a modular architecture and is poised to grow and support the evolving needs on the ground.

)} {tabNumber === 1 @@ -221,7 +221,7 @@ export default function AboutModal(props) {
@@ -278,8 +278,7 @@ export default function AboutModal(props) {

- Thank you for your input - . + Thank you for your input. {' '} It is greatly appreciated. Our dedicated team is working continuously to offer a smooth Scribe experience.

From e39de15dcea581beca29103e9e682508b06ac7ad Mon Sep 17 00:00:00 2001 From: vipinpaul Date: Thu, 7 Dec 2023 12:43:15 +0530 Subject: [PATCH 2/2] Changed the icons of resource list --- .../src/components/Resources/ResourcesSideBar.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/renderer/src/components/Resources/ResourcesSideBar.js b/renderer/src/components/Resources/ResourcesSideBar.js index c5159b7b6..6e60019d1 100644 --- a/renderer/src/components/Resources/ResourcesSideBar.js +++ b/renderer/src/components/Resources/ResourcesSideBar.js @@ -3,10 +3,12 @@ import { DocumentTextIcon, PhotoIcon, - ChatBubbleLeftEllipsisIcon, + Square3Stack3DIcon, MicrophoneIcon, BookOpenIcon, QuestionMarkCircleIcon, + ClipboardDocumentListIcon, + AcademicCapIcon, } from '@heroicons/react/24/outline'; import React, { useState, useEffect } from 'react'; @@ -64,25 +66,25 @@ export default function ResourcesSidebar({ id: 'twlm', title: t('label-resource-twl'), resourceType: 'translationWordList', - Icon: PhotoIcon, + Icon: ClipboardDocumentListIcon, }, { id: 'tw', title: t('label-resource-twlm'), resourceType: 'translationWord', - Icon: ChatBubbleLeftEllipsisIcon, + Icon: Square3Stack3DIcon, }, { id: 'tq', title: t('label-resource-tq'), resourceType: 'translationQuestion', - Icon: BookOpenIcon, + Icon: QuestionMarkCircleIcon, }, { id: 'ta', title: t('label-resource-ta'), resourceType: 'translationAcademy', - Icon: PhotoIcon, + Icon: AcademicCapIcon, }, ], }, @@ -90,7 +92,7 @@ export default function ResourcesSidebar({ id: 'obs', title: t('label-resource-obs'), resourceType: 'obsResource', - Icon: ChatBubbleLeftEllipsisIcon, + Icon: PhotoIcon, subCategory: [ { id: 'obs-tn', @@ -108,7 +110,7 @@ export default function ResourcesSidebar({ id: 'obs-twlm', title: t('label-resource-obs-twl'), resourceType: 'obsTranslationWordList', - Icon: PhotoIcon, + Icon: ClipboardDocumentListIcon, }, ], },