Skip to content

Commit

Permalink
Fixes/about icons (#274)
Browse files Browse the repository at this point in the history
* Updated the about text and other text

* Changed the icons of resource list
  • Loading branch information
vipinpaul authored Dec 7, 2023
1 parent e84986f commit f00f81b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
16 changes: 9 additions & 7 deletions renderer/src/components/Resources/ResourcesSideBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -64,33 +66,33 @@ 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,
},
],
},
{
id: 'obs',
title: t('label-resource-obs'),
resourceType: 'obsResource',
Icon: ChatBubbleLeftEllipsisIcon,
Icon: PhotoIcon,
subCategory: [
{
id: 'obs-tn',
Expand All @@ -108,7 +110,7 @@ export default function ResourcesSidebar({
id: 'obs-twlm',
title: t('label-resource-obs-twl'),
resourceType: 'obsTranslationWordList',
Icon: PhotoIcon,
Icon: ClipboardDocumentListIcon,
},
],
},
Expand Down
7 changes: 3 additions & 4 deletions renderer/src/layouts/editor/AboutModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default function AboutModal(props) {
{tabNumber === 0
&& (
<p className="text-sm text-gray-500">
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.
</p>
)}
{tabNumber === 1
Expand Down Expand Up @@ -221,7 +221,7 @@ export default function AboutModal(props) {
<ul className="text-xs">
<li>Give your suggestion for new features &</li>
<span className="ml-1">how you think they can benefit others</span>
<li>Feedback</li>
<li>Share your experience</li>
</ul>
<div className="flex flex-col gap-2 items-center">
<ReplyIcon className="w-12 h-12 fill-primary " />
Expand Down Expand Up @@ -278,8 +278,7 @@ export default function AboutModal(props) {
</div>

<p className="text-sm text-gray-700 ">
<span className="font-semibold pr-1 text-primary">Thank you for your input</span>
.
<span className="font-semibold pr-1 text-primary">Thank you for your input.</span>
{' '}
It is greatly appreciated. Our dedicated team is working continuously to offer a smooth Scribe experience.
</p>
Expand Down

0 comments on commit f00f81b

Please sign in to comment.