├── .browserslistrc ├── .database_consistency.yml ├── .devcontainer ├── .env ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .env-frontend.development.template ├── .env.development.template ├── .eslintrc ├── .gitbook.yaml ├── .github ├── FUNDING.yml └── workflows │ ├── publish-beta.yml │ ├── publish.yml │ ├── reusable-test.yml │ └── test.yml ├── .gitignore ├── .postcssrc.yml ├── .prettierrc ├── .rspec ├── .rubocop.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CHANGES.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── android_logo.svg │ │ ├── apple_logo_black.svg │ │ ├── apple_logo_white.svg │ │ ├── chrome_logo.svg │ │ ├── deepl_logo.svg │ │ ├── django_logo.svg │ │ ├── facebook_fbt_logo.png │ │ ├── flutter_logo.svg │ │ ├── formatjs_logo.svg │ │ ├── gnu_logo.svg │ │ ├── go_logo_blue.svg │ │ ├── java_logo.svg │ │ ├── json_logo.svg │ │ ├── logo_black.png │ │ ├── logo_black_text.png │ │ ├── logo_black_text_background_rounded.png │ │ ├── logo_white.png │ │ ├── logo_white_background.png │ │ ├── logo_white_background_rounded.png │ │ ├── logo_white_text.png │ │ ├── logo_white_text.svg │ │ ├── rails_logo.svg │ │ ├── toml_logo.svg │ │ ├── visual_studio_code_logo.svg │ │ └── wordpress_logo.svg │ ├── javascripts │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ └── packs │ │ │ └── application.js │ └── stylesheets │ │ ├── application.scss │ │ ├── base.scss │ │ ├── externals.scss │ │ ├── externals │ │ ├── antd-alert.less │ │ ├── antd-breadcrumbs.less │ │ ├── antd-button.less │ │ ├── antd-customization.scss │ │ ├── antd-dark.less │ │ ├── antd-drawer.less │ │ ├── antd-input.less │ │ ├── antd-light.less │ │ ├── antd-menu.less │ │ ├── antd-notification.less │ │ ├── antd-pagination.less │ │ ├── antd-picker.less │ │ ├── antd-popover.less │ │ ├── antd-select.less │ │ ├── antd-skeleton.less │ │ ├── antd-steps.less │ │ ├── antd-tabs.less │ │ ├── antd-tag.less │ │ ├── antd-tooltip.less │ │ ├── antd-typography.less │ │ ├── antd.less │ │ └── html-editor.scss │ │ └── variables.scss ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ └── jobs_channel.rb ├── controllers │ ├── api │ │ └── v1 │ │ │ ├── access_tokens_controller.rb │ │ │ ├── api_controller.rb │ │ │ ├── background_jobs_controller.rb │ │ │ ├── country_codes_controller.rb │ │ │ ├── dashboard_controller.rb │ │ │ ├── export_configs_controller.rb │ │ │ ├── file_formats_controller.rb │ │ │ ├── flavors_controller.rb │ │ │ ├── forbidden_words_lists_controller.rb │ │ │ ├── imports_controller.rb │ │ │ ├── instance_controller.rb │ │ │ ├── instance_users_controller.rb │ │ │ ├── key_tags_controller.rb │ │ │ ├── keys_controller.rb │ │ │ ├── language_codes_controller.rb │ │ │ ├── language_configs_controller.rb │ │ │ ├── languages_controller.rb │ │ │ ├── licenses_controller.rb │ │ │ ├── machine_translations_controller.rb │ │ │ ├── organization_invites_controller.rb │ │ │ ├── organization_machine_translation_controller.rb │ │ │ ├── organization_users_controller.rb │ │ │ ├── organizations_controller.rb │ │ │ ├── placeholders_controller.rb │ │ │ ├── post_processing_rules_controller.rb │ │ │ ├── project_columns_controller.rb │ │ │ ├── project_invites_controller.rb │ │ │ ├── project_users_controller.rb │ │ │ ├── projects_controller.rb │ │ │ ├── registrations_controller.rb │ │ │ ├── releases_controller.rb │ │ │ ├── sessions_controller.rb │ │ │ ├── tags_controller.rb │ │ │ ├── translations_controller.rb │ │ │ ├── user_licenses_controller.rb │ │ │ ├── users_controller.rb │ │ │ ├── validation_violations_controller.rb │ │ │ ├── validations_controller.rb │ │ │ └── wordpress_polylang_connections_controller.rb │ ├── application_controller.rb │ └── concerns │ │ └── .keep ├── helpers │ ├── application_helper.rb │ ├── enabled_features_helper.rb │ └── releases_helper.rb ├── javascript │ ├── components │ │ ├── AppContainer.tsx │ │ ├── WebsocketClient.ts │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── API.ts │ │ │ │ ├── APIErrors.ts │ │ │ │ ├── APIUtils.ts │ │ │ │ ├── AccessTokensAPI.ts │ │ │ │ ├── AuthAPI.ts │ │ │ │ ├── BackgroundJobsAPI.ts │ │ │ │ ├── CountryCodesAPI.ts │ │ │ │ ├── DashboardAPI.ts │ │ │ │ ├── ExportConfigsAPI.ts │ │ │ │ ├── FileFormatsAPI.ts │ │ │ │ ├── FlavorsAPI.ts │ │ │ │ ├── ForbiddenWordsListsAPI.ts │ │ │ │ ├── ImportsAPI.ts │ │ │ │ ├── InstanceAPI.ts │ │ │ │ ├── InstanceUsersAPI.ts │ │ │ │ ├── KeysAPI.ts │ │ │ │ ├── LanguageCodesAPI.ts │ │ │ │ ├── LanguageConfigsAPI.ts │ │ │ │ ├── LanguagesAPI.ts │ │ │ │ ├── LicensesAPI.ts │ │ │ │ ├── MachineTranslationsAPI.ts │ │ │ │ ├── MembersAPI.ts │ │ │ │ ├── OrganizationInvitesAPI.ts │ │ │ │ ├── OrganizationMembersAPI.ts │ │ │ │ ├── OrganizationsAPI.ts │ │ │ │ ├── PlaceholdersAPI.ts │ │ │ │ ├── PostProcessingRulesAPI.ts │ │ │ │ ├── ProjectColumnsAPI.ts │ │ │ │ ├── ProjectInvitesAPI.ts │ │ │ │ ├── ProjectsAPI.ts │ │ │ │ ├── ReleasesAPI.ts │ │ │ │ ├── TagsAPI.ts │ │ │ │ ├── TranslationsAPI.ts │ │ │ │ ├── UserLicensesAPI.ts │ │ │ │ ├── UsersAPI.ts │ │ │ │ ├── ValidationViolationsAPI.ts │ │ │ │ ├── ValidationsAPI.ts │ │ │ │ └── WordpressPolylangConnectionsAPI.ts │ │ ├── configs │ │ │ └── MessageDurations.ts │ │ ├── forms │ │ │ ├── AddEditExportConfigForm.tsx │ │ │ ├── AddEditExportConfigFormModal.tsx │ │ │ ├── AddEditExportConfigLanguageForm.tsx │ │ │ ├── AddEditFlavorForm.tsx │ │ │ ├── AddEditFlavorFormModal.tsx │ │ │ ├── AddEditForbiddenWordListForm.tsx │ │ │ ├── AddEditLanguageForm.tsx │ │ │ ├── AddEditLanguageFormModal.tsx │ │ │ ├── AddEditPostProcessingRuleForm.tsx │ │ │ ├── AddEditValidationForm.tsx │ │ │ ├── AddReleaseForm.tsx │ │ │ ├── AddTagToKeyForm.tsx │ │ │ ├── AddTagToKeyModal.tsx │ │ │ ├── ChangePasswordForm.tsx │ │ │ ├── EditTranslationForm.tsx │ │ │ ├── EditTranslationFormModal.tsx │ │ │ ├── EditUserForm.tsx │ │ │ ├── ForgotPasswordForm.tsx │ │ │ ├── InviteUserFormModal.tsx │ │ │ ├── LoginForm.tsx │ │ │ ├── NewKeyForm.tsx │ │ │ ├── NewOrganizationForm.tsx │ │ │ ├── NewOrganizationFormModal.tsx │ │ │ ├── NewPasswordForm.tsx │ │ │ ├── NewProjectForm.tsx │ │ │ ├── NewProjectFormModal.tsx │ │ │ ├── OrganizationMachineTranslationSettingsForm.tsx │ │ │ ├── PlaceholderSettingsForm.tsx │ │ │ ├── SignupForm.tsx │ │ │ ├── TagForm.tsx │ │ │ ├── TagFormModal.tsx │ │ │ ├── TexterifyModalFooterWrapper.tsx │ │ │ ├── TransferProjectForm.tsx │ │ │ └── TransferProjectFormModal.tsx │ │ ├── hooks │ │ │ ├── useFlavors.tsx │ │ │ ├── useImport.tsx │ │ │ ├── useImportFiles.tsx │ │ │ ├── useImportReview.tsx │ │ │ ├── useLanguageConfigs.tsx │ │ │ ├── useLanguages.tsx │ │ │ └── useTags.tsx │ │ ├── routing │ │ │ ├── AppRouter.tsx │ │ │ ├── DashboardRouter.tsx │ │ │ ├── InstanceRouter.tsx │ │ │ ├── OrganizationRouter.tsx │ │ │ ├── PrivateRoute.tsx │ │ │ ├── PrivateRouteTexterifyCloud.tsx │ │ │ ├── ProjectRouter.tsx │ │ │ ├── PublicRouteRedirectDashboard.tsx │ │ │ ├── Routes.tsx │ │ │ ├── RoutingManager.tsx │ │ │ ├── SiteRouter.tsx │ │ │ ├── SuperadminRoute.tsx │ │ │ └── history.ts │ │ ├── services │ │ │ └── SubscriptionService.ts │ │ ├── sites │ │ │ ├── auth │ │ │ │ ├── AccountConfirmationSite.tsx │ │ │ │ ├── ForgotPasswordSite.tsx │ │ │ │ ├── LoginSite.tsx │ │ │ │ ├── NewPasswordSite.tsx │ │ │ │ └── SignupSite.tsx │ │ │ ├── dashboard │ │ │ │ ├── AboutSite.tsx │ │ │ │ ├── ActivitySite.tsx │ │ │ │ ├── AvatarEditorWrapper.tsx │ │ │ │ ├── AvatarNoImage.tsx │ │ │ │ ├── AvatarWrapper.tsx │ │ │ │ ├── DashboardNotFoundSite.tsx │ │ │ │ ├── DashboardSite.tsx │ │ │ │ ├── EditorSite.tsx │ │ │ │ ├── ExportSidebar.tsx │ │ │ │ ├── ImportsDetailsSite.tsx │ │ │ │ ├── ImportsSite.tsx │ │ │ │ ├── InstanceSidebar.tsx │ │ │ │ ├── KeysSite.tsx │ │ │ │ ├── LanguagesSite.tsx │ │ │ │ ├── MembersSite.tsx │ │ │ │ ├── OrganizationForbiddenWordsSite.tsx │ │ │ │ ├── OrganizationMachineTranslationSite.tsx │ │ │ │ ├── OrganizationMembersSite.tsx │ │ │ │ ├── OrganizationSettingsSite.tsx │ │ │ │ ├── OrganizationSidebar.tsx │ │ │ │ ├── OrganizationSite.tsx │ │ │ │ ├── OrganizationSubscriptionSite.tsx │ │ │ │ ├── OrganizationValidationsSite.tsx │ │ │ │ ├── OrganizationsSite.tsx │ │ │ │ ├── ProjectActivitySite.tsx │ │ │ │ ├── ProjectExportConfigsSite.tsx │ │ │ │ ├── ProjectExportDownloadSite.tsx │ │ │ │ ├── ProjectExportFlavorsSite.tsx │ │ │ │ ├── ProjectExportHierarchySite.tsx │ │ │ │ ├── ProjectForbiddenWordsListsSite.tsx │ │ │ │ ├── ProjectIntegrationsSite.tsx │ │ │ │ ├── ProjectIntegrationsWordpressSettingsSite.tsx │ │ │ │ ├── ProjectIntegrationsWordpressSyncSite.tsx │ │ │ │ ├── ProjectIssuesActiveSite.tsx │ │ │ │ ├── ProjectIssuesIgnoredSite.tsx │ │ │ │ ├── ProjectMachineTranslationSettingsSite.tsx │ │ │ │ ├── ProjectMachineTranslationSite.tsx │ │ │ │ ├── ProjectMachineTranslationUsageSite.tsx │ │ │ │ ├── ProjectOTASite.tsx │ │ │ │ ├── ProjectPlaceholdersSite.tsx │ │ │ │ ├── ProjectPostProcessingSite.tsx │ │ │ │ ├── ProjectSettingsAdvancedSite.tsx │ │ │ │ ├── ProjectSettingsGeneralSite.tsx │ │ │ │ ├── ProjectSettingsSidebar.tsx │ │ │ │ ├── ProjectSidebar.tsx │ │ │ │ ├── ProjectSite.tsx │ │ │ │ ├── ProjectTagsSite.tsx │ │ │ │ ├── ProjectValidationsSite.tsx │ │ │ │ ├── ProjectsSite.tsx │ │ │ │ ├── SetupSite.tsx │ │ │ │ ├── SidebarWordpressIntegration.tsx │ │ │ │ ├── UserAccessTokensSettingsSite.tsx │ │ │ │ ├── UserAccountSettingsSite.tsx │ │ │ │ ├── UserLicensesSite.tsx │ │ │ │ ├── UserSettingsSidebar.tsx │ │ │ │ ├── editor │ │ │ │ │ ├── EditorToolbar.tsx │ │ │ │ │ ├── HTMLEditor.tsx │ │ │ │ │ ├── TranslationCard.tsx │ │ │ │ │ ├── squire-raw.js │ │ │ │ │ └── squire.js │ │ │ │ └── instance │ │ │ │ │ ├── InstanceLicensesSite.tsx │ │ │ │ │ ├── InstanceSettingsSite.tsx │ │ │ │ │ ├── InstanceSite.tsx │ │ │ │ │ └── InstanceUsersSite.tsx │ │ │ ├── errors │ │ │ │ ├── InvalidAccountConfirmationLinkSite.tsx │ │ │ │ ├── InvalidPasswordResetLinkSite.tsx │ │ │ │ └── NotFoundSite.tsx │ │ │ └── payment │ │ │ │ ├── PaymentErrorSite.tsx │ │ │ │ └── PaymentSuccessSite.tsx │ │ ├── stores │ │ │ ├── AuthStore.ts │ │ │ ├── DashboardStore.ts │ │ │ └── GeneralStore.ts │ │ ├── types │ │ │ ├── IFeature.ts │ │ │ ├── IPlan.ts │ │ │ └── IUserRole.ts │ │ ├── ui │ │ │ ├── Activity.tsx │ │ │ ├── ActivityTimeAgo.tsx │ │ │ ├── AddTagButton.tsx │ │ │ ├── BackButton.tsx │ │ │ ├── BackgroundJobsPopupContent.tsx │ │ │ ├── Breadcrumbs.tsx │ │ │ ├── ColumnTag.tsx │ │ │ ├── Config.ts │ │ │ ├── ConfirmEmailHint.tsx │ │ │ ├── Constants.tsx │ │ │ ├── CountryCodeWithTooltip.tsx │ │ │ ├── CustomSubscription.tsx │ │ │ ├── DarkModeToggle.tsx │ │ │ ├── DataIds.tsx │ │ │ ├── DeleteLink.tsx │ │ │ ├── DropZoneWrapper.tsx │ │ │ ├── EditableCell.tsx │ │ │ ├── EditableCellInputPreview.tsx │ │ │ ├── EditableTable.tsx │ │ │ ├── EditorSidebarInfo.tsx │ │ │ ├── ErrorSiteWrapper.tsx │ │ │ ├── ErrorUtils.ts │ │ │ ├── ExportConfigsTable.tsx │ │ │ ├── FeatureNotAvailable.tsx │ │ │ ├── Features.tsx │ │ │ ├── Flag.tsx │ │ │ ├── FlagIcons.tsx │ │ │ ├── FlavorsTable.tsx │ │ │ ├── ForbiddenWordsListsTable.tsx │ │ │ ├── HighlightBox.tsx │ │ │ ├── HoverCard.tsx │ │ │ ├── ImportFileAssigner.tsx │ │ │ ├── ImportFilesTable.tsx │ │ │ ├── ImportReviewTable.tsx │ │ │ ├── ImportSidebar.tsx │ │ │ ├── ImportsTable.tsx │ │ │ ├── InstanceUsersTable.tsx │ │ │ ├── IssuesSidebar.tsx │ │ │ ├── IssuesTable.tsx │ │ │ ├── IssuesTag.tsx │ │ │ ├── KeyComments.tsx │ │ │ ├── KeyHistory.tsx │ │ │ ├── KeySearchSettings.tsx │ │ │ ├── KeySearchSettingsActiveFilters.tsx │ │ │ ├── KeyTags.tsx │ │ │ ├── KeystrokeButtonWrapper.tsx │ │ │ ├── KeystrokeDefinitions.ts │ │ │ ├── KeystrokeHandler.tsx │ │ │ ├── KeystrokePreview.tsx │ │ │ ├── LanguageCodeWithTooltip.tsx │ │ │ ├── LanguageNameWithFlag.tsx │ │ │ ├── LanguagesTable.tsx │ │ │ ├── LayoutWithSidebar.tsx │ │ │ ├── LayoutWithSidebarContentWrapper.tsx │ │ │ ├── LayoutWithSidebarContentWrapperInner.tsx │ │ │ ├── LayoutWithSubSidebar.tsx │ │ │ ├── LayoutWithSubSidebarInner.tsx │ │ │ ├── LayoutWithSubSidebarInnerContent.tsx │ │ │ ├── LicenseExpiring.tsx │ │ │ ├── LicenseFreeVersion.tsx │ │ │ ├── Licenses.tsx │ │ │ ├── ListContent.tsx │ │ │ ├── Loading.tsx │ │ │ ├── LoadingOverlay.tsx │ │ │ ├── MachineTranslationEnabledMessage.tsx │ │ │ ├── MachineTranslationSidebar.tsx │ │ │ ├── MachineTranslationSourceSupportMessage.tsx │ │ │ ├── MachineTranslationSuggestion.tsx │ │ │ ├── ModalStep.tsx │ │ │ ├── NotificationsManager.tsx │ │ │ ├── OkIndicator.tsx │ │ │ ├── OrganizationAvatar.tsx │ │ │ ├── OrganizationMachineTranslationTotalUsage.tsx │ │ │ ├── OrganizationQASidebar.tsx │ │ │ ├── PricingCard.tsx │ │ │ ├── PrimaryButton.tsx │ │ │ ├── PrimitiveComponents.tsx │ │ │ ├── ProjectAvatar.tsx │ │ │ ├── ProjectInvitesTable.tsx │ │ │ ├── ProjectsList.tsx │ │ │ ├── QuestionIconWithTooltip.tsx │ │ │ ├── RolesLegend.tsx │ │ │ ├── SearchOverlay.tsx │ │ │ ├── SearchOverlayResults.tsx │ │ │ ├── SettingsSectionWrapper.tsx │ │ │ ├── SidebarTrigger.tsx │ │ │ ├── SiteWrapper.tsx │ │ │ ├── SiteWrapperHeader.tsx │ │ │ ├── SiteWrapperLink.tsx │ │ │ ├── Styles.ts │ │ │ ├── SubSidebar.tsx │ │ │ ├── SupportedMachineTranslationLanguagesModal.tsx │ │ │ ├── TagsFilter.tsx │ │ │ ├── TagsTable.tsx │ │ │ ├── TexterifyModal.tsx │ │ │ ├── TranslationFileImporter.tsx │ │ │ ├── TransparentButton.tsx │ │ │ ├── UserAvatar.tsx │ │ │ ├── UserDeactivatedOrganizationModal.tsx │ │ │ ├── UserDeactivatedProjectModal.tsx │ │ │ ├── UserProfileHeader.tsx │ │ │ ├── Utils.ts │ │ │ ├── ValidationSiteHeader.tsx │ │ │ ├── ValidationsSidebar.tsx │ │ │ ├── WarningIndicator.tsx │ │ │ ├── WhiteButton.tsx │ │ │ └── WordpressContentsTable.tsx │ │ └── utilities │ │ │ ├── Env.ts │ │ │ ├── JobsChannelEvents.ts │ │ │ ├── KeyCodes.ts │ │ │ ├── LanguageUtils.ts │ │ │ ├── MachineTranslationUtils.ts │ │ │ ├── PermissionUtils.ts │ │ │ ├── PubSubEvents.ts │ │ │ ├── SidebarUtils.ts │ │ │ ├── Sorter.ts │ │ │ └── TranslationUtils.ts │ ├── packs │ │ ├── application.js │ │ └── error_tracking.js │ └── typings │ │ ├── APITypes.ts │ │ └── images.d.ts ├── jobs │ └── application_job.rb ├── lib │ ├── deepl.rb │ ├── deepl │ │ └── client.rb │ ├── invalid_file_format_exception.rb │ ├── texterify.rb │ └── texterify │ │ ├── export.rb │ │ ├── export_formats.rb │ │ ├── export_formats │ │ ├── csv.rb │ │ └── helpers.rb │ │ ├── import.rb │ │ └── machine_translation.rb ├── mailers │ ├── application_mailer.rb │ ├── subscription_mailer.rb │ └── user_mailer.rb ├── models │ ├── access_token.rb │ ├── application_record.rb │ ├── background_job.rb │ ├── concerns │ │ └── .keep │ ├── country_code.rb │ ├── custom_subscription.rb │ ├── deepl_source_language.rb │ ├── deepl_target_language.rb │ ├── export_config.rb │ ├── file_format.rb │ ├── file_format_extension.rb │ ├── file_format_file_format_extension.rb │ ├── flavor.rb │ ├── forbidden_word.rb │ ├── forbidden_words_list.rb │ ├── import.rb │ ├── import_file.rb │ ├── import_file_translation.rb │ ├── key.rb │ ├── key_tag.rb │ ├── language.rb │ ├── language_code.rb │ ├── language_config.rb │ ├── language_plural.rb │ ├── language_project_column.rb │ ├── license.rb │ ├── machine_translation_memory.rb │ ├── organization.rb │ ├── organization_invite.rb │ ├── organization_user.rb │ ├── placeholder.rb │ ├── post_processing_rule.rb │ ├── project.rb │ ├── project_column.rb │ ├── project_invite.rb │ ├── project_user.rb │ ├── recently_viewed_project.rb │ ├── release.rb │ ├── release_file.rb │ ├── sent_email.rb │ ├── setting.rb │ ├── subscription.rb │ ├── tag.rb │ ├── translation.rb │ ├── user.rb │ ├── user_license.rb │ ├── validation.rb │ ├── validation_violation.rb │ ├── wordpress_content.rb │ └── wordpress_polylang_connection.rb ├── policies │ ├── application_policy.rb │ ├── background_job_policy.rb │ ├── export_config_policy.rb │ ├── flavor_policy.rb │ ├── forbidden_words_list_policy.rb │ ├── import_policy.rb │ ├── instance_policy.rb │ ├── instance_user_policy.rb │ ├── key_policy.rb │ ├── key_tag_policy.rb │ ├── language_config_policy.rb │ ├── language_policy.rb │ ├── license_policy.rb │ ├── machine_translation_policy.rb │ ├── organization_invite_policy.rb │ ├── organization_policy.rb │ ├── organization_user_policy.rb │ ├── post_processing_rule_policy.rb │ ├── project_invite_policy.rb │ ├── project_policy.rb │ ├── project_user_policy.rb │ ├── release_policy.rb │ ├── tag_policy.rb │ ├── translation_policy.rb │ ├── user_license_policy.rb │ ├── validation_policy.rb │ ├── validation_violation_policy.rb │ └── wordpress_polylang_connection_policy.rb ├── serializers │ ├── access_token_serializer.rb │ ├── activity_serializer.rb │ ├── background_job_serializer.rb │ ├── country_code_serializer.rb │ ├── custom_subscription_serializer.rb │ ├── deepl_source_language_serializer.rb │ ├── deepl_target_language_serializer.rb │ ├── export_config_serializer.rb │ ├── file_format_extension_serializer.rb │ ├── file_format_file_format_extension_serializer.rb │ ├── file_format_serializer.rb │ ├── flavor_serializer.rb │ ├── forbidden_word_serializer.rb │ ├── forbidden_words_list_serializer.rb │ ├── import_file_serializer.rb │ ├── import_serializer.rb │ ├── instance_user_serializer.rb │ ├── key_serializer.rb │ ├── language_code_serializer.rb │ ├── language_config_serializer.rb │ ├── language_serializer.rb │ ├── license_serializer.rb │ ├── organization_invite_serializer.rb │ ├── organization_serializer.rb │ ├── organization_user_serializer.rb │ ├── placeholder_serializer.rb │ ├── post_processing_rule_serializer.rb │ ├── project_column_serializer.rb │ ├── project_invite_serializer.rb │ ├── project_serializer.rb │ ├── project_user_serializer.rb │ ├── release_file_serializer.rb │ ├── release_serializer.rb │ ├── subscription_serializer.rb │ ├── tag_serializer.rb │ ├── translation_serializer.rb │ ├── user_license_serializer.rb │ ├── user_serializer.rb │ ├── validation_serializer.rb │ ├── validation_violation_serializer.rb │ ├── wordpress_content_serializer.rb │ └── wordpress_polylang_connection_serializer.rb ├── views │ ├── application │ │ └── app.html.erb │ ├── devise │ │ └── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ └── reset_password_instructions.html.erb │ ├── layouts │ │ ├── application.html.erb │ │ └── email.html.erb │ ├── subscription_mailer │ │ └── trial_expiring.html.erb │ ├── templates │ │ └── android.xml.erb │ └── user_mailer │ │ ├── invite.html.erb │ │ └── welcome.html.erb └── workers │ ├── check_placeholders_worker.rb │ ├── check_validations_worker.rb │ ├── deepl_supported_languages_worker.rb │ ├── import_import_worker.rb │ ├── import_verify_worker.rb │ ├── reset_machine_translation_characters_usage_worker.rb │ └── trial_ending_worker.rb ├── babel.config.js ├── bin ├── bundle ├── byebug ├── database_consistency ├── erubis ├── haml ├── html2haml ├── listen ├── nokogiri ├── puma ├── pumactl ├── rackup ├── rails ├── rake ├── ruby_parse ├── ruby_parse_extract_error ├── sass ├── sass-convert ├── scss ├── setup ├── spring ├── sprockets ├── thor ├── tilt ├── update ├── webpack ├── webpack-dev-server └── yarn ├── bootstrap.sh ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── constants.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── cypress_on_rails.rb │ ├── devise.rb │ ├── devise_token_auth.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── license.rb │ ├── mime_types.rb │ ├── sentry.rb │ ├── sidekiq.rb │ ├── texterify.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── sidekiq.yml ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── loaders │ │ └── less.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20180528232328_enable_pgcrypto_extension.rb │ ├── 20180528232528_devise_token_auth_create_users.rb │ ├── 20180529003103_make_username_unique_and_not_null.rb │ ├── 20180529003528_make_email_not_null_and_unique.rb │ ├── 20180629214908_create_projects.rb │ ├── 20180630002527_create_keys.rb │ ├── 20180710225210_create_languages.rb │ ├── 20180710231538_create_translations.rb │ ├── 20180715221811_create_country_codes.rb │ ├── 20180715225829_add_country_code_id_to_language.rb │ ├── 20180719225621_create_users_projects.rb │ ├── 20180723002735_create_access_tokens.rb │ ├── 20180723190217_create_permissions.rb │ ├── 20180805153818_add_parent_to_language.rb │ ├── 20190224162941_create_versions.rb │ ├── 20190224162942_add_object_changes_to_versions.rb │ ├── 20190226135753_add_project_id_to_versions.rb │ ├── 20190227132749_create_project_columns.rb │ ├── 20190227214623_create_project_columns_languages.rb │ ├── 20190227220246_change_show_columns.rb │ ├── 20190302005632_make_language_case_insensitive_unique.rb │ ├── 20190314005631_fix_language_unique_index.rb │ ├── 20190317231617_add_name_to_access_tokens.rb │ ├── 20190317231755_add_unique_index_to_access_tokens.rb │ ├── 20190318002820_make_access_token_name_not_null.rb │ ├── 20190507234811_create_active_storage_tables.active_storage.rb │ ├── 20190722163715_add_html_enabled_to_keys.rb │ ├── 20190807090439_change_item_id_type_to_uuid.rb │ ├── 20190808082428_add_deleted_index_to_versions.rb │ ├── 20190909220404_create_organizations.rb │ ├── 20190909220917_create_organizations_users.rb │ ├── 20190909221444_add_organization_id_to_projects.rb │ ├── 20190909232131_make_organization_name_unique.rb │ ├── 20190910133453_make_projects_user_id_nullable.rb │ ├── 20190912222528_remove_user_id_from_projects.rb │ ├── 20190912233709_add_role_to_projects_users.rb │ ├── 20190914002344_add_role_to_organizations_users.rb │ ├── 20190918091257_add_id_column_to_projects_users.rb │ ├── 20190918092339_add_id_column_to_organizations_users.rb │ ├── 20190920135225_remove_permissions.rb │ ├── 20190920143236_make_username_index_unique.rb │ ├── 20190925225045_create_language_codes.rb │ ├── 20190925230250_add_language_code_id_to_language.rb │ ├── 20190927164336_create_export_configs.rb │ ├── 20190927235151_add_file_format_to_export_configs.rb │ ├── 20190927235946_change_default_language_file_path_null.rb │ ├── 20191004155412_add_is_default_to_languages.rb │ ├── 20191007163003_add_export_config_id_to_translation.rb │ ├── 20200425122855_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb │ ├── 20200514194008_make_language_name_not_null.rb │ ├── 20200727231750_recreate_active_storage_tables.rb │ ├── 20200803171432_create_post_processing_rules.rb │ ├── 20200827231740_create_language_configs.rb │ ├── 20201004201612_create_releases.rb │ ├── 20201008002621_add_missing_primary_key_languages_project_columns.rb │ ├── 20201022162824_add_timestamp_to_releases.rb │ ├── 20201022171421_create_release_files.rb │ ├── 20201022173908_change_release_version_columns.rb │ ├── 20201023102008_add_preview_url_to_release_files.rb │ ├── 20201023142103_add_releases_index.rb │ ├── 20201030105400_create_subscriptions.rb │ ├── 20201127123205_create_settings.rb │ ├── 20201127133149_create_licenses.rb │ ├── 20201127151454_add_superadmin_to_users.rb │ ├── 20201207154716_create_user_licenses.rb │ ├── 20201207164400_add_user_id_to_user_licenses.rb │ ├── 20201211142846_add_plan_to_subscriptions.rb │ ├── 20201225021942_add_unique_index_to_projects_users.rb │ ├── 20201225025014_add_unique_index_to_organizations_users.rb │ ├── 20201225145529_set_stripe_cancel_at_period_end_default_value.rb │ ├── 20201225150848_add_users_count_to_subscriptions.rb │ ├── 20201225202957_add_invoice_total_preview_to_subscriptions.rb │ ├── 20201226025913_add_canceled_to_subscriptions.rb │ ├── 20201228014321_add_trial_ends_at.rb │ ├── 20210124044557_add_unique_constraint_country_language_codes.rb │ ├── 20210301134228_add_new_columns_to_project_columns.rb │ ├── 20210302155924_create_sent_emails.rb │ ├── 20210309182337_create_recently_viewed_projects.rb │ ├── 20210422121532_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20210422121533_create_active_storage_variant_records.active_storage.rb │ ├── 20210509231115_create_machine_translation_memories.rb │ ├── 20210510160346_add_cascade_to_recently_viewed_projects.rb │ ├── 20210519001333_create_validations.rb │ ├── 20210520153957_create_deepl_source_languages.rb │ ├── 20210520154010_create_deepl_target_languages.rb │ ├── 20210520185605_add_country_code_to_deepl_tables.rb │ ├── 20210521160906_add_machine_translation_settings_to_project.rb │ ├── 20210523010344_add_default_validation_options_to_project.rb │ ├── 20210523030300_add_enabled_to_validations.rb │ ├── 20210525005023_add_name_to_validation_violations.rb │ ├── 20210528104719_change_deepl_languages_unique_index.rb │ ├── 20210529194655_add_machine_translation_limits_to_project_and_organization.rb │ ├── 20210602180516_add_character_count_to_projects.rb │ ├── 20210817221424_create_organization_invites.rb │ ├── 20210822002649_add_open_flag_to_to_invites.rb │ ├── 20210823100126_create_project_invites.rb │ ├── 20210920184305_create_wordpress_polylang_connections.rb │ ├── 20210921120944_create_wordpress_contents.rb │ ├── 20210923230251_create_tags.rb │ ├── 20210923230409_create_keys_tags.rb │ ├── 20210924113358_add_wordpress_content_ref_to_keys.rb │ ├── 20210929163347_add_wordpress_language_id_to_languages.rb │ ├── 20210929171451_add_key_id_to_wordpress_contents.rb │ ├── 20210930152549_add_wordpress_language_code_to_languages.rb │ ├── 20210930233934_make_invite_columns_not_null.rb │ ├── 20211004102849_recalculate_character_and_word_count.rb │ ├── 20211006140340_add_id_column_to_keys_tags.rb │ ├── 20211008095026_add_plurals_to_translations.rb │ ├── 20211008100624_add_plural_enabled_to_keys.rb │ ├── 20211014123945_create_placeholders.rb │ ├── 20211014144420_add_placeholder_fields_to_project.rb │ ├── 20211025105452_create_custom_subscriptions.rb │ ├── 20211027175039_add_deactivated_to_organization_users.rb │ ├── 20220125022946_fix_on_delete.rb │ ├── 20220126130539_create_background_jobs.rb │ ├── 20220215002456_fix_on_delete_versions.rb │ ├── 20220219162219_add_split_on_to_export_configs.rb │ ├── 20220325101602_create_forbidden_words_lists.rb │ ├── 20220325205920_create_forbidden_words.rb │ ├── 20220326000010_add_forbidden_word_id_to_validation_violations.rb │ ├── 20220327011713_add_language_id_to_forbidden_words_lists.rb │ ├── 20220327020717_fix_on_delete_validations.rb │ ├── 20220329205211_make_fwl_name_not_null.rb │ ├── 20220412000536_add_placeholder_id_to_validation_violations.rb │ ├── 20220428232602_add_organization_id_to_forbidden_words_lists.rb │ ├── 20220429095410_add_country_and_language_code_to_forbidden_words_lists.rb │ ├── 20220429095632_add_country_and_language_code_to_validations.rb │ ├── 20220429163253_remove_language_from_fwl.rb │ ├── 20220618132103_add_deepl_api_token_to_organization.rb │ ├── 20220618232934_add_deepl_api_token_type.rb │ ├── 20220627163328_add_supported_plural_forms_to_languages.rb │ ├── 20220627175807_create_language_plurals.rb │ ├── 20220810222341_convert_old_html_translations_to_plain_html.rb │ ├── 20220818145123_add_stringsdict_file_paths.rb │ ├── 20220904172456_add_unique_index_to_translations.rb │ ├── 20221008171150_add_column_disable_translation_for_translators_to_tags.rb │ ├── 20221009012816_create_flavors.rb │ ├── 20221126195759_fix_html_editor_translations.rb │ ├── 20221129195637_create_imports.rb │ ├── 20221211160349_create_import_files.rb │ ├── 20221225001317_add_import_id_to_background_jobs.rb │ ├── 20221228205420_create_file_formats.rb │ ├── 20221229112457_create_import_file_translations.rb │ ├── 20230105115107_add_missing_flags_to_file_formats.rb │ ├── 20230105135403_add_name_to_file_formats.rb │ ├── 20230106111340_create_file_format_extensions.rb │ ├── 20230106112552_create_file_formats_file_format_extensions.rb │ ├── 20230106183138_add_skip_empty_plural_translations_to_export_configs.rb │ ├── 20230106185236_link_file_format_to_export_configs.rb │ ├── 20230119225605_make_language_plurals_code_unique.rb │ ├── 20230406094034_add_disabled_to_projects.rb │ └── 20250326130153_add_time_stamp_flag_to_export_config.rb ├── schema.rb ├── seed_data │ ├── country_codes.json │ ├── iso_639-1.json │ └── plurals_cldr_release_41.xml ├── seeds.rb └── seeds │ ├── development.rb │ ├── production.rb │ ├── seeds_cldr_plurals.rb │ ├── seeds_cli_tests.rb │ ├── seeds_file_formats.rb │ ├── seeds_general.rb │ ├── seeds_integration_tests.rb │ ├── seeds_language_country_codes.rb │ └── test.rb ├── doc └── dependency_decisions.yml ├── docker-compose.yml ├── docs ├── swagger-codegen.sh └── swagger.yml ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── create_test_license_basic.rake │ ├── create_test_license_business.rake │ ├── create_test_license_team.rake │ ├── create_test_licenses.rake │ ├── custom_seed.rake │ └── migrate_to_s3.rake ├── license_key.pub ├── log └── .keep ├── openapitools.json ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── logo_black.png ├── logo_black_text.png ├── logo_white.png ├── logo_white_text.png └── robots.txt ├── spec ├── authentication │ └── authentication_spec.rb ├── cypress.config.js ├── cypress │ ├── app_commands │ │ ├── clean.rb │ │ ├── factory_bot.rb │ │ ├── load_seed.rb │ │ ├── load_seed_cli.rb │ │ ├── log_fail.rb │ │ └── scenarios │ │ │ ├── all_entities.rb │ │ │ ├── default.rb │ │ │ ├── project_with_keys.rb │ │ │ ├── set_cloud.rb │ │ │ └── set_on_premise.rb │ ├── cypress_helper.rb │ ├── e2e │ │ ├── activity.cy.ts │ │ ├── add-keys.cy.ts │ │ ├── add-language.cy.ts │ │ ├── add-user.cy.ts │ │ ├── basic_plan.cy.ts │ │ ├── editor.cy.ts │ │ ├── export-config.cy.ts │ │ ├── forbidden-words.cy.ts │ │ ├── import.cy.ts │ │ ├── key.cy.ts │ │ ├── language.cy.ts │ │ ├── login.cy.ts │ │ ├── organization.cy.ts │ │ ├── project.cy.ts │ │ └── signup.cy.ts │ ├── fixtures │ │ ├── example_android.xml │ │ ├── example_arb.arb │ │ ├── example_ios.strings │ │ ├── example_json.json │ │ ├── example_json_formatjs.json │ │ ├── example_json_poeditor.json │ │ ├── example_po.po │ │ ├── example_po_with_bom.po │ │ ├── example_properties.properties │ │ ├── example_rails.yml │ │ ├── example_stringsdict.stringsdict │ │ ├── example_toml.toml │ │ ├── example_xliff.xlf │ │ ├── example_yaml.yml │ │ ├── test_basic.texterify-license │ │ ├── test_business.texterify-license │ │ ├── test_file_texterify_timestamp.json │ │ ├── test_poeditor.json │ │ ├── test_team.texterify-license │ │ └── testdata.json │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.ts │ │ ├── e2e.ts │ │ └── on-rails.js │ └── tsconfig.json ├── factories │ ├── custom_subscriptions.rb │ ├── deepl_source_languages.rb │ ├── deepl_target_languages.rb │ ├── export_config.rb │ ├── file_format_extensions.rb │ ├── file_formats.rb │ ├── flavors.rb │ ├── forbidden_words.rb │ ├── forbidden_words_lists.rb │ ├── import_file_translations.rb │ ├── import_files.rb │ ├── imports.rb │ ├── key_tags.rb │ ├── keys.rb │ ├── language_config.rb │ ├── language_plurals.rb │ ├── languages.rb │ ├── licenses.rb │ ├── machine_translation_memories.rb │ ├── organization.rb │ ├── organization_invites.rb │ ├── organization_user.rb │ ├── placeholders.rb │ ├── post_processing_rule.rb │ ├── project.rb │ ├── project_invites.rb │ ├── project_user.rb │ ├── recently_viewed_projects.rb │ ├── release.rb │ ├── release_file.rb │ ├── sent_email.rb │ ├── subscription.rb │ ├── tags.rb │ ├── translations.rb │ ├── user.rb │ ├── user_license.rb │ ├── validation_violations.rb │ ├── validations.rb │ ├── wordpress_contents.rb │ └── wordpress_polylang_connections.rb ├── fixtures │ ├── android │ │ └── example_android.xml │ ├── json │ │ ├── json_invalid.json │ │ └── json_with_plurals.json │ ├── stringsdict │ │ └── example.stringsdict │ ├── xliff │ │ ├── angular_i18n_example_extract.xlf │ │ └── source_target_invalid.xlf │ └── yaml │ │ └── devise_example.yml ├── lib │ └── texterify │ │ ├── __snapshots__ │ │ ├── export_spec_language_with_parent_child_data.snap │ │ ├── export_spec_language_with_parent_no_connection_data.snap │ │ └── export_spec_language_with_parent_parent_data.snap │ │ ├── export_formats │ │ ├── __snapshots__ │ │ │ ├── csv_export.snap │ │ │ ├── csv_export_skip_empty_plural_translations.snap │ │ │ └── csv_export_with_plural_translations.snap │ │ └── csv_spec.rb │ │ ├── export_spec.rb │ │ └── import_spec.rb ├── mailers │ └── previews │ │ ├── devise_mailer_preview.rb │ │ ├── subscriptions_preview.rb │ │ └── user_preview.rb ├── models │ ├── __snapshots__ │ │ ├── android_export_skip_empty_plural_translations.snap │ │ ├── create_android_file_content.snap │ │ ├── create_android_file_content_plural.snap │ │ ├── create_arb_file_content.snap │ │ ├── create_ios_file_content.snap │ │ ├── create_ios_file_content_plural_strings.snap │ │ ├── create_ios_file_content_plural_strings_skip_empty_plurals.snap │ │ ├── create_ios_file_content_plural_stringsdict.snap │ │ ├── create_ios_file_content_plural_stringsdict_skip_empty_plurals.snap │ │ ├── create_po_file_content.snap │ │ ├── create_properties_file_content_plural.snap │ │ ├── create_rails_file_content.snap │ │ ├── create_rails_file_content_split_on.snap │ │ ├── create_toml_file_content.snap │ │ ├── create_toml_file_content_plural.snap │ │ ├── create_typescript_file_content.snap │ │ ├── create_typescript_file_content_plural.snap │ │ ├── create_xliff_file_content.snap │ │ ├── create_xliff_file_content_empty_target_data.snap │ │ ├── create_xliff_file_content_without_source_data.snap │ │ ├── create_yaml_file_content.snap │ │ ├── create_yaml_file_content_plural.snap │ │ ├── create_yaml_file_content_plural_split_on.snap │ │ ├── formatjs_json_export_plural.snap │ │ ├── formatjs_json_export_simple.snap │ │ ├── json_export_plural.snap │ │ ├── json_export_simple.snap │ │ ├── json_export_skip_empty_plural_translations.snap │ │ ├── json_export_with_split_on.snap │ │ ├── json_export_with_split_on_parent_object_key_ignored_1.snap │ │ └── json_export_with_split_on_parent_object_key_ignored_2.snap │ ├── custom_subscription_spec.rb │ ├── deepl_source_language_spec.rb │ ├── deepl_target_language_spec.rb │ ├── export_config_spec.rb │ ├── file_format_extension_spec.rb │ ├── file_format_spec.rb │ ├── flavor_spec.rb │ ├── forbidden_word_spec.rb │ ├── forbidden_words_list_spec.rb │ ├── import_file_spec.rb │ ├── import_file_translation_spec.rb │ ├── import_spec.rb │ ├── key_tag_spec.rb │ ├── language_config_spec.rb │ ├── language_plural_spec.rb │ ├── language_spec.rb │ ├── organization_spec.rb │ ├── project_spec.rb │ ├── validation_spec.rb │ ├── validation_violation_spec.rb │ ├── wordpress_content_spec.rb │ └── wordpress_polylang_connection_spec.rb ├── rails_helper.rb ├── requests │ └── api │ │ └── v1 │ │ ├── __snapshots__ │ │ ├── export_configs_controller_create.snap │ │ ├── export_configs_controller_destroy.snap │ │ ├── export_configs_controller_destroy_multiple.snap │ │ ├── export_configs_controller_index_paginated_1.snap │ │ ├── export_configs_controller_index_paginated_2.snap │ │ ├── export_configs_controller_index_paginated_3.snap │ │ ├── export_configs_controller_update.snap │ │ ├── file_formats_controller_file_format_extensions_index.snap │ │ ├── file_formats_controller_file_formats_index.snap │ │ ├── flavors_controller_create.snap │ │ ├── flavors_controller_destroy.snap │ │ ├── flavors_controller_destroy_multiple.snap │ │ ├── flavors_controller_index_paginated_1.snap │ │ ├── flavors_controller_index_paginated_2.snap │ │ ├── flavors_controller_index_paginated_3.snap │ │ ├── flavors_controller_update.snap │ │ ├── forbidden_words_lists_index.snap │ │ ├── imports_controller_show.snap │ │ ├── instance_controller_debug_invalid_secret.snap │ │ ├── instance_controller_debug_ok.snap │ │ ├── instance_controller_debug_secret_not_set.snap │ │ ├── organizations_create_with_name.snap │ │ ├── organizations_create_with_name_and_description.snap │ │ ├── organizations_index.snap │ │ ├── projects_controller_export_ok.snap │ │ ├── tags_controller_create.snap │ │ ├── tags_controller_destroy.snap │ │ ├── tags_controller_index.snap │ │ └── tags_controller_update.snap │ │ ├── country_codes_controller_spec.rb │ │ ├── dashboard_controller_spec.rb │ │ ├── export_configs_controller_spec.rb │ │ ├── file_formats_controller_spec.rb │ │ ├── flavors_controller_spec.rb │ │ ├── forbidden_words_lists_controller_spec.rb │ │ ├── imports_controller_spec.rb │ │ ├── instance_controller_spec.rb │ │ ├── instance_users_controller_spec.rb │ │ ├── key_tags_controller_spec.rb │ │ ├── language_codes_controller_spec.rb │ │ ├── languages_controller_spec.rb │ │ ├── licenses_controller_spec.rb │ │ ├── machine_translations_controller_spec.rb │ │ ├── organization_machine_translation_controller_spec.rb │ │ ├── organizations_controller_spec.rb │ │ ├── post_processing_rules_controller_spec.rb │ │ ├── project_users_controller_spec.rb │ │ ├── projects_controller_spec.rb │ │ ├── releases_controller_spec.rb │ │ ├── tags_controller_spec.rb │ │ ├── user_licenses_controller_spec.rb │ │ └── users_controller_spec.rb ├── seeds │ ├── __snapshots__ │ │ └── language_plurals.snap │ └── seeds_cldr_plurals_spec.rb ├── serializers │ ├── language_serializer_spec.rb │ └── organization_serializer_spec.rb ├── spec_helper.rb ├── support │ ├── database_cleaner.rb │ ├── login_helpers.rb │ └── strip_serializer.rb └── workers │ ├── reset_machine_translation_characters_usage_worker_spec.rb │ └── trial_ending_worker_spec.rb ├── test ├── application_system_test_case.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ ├── files │ │ └── .keep │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── project_column_test.rb │ └── user_test.rb ├── system │ └── .keep └── test_helper.rb ├── test_basic.texterify-license ├── test_business.texterify-license ├── test_license_key ├── test_license_key.pub ├── test_team.texterify-license ├── tmp └── .keep ├── tsconfig.json ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | IE 11 3 | -------------------------------------------------------------------------------- /.database_consistency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.database_consistency.yml -------------------------------------------------------------------------------- /.devcontainer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.devcontainer/.env -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.env-frontend.development.template: -------------------------------------------------------------------------------- 1 | SENTRY_DSN_FRONTEND= 2 | CYPRESS_CRASH_REPORTS=0 3 | -------------------------------------------------------------------------------- /.env.development.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.env.development.template -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.github/workflows/publish-beta.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/reusable-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.github/workflows/reusable-test.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.postcssrc.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.prettierrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/android_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/android_logo.svg -------------------------------------------------------------------------------- /app/assets/images/apple_logo_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/apple_logo_black.svg -------------------------------------------------------------------------------- /app/assets/images/apple_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/apple_logo_white.svg -------------------------------------------------------------------------------- /app/assets/images/chrome_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/chrome_logo.svg -------------------------------------------------------------------------------- /app/assets/images/deepl_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/deepl_logo.svg -------------------------------------------------------------------------------- /app/assets/images/django_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/django_logo.svg -------------------------------------------------------------------------------- /app/assets/images/facebook_fbt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/facebook_fbt_logo.png -------------------------------------------------------------------------------- /app/assets/images/flutter_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/flutter_logo.svg -------------------------------------------------------------------------------- /app/assets/images/formatjs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/formatjs_logo.svg -------------------------------------------------------------------------------- /app/assets/images/gnu_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/gnu_logo.svg -------------------------------------------------------------------------------- /app/assets/images/go_logo_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/go_logo_blue.svg -------------------------------------------------------------------------------- /app/assets/images/java_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/java_logo.svg -------------------------------------------------------------------------------- /app/assets/images/json_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/json_logo.svg -------------------------------------------------------------------------------- /app/assets/images/logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_black.png -------------------------------------------------------------------------------- /app/assets/images/logo_black_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_black_text.png -------------------------------------------------------------------------------- /app/assets/images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_white.png -------------------------------------------------------------------------------- /app/assets/images/logo_white_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_white_background.png -------------------------------------------------------------------------------- /app/assets/images/logo_white_background_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_white_background_rounded.png -------------------------------------------------------------------------------- /app/assets/images/logo_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_white_text.png -------------------------------------------------------------------------------- /app/assets/images/logo_white_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/logo_white_text.svg -------------------------------------------------------------------------------- /app/assets/images/rails_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/rails_logo.svg -------------------------------------------------------------------------------- /app/assets/images/toml_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/toml_logo.svg -------------------------------------------------------------------------------- /app/assets/images/visual_studio_code_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/visual_studio_code_logo.svg -------------------------------------------------------------------------------- /app/assets/images/wordpress_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/images/wordpress_logo.svg -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/javascripts/packs/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/base.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/externals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-alert.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-alert.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-breadcrumbs.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-button.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-dark.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-drawer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-drawer.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-input.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-input.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-light.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-menu.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-notification.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-notification.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-pagination.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-picker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-picker.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-popover.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-popover.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-select.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-select.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-skeleton.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-skeleton.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-steps.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-steps.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-tabs.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-tag.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-tag.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-tooltip.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd-typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd-typography.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/antd.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/antd.less -------------------------------------------------------------------------------- /app/assets/stylesheets/externals/html-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/externals/html-editor.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/assets/stylesheets/variables.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/channels/jobs_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/channels/jobs_channel.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/access_tokens_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/access_tokens_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/background_jobs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/background_jobs_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/country_codes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/country_codes_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/export_configs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/export_configs_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/file_formats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/file_formats_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/flavors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/flavors_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/imports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/imports_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/instance_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/instance_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/instance_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/instance_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/key_tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/key_tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/keys_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/keys_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/language_codes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/language_codes_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/language_configs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/language_configs_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/languages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/languages_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/licenses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/licenses_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/organization_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/organization_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/organizations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/organizations_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/placeholders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/placeholders_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/project_columns_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/project_columns_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/project_invites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/project_invites_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/project_users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/project_users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/releases_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/releases_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/translations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/translations_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/user_licenses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/user_licenses_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/validations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/api/v1/validations_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/enabled_features_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/helpers/enabled_features_helper.rb -------------------------------------------------------------------------------- /app/helpers/releases_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/helpers/releases_helper.rb -------------------------------------------------------------------------------- /app/javascript/components/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/AppContainer.tsx -------------------------------------------------------------------------------- /app/javascript/components/WebsocketClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/WebsocketClient.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/API.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/APIErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/APIErrors.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/APIUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/APIUtils.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/AccessTokensAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/AccessTokensAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/AuthAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/AuthAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/BackgroundJobsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/BackgroundJobsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/CountryCodesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/CountryCodesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/DashboardAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/DashboardAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ExportConfigsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ExportConfigsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/FileFormatsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/FileFormatsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/FlavorsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/FlavorsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ImportsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ImportsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/InstanceAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/InstanceAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/InstanceUsersAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/InstanceUsersAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/KeysAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/KeysAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/LanguageCodesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/LanguageCodesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/LanguageConfigsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/LanguageConfigsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/LanguagesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/LanguagesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/LicensesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/LicensesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/MembersAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/MembersAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/OrganizationsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/OrganizationsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/PlaceholdersAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/PlaceholdersAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ProjectColumnsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ProjectColumnsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ProjectInvitesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ProjectInvitesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ProjectsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ProjectsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ReleasesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ReleasesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/TagsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/TagsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/TranslationsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/TranslationsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/UserLicensesAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/UserLicensesAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/UsersAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/UsersAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/api/v1/ValidationsAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/api/v1/ValidationsAPI.ts -------------------------------------------------------------------------------- /app/javascript/components/configs/MessageDurations.ts: -------------------------------------------------------------------------------- 1 | export const MESSAGE_DURATION_IMPORTANT = 6; 2 | -------------------------------------------------------------------------------- /app/javascript/components/forms/AddEditFlavorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/AddEditFlavorForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/AddEditLanguageForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/AddEditLanguageForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/AddReleaseForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/AddReleaseForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/AddTagToKeyForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/AddTagToKeyForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/AddTagToKeyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/AddTagToKeyModal.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/ChangePasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/ChangePasswordForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/EditTranslationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/EditTranslationForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/EditUserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/EditUserForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/ForgotPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/ForgotPasswordForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/InviteUserFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/InviteUserFormModal.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/LoginForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/NewKeyForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/NewKeyForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/NewOrganizationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/NewOrganizationForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/NewPasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/NewPasswordForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/NewProjectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/NewProjectForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/NewProjectFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/NewProjectFormModal.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/SignupForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/SignupForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/TagForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/TagForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/TagFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/TagFormModal.tsx -------------------------------------------------------------------------------- /app/javascript/components/forms/TransferProjectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/forms/TransferProjectForm.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useFlavors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useFlavors.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useImport.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useImportFiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useImportFiles.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useImportReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useImportReview.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useLanguageConfigs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useLanguageConfigs.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useLanguages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useLanguages.tsx -------------------------------------------------------------------------------- /app/javascript/components/hooks/useTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/hooks/useTags.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/AppRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/AppRouter.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/DashboardRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/DashboardRouter.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/InstanceRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/InstanceRouter.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/PrivateRoute.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/ProjectRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/ProjectRouter.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/Routes.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/RoutingManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/RoutingManager.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/SiteRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/SiteRouter.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/SuperadminRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/SuperadminRoute.tsx -------------------------------------------------------------------------------- /app/javascript/components/routing/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/routing/history.ts -------------------------------------------------------------------------------- /app/javascript/components/sites/auth/LoginSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/sites/auth/LoginSite.tsx -------------------------------------------------------------------------------- /app/javascript/components/sites/auth/SignupSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/sites/auth/SignupSite.tsx -------------------------------------------------------------------------------- /app/javascript/components/sites/dashboard/AboutSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/sites/dashboard/AboutSite.tsx -------------------------------------------------------------------------------- /app/javascript/components/sites/dashboard/KeysSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/sites/dashboard/KeysSite.tsx -------------------------------------------------------------------------------- /app/javascript/components/sites/dashboard/SetupSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/sites/dashboard/SetupSite.tsx -------------------------------------------------------------------------------- /app/javascript/components/sites/errors/NotFoundSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/sites/errors/NotFoundSite.tsx -------------------------------------------------------------------------------- /app/javascript/components/stores/AuthStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/stores/AuthStore.ts -------------------------------------------------------------------------------- /app/javascript/components/stores/DashboardStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/stores/DashboardStore.ts -------------------------------------------------------------------------------- /app/javascript/components/stores/GeneralStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/stores/GeneralStore.ts -------------------------------------------------------------------------------- /app/javascript/components/types/IFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/types/IFeature.ts -------------------------------------------------------------------------------- /app/javascript/components/types/IPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/types/IPlan.ts -------------------------------------------------------------------------------- /app/javascript/components/types/IUserRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/types/IUserRole.ts -------------------------------------------------------------------------------- /app/javascript/components/ui/Activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Activity.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ActivityTimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ActivityTimeAgo.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/AddTagButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/AddTagButton.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/BackButton.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Breadcrumbs.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ColumnTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ColumnTag.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Config.ts -------------------------------------------------------------------------------- /app/javascript/components/ui/ConfirmEmailHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ConfirmEmailHint.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Constants.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/CountryCodeWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/CountryCodeWithTooltip.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/CustomSubscription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/CustomSubscription.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/DarkModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/DarkModeToggle.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/DataIds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/DataIds.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/DeleteLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/DeleteLink.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/DropZoneWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/DropZoneWrapper.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/EditableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/EditableCell.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/EditableTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/EditableTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/EditorSidebarInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/EditorSidebarInfo.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ErrorSiteWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ErrorSiteWrapper.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ErrorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ErrorUtils.ts -------------------------------------------------------------------------------- /app/javascript/components/ui/ExportConfigsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ExportConfigsTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/FeatureNotAvailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/FeatureNotAvailable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Features.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Flag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Flag.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/FlagIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/FlagIcons.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/FlavorsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/FlavorsTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/HighlightBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/HighlightBox.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/HoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/HoverCard.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ImportFileAssigner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ImportFileAssigner.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ImportFilesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ImportFilesTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ImportReviewTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ImportReviewTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ImportSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ImportSidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ImportsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ImportsTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/InstanceUsersTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/InstanceUsersTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/IssuesSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/IssuesSidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/IssuesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/IssuesTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/IssuesTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/IssuesTag.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeyComments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeyComments.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeyHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeyHistory.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeySearchSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeySearchSettings.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeyTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeyTags.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeystrokeButtonWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeystrokeButtonWrapper.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeystrokeDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeystrokeDefinitions.ts -------------------------------------------------------------------------------- /app/javascript/components/ui/KeystrokeHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeystrokeHandler.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/KeystrokePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/KeystrokePreview.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LanguageNameWithFlag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LanguageNameWithFlag.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LanguagesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LanguagesTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LayoutWithSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LayoutWithSidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LayoutWithSubSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LayoutWithSubSidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LicenseExpiring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LicenseExpiring.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LicenseFreeVersion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LicenseFreeVersion.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Licenses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Licenses.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ListContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ListContent.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Loading.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/LoadingOverlay.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ModalStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ModalStep.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/NotificationsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/NotificationsManager.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/OkIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/OkIndicator.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/OrganizationAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/OrganizationAvatar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/OrganizationQASidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/OrganizationQASidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/PricingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/PricingCard.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/PrimaryButton.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/PrimitiveComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/PrimitiveComponents.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ProjectAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ProjectAvatar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ProjectInvitesTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ProjectInvitesTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ProjectsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ProjectsList.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/RolesLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/RolesLegend.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SearchOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SearchOverlay.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SearchOverlayResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SearchOverlayResults.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SettingsSectionWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SettingsSectionWrapper.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SidebarTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SidebarTrigger.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SiteWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SiteWrapper.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SiteWrapperHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SiteWrapperHeader.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/SiteWrapperLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SiteWrapperLink.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Styles.ts -------------------------------------------------------------------------------- /app/javascript/components/ui/SubSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/SubSidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/TagsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/TagsFilter.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/TagsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/TagsTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/TexterifyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/TexterifyModal.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/TransparentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/TransparentButton.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/UserAvatar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/UserProfileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/UserProfileHeader.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/Utils.ts -------------------------------------------------------------------------------- /app/javascript/components/ui/ValidationSiteHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ValidationSiteHeader.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/ValidationsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/ValidationsSidebar.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/WarningIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/WarningIndicator.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/WhiteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/WhiteButton.tsx -------------------------------------------------------------------------------- /app/javascript/components/ui/WordpressContentsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/ui/WordpressContentsTable.tsx -------------------------------------------------------------------------------- /app/javascript/components/utilities/Env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/Env.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/KeyCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/KeyCodes.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/LanguageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/LanguageUtils.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/PermissionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/PermissionUtils.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/PubSubEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/PubSubEvents.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/SidebarUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/SidebarUtils.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/Sorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/Sorter.ts -------------------------------------------------------------------------------- /app/javascript/components/utilities/TranslationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/components/utilities/TranslationUtils.ts -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/error_tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/packs/error_tracking.js -------------------------------------------------------------------------------- /app/javascript/typings/APITypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/typings/APITypes.ts -------------------------------------------------------------------------------- /app/javascript/typings/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/javascript/typings/images.d.ts -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/lib/deepl.rb: -------------------------------------------------------------------------------- 1 | module Deepl 2 | end 3 | -------------------------------------------------------------------------------- /app/lib/deepl/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/deepl/client.rb -------------------------------------------------------------------------------- /app/lib/invalid_file_format_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/invalid_file_format_exception.rb -------------------------------------------------------------------------------- /app/lib/texterify.rb: -------------------------------------------------------------------------------- 1 | module Texterify 2 | end 3 | -------------------------------------------------------------------------------- /app/lib/texterify/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/texterify/export.rb -------------------------------------------------------------------------------- /app/lib/texterify/export_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/texterify/export_formats.rb -------------------------------------------------------------------------------- /app/lib/texterify/export_formats/csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/texterify/export_formats/csv.rb -------------------------------------------------------------------------------- /app/lib/texterify/export_formats/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/texterify/export_formats/helpers.rb -------------------------------------------------------------------------------- /app/lib/texterify/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/texterify/import.rb -------------------------------------------------------------------------------- /app/lib/texterify/machine_translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/lib/texterify/machine_translation.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/subscription_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/mailers/subscription_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/access_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/access_token.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/background_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/background_job.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/country_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/country_code.rb -------------------------------------------------------------------------------- /app/models/custom_subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/custom_subscription.rb -------------------------------------------------------------------------------- /app/models/deepl_source_language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/deepl_source_language.rb -------------------------------------------------------------------------------- /app/models/deepl_target_language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/deepl_target_language.rb -------------------------------------------------------------------------------- /app/models/export_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/export_config.rb -------------------------------------------------------------------------------- /app/models/file_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/file_format.rb -------------------------------------------------------------------------------- /app/models/file_format_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/file_format_extension.rb -------------------------------------------------------------------------------- /app/models/file_format_file_format_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/file_format_file_format_extension.rb -------------------------------------------------------------------------------- /app/models/flavor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/flavor.rb -------------------------------------------------------------------------------- /app/models/forbidden_word.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/forbidden_word.rb -------------------------------------------------------------------------------- /app/models/forbidden_words_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/forbidden_words_list.rb -------------------------------------------------------------------------------- /app/models/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/import.rb -------------------------------------------------------------------------------- /app/models/import_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/import_file.rb -------------------------------------------------------------------------------- /app/models/import_file_translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/import_file_translation.rb -------------------------------------------------------------------------------- /app/models/key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/key.rb -------------------------------------------------------------------------------- /app/models/key_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/key_tag.rb -------------------------------------------------------------------------------- /app/models/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/language.rb -------------------------------------------------------------------------------- /app/models/language_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/language_code.rb -------------------------------------------------------------------------------- /app/models/language_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/language_config.rb -------------------------------------------------------------------------------- /app/models/language_plural.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/language_plural.rb -------------------------------------------------------------------------------- /app/models/language_project_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/language_project_column.rb -------------------------------------------------------------------------------- /app/models/license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/license.rb -------------------------------------------------------------------------------- /app/models/machine_translation_memory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/machine_translation_memory.rb -------------------------------------------------------------------------------- /app/models/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/organization.rb -------------------------------------------------------------------------------- /app/models/organization_invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/organization_invite.rb -------------------------------------------------------------------------------- /app/models/organization_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/organization_user.rb -------------------------------------------------------------------------------- /app/models/placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/placeholder.rb -------------------------------------------------------------------------------- /app/models/post_processing_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/post_processing_rule.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/project_column.rb -------------------------------------------------------------------------------- /app/models/project_invite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/project_invite.rb -------------------------------------------------------------------------------- /app/models/project_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/project_user.rb -------------------------------------------------------------------------------- /app/models/recently_viewed_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/recently_viewed_project.rb -------------------------------------------------------------------------------- /app/models/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/release.rb -------------------------------------------------------------------------------- /app/models/release_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/release_file.rb -------------------------------------------------------------------------------- /app/models/sent_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/sent_email.rb -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/models/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/subscription.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/translation.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/user_license.rb -------------------------------------------------------------------------------- /app/models/validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/validation.rb -------------------------------------------------------------------------------- /app/models/validation_violation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/validation_violation.rb -------------------------------------------------------------------------------- /app/models/wordpress_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/wordpress_content.rb -------------------------------------------------------------------------------- /app/models/wordpress_polylang_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/models/wordpress_polylang_connection.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/background_job_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/background_job_policy.rb -------------------------------------------------------------------------------- /app/policies/export_config_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/export_config_policy.rb -------------------------------------------------------------------------------- /app/policies/flavor_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/flavor_policy.rb -------------------------------------------------------------------------------- /app/policies/forbidden_words_list_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/forbidden_words_list_policy.rb -------------------------------------------------------------------------------- /app/policies/import_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/import_policy.rb -------------------------------------------------------------------------------- /app/policies/instance_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/instance_policy.rb -------------------------------------------------------------------------------- /app/policies/instance_user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/instance_user_policy.rb -------------------------------------------------------------------------------- /app/policies/key_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/key_policy.rb -------------------------------------------------------------------------------- /app/policies/key_tag_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/key_tag_policy.rb -------------------------------------------------------------------------------- /app/policies/language_config_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/language_config_policy.rb -------------------------------------------------------------------------------- /app/policies/language_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/language_policy.rb -------------------------------------------------------------------------------- /app/policies/license_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/license_policy.rb -------------------------------------------------------------------------------- /app/policies/machine_translation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/machine_translation_policy.rb -------------------------------------------------------------------------------- /app/policies/organization_invite_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/organization_invite_policy.rb -------------------------------------------------------------------------------- /app/policies/organization_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/organization_policy.rb -------------------------------------------------------------------------------- /app/policies/organization_user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/organization_user_policy.rb -------------------------------------------------------------------------------- /app/policies/post_processing_rule_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/post_processing_rule_policy.rb -------------------------------------------------------------------------------- /app/policies/project_invite_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/project_invite_policy.rb -------------------------------------------------------------------------------- /app/policies/project_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/project_policy.rb -------------------------------------------------------------------------------- /app/policies/project_user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/project_user_policy.rb -------------------------------------------------------------------------------- /app/policies/release_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/release_policy.rb -------------------------------------------------------------------------------- /app/policies/tag_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/tag_policy.rb -------------------------------------------------------------------------------- /app/policies/translation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/translation_policy.rb -------------------------------------------------------------------------------- /app/policies/user_license_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/user_license_policy.rb -------------------------------------------------------------------------------- /app/policies/validation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/validation_policy.rb -------------------------------------------------------------------------------- /app/policies/validation_violation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/validation_violation_policy.rb -------------------------------------------------------------------------------- /app/policies/wordpress_polylang_connection_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/policies/wordpress_polylang_connection_policy.rb -------------------------------------------------------------------------------- /app/serializers/access_token_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/access_token_serializer.rb -------------------------------------------------------------------------------- /app/serializers/activity_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/activity_serializer.rb -------------------------------------------------------------------------------- /app/serializers/background_job_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/background_job_serializer.rb -------------------------------------------------------------------------------- /app/serializers/country_code_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/country_code_serializer.rb -------------------------------------------------------------------------------- /app/serializers/custom_subscription_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/custom_subscription_serializer.rb -------------------------------------------------------------------------------- /app/serializers/deepl_source_language_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/deepl_source_language_serializer.rb -------------------------------------------------------------------------------- /app/serializers/deepl_target_language_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/deepl_target_language_serializer.rb -------------------------------------------------------------------------------- /app/serializers/export_config_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/export_config_serializer.rb -------------------------------------------------------------------------------- /app/serializers/file_format_extension_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/file_format_extension_serializer.rb -------------------------------------------------------------------------------- /app/serializers/file_format_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/file_format_serializer.rb -------------------------------------------------------------------------------- /app/serializers/flavor_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/flavor_serializer.rb -------------------------------------------------------------------------------- /app/serializers/forbidden_word_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/forbidden_word_serializer.rb -------------------------------------------------------------------------------- /app/serializers/forbidden_words_list_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/forbidden_words_list_serializer.rb -------------------------------------------------------------------------------- /app/serializers/import_file_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/import_file_serializer.rb -------------------------------------------------------------------------------- /app/serializers/import_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/import_serializer.rb -------------------------------------------------------------------------------- /app/serializers/instance_user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/instance_user_serializer.rb -------------------------------------------------------------------------------- /app/serializers/key_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/key_serializer.rb -------------------------------------------------------------------------------- /app/serializers/language_code_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/language_code_serializer.rb -------------------------------------------------------------------------------- /app/serializers/language_config_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/language_config_serializer.rb -------------------------------------------------------------------------------- /app/serializers/language_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/language_serializer.rb -------------------------------------------------------------------------------- /app/serializers/license_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/license_serializer.rb -------------------------------------------------------------------------------- /app/serializers/organization_invite_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/organization_invite_serializer.rb -------------------------------------------------------------------------------- /app/serializers/organization_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/organization_serializer.rb -------------------------------------------------------------------------------- /app/serializers/organization_user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/organization_user_serializer.rb -------------------------------------------------------------------------------- /app/serializers/placeholder_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/placeholder_serializer.rb -------------------------------------------------------------------------------- /app/serializers/post_processing_rule_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/post_processing_rule_serializer.rb -------------------------------------------------------------------------------- /app/serializers/project_column_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/project_column_serializer.rb -------------------------------------------------------------------------------- /app/serializers/project_invite_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/project_invite_serializer.rb -------------------------------------------------------------------------------- /app/serializers/project_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/project_serializer.rb -------------------------------------------------------------------------------- /app/serializers/project_user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/project_user_serializer.rb -------------------------------------------------------------------------------- /app/serializers/release_file_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/release_file_serializer.rb -------------------------------------------------------------------------------- /app/serializers/release_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/release_serializer.rb -------------------------------------------------------------------------------- /app/serializers/subscription_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/subscription_serializer.rb -------------------------------------------------------------------------------- /app/serializers/tag_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/tag_serializer.rb -------------------------------------------------------------------------------- /app/serializers/translation_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/translation_serializer.rb -------------------------------------------------------------------------------- /app/serializers/user_license_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/user_license_serializer.rb -------------------------------------------------------------------------------- /app/serializers/user_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/user_serializer.rb -------------------------------------------------------------------------------- /app/serializers/validation_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/validation_serializer.rb -------------------------------------------------------------------------------- /app/serializers/validation_violation_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/validation_violation_serializer.rb -------------------------------------------------------------------------------- /app/serializers/wordpress_content_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/serializers/wordpress_content_serializer.rb -------------------------------------------------------------------------------- /app/views/application/app.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/application/app.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/layouts/email.html.erb -------------------------------------------------------------------------------- /app/views/subscription_mailer/trial_expiring.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/subscription_mailer/trial_expiring.html.erb -------------------------------------------------------------------------------- /app/views/templates/android.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/templates/android.xml.erb -------------------------------------------------------------------------------- /app/views/user_mailer/invite.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/user_mailer/invite.html.erb -------------------------------------------------------------------------------- /app/views/user_mailer/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/views/user_mailer/welcome.html.erb -------------------------------------------------------------------------------- /app/workers/check_placeholders_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/workers/check_placeholders_worker.rb -------------------------------------------------------------------------------- /app/workers/check_validations_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/workers/check_validations_worker.rb -------------------------------------------------------------------------------- /app/workers/deepl_supported_languages_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/workers/deepl_supported_languages_worker.rb -------------------------------------------------------------------------------- /app/workers/import_import_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/workers/import_import_worker.rb -------------------------------------------------------------------------------- /app/workers/import_verify_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/workers/import_verify_worker.rb -------------------------------------------------------------------------------- /app/workers/trial_ending_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/app/workers/trial_ending_worker.rb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/byebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/byebug -------------------------------------------------------------------------------- /bin/database_consistency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/database_consistency -------------------------------------------------------------------------------- /bin/erubis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/erubis -------------------------------------------------------------------------------- /bin/haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/haml -------------------------------------------------------------------------------- /bin/html2haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/html2haml -------------------------------------------------------------------------------- /bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/listen -------------------------------------------------------------------------------- /bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/nokogiri -------------------------------------------------------------------------------- /bin/puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/puma -------------------------------------------------------------------------------- /bin/pumactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/pumactl -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/ruby_parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/ruby_parse -------------------------------------------------------------------------------- /bin/ruby_parse_extract_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/ruby_parse_extract_error -------------------------------------------------------------------------------- /bin/sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/sass -------------------------------------------------------------------------------- /bin/sass-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/sass-convert -------------------------------------------------------------------------------- /bin/scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/scss -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/sprockets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/sprockets -------------------------------------------------------------------------------- /bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/thor -------------------------------------------------------------------------------- /bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/tilt -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/bin/yarn -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | bundle exec sidekiq & bin/rails server 4 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/constants.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/cypress_on_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/cypress_on_rails.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/devise_token_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/devise_token_auth.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/license.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/texterify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/texterify.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/loaders/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/webpack/loaders/less.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20180528232328_enable_pgcrypto_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180528232328_enable_pgcrypto_extension.rb -------------------------------------------------------------------------------- /db/migrate/20180629214908_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180629214908_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20180630002527_create_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180630002527_create_keys.rb -------------------------------------------------------------------------------- /db/migrate/20180710225210_create_languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180710225210_create_languages.rb -------------------------------------------------------------------------------- /db/migrate/20180710231538_create_translations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180710231538_create_translations.rb -------------------------------------------------------------------------------- /db/migrate/20180715221811_create_country_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180715221811_create_country_codes.rb -------------------------------------------------------------------------------- /db/migrate/20180719225621_create_users_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180719225621_create_users_projects.rb -------------------------------------------------------------------------------- /db/migrate/20180723002735_create_access_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180723002735_create_access_tokens.rb -------------------------------------------------------------------------------- /db/migrate/20180723190217_create_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180723190217_create_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20180805153818_add_parent_to_language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20180805153818_add_parent_to_language.rb -------------------------------------------------------------------------------- /db/migrate/20190224162941_create_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190224162941_create_versions.rb -------------------------------------------------------------------------------- /db/migrate/20190226135753_add_project_id_to_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190226135753_add_project_id_to_versions.rb -------------------------------------------------------------------------------- /db/migrate/20190227132749_create_project_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190227132749_create_project_columns.rb -------------------------------------------------------------------------------- /db/migrate/20190227220246_change_show_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190227220246_change_show_columns.rb -------------------------------------------------------------------------------- /db/migrate/20190314005631_fix_language_unique_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190314005631_fix_language_unique_index.rb -------------------------------------------------------------------------------- /db/migrate/20190317231617_add_name_to_access_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190317231617_add_name_to_access_tokens.rb -------------------------------------------------------------------------------- /db/migrate/20190722163715_add_html_enabled_to_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190722163715_add_html_enabled_to_keys.rb -------------------------------------------------------------------------------- /db/migrate/20190909220404_create_organizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190909220404_create_organizations.rb -------------------------------------------------------------------------------- /db/migrate/20190909220917_create_organizations_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190909220917_create_organizations_users.rb -------------------------------------------------------------------------------- /db/migrate/20190912233709_add_role_to_projects_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190912233709_add_role_to_projects_users.rb -------------------------------------------------------------------------------- /db/migrate/20190920135225_remove_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190920135225_remove_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20190920143236_make_username_index_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190920143236_make_username_index_unique.rb -------------------------------------------------------------------------------- /db/migrate/20190925225045_create_language_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190925225045_create_language_codes.rb -------------------------------------------------------------------------------- /db/migrate/20190927164336_create_export_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20190927164336_create_export_configs.rb -------------------------------------------------------------------------------- /db/migrate/20200827231740_create_language_configs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20200827231740_create_language_configs.rb -------------------------------------------------------------------------------- /db/migrate/20201004201612_create_releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201004201612_create_releases.rb -------------------------------------------------------------------------------- /db/migrate/20201022162824_add_timestamp_to_releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201022162824_add_timestamp_to_releases.rb -------------------------------------------------------------------------------- /db/migrate/20201022171421_create_release_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201022171421_create_release_files.rb -------------------------------------------------------------------------------- /db/migrate/20201023142103_add_releases_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201023142103_add_releases_index.rb -------------------------------------------------------------------------------- /db/migrate/20201030105400_create_subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201030105400_create_subscriptions.rb -------------------------------------------------------------------------------- /db/migrate/20201127123205_create_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201127123205_create_settings.rb -------------------------------------------------------------------------------- /db/migrate/20201127133149_create_licenses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201127133149_create_licenses.rb -------------------------------------------------------------------------------- /db/migrate/20201127151454_add_superadmin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201127151454_add_superadmin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20201207154716_create_user_licenses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201207154716_create_user_licenses.rb -------------------------------------------------------------------------------- /db/migrate/20201211142846_add_plan_to_subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201211142846_add_plan_to_subscriptions.rb -------------------------------------------------------------------------------- /db/migrate/20201228014321_add_trial_ends_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20201228014321_add_trial_ends_at.rb -------------------------------------------------------------------------------- /db/migrate/20210302155924_create_sent_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210302155924_create_sent_emails.rb -------------------------------------------------------------------------------- /db/migrate/20210519001333_create_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210519001333_create_validations.rb -------------------------------------------------------------------------------- /db/migrate/20210523030300_add_enabled_to_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210523030300_add_enabled_to_validations.rb -------------------------------------------------------------------------------- /db/migrate/20210823100126_create_project_invites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210823100126_create_project_invites.rb -------------------------------------------------------------------------------- /db/migrate/20210921120944_create_wordpress_contents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210921120944_create_wordpress_contents.rb -------------------------------------------------------------------------------- /db/migrate/20210923230251_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210923230251_create_tags.rb -------------------------------------------------------------------------------- /db/migrate/20210923230409_create_keys_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20210923230409_create_keys_tags.rb -------------------------------------------------------------------------------- /db/migrate/20211006140340_add_id_column_to_keys_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20211006140340_add_id_column_to_keys_tags.rb -------------------------------------------------------------------------------- /db/migrate/20211008100624_add_plural_enabled_to_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20211008100624_add_plural_enabled_to_keys.rb -------------------------------------------------------------------------------- /db/migrate/20211014123945_create_placeholders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20211014123945_create_placeholders.rb -------------------------------------------------------------------------------- /db/migrate/20220125022946_fix_on_delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220125022946_fix_on_delete.rb -------------------------------------------------------------------------------- /db/migrate/20220126130539_create_background_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220126130539_create_background_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20220215002456_fix_on_delete_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220215002456_fix_on_delete_versions.rb -------------------------------------------------------------------------------- /db/migrate/20220325205920_create_forbidden_words.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220325205920_create_forbidden_words.rb -------------------------------------------------------------------------------- /db/migrate/20220327020717_fix_on_delete_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220327020717_fix_on_delete_validations.rb -------------------------------------------------------------------------------- /db/migrate/20220329205211_make_fwl_name_not_null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220329205211_make_fwl_name_not_null.rb -------------------------------------------------------------------------------- /db/migrate/20220429163253_remove_language_from_fwl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220429163253_remove_language_from_fwl.rb -------------------------------------------------------------------------------- /db/migrate/20220618232934_add_deepl_api_token_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220618232934_add_deepl_api_token_type.rb -------------------------------------------------------------------------------- /db/migrate/20220627175807_create_language_plurals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220627175807_create_language_plurals.rb -------------------------------------------------------------------------------- /db/migrate/20220818145123_add_stringsdict_file_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20220818145123_add_stringsdict_file_paths.rb -------------------------------------------------------------------------------- /db/migrate/20221009012816_create_flavors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20221009012816_create_flavors.rb -------------------------------------------------------------------------------- /db/migrate/20221129195637_create_imports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20221129195637_create_imports.rb -------------------------------------------------------------------------------- /db/migrate/20221211160349_create_import_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20221211160349_create_import_files.rb -------------------------------------------------------------------------------- /db/migrate/20221228205420_create_file_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20221228205420_create_file_formats.rb -------------------------------------------------------------------------------- /db/migrate/20230105135403_add_name_to_file_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20230105135403_add_name_to_file_formats.rb -------------------------------------------------------------------------------- /db/migrate/20230406094034_add_disabled_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/migrate/20230406094034_add_disabled_to_projects.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seed_data/country_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seed_data/country_codes.json -------------------------------------------------------------------------------- /db/seed_data/iso_639-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seed_data/iso_639-1.json -------------------------------------------------------------------------------- /db/seed_data/plurals_cldr_release_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seed_data/plurals_cldr_release_41.xml -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/development.rb -------------------------------------------------------------------------------- /db/seeds/production.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/seeds/seeds_cldr_plurals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/seeds_cldr_plurals.rb -------------------------------------------------------------------------------- /db/seeds/seeds_cli_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/seeds_cli_tests.rb -------------------------------------------------------------------------------- /db/seeds/seeds_file_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/seeds_file_formats.rb -------------------------------------------------------------------------------- /db/seeds/seeds_general.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/seeds_general.rb -------------------------------------------------------------------------------- /db/seeds/seeds_integration_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/seeds_integration_tests.rb -------------------------------------------------------------------------------- /db/seeds/seeds_language_country_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/db/seeds/seeds_language_country_codes.rb -------------------------------------------------------------------------------- /db/seeds/test.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/dependency_decisions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/doc/dependency_decisions.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/swagger-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/docs/swagger-codegen.sh -------------------------------------------------------------------------------- /docs/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/docs/swagger.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/create_test_license_basic.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/lib/tasks/create_test_license_basic.rake -------------------------------------------------------------------------------- /lib/tasks/create_test_license_business.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/lib/tasks/create_test_license_business.rake -------------------------------------------------------------------------------- /lib/tasks/create_test_license_team.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/lib/tasks/create_test_license_team.rake -------------------------------------------------------------------------------- /lib/tasks/create_test_licenses.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/lib/tasks/create_test_licenses.rake -------------------------------------------------------------------------------- /lib/tasks/custom_seed.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/lib/tasks/custom_seed.rake -------------------------------------------------------------------------------- /lib/tasks/migrate_to_s3.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/lib/tasks/migrate_to_s3.rake -------------------------------------------------------------------------------- /license_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/license_key.pub -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/openapitools.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/manifest.json -------------------------------------------------------------------------------- /public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/logo_black.png -------------------------------------------------------------------------------- /public/logo_black_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/logo_black_text.png -------------------------------------------------------------------------------- /public/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/logo_white.png -------------------------------------------------------------------------------- /public/logo_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/logo_white_text.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/authentication/authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/authentication/authentication_spec.rb -------------------------------------------------------------------------------- /spec/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress.config.js -------------------------------------------------------------------------------- /spec/cypress/app_commands/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/clean.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/factory_bot.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/load_seed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/load_seed.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/load_seed_cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/load_seed_cli.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/log_fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/log_fail.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/scenarios/all_entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/scenarios/all_entities.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/scenarios/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/scenarios/default.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/scenarios/set_cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/scenarios/set_cloud.rb -------------------------------------------------------------------------------- /spec/cypress/app_commands/scenarios/set_on_premise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/app_commands/scenarios/set_on_premise.rb -------------------------------------------------------------------------------- /spec/cypress/cypress_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/cypress_helper.rb -------------------------------------------------------------------------------- /spec/cypress/e2e/activity.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/activity.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/add-keys.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/add-keys.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/add-language.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/add-language.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/add-user.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/add-user.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/basic_plan.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/basic_plan.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/editor.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/editor.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/export-config.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/export-config.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/forbidden-words.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/forbidden-words.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/import.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/import.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/key.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/key.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/language.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/language.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/login.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/login.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/organization.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/organization.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/project.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/project.cy.ts -------------------------------------------------------------------------------- /spec/cypress/e2e/signup.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/e2e/signup.cy.ts -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_android.xml -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_arb.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_arb.arb -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_ios.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_ios.strings -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_json.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "world" 3 | } 4 | -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_json_formatjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_json_formatjs.json -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_json_poeditor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_json_poeditor.json -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_po.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_po.po -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_po_with_bom.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_po_with_bom.po -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_properties.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_properties.properties -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_rails.yml: -------------------------------------------------------------------------------- 1 | --- 2 | de-AT: 3 | a: b 4 | c: d 5 | -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_stringsdict.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_stringsdict.stringsdict -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_toml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_toml.toml -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_xliff.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_xliff.xlf -------------------------------------------------------------------------------- /spec/cypress/fixtures/example_yaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/example_yaml.yml -------------------------------------------------------------------------------- /spec/cypress/fixtures/test_basic.texterify-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/test_basic.texterify-license -------------------------------------------------------------------------------- /spec/cypress/fixtures/test_business.texterify-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/test_business.texterify-license -------------------------------------------------------------------------------- /spec/cypress/fixtures/test_poeditor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/test_poeditor.json -------------------------------------------------------------------------------- /spec/cypress/fixtures/test_team.texterify-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/test_team.texterify-license -------------------------------------------------------------------------------- /spec/cypress/fixtures/testdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/fixtures/testdata.json -------------------------------------------------------------------------------- /spec/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/plugins/index.js -------------------------------------------------------------------------------- /spec/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/support/commands.ts -------------------------------------------------------------------------------- /spec/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/support/e2e.ts -------------------------------------------------------------------------------- /spec/cypress/support/on-rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/support/on-rails.js -------------------------------------------------------------------------------- /spec/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/cypress/tsconfig.json -------------------------------------------------------------------------------- /spec/factories/custom_subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/custom_subscriptions.rb -------------------------------------------------------------------------------- /spec/factories/deepl_source_languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/deepl_source_languages.rb -------------------------------------------------------------------------------- /spec/factories/deepl_target_languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/deepl_target_languages.rb -------------------------------------------------------------------------------- /spec/factories/export_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/export_config.rb -------------------------------------------------------------------------------- /spec/factories/file_format_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/file_format_extensions.rb -------------------------------------------------------------------------------- /spec/factories/file_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/file_formats.rb -------------------------------------------------------------------------------- /spec/factories/flavors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/flavors.rb -------------------------------------------------------------------------------- /spec/factories/forbidden_words.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/forbidden_words.rb -------------------------------------------------------------------------------- /spec/factories/forbidden_words_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/forbidden_words_lists.rb -------------------------------------------------------------------------------- /spec/factories/import_file_translations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/import_file_translations.rb -------------------------------------------------------------------------------- /spec/factories/import_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/import_files.rb -------------------------------------------------------------------------------- /spec/factories/imports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/imports.rb -------------------------------------------------------------------------------- /spec/factories/key_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/key_tags.rb -------------------------------------------------------------------------------- /spec/factories/keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/keys.rb -------------------------------------------------------------------------------- /spec/factories/language_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/language_config.rb -------------------------------------------------------------------------------- /spec/factories/language_plurals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/language_plurals.rb -------------------------------------------------------------------------------- /spec/factories/languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/languages.rb -------------------------------------------------------------------------------- /spec/factories/licenses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/licenses.rb -------------------------------------------------------------------------------- /spec/factories/machine_translation_memories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/machine_translation_memories.rb -------------------------------------------------------------------------------- /spec/factories/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/organization.rb -------------------------------------------------------------------------------- /spec/factories/organization_invites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/organization_invites.rb -------------------------------------------------------------------------------- /spec/factories/organization_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/organization_user.rb -------------------------------------------------------------------------------- /spec/factories/placeholders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/placeholders.rb -------------------------------------------------------------------------------- /spec/factories/post_processing_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/post_processing_rule.rb -------------------------------------------------------------------------------- /spec/factories/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/project.rb -------------------------------------------------------------------------------- /spec/factories/project_invites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/project_invites.rb -------------------------------------------------------------------------------- /spec/factories/project_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/project_user.rb -------------------------------------------------------------------------------- /spec/factories/recently_viewed_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/recently_viewed_projects.rb -------------------------------------------------------------------------------- /spec/factories/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/release.rb -------------------------------------------------------------------------------- /spec/factories/release_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/release_file.rb -------------------------------------------------------------------------------- /spec/factories/sent_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/sent_email.rb -------------------------------------------------------------------------------- /spec/factories/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/subscription.rb -------------------------------------------------------------------------------- /spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/tags.rb -------------------------------------------------------------------------------- /spec/factories/translations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/translations.rb -------------------------------------------------------------------------------- /spec/factories/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/user.rb -------------------------------------------------------------------------------- /spec/factories/user_license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/user_license.rb -------------------------------------------------------------------------------- /spec/factories/validation_violations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/validation_violations.rb -------------------------------------------------------------------------------- /spec/factories/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/validations.rb -------------------------------------------------------------------------------- /spec/factories/wordpress_contents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/wordpress_contents.rb -------------------------------------------------------------------------------- /spec/factories/wordpress_polylang_connections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/factories/wordpress_polylang_connections.rb -------------------------------------------------------------------------------- /spec/fixtures/android/example_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/android/example_android.xml -------------------------------------------------------------------------------- /spec/fixtures/json/json_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/json/json_invalid.json -------------------------------------------------------------------------------- /spec/fixtures/json/json_with_plurals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/json/json_with_plurals.json -------------------------------------------------------------------------------- /spec/fixtures/stringsdict/example.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/stringsdict/example.stringsdict -------------------------------------------------------------------------------- /spec/fixtures/xliff/angular_i18n_example_extract.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/xliff/angular_i18n_example_extract.xlf -------------------------------------------------------------------------------- /spec/fixtures/xliff/source_target_invalid.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/xliff/source_target_invalid.xlf -------------------------------------------------------------------------------- /spec/fixtures/yaml/devise_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/fixtures/yaml/devise_example.yml -------------------------------------------------------------------------------- /spec/lib/texterify/export_formats/csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/lib/texterify/export_formats/csv_spec.rb -------------------------------------------------------------------------------- /spec/lib/texterify/export_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/lib/texterify/export_spec.rb -------------------------------------------------------------------------------- /spec/lib/texterify/import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/lib/texterify/import_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/devise_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/mailers/previews/devise_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/subscriptions_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/mailers/previews/subscriptions_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/user_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/mailers/previews/user_preview.rb -------------------------------------------------------------------------------- /spec/models/__snapshots__/create_arb_file_content.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/__snapshots__/create_arb_file_content.snap -------------------------------------------------------------------------------- /spec/models/__snapshots__/create_ios_file_content.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/__snapshots__/create_ios_file_content.snap -------------------------------------------------------------------------------- /spec/models/__snapshots__/create_po_file_content.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/__snapshots__/create_po_file_content.snap -------------------------------------------------------------------------------- /spec/models/__snapshots__/create_rails_file_content.snap: -------------------------------------------------------------------------------- 1 | --- 2 | de-AT: 3 | a: b 4 | c: d 5 | -------------------------------------------------------------------------------- /spec/models/__snapshots__/create_toml_file_content.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/__snapshots__/create_toml_file_content.snap -------------------------------------------------------------------------------- /spec/models/__snapshots__/create_yaml_file_content.snap: -------------------------------------------------------------------------------- 1 | --- 2 | a: b 3 | c: d 4 | -------------------------------------------------------------------------------- /spec/models/__snapshots__/json_export_plural.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/__snapshots__/json_export_plural.snap -------------------------------------------------------------------------------- /spec/models/__snapshots__/json_export_simple.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/__snapshots__/json_export_simple.snap -------------------------------------------------------------------------------- /spec/models/custom_subscription_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/custom_subscription_spec.rb -------------------------------------------------------------------------------- /spec/models/deepl_source_language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/deepl_source_language_spec.rb -------------------------------------------------------------------------------- /spec/models/deepl_target_language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/deepl_target_language_spec.rb -------------------------------------------------------------------------------- /spec/models/export_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/export_config_spec.rb -------------------------------------------------------------------------------- /spec/models/file_format_extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/file_format_extension_spec.rb -------------------------------------------------------------------------------- /spec/models/file_format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/file_format_spec.rb -------------------------------------------------------------------------------- /spec/models/flavor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/flavor_spec.rb -------------------------------------------------------------------------------- /spec/models/forbidden_word_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/forbidden_word_spec.rb -------------------------------------------------------------------------------- /spec/models/forbidden_words_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/forbidden_words_list_spec.rb -------------------------------------------------------------------------------- /spec/models/import_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/import_file_spec.rb -------------------------------------------------------------------------------- /spec/models/import_file_translation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/import_file_translation_spec.rb -------------------------------------------------------------------------------- /spec/models/import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/import_spec.rb -------------------------------------------------------------------------------- /spec/models/key_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/key_tag_spec.rb -------------------------------------------------------------------------------- /spec/models/language_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/language_config_spec.rb -------------------------------------------------------------------------------- /spec/models/language_plural_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/language_plural_spec.rb -------------------------------------------------------------------------------- /spec/models/language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/language_spec.rb -------------------------------------------------------------------------------- /spec/models/organization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/organization_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/validation_spec.rb -------------------------------------------------------------------------------- /spec/models/validation_violation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/validation_violation_spec.rb -------------------------------------------------------------------------------- /spec/models/wordpress_content_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/wordpress_content_spec.rb -------------------------------------------------------------------------------- /spec/models/wordpress_polylang_connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/models/wordpress_polylang_connection_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/__snapshots__/projects_controller_export_ok.snap: -------------------------------------------------------------------------------- 1 | { 2 | "texterify_timestamp" => "__REMOVED__" 3 | } -------------------------------------------------------------------------------- /spec/requests/api/v1/country_codes_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/country_codes_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/dashboard_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/dashboard_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/export_configs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/export_configs_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/file_formats_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/file_formats_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/flavors_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/flavors_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/imports_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/imports_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/instance_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/instance_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/key_tags_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/key_tags_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/languages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/languages_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/licenses_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/licenses_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/projects_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/projects_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/releases_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/releases_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/tags_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/tags_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/requests/api/v1/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/seeds/__snapshots__/language_plurals.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/seeds/__snapshots__/language_plurals.snap -------------------------------------------------------------------------------- /spec/seeds/seeds_cldr_plurals_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/seeds/seeds_cldr_plurals_spec.rb -------------------------------------------------------------------------------- /spec/serializers/language_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/serializers/language_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/organization_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/serializers/organization_serializer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/login_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/support/login_helpers.rb -------------------------------------------------------------------------------- /spec/support/strip_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/support/strip_serializer.rb -------------------------------------------------------------------------------- /spec/workers/trial_ending_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/spec/workers/trial_ending_worker_spec.rb -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/project_column_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test/models/project_column_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test_basic.texterify-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test_basic.texterify-license -------------------------------------------------------------------------------- /test_business.texterify-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test_business.texterify-license -------------------------------------------------------------------------------- /test_license_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test_license_key -------------------------------------------------------------------------------- /test_license_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test_license_key.pub -------------------------------------------------------------------------------- /test_team.texterify-license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/test_team.texterify-license -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txty-io/texterify/HEAD/yarn.lock --------------------------------------------------------------------------------