├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ └── mytemplate.md, ├── LICENSE ├── README.md ├── crowdin.yml ├── desktop ├── CHANGELOG.md ├── README.md ├── atala-prism.js ├── build │ ├── build-icons.js │ ├── electron-builder.config.js │ ├── icon.png │ ├── icon.svg │ ├── mac │ │ ├── background.png │ │ ├── background@2x.png │ │ ├── dmg-icon.icns │ │ ├── entitlements.mac.plist │ │ └── icon.icns │ ├── package.json │ ├── setup-icon.svg │ └── win │ │ ├── add-missing-dll.nsh │ │ ├── icon.ico │ │ └── setup-icon.ico ├── bundle.mjs ├── electron-builder.env.template ├── installers.md ├── karakia.js ├── main.js ├── package-lock.json ├── package.json ├── patches │ ├── chloride+2.4.1.patch │ ├── esbuild-plugin-fileloc+0.0.6.patch │ ├── ky-universal+0.11.0.patch │ ├── pull-fs+1.1.6.patch │ └── ssb-friends+4.4.10.patch ├── ssb.config.js └── ssb.plugins.js ├── docs ├── translation.md └── web-registration.md ├── mobile ├── .npmrc ├── .nvmrc ├── README.md ├── config.xml ├── package-lock.json ├── package.json ├── patches │ └── nodejs-mobile-cordova+0.4.3.patch ├── res-src │ ├── app-icon-android.svg │ ├── app-icon-ios.svg │ └── splash-screen.svg ├── res │ ├── icon │ │ ├── android │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── playstore-icon.png │ │ └── ios │ │ │ ├── icon-20x20@1x.png │ │ │ ├── icon-20x20@2x.png │ │ │ ├── icon-20x20@3x.png │ │ │ ├── icon-29x29@1x.png │ │ │ ├── icon-29x29@2x.png │ │ │ ├── icon-29x29@3x.png │ │ │ ├── icon-40x40@1x.png │ │ │ ├── icon-40x40@2x.png │ │ │ ├── icon-40x40@3x.png │ │ │ ├── icon-50x50@1x.png │ │ │ ├── icon-50x50@2x.png │ │ │ ├── icon-512x512@1x.png │ │ │ ├── icon-512x512@2x.png │ │ │ ├── icon-57x57@1x.png │ │ │ ├── icon-57x57@2x.png │ │ │ ├── icon-60x60@1x.png │ │ │ ├── icon-60x60@2x.png │ │ │ ├── icon-60x60@3x.png │ │ │ ├── icon-72x72@1x.png │ │ │ ├── icon-72x72@2x.png │ │ │ ├── icon-76x76@1x.png │ │ │ ├── icon-76x76@2x.png │ │ │ ├── icon-76x76@3x.png │ │ │ └── icon-83.5x83.5@2x.png │ └── screen │ │ ├── android │ │ ├── drawable-hdpi │ │ │ └── screen.png │ │ ├── drawable-ldpi │ │ │ └── screen.png │ │ ├── drawable-mdpi │ │ │ └── screen.png │ │ ├── drawable-xhdpi │ │ │ └── screen.png │ │ ├── drawable-xxhdpi │ │ │ └── screen.png │ │ └── drawable-xxxhdpi │ │ │ └── screen.png │ │ └── ios │ │ └── Default@2x~universal~anyany.png ├── scripts │ ├── android │ │ ├── build-native-modules.sh │ │ └── move-dynamic-native-libs.sh │ ├── build-env-json.js │ ├── build-nodejs-project.sh │ ├── build-res.js │ ├── build-ui.sh │ ├── create-build-extras-gradle.js │ ├── install-mobile-server.sh │ ├── postinstall.sh │ ├── run-android-update.sh │ ├── run-ios-update.sh │ ├── run.sh │ └── setup.sh └── src │ └── nodejs-project │ ├── .npmrc │ ├── .nvmrc │ ├── README.md │ ├── atala-prism.js │ ├── babel.config.js │ ├── config-helper.js │ ├── index.js │ ├── main.js │ ├── monkey-patches.js │ ├── package-lock.json │ ├── package.json │ ├── patches │ ├── @atala+prism-wallet-sdk+4.0.2.patch │ ├── axios+1.6.8.patch │ ├── broadcast-channel+5.3.0.patch │ ├── brorand+1.1.0.patch │ ├── chloride+2.4.1.patch │ ├── pull-write-file+0.2.4.patch │ ├── ssb-ahau+16.4.0.patch │ ├── ssb-conn-hub+0.2.7.patch │ ├── ssb-crut+6.1.0.patch │ ├── ssb-friends+4.4.10.patch │ ├── ssb-lan+1.2.3.patch │ ├── ssb-tribes-registration++ssb-crut+5.1.1.patch │ └── urlpattern-polyfill+8.0.2.patch │ ├── ssb.config.js │ ├── ssb.plugins.js │ └── update-package.js ├── package.json ├── scripts └── pre-commit-lint.sh └── ui ├── .editorconfig ├── .env.template ├── .eslintrc.js ├── .gitignore ├── README.md ├── bin └── build-fragment.js ├── components.d.ts ├── favicon.ico ├── index.cordova.html ├── index.html ├── package-lock.json ├── package.json ├── pataka.config.mjs ├── patches ├── @mdi+font+5.9.55.patch ├── typeface-roboto+1.1.13.patch └── vuejs-clipper+4.1.0.patch ├── postcss.config.js ├── src ├── App.vue ├── assets │ ├── Animated_Logo.svg │ ├── account-2.svg │ ├── account-circle.svg │ ├── account-fill.svg │ ├── account-outlined.svg │ ├── account.svg │ ├── ahau-template.csv │ ├── animations │ │ ├── alternative-servers.svg │ │ ├── corporate-server.svg │ │ ├── data-on-a-pātaka_css.svg │ │ ├── multiple-pātaka_css.svg │ │ └── replication-via-internet_css.svg │ ├── bg-tohu.webp │ ├── diverse-outlined.svg │ ├── diverse.svg │ ├── grid-loader.svg │ ├── icons │ │ ├── account-circle.svg │ │ ├── account-key-outline.svg │ │ ├── activity.svg │ │ ├── addArtefact-min.svg │ │ ├── addArtefact-min2.svg │ │ ├── addArtefact-outlined.svg │ │ ├── addArtefact-outlined2.svg │ │ ├── addArtefact-outlined3.svg │ │ ├── addArtefact.svg │ │ ├── archive.svg │ │ ├── archive2.svg │ │ ├── timeline.svg │ │ ├── tree-white.svg │ │ ├── tree.svg │ │ └── user.svg │ ├── images │ │ ├── add-record.webp │ │ ├── ancestors.webp │ │ ├── edit-artefact.webp │ │ ├── example.webp │ │ ├── menu.webp │ │ ├── mobile-add-record.webp │ │ ├── mobile-edit-artefact.webp │ │ ├── mobile-view-archive.webp │ │ ├── parent.webp │ │ ├── relationships.webp │ │ ├── table-menu.webp │ │ ├── table.webp │ │ ├── view-archive.webp │ │ ├── view-story.webp │ │ └── view.webp │ ├── koro.svg │ ├── kotiro.svg │ ├── kuia.svg │ ├── lock.svg │ ├── logo_black.svg │ ├── logo_red.svg │ ├── niho.svg │ ├── node-child.svg │ ├── node-parent.svg │ ├── node-partner.svg │ ├── node-sibling.svg │ ├── nzheader.webp │ ├── tama.svg │ ├── tane-outlined.svg │ ├── tane.svg │ ├── tohu-full.svg │ ├── tree.webp │ ├── unknown.svg │ ├── wahine-outlined.svg │ ├── wahine.svg │ ├── whakapapa-list.webp │ ├── whakapapa.svg │ └── whakapapa.webp ├── components │ ├── Avatar.vue │ ├── AvatarGroup.vue │ ├── DateIntervalPicker.vue │ ├── ErrorSnackDialog.vue │ ├── ImagePicker.vue │ ├── LocalePicker.vue │ ├── NodeDatePicker.vue │ ├── SkeletonLoader.vue │ ├── Spinner.vue │ ├── archive │ │ ├── AddItemCard.vue │ │ ├── Archive.vue │ │ ├── Chip.vue │ │ ├── ChipGroup.vue │ │ ├── Collection.vue │ │ ├── CollectionForm.vue │ │ ├── CollectionGroup.vue │ │ ├── CollectionTitleCard.vue │ │ ├── ProfileSearchBar.vue │ │ ├── RecordForm.vue │ │ ├── Stories.vue │ │ └── StoryCard.vue │ ├── artefact │ │ ├── ArtefactCarousel.vue │ │ ├── ArtefactCarouselItem.vue │ │ └── UploadArtefactButton.vue │ ├── button │ │ ├── AccessButton.vue │ │ ├── ActivityIcon.vue │ │ ├── AddButton.vue │ │ ├── ArchiveIcon.vue │ │ ├── BackButton.vue │ │ ├── BigAddButton.vue │ │ ├── EditArtefactButton.vue │ │ ├── EditProfileButton.vue │ │ ├── EditRegistrationButton.vue │ │ ├── EditStoryButton.vue │ │ ├── ExportButton.vue │ │ ├── FilterButton.vue │ │ ├── HelpButton.vue │ │ ├── InfoButton.vue │ │ ├── PersonListIcon.vue │ │ ├── ProfileButton.vue │ │ ├── RegisterButton.vue │ │ ├── SearchBar.vue │ │ ├── SearchButton.vue │ │ ├── SearchFilterButton.vue │ │ ├── TableButton.vue │ │ ├── TimelineButton.vue │ │ ├── TimelineIcon.vue │ │ ├── UserIcon.vue │ │ ├── WalletIcon.vue │ │ └── WhakapapaIcon.vue │ ├── community │ │ ├── CommunitiesList.vue │ │ ├── CommunityCard.vue │ │ ├── CommunityForm.vue │ │ ├── CommunityList.vue │ │ └── PatakaList.vue │ ├── csvImport │ │ └── CsvImportInput.vue │ ├── dialog │ │ ├── AlertMessage.vue │ │ ├── AvatarEditDialog.vue │ │ ├── ComingSoonDialog.vue │ │ ├── DeleteProfileDialog.vue │ │ ├── DialogContainer.vue │ │ ├── DialogHandler.vue │ │ ├── DialogTitleBanner.vue │ │ ├── HelpDialog.vue │ │ ├── ImportPeopleDialog.vue │ │ ├── KeyBackupDialog.vue │ │ ├── archive │ │ │ ├── ArchiveHelper.vue │ │ │ ├── DeleteCollectionDialog.vue │ │ │ ├── DeleteRecordDialog.vue │ │ │ ├── NewCollectionDialog.vue │ │ │ └── NewRecordDialog.vue │ │ ├── artefact │ │ │ ├── DeleteArtefactDialog.vue │ │ │ └── NewArtefactDialog.vue │ │ ├── community │ │ │ ├── AcceptCredentials.vue │ │ │ ├── DataModel.vue │ │ │ ├── DeleteCommunityDialog.vue │ │ │ ├── GroupsList.vue │ │ │ ├── IssueCredentials.vue │ │ │ ├── MembersPicker.vue │ │ │ ├── NewCommunityDialog.vue │ │ │ ├── NewSubGroupDialog.vue │ │ │ ├── Permissions.vue │ │ │ ├── RegistrationQuestions.vue │ │ │ ├── SubGroup.vue │ │ │ ├── ToggleBetaFeatures.vue │ │ │ └── TribeSettings.vue │ │ ├── connection │ │ │ ├── NewPatakaDialog.vue │ │ │ └── PatakaHelper.vue │ │ ├── profile │ │ │ ├── EditPersonDialog.vue │ │ │ ├── NewPersonDialog.vue │ │ │ ├── RemovePersonDialog.vue │ │ │ ├── SideNodeDialog.vue │ │ │ └── SideProfileEditView.vue │ │ ├── registration │ │ │ ├── NewRegistrationDialog.vue │ │ │ ├── ParentGroup.vue │ │ │ └── ReviewRegistrationDialog.vue │ │ ├── submission │ │ │ └── ReviewSubmissionDialog.vue │ │ └── whakapapa │ │ │ ├── CsvErrorDialog.vue │ │ │ ├── CsvHelperDialog.vue │ │ │ ├── FilterInput.vue │ │ │ ├── FilterMenu.vue │ │ │ ├── NewViewDialog.vue │ │ │ ├── OptionsInput.vue │ │ │ ├── SortInput.vue │ │ │ ├── WhakapapaDeleteDialog.vue │ │ │ ├── WhakapapaEditDialog.vue │ │ │ ├── WhakapapaListHelper.vue │ │ │ ├── WhakapapaShowHelper.vue │ │ │ ├── WhakapapaTableHelper.vue │ │ │ └── WhakapapaViewDialog.vue │ ├── menu │ │ ├── Appbar.vue │ │ ├── NodeMenu.vue │ │ ├── Notification.vue │ │ ├── NotificationList.vue │ │ ├── NotificationPanel.vue │ │ └── SideNavMenu.vue │ ├── profile │ │ ├── CustomField.vue │ │ ├── CustomFieldGroup.vue │ │ ├── EditRelationships.vue │ │ ├── Profile.vue │ │ ├── ProfileCard.vue │ │ ├── ProfileChip.vue │ │ ├── ProfileForm.vue │ │ ├── ProfileHeader.vue │ │ ├── ProfileInfoCard.vue │ │ ├── ProfileInfoItem.vue │ │ └── ProfileList.vue │ ├── settings │ │ ├── BackupSettings.vue │ │ ├── LanguageSettings.vue │ │ ├── SettingsForm.vue │ │ └── StorageSettings.vue │ ├── story │ │ ├── Timeline.vue │ │ └── TimelineCard.vue │ ├── submission │ │ ├── FieldList.vue │ │ ├── LinkSubmission.vue │ │ ├── SubmissionDependencies.vue │ │ └── WhakapapaViewSubmission.vue │ ├── table │ │ ├── WhakapapaTable.vue │ │ └── WhakapapaTableNode.vue │ ├── tree │ │ ├── NodeMenuButton.vue │ │ ├── SubTree.vue │ │ ├── Tree.vue │ │ ├── TreeLink.vue │ │ └── TreeNode.vue │ ├── wallet │ │ ├── CredentialPreview.vue │ │ ├── InputInviteDialog.vue │ │ └── WalletShow.vue │ └── whakapapa │ │ ├── WhakapapaBanner.vue │ │ ├── WhakapapaForm.vue │ │ ├── WhakapapaShowViewCard.vue │ │ └── WhakapapaViewCard.vue ├── lib │ ├── artefact-helpers.mjs │ ├── avatar-helpers.mjs │ ├── calculate-age.mjs │ ├── calculate-age.test.mjs │ ├── colours.mjs │ ├── community-helpers.mjs │ ├── community-helpers.test.mjs │ ├── constants.mjs │ ├── constants.test.mjs │ ├── cordova-helpers.mjs │ ├── csv-image.test.mjs │ ├── csv.mjs │ ├── csv.test.mjs │ ├── custom-field-helpers.mjs │ ├── custom-field-helpers.test.mjs │ ├── date-helpers.mjs │ ├── date-helpers.test.mjs │ ├── download-helper.mjs │ ├── file-helpers.mjs │ ├── filters.mjs │ ├── find-successor.mjs │ ├── find-successor.test.mjs │ ├── fixtures │ │ ├── MOCK_DATA_150.csv │ │ ├── MOCK_DATA_20_ERROR.csv │ │ └── nested-whakapapa.csv │ ├── get-object-changes.mjs │ ├── get-video-poster.mjs │ ├── hyper-file-stream.mjs │ ├── link-helpers.mjs │ ├── link.mjs │ ├── parse-custom-field-value.test.mjs │ ├── person-helpers.mjs │ ├── person-helpers.test.mjs │ ├── profile-helpers.mjs │ ├── story-helpers.mjs │ ├── story-helpers.test.mjs │ ├── svg-export.mjs │ ├── tribes-application-helpers.mjs │ └── tribes-application-helpers.test.mjs ├── main.js ├── mixins │ ├── artefact-mixins.js │ ├── profile-mixins.js │ ├── story-mixins.js │ ├── upload-file.js │ └── upload-hyper-file.js ├── mocks │ ├── community.mjs │ ├── nested-whakapapa.mjs │ ├── person-profile.mjs │ ├── stories.mjs │ └── whakapapa-view.mjs ├── plugins │ ├── cordova-back-button.js │ ├── cordova-nodejs-client.js │ ├── i18n.js │ ├── possibleTypes.json │ ├── vue-apollo.js │ └── vuetify.js ├── router │ ├── index.js │ └── modules │ │ ├── dialogs.js │ │ └── views.js ├── store │ ├── README.md │ ├── index.js │ ├── modules │ │ ├── alerts │ │ │ └── index.js │ │ ├── analytics │ │ │ ├── index.js │ │ │ └── mixpanel.js │ │ ├── archive │ │ │ └── index.js │ │ ├── collection │ │ │ ├── apollo-helpers.mjs │ │ │ └── index.js │ │ ├── community │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── credentials │ │ │ ├── credential-helpers.js │ │ │ └── index.js │ │ ├── dialog │ │ │ └── index.js │ │ ├── error │ │ │ └── index.js │ │ ├── loading │ │ │ ├── apollo-helpers.mjs │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── module.template.js │ │ ├── notifications │ │ │ └── index.js │ │ ├── pataka │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── person │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── profile │ │ │ ├── apollo-helpers.mjs │ │ │ └── index.js │ │ ├── settings │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── story │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── submissions │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── subtribe │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ ├── table │ │ │ └── index.js │ │ ├── tree │ │ │ ├── README.md │ │ │ ├── constants.mjs │ │ │ ├── index.mjs │ │ │ ├── index.test.mjs │ │ │ └── lib │ │ │ │ ├── index.mjs │ │ │ │ ├── layout-child-links.mjs │ │ │ │ ├── layout-child-links.test.mjs │ │ │ │ ├── layout-partner-links.mjs │ │ │ │ ├── layout-partner-nodes.mjs │ │ │ │ ├── layout-secondary-links.mjs │ │ │ │ ├── link-key.mjs │ │ │ │ ├── link-key.test.mjs │ │ │ │ ├── link-style.mjs │ │ │ │ ├── offset-increment.mjs │ │ │ │ └── offset-increment.test.mjs │ │ ├── tribe │ │ │ ├── apollo-helpers.js │ │ │ └── index.js │ │ └── whakapapa │ │ │ ├── find-path-to-root.test.mjs │ │ │ ├── fixtures │ │ │ ├── extended-family-A.mjs │ │ │ ├── index.mjs │ │ │ ├── large-whakapapa-snapshot.mjs │ │ │ ├── marriage-within-tree.mjs │ │ │ ├── whangai-grandparent-complex.mjs │ │ │ └── whangai-grandparent-simple.mjs │ │ │ ├── get-child-ids.test.mjs │ │ │ ├── get-parent-ids.test.mjs │ │ │ ├── get-partner-ids.test.mjs │ │ │ ├── import-from-csv-actions.mjs │ │ │ ├── index.mjs │ │ │ ├── is-duplicate.test.mjs │ │ │ ├── lib │ │ │ ├── apollo-helpers.mjs │ │ │ ├── find-path-to-root.mjs │ │ │ ├── get-extended-family.mjs │ │ │ └── test-helpers.mjs │ │ │ ├── nested-descendants.test.mjs │ │ │ ├── record-count.test.mjs │ │ │ ├── remove-link-between-profiles.test.mjs │ │ │ ├── secondary-links.test.mjs │ │ │ ├── suggested-children.test.mjs │ │ │ └── suggested-parents.test.mjs │ └── root.mjs ├── translations │ ├── en_NZ │ │ ├── access-button.json │ │ ├── add-collection-form.json │ │ ├── add-community-form.json │ │ ├── add-person-form.json │ │ ├── add-story-form.json │ │ ├── add-whakapapa-form.json │ │ ├── appbar-menu.json │ │ ├── button.json │ │ ├── delete-person.json │ │ ├── delete-profile-form.json │ │ ├── dialog-handler.json │ │ ├── dialog.json │ │ ├── edit-person-dialog.json │ │ ├── groups.json │ │ ├── help.json │ │ ├── identity-requirements.json │ │ ├── import-csv.json │ │ ├── index.mjs │ │ ├── instructions-pataka.json │ │ ├── instructions-story.json │ │ ├── instructions-whakapapa.json │ │ ├── key-backup-form.json │ │ ├── link-submissions.json │ │ ├── months.json │ │ ├── new-person.json │ │ ├── new-registration.json │ │ ├── node-menu.json │ │ ├── notifications.json │ │ ├── pataka.json │ │ ├── person-index.json │ │ ├── profile-change-request.json │ │ ├── review-registration-dialog.json │ │ ├── settings-form.json │ │ ├── side-nav-menu.json │ │ ├── side-profile.json │ │ ├── support.json │ │ ├── timeline.json │ │ ├── toggle-beta-settings.json │ │ ├── tribe-settings.json │ │ ├── view-archive.json │ │ ├── view-person.json │ │ ├── view-tribal-registry.json │ │ ├── view-tribes.json │ │ ├── wallet-show.json │ │ ├── whakapapa-index.json │ │ └── whakapapa-table.json │ ├── en_US │ │ ├── access-button.json │ │ ├── add-collection-form.json │ │ ├── add-community-form.json │ │ ├── add-person-form.json │ │ ├── add-story-form.json │ │ ├── add-whakapapa-form.json │ │ ├── appbar-menu.json │ │ ├── button.json │ │ ├── delete-person.json │ │ ├── delete-profile-form.json │ │ ├── dialog-handler.json │ │ ├── dialog.json │ │ ├── edit-person-dialog.json │ │ ├── groups.json │ │ ├── identity-requirements.json │ │ ├── import-csv.json │ │ ├── index.mjs │ │ ├── instructions-pataka.json │ │ ├── instructions-story.json │ │ ├── instructions-whakapapa.json │ │ ├── key-backup-form.json │ │ ├── link-submissions.json │ │ ├── months.json │ │ ├── new-person.json │ │ ├── new-registration.json │ │ ├── node-menu.json │ │ ├── notifications.json │ │ ├── pataka.json │ │ ├── person-index.json │ │ ├── profile-change-request.json │ │ ├── review-registration-dialog.json │ │ ├── settings-form.json │ │ ├── side-nav-menu.json │ │ ├── side-profile.json │ │ ├── support.json │ │ ├── timeline.json │ │ ├── toggle-beta-settings.json │ │ ├── tribe-settings.json │ │ ├── view-archive.json │ │ ├── view-person.json │ │ ├── view-tribal-registry.json │ │ ├── view-tribes.json │ │ ├── wallet-show.json │ │ ├── whakapapa-index.json │ │ └── whakapapa-table.json │ ├── es_ES │ │ ├── access-button.json │ │ ├── add-collection-form.json │ │ ├── add-community-form.json │ │ ├── add-person-form.json │ │ ├── add-story-form.json │ │ ├── add-whakapapa-form.json │ │ ├── appbar-menu.json │ │ ├── button.json │ │ ├── delete-person.json │ │ ├── delete-profile-form.json │ │ ├── dialog-handler.json │ │ ├── dialog.json │ │ ├── edit-person-dialog.json │ │ ├── groups.json │ │ ├── identity-requirements.json │ │ ├── import-csv.json │ │ ├── index.mjs │ │ ├── instructions-pataka.json │ │ ├── instructions-story.json │ │ ├── instructions-whakapapa.json │ │ ├── key-backup-form.json │ │ ├── link-submissions.json │ │ ├── months.json │ │ ├── new-person.json │ │ ├── new-registration.json │ │ ├── node-menu.json │ │ ├── notifications.json │ │ ├── pataka.json │ │ ├── person-index.json │ │ ├── profile-change-request.json │ │ ├── review-registration-dialog.json │ │ ├── settings-form.json │ │ ├── side-nav-menu.json │ │ ├── side-profile.json │ │ ├── support.json │ │ ├── timeline.json │ │ ├── toggle-beta-settings.json │ │ ├── tribe-settings.json │ │ ├── view-archive.json │ │ ├── view-person.json │ │ ├── view-tribal-registry.json │ │ ├── view-tribes.json │ │ ├── wallet-show.json │ │ ├── whakapapa-index.json │ │ └── whakapapa-table.json │ ├── index.mjs │ ├── mi_NZ │ │ ├── access-button.json │ │ ├── add-collection-form.json │ │ ├── add-community-form.json │ │ ├── add-person-form.json │ │ ├── add-story-form.json │ │ ├── add-whakapapa-form.json │ │ ├── appbar-menu.json │ │ ├── button.json │ │ ├── delete-person.json │ │ ├── delete-profile-form.json │ │ ├── dialog-handler.json │ │ ├── dialog.json │ │ ├── edit-person-dialog.json │ │ ├── groups.json │ │ ├── identity-requirements.json │ │ ├── import-csv.json │ │ ├── index.mjs │ │ ├── instructions-pataka.json │ │ ├── instructions-story.json │ │ ├── instructions-whakapapa.json │ │ ├── key-backup-form.json │ │ ├── link-submissions.json │ │ ├── months.json │ │ ├── new-person.json │ │ ├── new-registration.json │ │ ├── node-menu.json │ │ ├── notifications.json │ │ ├── pataka.json │ │ ├── person-index.json │ │ ├── profile-change-request.json │ │ ├── review-registration-dialog.json │ │ ├── settings-form.json │ │ ├── side-nav-menu.json │ │ ├── side-profile.json │ │ ├── support.json │ │ ├── timeline.json │ │ ├── toggle-beta-settings.json │ │ ├── tribe-settings.json │ │ ├── view-archive.json │ │ ├── view-person.json │ │ ├── view-tribal-registry.json │ │ ├── view-tribes.json │ │ ├── wallet-show.json │ │ ├── whakapapa-index.json │ │ └── whakapapa-table.json │ ├── nl_NL │ │ ├── access-button.json │ │ ├── add-collection-form.json │ │ ├── add-community-form.json │ │ ├── add-person-form.json │ │ ├── add-story-form.json │ │ ├── add-whakapapa-form.json │ │ ├── appbar-menu.json │ │ ├── button.json │ │ ├── delete-person.json │ │ ├── delete-profile-form.json │ │ ├── dialog-handler.json │ │ ├── dialog.json │ │ ├── edit-person-dialog.json │ │ ├── groups.json │ │ ├── identity-requirements.json │ │ ├── import-csv.json │ │ ├── index.mjs │ │ ├── instructions-pataka.json │ │ ├── instructions-story.json │ │ ├── instructions-whakapapa.json │ │ ├── key-backup-form.json │ │ ├── link-submissions.json │ │ ├── months.json │ │ ├── new-person.json │ │ ├── new-registration.json │ │ ├── node-menu.json │ │ ├── notifications.json │ │ ├── pataka.json │ │ ├── person-index.json │ │ ├── profile-change-request.json │ │ ├── review-registration-dialog.json │ │ ├── settings-form.json │ │ ├── side-nav-menu.json │ │ ├── side-profile.json │ │ ├── support.json │ │ ├── timeline.json │ │ ├── toggle-beta-settings.json │ │ ├── tribe-settings.json │ │ ├── view-archive.json │ │ ├── view-person.json │ │ ├── view-tribal-registry.json │ │ ├── view-tribes.json │ │ ├── wallet-show.json │ │ ├── whakapapa-index.json │ │ └── whakapapa-table.json │ └── pt_BR │ │ ├── access-button.json │ │ ├── add-collection-form.json │ │ ├── add-community-form.json │ │ ├── add-person-form.json │ │ ├── add-story-form.json │ │ ├── add-whakapapa-form.json │ │ ├── appbar-menu.json │ │ ├── button.json │ │ ├── delete-person.json │ │ ├── delete-profile-form.json │ │ ├── dialog-handler.json │ │ ├── dialog.json │ │ ├── edit-person-dialog.json │ │ ├── groups.json │ │ ├── identity-requirements.json │ │ ├── import-csv.json │ │ ├── index.mjs │ │ ├── instructions-pataka.json │ │ ├── instructions-story.json │ │ ├── instructions-whakapapa.json │ │ ├── key-backup-form.json │ │ ├── link-submissions.json │ │ ├── months.json │ │ ├── new-person.json │ │ ├── new-registration.json │ │ ├── node-menu.json │ │ ├── notifications.json │ │ ├── pataka.json │ │ ├── person-index.json │ │ ├── profile-change-request.json │ │ ├── review-registration-dialog.json │ │ ├── settings-form.json │ │ ├── side-nav-menu.json │ │ ├── side-profile.json │ │ ├── support.json │ │ ├── timeline.json │ │ ├── toggle-beta-settings.json │ │ ├── tribe-settings.json │ │ ├── view-archive.json │ │ ├── view-person.json │ │ ├── view-tribal-registry.json │ │ ├── view-tribes.json │ │ ├── wallet-show.json │ │ ├── whakapapa-index.json │ │ └── whakapapa-table.json └── views │ ├── CollectionShow.vue │ ├── Discovery.vue │ ├── Login.vue │ ├── PersonIndex.vue │ ├── ProfileShow.vue │ ├── WhakapapaIndex.vue │ └── WhakapapaShow.vue ├── ssb.config.js ├── vite.config.js ├── vue.config.js └── vuetify.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/mytemplate.md,: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/.gitlab/issue_templates/mytemplate.md, -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/crowdin.yml -------------------------------------------------------------------------------- /desktop/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/CHANGELOG.md -------------------------------------------------------------------------------- /desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/README.md -------------------------------------------------------------------------------- /desktop/atala-prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/atala-prism.js -------------------------------------------------------------------------------- /desktop/build/build-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/build-icons.js -------------------------------------------------------------------------------- /desktop/build/electron-builder.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/electron-builder.config.js -------------------------------------------------------------------------------- /desktop/build/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/icon.png -------------------------------------------------------------------------------- /desktop/build/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/icon.svg -------------------------------------------------------------------------------- /desktop/build/mac/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/mac/background.png -------------------------------------------------------------------------------- /desktop/build/mac/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/mac/background@2x.png -------------------------------------------------------------------------------- /desktop/build/mac/dmg-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/mac/dmg-icon.icns -------------------------------------------------------------------------------- /desktop/build/mac/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/mac/entitlements.mac.plist -------------------------------------------------------------------------------- /desktop/build/mac/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/mac/icon.icns -------------------------------------------------------------------------------- /desktop/build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/package.json -------------------------------------------------------------------------------- /desktop/build/setup-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/setup-icon.svg -------------------------------------------------------------------------------- /desktop/build/win/add-missing-dll.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/win/add-missing-dll.nsh -------------------------------------------------------------------------------- /desktop/build/win/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/win/icon.ico -------------------------------------------------------------------------------- /desktop/build/win/setup-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/build/win/setup-icon.ico -------------------------------------------------------------------------------- /desktop/bundle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/bundle.mjs -------------------------------------------------------------------------------- /desktop/electron-builder.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/electron-builder.env.template -------------------------------------------------------------------------------- /desktop/installers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/installers.md -------------------------------------------------------------------------------- /desktop/karakia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/karakia.js -------------------------------------------------------------------------------- /desktop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/main.js -------------------------------------------------------------------------------- /desktop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/package-lock.json -------------------------------------------------------------------------------- /desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/package.json -------------------------------------------------------------------------------- /desktop/patches/chloride+2.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/patches/chloride+2.4.1.patch -------------------------------------------------------------------------------- /desktop/patches/esbuild-plugin-fileloc+0.0.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/patches/esbuild-plugin-fileloc+0.0.6.patch -------------------------------------------------------------------------------- /desktop/patches/ky-universal+0.11.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/patches/ky-universal+0.11.0.patch -------------------------------------------------------------------------------- /desktop/patches/pull-fs+1.1.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/patches/pull-fs+1.1.6.patch -------------------------------------------------------------------------------- /desktop/patches/ssb-friends+4.4.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/patches/ssb-friends+4.4.10.patch -------------------------------------------------------------------------------- /desktop/ssb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/ssb.config.js -------------------------------------------------------------------------------- /desktop/ssb.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/desktop/ssb.plugins.js -------------------------------------------------------------------------------- /docs/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/docs/translation.md -------------------------------------------------------------------------------- /docs/web-registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/docs/web-registration.md -------------------------------------------------------------------------------- /mobile/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /mobile/.nvmrc: -------------------------------------------------------------------------------- 1 | v12.19.0 2 | -------------------------------------------------------------------------------- /mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/README.md -------------------------------------------------------------------------------- /mobile/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/config.xml -------------------------------------------------------------------------------- /mobile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/package-lock.json -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/patches/nodejs-mobile-cordova+0.4.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/patches/nodejs-mobile-cordova+0.4.3.patch -------------------------------------------------------------------------------- /mobile/res-src/app-icon-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res-src/app-icon-android.svg -------------------------------------------------------------------------------- /mobile/res-src/app-icon-ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res-src/app-icon-ios.svg -------------------------------------------------------------------------------- /mobile/res-src/splash-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res-src/splash-screen.svg -------------------------------------------------------------------------------- /mobile/res/icon/android/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/res/icon/android/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/res/icon/android/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/res/icon/android/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/res/icon/android/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/res/icon/android/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobile/res/icon/android/playstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/android/playstore-icon.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-20x20@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-20x20@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-20x20@3x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-29x29@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-29x29@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-29x29@3x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-40x40@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-40x40@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-40x40@3x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-50x50@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-50x50@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-512x512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-512x512@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-512x512@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-57x57@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-57x57@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-60x60@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-60x60@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-60x60@3x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-72x72@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-72x72@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-76x76@1x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-76x76@2x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-76x76@3x.png -------------------------------------------------------------------------------- /mobile/res/icon/ios/icon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/icon/ios/icon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /mobile/res/screen/android/drawable-hdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/android/drawable-hdpi/screen.png -------------------------------------------------------------------------------- /mobile/res/screen/android/drawable-ldpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/android/drawable-ldpi/screen.png -------------------------------------------------------------------------------- /mobile/res/screen/android/drawable-mdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/android/drawable-mdpi/screen.png -------------------------------------------------------------------------------- /mobile/res/screen/android/drawable-xhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/android/drawable-xhdpi/screen.png -------------------------------------------------------------------------------- /mobile/res/screen/android/drawable-xxhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/android/drawable-xxhdpi/screen.png -------------------------------------------------------------------------------- /mobile/res/screen/android/drawable-xxxhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/android/drawable-xxxhdpi/screen.png -------------------------------------------------------------------------------- /mobile/res/screen/ios/Default@2x~universal~anyany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/res/screen/ios/Default@2x~universal~anyany.png -------------------------------------------------------------------------------- /mobile/scripts/android/build-native-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/android/build-native-modules.sh -------------------------------------------------------------------------------- /mobile/scripts/android/move-dynamic-native-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/android/move-dynamic-native-libs.sh -------------------------------------------------------------------------------- /mobile/scripts/build-env-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/build-env-json.js -------------------------------------------------------------------------------- /mobile/scripts/build-nodejs-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/build-nodejs-project.sh -------------------------------------------------------------------------------- /mobile/scripts/build-res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/build-res.js -------------------------------------------------------------------------------- /mobile/scripts/build-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/build-ui.sh -------------------------------------------------------------------------------- /mobile/scripts/create-build-extras-gradle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/create-build-extras-gradle.js -------------------------------------------------------------------------------- /mobile/scripts/install-mobile-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/install-mobile-server.sh -------------------------------------------------------------------------------- /mobile/scripts/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/postinstall.sh -------------------------------------------------------------------------------- /mobile/scripts/run-android-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/run-android-update.sh -------------------------------------------------------------------------------- /mobile/scripts/run-ios-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/run-ios-update.sh -------------------------------------------------------------------------------- /mobile/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/run.sh -------------------------------------------------------------------------------- /mobile/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/scripts/setup.sh -------------------------------------------------------------------------------- /mobile/src/nodejs-project/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=false 2 | -------------------------------------------------------------------------------- /mobile/src/nodejs-project/.nvmrc: -------------------------------------------------------------------------------- 1 | 12.19.0 2 | -------------------------------------------------------------------------------- /mobile/src/nodejs-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/README.md -------------------------------------------------------------------------------- /mobile/src/nodejs-project/atala-prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/atala-prism.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/babel.config.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/config-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/config-helper.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/index.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/main.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/monkey-patches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/monkey-patches.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/package-lock.json -------------------------------------------------------------------------------- /mobile/src/nodejs-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/package.json -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/@atala+prism-wallet-sdk+4.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/@atala+prism-wallet-sdk+4.0.2.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/axios+1.6.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/axios+1.6.8.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/broadcast-channel+5.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/broadcast-channel+5.3.0.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/brorand+1.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/brorand+1.1.0.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/chloride+2.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/chloride+2.4.1.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/pull-write-file+0.2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/pull-write-file+0.2.4.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/ssb-ahau+16.4.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/ssb-ahau+16.4.0.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/ssb-conn-hub+0.2.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/ssb-conn-hub+0.2.7.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/ssb-crut+6.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/ssb-crut+6.1.0.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/ssb-friends+4.4.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/ssb-friends+4.4.10.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/ssb-lan+1.2.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/ssb-lan+1.2.3.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/ssb-tribes-registration++ssb-crut+5.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/ssb-tribes-registration++ssb-crut+5.1.1.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/patches/urlpattern-polyfill+8.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/patches/urlpattern-polyfill+8.0.2.patch -------------------------------------------------------------------------------- /mobile/src/nodejs-project/ssb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/ssb.config.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/ssb.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/ssb.plugins.js -------------------------------------------------------------------------------- /mobile/src/nodejs-project/update-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/mobile/src/nodejs-project/update-package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/package.json -------------------------------------------------------------------------------- /scripts/pre-commit-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/scripts/pre-commit-lint.sh -------------------------------------------------------------------------------- /ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/.editorconfig -------------------------------------------------------------------------------- /ui/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/.env.template -------------------------------------------------------------------------------- /ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/.eslintrc.js -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/bin/build-fragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/bin/build-fragment.js -------------------------------------------------------------------------------- /ui/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/components.d.ts -------------------------------------------------------------------------------- /ui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/favicon.ico -------------------------------------------------------------------------------- /ui/index.cordova.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/index.cordova.html -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/pataka.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/pataka.config.mjs -------------------------------------------------------------------------------- /ui/patches/@mdi+font+5.9.55.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/patches/@mdi+font+5.9.55.patch -------------------------------------------------------------------------------- /ui/patches/typeface-roboto+1.1.13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/patches/typeface-roboto+1.1.13.patch -------------------------------------------------------------------------------- /ui/patches/vuejs-clipper+4.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/patches/vuejs-clipper+4.1.0.patch -------------------------------------------------------------------------------- /ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/postcss.config.js -------------------------------------------------------------------------------- /ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/App.vue -------------------------------------------------------------------------------- /ui/src/assets/Animated_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/Animated_Logo.svg -------------------------------------------------------------------------------- /ui/src/assets/account-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/account-2.svg -------------------------------------------------------------------------------- /ui/src/assets/account-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/account-circle.svg -------------------------------------------------------------------------------- /ui/src/assets/account-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/account-fill.svg -------------------------------------------------------------------------------- /ui/src/assets/account-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/account-outlined.svg -------------------------------------------------------------------------------- /ui/src/assets/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/account.svg -------------------------------------------------------------------------------- /ui/src/assets/ahau-template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/ahau-template.csv -------------------------------------------------------------------------------- /ui/src/assets/animations/alternative-servers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/animations/alternative-servers.svg -------------------------------------------------------------------------------- /ui/src/assets/animations/corporate-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/animations/corporate-server.svg -------------------------------------------------------------------------------- /ui/src/assets/animations/data-on-a-pātaka_css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/animations/data-on-a-pātaka_css.svg -------------------------------------------------------------------------------- /ui/src/assets/animations/multiple-pātaka_css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/animations/multiple-pātaka_css.svg -------------------------------------------------------------------------------- /ui/src/assets/animations/replication-via-internet_css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/animations/replication-via-internet_css.svg -------------------------------------------------------------------------------- /ui/src/assets/bg-tohu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/bg-tohu.webp -------------------------------------------------------------------------------- /ui/src/assets/diverse-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/diverse-outlined.svg -------------------------------------------------------------------------------- /ui/src/assets/diverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/diverse.svg -------------------------------------------------------------------------------- /ui/src/assets/grid-loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/grid-loader.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/account-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/account-circle.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/account-key-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/account-key-outline.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/activity.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/addArtefact-min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/addArtefact-min.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/addArtefact-min2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/addArtefact-min2.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/addArtefact-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/addArtefact-outlined.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/addArtefact-outlined2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/addArtefact-outlined2.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/addArtefact-outlined3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/addArtefact-outlined3.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/addArtefact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/addArtefact.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/archive.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/archive2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/archive2.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/timeline.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/tree-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/tree-white.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/tree.svg -------------------------------------------------------------------------------- /ui/src/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/icons/user.svg -------------------------------------------------------------------------------- /ui/src/assets/images/add-record.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/add-record.webp -------------------------------------------------------------------------------- /ui/src/assets/images/ancestors.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/ancestors.webp -------------------------------------------------------------------------------- /ui/src/assets/images/edit-artefact.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/edit-artefact.webp -------------------------------------------------------------------------------- /ui/src/assets/images/example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/example.webp -------------------------------------------------------------------------------- /ui/src/assets/images/menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/menu.webp -------------------------------------------------------------------------------- /ui/src/assets/images/mobile-add-record.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/mobile-add-record.webp -------------------------------------------------------------------------------- /ui/src/assets/images/mobile-edit-artefact.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/mobile-edit-artefact.webp -------------------------------------------------------------------------------- /ui/src/assets/images/mobile-view-archive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/mobile-view-archive.webp -------------------------------------------------------------------------------- /ui/src/assets/images/parent.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/parent.webp -------------------------------------------------------------------------------- /ui/src/assets/images/relationships.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/relationships.webp -------------------------------------------------------------------------------- /ui/src/assets/images/table-menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/table-menu.webp -------------------------------------------------------------------------------- /ui/src/assets/images/table.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/table.webp -------------------------------------------------------------------------------- /ui/src/assets/images/view-archive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/view-archive.webp -------------------------------------------------------------------------------- /ui/src/assets/images/view-story.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/view-story.webp -------------------------------------------------------------------------------- /ui/src/assets/images/view.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/images/view.webp -------------------------------------------------------------------------------- /ui/src/assets/koro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/koro.svg -------------------------------------------------------------------------------- /ui/src/assets/kotiro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/kotiro.svg -------------------------------------------------------------------------------- /ui/src/assets/kuia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/kuia.svg -------------------------------------------------------------------------------- /ui/src/assets/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/lock.svg -------------------------------------------------------------------------------- /ui/src/assets/logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/logo_black.svg -------------------------------------------------------------------------------- /ui/src/assets/logo_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/logo_red.svg -------------------------------------------------------------------------------- /ui/src/assets/niho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/niho.svg -------------------------------------------------------------------------------- /ui/src/assets/node-child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/node-child.svg -------------------------------------------------------------------------------- /ui/src/assets/node-parent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/node-parent.svg -------------------------------------------------------------------------------- /ui/src/assets/node-partner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/node-partner.svg -------------------------------------------------------------------------------- /ui/src/assets/node-sibling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/node-sibling.svg -------------------------------------------------------------------------------- /ui/src/assets/nzheader.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/nzheader.webp -------------------------------------------------------------------------------- /ui/src/assets/tama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/tama.svg -------------------------------------------------------------------------------- /ui/src/assets/tane-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/tane-outlined.svg -------------------------------------------------------------------------------- /ui/src/assets/tane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/tane.svg -------------------------------------------------------------------------------- /ui/src/assets/tohu-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/tohu-full.svg -------------------------------------------------------------------------------- /ui/src/assets/tree.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/tree.webp -------------------------------------------------------------------------------- /ui/src/assets/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/unknown.svg -------------------------------------------------------------------------------- /ui/src/assets/wahine-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/wahine-outlined.svg -------------------------------------------------------------------------------- /ui/src/assets/wahine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/wahine.svg -------------------------------------------------------------------------------- /ui/src/assets/whakapapa-list.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/whakapapa-list.webp -------------------------------------------------------------------------------- /ui/src/assets/whakapapa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/whakapapa.svg -------------------------------------------------------------------------------- /ui/src/assets/whakapapa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/assets/whakapapa.webp -------------------------------------------------------------------------------- /ui/src/components/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/Avatar.vue -------------------------------------------------------------------------------- /ui/src/components/AvatarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/AvatarGroup.vue -------------------------------------------------------------------------------- /ui/src/components/DateIntervalPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/DateIntervalPicker.vue -------------------------------------------------------------------------------- /ui/src/components/ErrorSnackDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/ErrorSnackDialog.vue -------------------------------------------------------------------------------- /ui/src/components/ImagePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/ImagePicker.vue -------------------------------------------------------------------------------- /ui/src/components/LocalePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/LocalePicker.vue -------------------------------------------------------------------------------- /ui/src/components/NodeDatePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/NodeDatePicker.vue -------------------------------------------------------------------------------- /ui/src/components/SkeletonLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/SkeletonLoader.vue -------------------------------------------------------------------------------- /ui/src/components/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/Spinner.vue -------------------------------------------------------------------------------- /ui/src/components/archive/AddItemCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/AddItemCard.vue -------------------------------------------------------------------------------- /ui/src/components/archive/Archive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/Archive.vue -------------------------------------------------------------------------------- /ui/src/components/archive/Chip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/Chip.vue -------------------------------------------------------------------------------- /ui/src/components/archive/ChipGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/ChipGroup.vue -------------------------------------------------------------------------------- /ui/src/components/archive/Collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/Collection.vue -------------------------------------------------------------------------------- /ui/src/components/archive/CollectionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/CollectionForm.vue -------------------------------------------------------------------------------- /ui/src/components/archive/CollectionGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/CollectionGroup.vue -------------------------------------------------------------------------------- /ui/src/components/archive/CollectionTitleCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/CollectionTitleCard.vue -------------------------------------------------------------------------------- /ui/src/components/archive/ProfileSearchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/ProfileSearchBar.vue -------------------------------------------------------------------------------- /ui/src/components/archive/RecordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/RecordForm.vue -------------------------------------------------------------------------------- /ui/src/components/archive/Stories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/Stories.vue -------------------------------------------------------------------------------- /ui/src/components/archive/StoryCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/archive/StoryCard.vue -------------------------------------------------------------------------------- /ui/src/components/artefact/ArtefactCarousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/artefact/ArtefactCarousel.vue -------------------------------------------------------------------------------- /ui/src/components/artefact/ArtefactCarouselItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/artefact/ArtefactCarouselItem.vue -------------------------------------------------------------------------------- /ui/src/components/artefact/UploadArtefactButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/artefact/UploadArtefactButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/AccessButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/AccessButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/ActivityIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/ActivityIcon.vue -------------------------------------------------------------------------------- /ui/src/components/button/AddButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/AddButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/ArchiveIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/ArchiveIcon.vue -------------------------------------------------------------------------------- /ui/src/components/button/BackButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/BackButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/BigAddButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/BigAddButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/EditArtefactButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/EditArtefactButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/EditProfileButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/EditProfileButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/EditRegistrationButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/EditRegistrationButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/EditStoryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/EditStoryButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/ExportButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/ExportButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/FilterButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/FilterButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/HelpButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/HelpButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/InfoButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/InfoButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/PersonListIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/PersonListIcon.vue -------------------------------------------------------------------------------- /ui/src/components/button/ProfileButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/ProfileButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/RegisterButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/RegisterButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/SearchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/SearchBar.vue -------------------------------------------------------------------------------- /ui/src/components/button/SearchButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/SearchButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/SearchFilterButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/SearchFilterButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/TableButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/TableButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/TimelineButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/TimelineButton.vue -------------------------------------------------------------------------------- /ui/src/components/button/TimelineIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/TimelineIcon.vue -------------------------------------------------------------------------------- /ui/src/components/button/UserIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/UserIcon.vue -------------------------------------------------------------------------------- /ui/src/components/button/WalletIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/WalletIcon.vue -------------------------------------------------------------------------------- /ui/src/components/button/WhakapapaIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/button/WhakapapaIcon.vue -------------------------------------------------------------------------------- /ui/src/components/community/CommunitiesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/community/CommunitiesList.vue -------------------------------------------------------------------------------- /ui/src/components/community/CommunityCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/community/CommunityCard.vue -------------------------------------------------------------------------------- /ui/src/components/community/CommunityForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/community/CommunityForm.vue -------------------------------------------------------------------------------- /ui/src/components/community/CommunityList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/community/CommunityList.vue -------------------------------------------------------------------------------- /ui/src/components/community/PatakaList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/community/PatakaList.vue -------------------------------------------------------------------------------- /ui/src/components/csvImport/CsvImportInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/csvImport/CsvImportInput.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/AlertMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/AlertMessage.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/AvatarEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/AvatarEditDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/ComingSoonDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/ComingSoonDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/DeleteProfileDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/DeleteProfileDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/DialogContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/DialogContainer.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/DialogHandler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/DialogHandler.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/DialogTitleBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/DialogTitleBanner.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/HelpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/HelpDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/ImportPeopleDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/ImportPeopleDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/KeyBackupDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/KeyBackupDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/archive/ArchiveHelper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/archive/ArchiveHelper.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/archive/DeleteCollectionDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/archive/DeleteCollectionDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/archive/DeleteRecordDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/archive/DeleteRecordDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/archive/NewCollectionDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/archive/NewCollectionDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/archive/NewRecordDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/archive/NewRecordDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/artefact/DeleteArtefactDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/artefact/DeleteArtefactDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/artefact/NewArtefactDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/artefact/NewArtefactDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/AcceptCredentials.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/AcceptCredentials.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/DataModel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/DataModel.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/DeleteCommunityDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/DeleteCommunityDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/GroupsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/GroupsList.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/IssueCredentials.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/IssueCredentials.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/MembersPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/MembersPicker.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/NewCommunityDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/NewCommunityDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/NewSubGroupDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/NewSubGroupDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/Permissions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/Permissions.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/RegistrationQuestions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/RegistrationQuestions.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/SubGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/SubGroup.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/ToggleBetaFeatures.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/ToggleBetaFeatures.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/community/TribeSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/community/TribeSettings.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/connection/NewPatakaDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/connection/NewPatakaDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/connection/PatakaHelper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/connection/PatakaHelper.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/profile/EditPersonDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/profile/EditPersonDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/profile/NewPersonDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/profile/NewPersonDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/profile/RemovePersonDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/profile/RemovePersonDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/profile/SideNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/profile/SideNodeDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/profile/SideProfileEditView.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/dialog/registration/NewRegistrationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/registration/NewRegistrationDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/registration/ParentGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/registration/ParentGroup.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/registration/ReviewRegistrationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/registration/ReviewRegistrationDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/submission/ReviewSubmissionDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/submission/ReviewSubmissionDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/CsvErrorDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/CsvErrorDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/CsvHelperDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/CsvHelperDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/FilterInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/FilterInput.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/FilterMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/FilterMenu.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/NewViewDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/NewViewDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/OptionsInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/OptionsInput.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/SortInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/SortInput.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/WhakapapaDeleteDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/WhakapapaDeleteDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/WhakapapaEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/WhakapapaEditDialog.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/WhakapapaListHelper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/WhakapapaListHelper.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/WhakapapaShowHelper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/WhakapapaShowHelper.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/WhakapapaTableHelper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/WhakapapaTableHelper.vue -------------------------------------------------------------------------------- /ui/src/components/dialog/whakapapa/WhakapapaViewDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/dialog/whakapapa/WhakapapaViewDialog.vue -------------------------------------------------------------------------------- /ui/src/components/menu/Appbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/menu/Appbar.vue -------------------------------------------------------------------------------- /ui/src/components/menu/NodeMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/menu/NodeMenu.vue -------------------------------------------------------------------------------- /ui/src/components/menu/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/menu/Notification.vue -------------------------------------------------------------------------------- /ui/src/components/menu/NotificationList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/menu/NotificationList.vue -------------------------------------------------------------------------------- /ui/src/components/menu/NotificationPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/menu/NotificationPanel.vue -------------------------------------------------------------------------------- /ui/src/components/menu/SideNavMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/menu/SideNavMenu.vue -------------------------------------------------------------------------------- /ui/src/components/profile/CustomField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/CustomField.vue -------------------------------------------------------------------------------- /ui/src/components/profile/CustomFieldGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/CustomFieldGroup.vue -------------------------------------------------------------------------------- /ui/src/components/profile/EditRelationships.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/EditRelationships.vue -------------------------------------------------------------------------------- /ui/src/components/profile/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/Profile.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileCard.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileChip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileChip.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileForm.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileHeader.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileInfoCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileInfoCard.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileInfoItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileInfoItem.vue -------------------------------------------------------------------------------- /ui/src/components/profile/ProfileList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/profile/ProfileList.vue -------------------------------------------------------------------------------- /ui/src/components/settings/BackupSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/settings/BackupSettings.vue -------------------------------------------------------------------------------- /ui/src/components/settings/LanguageSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/settings/LanguageSettings.vue -------------------------------------------------------------------------------- /ui/src/components/settings/SettingsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/settings/SettingsForm.vue -------------------------------------------------------------------------------- /ui/src/components/settings/StorageSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/settings/StorageSettings.vue -------------------------------------------------------------------------------- /ui/src/components/story/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/story/Timeline.vue -------------------------------------------------------------------------------- /ui/src/components/story/TimelineCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/story/TimelineCard.vue -------------------------------------------------------------------------------- /ui/src/components/submission/FieldList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/submission/FieldList.vue -------------------------------------------------------------------------------- /ui/src/components/submission/LinkSubmission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/submission/LinkSubmission.vue -------------------------------------------------------------------------------- /ui/src/components/submission/SubmissionDependencies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/submission/SubmissionDependencies.vue -------------------------------------------------------------------------------- /ui/src/components/submission/WhakapapaViewSubmission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/submission/WhakapapaViewSubmission.vue -------------------------------------------------------------------------------- /ui/src/components/table/WhakapapaTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/table/WhakapapaTable.vue -------------------------------------------------------------------------------- /ui/src/components/table/WhakapapaTableNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/table/WhakapapaTableNode.vue -------------------------------------------------------------------------------- /ui/src/components/tree/NodeMenuButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/tree/NodeMenuButton.vue -------------------------------------------------------------------------------- /ui/src/components/tree/SubTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/tree/SubTree.vue -------------------------------------------------------------------------------- /ui/src/components/tree/Tree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/tree/Tree.vue -------------------------------------------------------------------------------- /ui/src/components/tree/TreeLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/tree/TreeLink.vue -------------------------------------------------------------------------------- /ui/src/components/tree/TreeNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/tree/TreeNode.vue -------------------------------------------------------------------------------- /ui/src/components/wallet/CredentialPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/wallet/CredentialPreview.vue -------------------------------------------------------------------------------- /ui/src/components/wallet/InputInviteDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/wallet/InputInviteDialog.vue -------------------------------------------------------------------------------- /ui/src/components/wallet/WalletShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/wallet/WalletShow.vue -------------------------------------------------------------------------------- /ui/src/components/whakapapa/WhakapapaBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/whakapapa/WhakapapaBanner.vue -------------------------------------------------------------------------------- /ui/src/components/whakapapa/WhakapapaForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/whakapapa/WhakapapaForm.vue -------------------------------------------------------------------------------- /ui/src/components/whakapapa/WhakapapaShowViewCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/whakapapa/WhakapapaShowViewCard.vue -------------------------------------------------------------------------------- /ui/src/components/whakapapa/WhakapapaViewCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/components/whakapapa/WhakapapaViewCard.vue -------------------------------------------------------------------------------- /ui/src/lib/artefact-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/artefact-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/avatar-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/avatar-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/calculate-age.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/calculate-age.mjs -------------------------------------------------------------------------------- /ui/src/lib/calculate-age.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/calculate-age.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/colours.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/colours.mjs -------------------------------------------------------------------------------- /ui/src/lib/community-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/community-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/community-helpers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/community-helpers.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/constants.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/constants.mjs -------------------------------------------------------------------------------- /ui/src/lib/constants.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/constants.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/cordova-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/cordova-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/csv-image.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/csv-image.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/csv.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/csv.mjs -------------------------------------------------------------------------------- /ui/src/lib/csv.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/csv.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/custom-field-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/custom-field-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/custom-field-helpers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/custom-field-helpers.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/date-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/date-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/date-helpers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/date-helpers.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/download-helper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/download-helper.mjs -------------------------------------------------------------------------------- /ui/src/lib/file-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/file-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/filters.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/filters.mjs -------------------------------------------------------------------------------- /ui/src/lib/find-successor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/find-successor.mjs -------------------------------------------------------------------------------- /ui/src/lib/find-successor.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/find-successor.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/fixtures/MOCK_DATA_150.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/fixtures/MOCK_DATA_150.csv -------------------------------------------------------------------------------- /ui/src/lib/fixtures/MOCK_DATA_20_ERROR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/fixtures/MOCK_DATA_20_ERROR.csv -------------------------------------------------------------------------------- /ui/src/lib/fixtures/nested-whakapapa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/fixtures/nested-whakapapa.csv -------------------------------------------------------------------------------- /ui/src/lib/get-object-changes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/get-object-changes.mjs -------------------------------------------------------------------------------- /ui/src/lib/get-video-poster.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/get-video-poster.mjs -------------------------------------------------------------------------------- /ui/src/lib/hyper-file-stream.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/hyper-file-stream.mjs -------------------------------------------------------------------------------- /ui/src/lib/link-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/link-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/link.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/link.mjs -------------------------------------------------------------------------------- /ui/src/lib/parse-custom-field-value.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/parse-custom-field-value.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/person-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/person-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/person-helpers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/person-helpers.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/profile-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/profile-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/story-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/story-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/story-helpers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/story-helpers.test.mjs -------------------------------------------------------------------------------- /ui/src/lib/svg-export.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/svg-export.mjs -------------------------------------------------------------------------------- /ui/src/lib/tribes-application-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/tribes-application-helpers.mjs -------------------------------------------------------------------------------- /ui/src/lib/tribes-application-helpers.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/lib/tribes-application-helpers.test.mjs -------------------------------------------------------------------------------- /ui/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/main.js -------------------------------------------------------------------------------- /ui/src/mixins/artefact-mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mixins/artefact-mixins.js -------------------------------------------------------------------------------- /ui/src/mixins/profile-mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mixins/profile-mixins.js -------------------------------------------------------------------------------- /ui/src/mixins/story-mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mixins/story-mixins.js -------------------------------------------------------------------------------- /ui/src/mixins/upload-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mixins/upload-file.js -------------------------------------------------------------------------------- /ui/src/mixins/upload-hyper-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mixins/upload-hyper-file.js -------------------------------------------------------------------------------- /ui/src/mocks/community.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mocks/community.mjs -------------------------------------------------------------------------------- /ui/src/mocks/nested-whakapapa.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mocks/nested-whakapapa.mjs -------------------------------------------------------------------------------- /ui/src/mocks/person-profile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mocks/person-profile.mjs -------------------------------------------------------------------------------- /ui/src/mocks/stories.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mocks/stories.mjs -------------------------------------------------------------------------------- /ui/src/mocks/whakapapa-view.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/mocks/whakapapa-view.mjs -------------------------------------------------------------------------------- /ui/src/plugins/cordova-back-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/plugins/cordova-back-button.js -------------------------------------------------------------------------------- /ui/src/plugins/cordova-nodejs-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/plugins/cordova-nodejs-client.js -------------------------------------------------------------------------------- /ui/src/plugins/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/plugins/i18n.js -------------------------------------------------------------------------------- /ui/src/plugins/possibleTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/plugins/possibleTypes.json -------------------------------------------------------------------------------- /ui/src/plugins/vue-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/plugins/vue-apollo.js -------------------------------------------------------------------------------- /ui/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/plugins/vuetify.js -------------------------------------------------------------------------------- /ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/router/index.js -------------------------------------------------------------------------------- /ui/src/router/modules/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/router/modules/dialogs.js -------------------------------------------------------------------------------- /ui/src/router/modules/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/router/modules/views.js -------------------------------------------------------------------------------- /ui/src/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/README.md -------------------------------------------------------------------------------- /ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/alerts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/alerts/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/analytics/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/analytics/mixpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/analytics/mixpanel.js -------------------------------------------------------------------------------- /ui/src/store/modules/archive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/archive/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/collection/apollo-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/collection/apollo-helpers.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/collection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/collection/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/community/apollo-helpers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/store/modules/community/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/community/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/credentials/credential-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/credentials/credential-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/credentials/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/credentials/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/dialog/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/error/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/loading/apollo-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/loading/apollo-helpers.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/loading/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/loading/index.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/loading/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/loading/index.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/module.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/module.template.js -------------------------------------------------------------------------------- /ui/src/store/modules/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/notifications/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/pataka/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/pataka/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/pataka/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/pataka/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/person/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/person/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/person/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/person/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/profile/apollo-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/profile/apollo-helpers.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/profile/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/settings/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/settings/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/settings/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/story/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/story/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/story/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/story/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/submissions/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/submissions/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/submissions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/submissions/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/subtribe/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/subtribe/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/subtribe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/subtribe/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/table/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/README.md -------------------------------------------------------------------------------- /ui/src/store/modules/tree/constants.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/constants.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/index.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/index.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/index.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/index.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/layout-child-links.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/layout-child-links.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/layout-child-links.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/layout-child-links.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/layout-partner-links.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/layout-partner-links.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/layout-partner-nodes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/layout-partner-nodes.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/layout-secondary-links.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/layout-secondary-links.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/link-key.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/link-key.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/link-key.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/link-key.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/link-style.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/link-style.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/offset-increment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/offset-increment.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tree/lib/offset-increment.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tree/lib/offset-increment.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/tribe/apollo-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tribe/apollo-helpers.js -------------------------------------------------------------------------------- /ui/src/store/modules/tribe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/tribe/index.js -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/find-path-to-root.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/find-path-to-root.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/fixtures/extended-family-A.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/fixtures/extended-family-A.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/fixtures/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/fixtures/index.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/fixtures/large-whakapapa-snapshot.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/fixtures/large-whakapapa-snapshot.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/fixtures/marriage-within-tree.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/fixtures/marriage-within-tree.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/fixtures/whangai-grandparent-complex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/fixtures/whangai-grandparent-complex.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/fixtures/whangai-grandparent-simple.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/fixtures/whangai-grandparent-simple.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/get-child-ids.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/get-child-ids.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/get-parent-ids.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/get-parent-ids.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/get-partner-ids.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/get-partner-ids.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/import-from-csv-actions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/import-from-csv-actions.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/index.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/is-duplicate.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/is-duplicate.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/lib/apollo-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/lib/apollo-helpers.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/lib/find-path-to-root.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/lib/find-path-to-root.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/lib/get-extended-family.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/lib/get-extended-family.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/lib/test-helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/lib/test-helpers.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/nested-descendants.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/nested-descendants.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/record-count.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/record-count.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/remove-link-between-profiles.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/remove-link-between-profiles.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/secondary-links.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/secondary-links.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/suggested-children.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/suggested-children.test.mjs -------------------------------------------------------------------------------- /ui/src/store/modules/whakapapa/suggested-parents.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/modules/whakapapa/suggested-parents.test.mjs -------------------------------------------------------------------------------- /ui/src/store/root.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/store/root.mjs -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/access-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/access-button.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/add-collection-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/add-collection-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/add-community-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/add-community-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/add-person-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/add-person-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/add-story-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/add-story-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/add-whakapapa-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/add-whakapapa-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/appbar-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/appbar-menu.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/button.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/delete-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/delete-person.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/delete-profile-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/delete-profile-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/dialog-handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/dialog-handler.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/dialog.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/edit-person-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/edit-person-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/groups.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/help.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/identity-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/identity-requirements.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/import-csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/import-csv.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/instructions-pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/instructions-pataka.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/instructions-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/instructions-story.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/instructions-whakapapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/instructions-whakapapa.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/key-backup-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/key-backup-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/link-submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/link-submissions.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/months.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/months.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/new-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/new-person.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/new-registration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/new-registration.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/node-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/node-menu.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/notifications.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/pataka.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/person-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/person-index.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/profile-change-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/profile-change-request.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/review-registration-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/review-registration-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/settings-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/settings-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/side-nav-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/side-nav-menu.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/side-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/side-profile.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/support.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/timeline.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/toggle-beta-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/toggle-beta-settings.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/tribe-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/tribe-settings.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/view-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/view-archive.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/view-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/view-person.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/view-tribal-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/view-tribal-registry.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/view-tribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/view-tribes.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/wallet-show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/wallet-show.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/whakapapa-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/whakapapa-index.json -------------------------------------------------------------------------------- /ui/src/translations/en_NZ/whakapapa-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_NZ/whakapapa-table.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/access-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/access-button.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/add-collection-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/add-collection-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/add-community-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/add-community-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/add-person-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/add-person-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/add-story-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/add-story-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/add-whakapapa-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/add-whakapapa-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/appbar-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/appbar-menu.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/button.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/delete-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/delete-person.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/delete-profile-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/delete-profile-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/dialog-handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/dialog-handler.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/dialog.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/edit-person-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/edit-person-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/groups.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/identity-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/identity-requirements.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/import-csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/import-csv.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/en_US/instructions-pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/instructions-pataka.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/instructions-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/instructions-story.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/instructions-whakapapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/instructions-whakapapa.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/key-backup-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/key-backup-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/link-submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/link-submissions.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/months.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/months.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/new-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/new-person.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/new-registration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/new-registration.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/node-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/node-menu.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/notifications.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/pataka.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/person-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/person-index.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/profile-change-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/profile-change-request.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/review-registration-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/review-registration-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/settings-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/settings-form.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/side-nav-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/side-nav-menu.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/side-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/side-profile.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/support.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/timeline.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/toggle-beta-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/toggle-beta-settings.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/tribe-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/tribe-settings.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/view-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/view-archive.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/view-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/view-person.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/view-tribal-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/view-tribal-registry.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/view-tribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/view-tribes.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/wallet-show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/wallet-show.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/whakapapa-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/whakapapa-index.json -------------------------------------------------------------------------------- /ui/src/translations/en_US/whakapapa-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/en_US/whakapapa-table.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/access-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/access-button.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/add-collection-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/add-collection-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/add-community-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/add-community-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/add-person-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/add-person-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/add-story-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/add-story-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/add-whakapapa-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/add-whakapapa-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/appbar-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/appbar-menu.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/button.json: -------------------------------------------------------------------------------- 1 | { 2 | "help": "ayuda" 3 | } -------------------------------------------------------------------------------- /ui/src/translations/es_ES/delete-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/delete-person.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/delete-profile-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/delete-profile-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/dialog-handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/dialog-handler.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/dialog.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/edit-person-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/edit-person-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/groups.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/identity-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/identity-requirements.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/import-csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/import-csv.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/es_ES/instructions-pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/instructions-pataka.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/instructions-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/instructions-story.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/instructions-whakapapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/instructions-whakapapa.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/key-backup-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/key-backup-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/link-submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/link-submissions.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/months.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/months.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/new-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/new-person.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/new-registration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/new-registration.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/node-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/node-menu.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/notifications.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/pataka.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/person-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/person-index.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/profile-change-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/profile-change-request.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/review-registration-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/review-registration-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/settings-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/settings-form.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/side-nav-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/side-nav-menu.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/side-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/side-profile.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/support.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/timeline.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/toggle-beta-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/toggle-beta-settings.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/tribe-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/tribe-settings.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/view-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/view-archive.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/view-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/view-person.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/view-tribal-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/view-tribal-registry.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/view-tribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/view-tribes.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/wallet-show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/wallet-show.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/whakapapa-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/whakapapa-index.json -------------------------------------------------------------------------------- /ui/src/translations/es_ES/whakapapa-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/es_ES/whakapapa-table.json -------------------------------------------------------------------------------- /ui/src/translations/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/access-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/access-button.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/add-collection-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/add-collection-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/add-community-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/add-community-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/add-person-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/add-person-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/add-story-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/add-story-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/add-whakapapa-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/add-whakapapa-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/appbar-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/appbar-menu.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/button.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/delete-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/delete-person.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/delete-profile-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/delete-profile-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/dialog-handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/dialog-handler.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/dialog.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/edit-person-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/edit-person-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/groups.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/identity-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/identity-requirements.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/import-csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/import-csv.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/instructions-pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/instructions-pataka.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/instructions-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/instructions-story.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/instructions-whakapapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/instructions-whakapapa.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/key-backup-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/key-backup-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/link-submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/link-submissions.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/months.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/months.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/new-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/new-person.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/new-registration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/new-registration.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/node-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/node-menu.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/notifications.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/pataka.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/person-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/person-index.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/profile-change-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/profile-change-request.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/review-registration-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/review-registration-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/settings-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/settings-form.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/side-nav-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/side-nav-menu.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/side-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/side-profile.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/support.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/timeline.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/toggle-beta-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/toggle-beta-settings.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/tribe-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/tribe-settings.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/view-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/view-archive.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/view-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/view-person.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/view-tribal-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/view-tribal-registry.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/view-tribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/view-tribes.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/wallet-show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/wallet-show.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/whakapapa-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/whakapapa-index.json -------------------------------------------------------------------------------- /ui/src/translations/mi_NZ/whakapapa-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/mi_NZ/whakapapa-table.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/access-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/access-button.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/add-collection-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/add-collection-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/add-community-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/add-community-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/add-person-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/add-person-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/add-story-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/add-story-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/add-whakapapa-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/add-whakapapa-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/appbar-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/appbar-menu.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/button.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/delete-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/delete-person.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/delete-profile-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/delete-profile-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/dialog-handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/dialog-handler.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/dialog.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/edit-person-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/edit-person-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/groups.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/identity-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/identity-requirements.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/import-csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/import-csv.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/instructions-pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/instructions-pataka.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/instructions-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/instructions-story.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/instructions-whakapapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/instructions-whakapapa.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/key-backup-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/key-backup-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/link-submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/link-submissions.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/months.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/months.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/new-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/new-person.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/new-registration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/new-registration.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/node-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/node-menu.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/notifications.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/pataka.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/person-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/person-index.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/profile-change-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/profile-change-request.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/review-registration-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/review-registration-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/settings-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/settings-form.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/side-nav-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/side-nav-menu.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/side-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/side-profile.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/support.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/timeline.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/toggle-beta-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/toggle-beta-settings.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/tribe-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/tribe-settings.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/view-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/view-archive.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/view-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/view-person.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/view-tribal-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/view-tribal-registry.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/view-tribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/view-tribes.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/wallet-show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/wallet-show.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/whakapapa-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/whakapapa-index.json -------------------------------------------------------------------------------- /ui/src/translations/nl_NL/whakapapa-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/nl_NL/whakapapa-table.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/access-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/access-button.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/add-collection-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/add-collection-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/add-community-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/add-community-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/add-person-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/add-person-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/add-story-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/add-story-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/add-whakapapa-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/add-whakapapa-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/appbar-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/appbar-menu.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/button.json: -------------------------------------------------------------------------------- 1 | { 2 | "help": "Ajuda" 3 | } -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/delete-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/delete-person.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/delete-profile-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/delete-profile-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/dialog-handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/dialog-handler.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/dialog.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/edit-person-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/edit-person-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/groups.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/identity-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/identity-requirements.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/import-csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/import-csv.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/index.mjs -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/instructions-pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/instructions-pataka.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/instructions-story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/instructions-story.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/instructions-whakapapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/instructions-whakapapa.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/key-backup-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/key-backup-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/link-submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/link-submissions.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/months.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/months.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/new-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/new-person.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/new-registration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/new-registration.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/node-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/node-menu.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/notifications.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/pataka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/pataka.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/person-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/person-index.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/profile-change-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/profile-change-request.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/review-registration-dialog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/review-registration-dialog.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/settings-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/settings-form.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/side-nav-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/side-nav-menu.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/side-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/side-profile.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/support.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/timeline.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/toggle-beta-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/toggle-beta-settings.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/tribe-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/tribe-settings.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/view-archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/view-archive.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/view-person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/view-person.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/view-tribal-registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/view-tribal-registry.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/view-tribes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/view-tribes.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/wallet-show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/wallet-show.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/whakapapa-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/whakapapa-index.json -------------------------------------------------------------------------------- /ui/src/translations/pt_BR/whakapapa-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/translations/pt_BR/whakapapa-table.json -------------------------------------------------------------------------------- /ui/src/views/CollectionShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/CollectionShow.vue -------------------------------------------------------------------------------- /ui/src/views/Discovery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/Discovery.vue -------------------------------------------------------------------------------- /ui/src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/Login.vue -------------------------------------------------------------------------------- /ui/src/views/PersonIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/PersonIndex.vue -------------------------------------------------------------------------------- /ui/src/views/ProfileShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/ProfileShow.vue -------------------------------------------------------------------------------- /ui/src/views/WhakapapaIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/WhakapapaIndex.vue -------------------------------------------------------------------------------- /ui/src/views/WhakapapaShow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/src/views/WhakapapaShow.vue -------------------------------------------------------------------------------- /ui/ssb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/ssb.config.js -------------------------------------------------------------------------------- /ui/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/vite.config.js -------------------------------------------------------------------------------- /ui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/vue.config.js -------------------------------------------------------------------------------- /ui/vuetify.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahau-NZ/Ahau/HEAD/ui/vuetify.config.js --------------------------------------------------------------------------------