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

Feature / add jsdoc generation to github actions #7521

Merged
merged 54 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
6312c26
add jsdoc generation to github actions
Aug 7, 2023
83069c0
fix jsdocs generation
PhotoNomad0 Aug 7, 2023
d79133d
fix jsdocs generation. fix some jsdocs
PhotoNomad0 Aug 7, 2023
dd32915
fix jsdocs generation. fix some jsdocs.
PhotoNomad0 Aug 7, 2023
427c0a2
fix jsdocs folder name
Aug 8, 2023
32a8a96
Merge remote-tracking branch 'origin/feature-mcleanb-integrateJsdocs'…
Aug 8, 2023
ef88c73
adding git commit of jsdocs
Aug 9, 2023
fd60875
adding git commit of jsdocs
Aug 9, 2023
8ca2c69
adding git commit of jsdocs
Aug 9, 2023
606e7dc
adding git commit of jsdocs
Aug 9, 2023
42ed484
adding git commit of jsdocs
Aug 9, 2023
fbfad2c
adding git commit of jsdocs
Aug 9, 2023
15a0d35
adding git commit of jsdocs
Aug 9, 2023
bb7a27a
adding git commit of jsdocs
Aug 9, 2023
fe71e67
adding git commit of jsdocs
Aug 9, 2023
3e2f683
adding git commit of jsdocs
Aug 9, 2023
c840161
adding git commit of jsdocs
Aug 9, 2023
f166edb
working on adding jsDocs to github pages
Aug 10, 2023
9a8cc64
README.md cleanup
Aug 10, 2023
f960e8a
README.md cleanup
Aug 10, 2023
da5d7af
remove the git version update code which does not succeed.
Aug 10, 2023
f85c9c9
fix github actions
Aug 10, 2023
0afbc52
cleanup github actions
Aug 10, 2023
69ec7c8
fix git commit of jsdocs
Aug 10, 2023
8fcb94c
fix git commit of jsdocs
Aug 10, 2023
6765f76
updated container
Aug 12, 2023
faef4d4
tweak logging
Aug 12, 2023
aba4c95
back out fix the npm cache
Aug 12, 2023
598e825
fix for committing jsdocs
Aug 12, 2023
fbdad8d
fix for build errors
Aug 13, 2023
e868c45
fix for build errors
Aug 13, 2023
d028d9a
fix for build errors
Aug 13, 2023
dbd5370
create output folder with permissions
Aug 13, 2023
e2730db
create output folder with permissions
Aug 13, 2023
4e736ad
fix for test errors
Aug 13, 2023
21b5c4e
fix for test errors
Aug 13, 2023
5c70a47
fix for test errors
Aug 13, 2023
8e2f932
fix for test errors
Aug 13, 2023
a63559c
fix access errors for js docs
Aug 13, 2023
e7ca18c
fix access errors for js docs
Aug 13, 2023
901e66c
fix jsdocs generation - need permission to write to docs folder
PhotoNomad0 Aug 14, 2023
2fc534f
fix jsdocs generation - need permission to write to docs folder
PhotoNomad0 Aug 14, 2023
6a1a235
fix jsdocs generation - need permission to write to docs folder
PhotoNomad0 Aug 14, 2023
5160aca
comments
PhotoNomad0 Aug 14, 2023
f86cdc5
removed push of jsdocs changes back into branch
PhotoNomad0 Aug 14, 2023
955a617
fix access errors for js docs
Aug 14, 2023
49ad12c
fix access errors for js docs
Aug 14, 2023
f020c5c
updated docker container
Aug 14, 2023
a27180f
exclude test folder.
Aug 14, 2023
1adc682
fix for test failure
PhotoNomad0 Aug 14, 2023
d1ffcfb
fix for test failure
PhotoNomad0 Aug 14, 2023
c7b717a
fix for test failure
PhotoNomad0 Aug 14, 2023
5ceda7e
fix for test failure
PhotoNomad0 Aug 14, 2023
4860716
fix for test failure
PhotoNomad0 Aug 14, 2023
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
14 changes: 9 additions & 5 deletions .github/workflows/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Build comands
# docker build -t <user>/<image> .
# docker tag <user>/<image> <dockerhub-user>/<image>:<version>
# docker push <user>/<image>:<version>
# Build commands
# sudo docker login -u <dockerhub-user>
# sudo docker build -t github_build .
# sudo docker tag github_build <dockerhub-user>/github_build:latest
# sudo docker push <dockerhub-user>/github_build:latest

FROM node:10.18.0
FROM node:16.4.2

ARG DEBIAN_FRONTEND=noninteractive

Expand All @@ -12,6 +13,9 @@ RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -yq locales git zip unzip genisoimage wine wine32 wine64 libwine libwine:i386 innoextract software-properties-common

# install npm
RUN npm install -g npm@7.18.1

# install inno setup
RUN mkdir /tmp/inno && \
cd /tmp/inno && \
Expand Down
74 changes: 59 additions & 15 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,35 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest
container: neutrinog/concourse-tasks:latest
container: photonomad/github_build:latest
# the Dockerfile used to create this image is here: ./.github/workflows/docker/Dockerfile
env:
CI: true

permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write

steps:
# - name: Dump GitHub context
# env:
# GITHUB_CONTEXT: ${{ toJson(github) }}
# run: echo "$GITHUB_CONTEXT"

- uses: actions/setup-node@v1
with:
node-version: '16.14.2'
- name: Node version

- name: Get versions
run: |
echo "node --version"
node --version
echo "npm --version"
npm --version
echo "git --version"
git --version
echo "pwd"
pwd
# - uses: actions/checkout@v2
# - name: Checkout submodules
Expand All @@ -50,26 +62,63 @@ jobs:
# git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1

- name: Checkout codebase
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
submodules: recursive
persist-credentials: true

- name: npm install
run: npm ci

- name: List permissions
run: |
# Fix for problem of cached files from older npm versions, move npm cache to temp directory
TMPDIR=$(mktemp -d)
echo "$TMPDIR"
npm ci --cache="$TMPDIR"
set -x
# create output folder with permission for tests to use for temp results
echo "mkdir ./src/__tests__/output"
mkdir ./src/__tests__/output
echo "chmod -R a+rwx ./src/__tests__/output"
chmod -R a+rwx ./src/__tests__/output
echo "remove git owner error"
git config --global --add safe.directory /__w/translationCore/translationCore
- name: npm test
run: npm run ci-test

- name: upload coverage
- name: Upload coverage
run: ./node_modules/.bin/codecov -t ${{ secrets.CODECOV_TOKEN }}

- name: npm lint
- name: Run lint
run: npm run lint

- name: Parsing jsdocs
run: |
set -x
# remove jsdocs folder so it can be recreated
echo "rm -rf ./docs/translationCore"
rm -rf ./docs/translationCore
# give permission for jsdocs to be recreated in docs folder
echo "chmod -R a+rwx ./docs"
chmod -R a+rwx ./docs
ls -als ./docs
# update jsdocs
npm run doc
echo "ls -als ./docs/translationCore"
ls -als ./docs/translationCore
# - name: Update jsdocs in branch
# uses: stefanzweifel/git-auto-commit-action@v4
# with:
# file_pattern: 'docs/*'
# commit_message: Apply jsdocs update
# skip_fetch: true
# skip_checkout: true

- uses: actions/upload-artifact@v1
name: Upload jsdocs
with:
name: jsdocs
path: ./docs/

build-linux:
name: Build Linux
strategy:
Expand Down Expand Up @@ -125,12 +174,7 @@ jobs:
echo "BUILD=$HASH" >> .env.tmp
- name: npm install
run: |
# Fix for problem of cached files from older npm versions, move npm cache to temp directory
TMPDIR=$(mktemp -d)
echo "$TMPDIR"
npm ci --cache="$TMPDIR"
npm run update-env
run: npm ci

- name: Download latest language names
if: env.UPDATE_RESOURCES
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ test/output
/static/
/vendor
/release
/docs/
# /docs/
/.env
/.vs/

# just in case people are lazy while writing tests
__tests__/output
output/
src/__tests__/output
src/output/
# Needed for Webstorm
.idea
*.iml
Expand Down
43 changes: 24 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,45 +4,50 @@

![](https://github.com/unfoldingWord/translationCore/workflows/Node%20CI/badge.svg?branch=develop)
[![Releases](https://img.shields.io/github/downloads/unfoldingword/translationCore/total.svg)](https://github.com/unfoldingWord/translationCore/releases)
[![Current Verison](https://img.shields.io/github/tag/unfoldingword/translationCore.svg)](https://github.com/unfoldingWord/translationCore/tags)
[![Current Version](https://img.shields.io/github/tag/unfoldingword/translationCore.svg)](https://github.com/unfoldingWord/translationCore/tags)
[![codecov](https://codecov.io/gh/unfoldingWord/translationCore/branch/develop/graph/badge.svg)](https://codecov.io/gh/unfoldingWord/translationCore)

Purpose
---
tools for translators


## Purpose

translationCore is an open source platform for checking and managing Bible translation projects. tC provides an extensible interface that enables, among other things, systematic and comprehensive checking of Bible translations against multiple sources and the original languages with just-in-time training modules that provide guidelines and instruction for translators.

Usage
---
Currently translationCore supports Bible Translation Projects started with [translationStudio](https://unfoldingword.org/ts/) and uploaded to [Door43](https://git.door43.org/), and with limited support for USFM projects created using other tools.
## Usage

Currently, translationCore supports Bible Translation Projects started with [translationStudio](https://unfoldingword.org/ts/) and uploaded to [Door43](https://git.door43.org/), and with limited support for USFM projects created using other tools.

For more information see page for usage: [Usage](https://github.com/unfoldingWord/translationCore/wiki/Usage)

Contributions
---
## Contributions

We warmly welcome contributions to both the translationCore repository and building of new checking modules that fit the needs of the Global Church and Church Networks actively translating the Bible.

For more information see page for contributors: [Contributing](https://github.com/unfoldingWord/translationCore/wiki/Contributing)

Localization
---
This application is been localized into a number of languages.
## Localization

This application has been localized into a number of languages.
You can view progress or help translate at [Crowdin](https://crowdin.com/project/translationcore).

Code Documentation
---
## Documentation

You can read the documented code at [docs.tc.unfoldingword.surge.sh](http://docs.tc.unfoldingword.surge.sh/).
### JS-Docs generated documentation:
- last deployed on GitHub pages: [deployed JS-Docs](https://unfoldingword.github.io/translationCore/translationCore/index.html)
- current local: [local JS-Docs](./docs/translationCore/index.html)


## Debugging Main App

Debugging Main App
---
- first time do: `npm run load-apps`
- launch app by: `npm i --legacy-peer-deps && npm run start` or in windows run `npm i --legacy-peer-deps; npm run start`
- after you get to the "Get Started" Page you can launch Chromium debugger by:
- on Mac doing Command-Option-I
- on Windows or Linux do Control-Shift-I
- on Mac doing Command-Option-I

## Debugging App Startup Code

Debugging App Startup Code
---
- first time do: `npm run load-apps`
- launch app by: `npm i --legacy-peer-deps && npm run start-debug`
- open chrome to url `chrome://inspect/#devices`
Expand Down
10 changes: 10 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Landing Page for translationCore Documentation</title>
</head>
<body>
<a href="./translationCore/index.html">Click Here to see JS-DOCS for translationCore</a>
</body>
</html>
365 changes: 365 additions & 0 deletions docs/translationCore/AgreementCheckbox.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/Alert.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/AlertPortal.html

Large diffs are not rendered by default.

707 changes: 707 additions & 0 deletions docs/translationCore/Alerts.html

Large diffs are not rendered by default.

819 changes: 819 additions & 0 deletions docs/translationCore/AppMenu.html

Large diffs are not rendered by default.

628 changes: 628 additions & 0 deletions docs/translationCore/BaseDialog.html

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions docs/translationCore/CategoryPicker.html

Large diffs are not rendered by default.

343 changes: 343 additions & 0 deletions docs/translationCore/ColoredIcon.html

Large diffs are not rendered by default.

346 changes: 346 additions & 0 deletions docs/translationCore/ConfirmationDialog.html

Large diffs are not rendered by default.

417 changes: 417 additions & 0 deletions docs/translationCore/ContentUpdateDialog.html

Large diffs are not rendered by default.

377 changes: 377 additions & 0 deletions docs/translationCore/ContentUpdatesDialogContainer.html

Large diffs are not rendered by default.

597 changes: 597 additions & 0 deletions docs/translationCore/DownloadDialog.html

Large diffs are not rendered by default.

555 changes: 555 additions & 0 deletions docs/translationCore/DownloadManager.html

Large diffs are not rendered by default.

178 changes: 178 additions & 0 deletions docs/translationCore/DownloadManager.js.html

Large diffs are not rendered by default.

1,221 changes: 1,221 additions & 0 deletions docs/translationCore/DownloadUpdateDialogContainer.html

Large diffs are not rendered by default.

343 changes: 343 additions & 0 deletions docs/translationCore/ErrorCount.html

Large diffs are not rendered by default.

447 changes: 447 additions & 0 deletions docs/translationCore/ErrorDialog.html

Large diffs are not rendered by default.

622 changes: 622 additions & 0 deletions docs/translationCore/FeedbackDialog.html

Large diffs are not rendered by default.

518 changes: 518 additions & 0 deletions docs/translationCore/FeedbackDialogContainer.html

Large diffs are not rendered by default.

373 changes: 373 additions & 0 deletions docs/translationCore/HomeContainerContentWrapper.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/HomeScreenNavigation.html

Large diffs are not rendered by default.

459 changes: 459 additions & 0 deletions docs/translationCore/HomeStep.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/HomeStepper.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/IgnorableAlert.html

Large diffs are not rendered by default.

407 changes: 407 additions & 0 deletions docs/translationCore/InstanceStorage.html

Large diffs are not rendered by default.

343 changes: 343 additions & 0 deletions docs/translationCore/InstructionsCard.html

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions docs/translationCore/LanguageSelectField.html

Large diffs are not rendered by default.

319 changes: 319 additions & 0 deletions docs/translationCore/LocaleSelectListContainer.html

Large diffs are not rendered by default.

618 changes: 618 additions & 0 deletions docs/translationCore/LocaleSettingsDialogContainer.html

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions docs/translationCore/LoginButtons.html

Large diffs are not rendered by default.

406 changes: 406 additions & 0 deletions docs/translationCore/LoginDoor43Account.html

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions docs/translationCore/LoginTextFields.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/Menu.html

Large diffs are not rendered by default.

345 changes: 345 additions & 0 deletions docs/translationCore/NavButton.html

Large diffs are not rendered by default.

1,030 changes: 1,030 additions & 0 deletions docs/translationCore/PopoverMenu.html

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions docs/translationCore/ProjectCardMenu.html

Large diffs are not rendered by default.

373 changes: 373 additions & 0 deletions docs/translationCore/ProjectValidationContentWrapper.html

Large diffs are not rendered by default.

1,502 changes: 1,502 additions & 0 deletions docs/translationCore/ResourceAPI.html

Large diffs are not rendered by default.

392 changes: 392 additions & 0 deletions docs/translationCore/SoftwareUpdateContainer.html

Large diffs are not rendered by default.

515 changes: 515 additions & 0 deletions docs/translationCore/SoftwareUpdateDialog.html

Large diffs are not rendered by default.

1,033 changes: 1,033 additions & 0 deletions docs/translationCore/SoftwareUpdateDialogContainer.html

Large diffs are not rendered by default.

447 changes: 447 additions & 0 deletions docs/translationCore/SuccessDialog.html

Large diffs are not rendered by default.

345 changes: 345 additions & 0 deletions docs/translationCore/UsernameInput.html

Large diffs are not rendered by default.

213 changes: 213 additions & 0 deletions docs/translationCore/actions_AlertActions.js.html

Large diffs are not rendered by default.

194 changes: 194 additions & 0 deletions docs/translationCore/actions_AlertModalActions.js.html

Large diffs are not rendered by default.

218 changes: 218 additions & 0 deletions docs/translationCore/actions_BodyUIActions.js.html

Large diffs are not rendered by default.

649 changes: 649 additions & 0 deletions docs/translationCore/actions_CSVExportActions.js.html

Large diffs are not rendered by default.

215 changes: 215 additions & 0 deletions docs/translationCore/actions_CheckDataLoadActions.js.html

Large diffs are not rendered by default.

227 changes: 227 additions & 0 deletions docs/translationCore/actions_CopyrightCheckActions.js.html

Large diffs are not rendered by default.

205 changes: 205 additions & 0 deletions docs/translationCore/actions_HomeScreenActions.js.html

Large diffs are not rendered by default.

303 changes: 303 additions & 0 deletions docs/translationCore/actions_Import_LocalImportWorkflowActions.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

357 changes: 357 additions & 0 deletions docs/translationCore/actions_Import_ProjectValidationActions.js.html

Large diffs are not rendered by default.

393 changes: 393 additions & 0 deletions docs/translationCore/actions_LocaleActions.js.html

Large diffs are not rendered by default.

326 changes: 326 additions & 0 deletions docs/translationCore/actions_MergeConflictActions.js.html

Large diffs are not rendered by default.

180 changes: 180 additions & 0 deletions docs/translationCore/actions_MigrationActions.js.html

Large diffs are not rendered by default.

208 changes: 208 additions & 0 deletions docs/translationCore/actions_MissingVersesActions.js.html

Large diffs are not rendered by default.

220 changes: 220 additions & 0 deletions docs/translationCore/actions_MyProjects_MyProjectsActions.js.html

Large diffs are not rendered by default.

970 changes: 970 additions & 0 deletions docs/translationCore/actions_MyProjects_ProjectLoadingActions.js.html

Large diffs are not rendered by default.

187 changes: 187 additions & 0 deletions docs/translationCore/actions_OnlineModeActions.js.html

Large diffs are not rendered by default.

193 changes: 193 additions & 0 deletions docs/translationCore/actions_OnlineModeConfirmActions.js.html

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions docs/translationCore/actions_OriginalLanguageResourcesActions.js.html

Large diffs are not rendered by default.

1,072 changes: 1,072 additions & 0 deletions docs/translationCore/actions_ProjectDetailsActions.js.html

Large diffs are not rendered by default.

364 changes: 364 additions & 0 deletions docs/translationCore/actions_ProjectImportStepperActions.js.html

Large diffs are not rendered by default.

725 changes: 725 additions & 0 deletions docs/translationCore/actions_ProjectInformationCheckActions.js.html

Large diffs are not rendered by default.

379 changes: 379 additions & 0 deletions docs/translationCore/actions_ProjectUploadActions.js.html

Large diffs are not rendered by default.

157 changes: 157 additions & 0 deletions docs/translationCore/actions_RecentProjectsActions.js.html

Large diffs are not rendered by default.

694 changes: 694 additions & 0 deletions docs/translationCore/actions_ResourcesActions.js.html

Large diffs are not rendered by default.

180 changes: 180 additions & 0 deletions docs/translationCore/actions_SettingsActions.js.html

Large diffs are not rendered by default.

275 changes: 275 additions & 0 deletions docs/translationCore/actions_SettingsMigrationActions.js.html

Large diffs are not rendered by default.

156 changes: 156 additions & 0 deletions docs/translationCore/actions_SoftwareUpdateActions.js.html

Large diffs are not rendered by default.

625 changes: 625 additions & 0 deletions docs/translationCore/actions_SourceContentUpdatesActions.js.html

Large diffs are not rendered by default.

372 changes: 372 additions & 0 deletions docs/translationCore/actions_ToolActions.js.html

Large diffs are not rendered by default.

371 changes: 371 additions & 0 deletions docs/translationCore/actions_USFMExportActions.js.html

Large diffs are not rendered by default.

238 changes: 238 additions & 0 deletions docs/translationCore/actions_WordAlignmentActions.js.html

Large diffs are not rendered by default.

307 changes: 307 additions & 0 deletions docs/translationCore/common_BooksOfTheBible.js.html

Large diffs are not rendered by default.

182 changes: 182 additions & 0 deletions docs/translationCore/components_LanguageSelectField.js.html

Large diffs are not rendered by default.

338 changes: 338 additions & 0 deletions docs/translationCore/components_PopoverMenu.js.html

Large diffs are not rendered by default.

548 changes: 548 additions & 0 deletions docs/translationCore/components_PreviewContent.js.html

Large diffs are not rendered by default.

304 changes: 304 additions & 0 deletions docs/translationCore/components_dialogComponents_BaseDialog.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

181 changes: 181 additions & 0 deletions docs/translationCore/components_dialogComponents_ErrorDialog.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

180 changes: 180 additions & 0 deletions docs/translationCore/components_dialogComponents_SuccessDialog.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

235 changes: 235 additions & 0 deletions docs/translationCore/components_home_HomeScreenNavigation.js.html

Large diffs are not rendered by default.

171 changes: 171 additions & 0 deletions docs/translationCore/components_home_InstructionsCard.js.html

Large diffs are not rendered by default.

161 changes: 161 additions & 0 deletions docs/translationCore/components_home_Stepper_ColoredIcon.js.html

Large diffs are not rendered by default.

233 changes: 233 additions & 0 deletions docs/translationCore/components_home_Stepper_HomeStep.js.html

Large diffs are not rendered by default.

285 changes: 285 additions & 0 deletions docs/translationCore/components_home_Stepper_index.js.html

Large diffs are not rendered by default.

208 changes: 208 additions & 0 deletions docs/translationCore/components_home_TemplateCard.js.html

Large diffs are not rendered by default.

326 changes: 326 additions & 0 deletions docs/translationCore/components_home_overview_ProjectCard.js.html

Large diffs are not rendered by default.

248 changes: 248 additions & 0 deletions docs/translationCore/components_home_overview_UserCard.js.html

Large diffs are not rendered by default.

238 changes: 238 additions & 0 deletions docs/translationCore/components_home_overview_index.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

569 changes: 569 additions & 0 deletions docs/translationCore/components_home_toolsManagement_ToolCard.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

272 changes: 272 additions & 0 deletions docs/translationCore/containers_AlertContainer.js.html

Large diffs are not rendered by default.

283 changes: 283 additions & 0 deletions docs/translationCore/containers_AppMenu.js.html

Large diffs are not rendered by default.

353 changes: 353 additions & 0 deletions docs/translationCore/containers_FeedbackDialogContainer.js.html

Large diffs are not rendered by default.

254 changes: 254 additions & 0 deletions docs/translationCore/containers_LocaleSettingsDialogContainer.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

211 changes: 211 additions & 0 deletions docs/translationCore/containers_SoftwareUpdateDialog_index.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

236 changes: 236 additions & 0 deletions docs/translationCore/containers_StatusBarContainer.js.html

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions docs/translationCore/containers_ToolContainer.js.html

Large diffs are not rendered by default.

196 changes: 196 additions & 0 deletions docs/translationCore/containers_dialogs_Alert.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Loading