-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Apply i18n codemods #2
base: main
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis PR implements internationalization (i18n) codemods across multiple components and templates. The changes involve extracting hardcoded text strings into translation keys and adding corresponding translation files in JSON format. The implementation uses the useTranslation hook from i18next and introduces locale-specific JSON files containing the translations. Class diagram for i18n implementationclassDiagram
class TeamInviteEmail {
+useTranslation()
+getTypeOfInvite(props)
+getHeading()
}
class OrganizationCreationEmail {
+useTranslation()
}
class OAuthClientCard {
+useTranslation()
}
class AppForm {
+useTranslation()
}
class Bookings {
+useTranslation()
}
class BrokenVideoIntegration {
+useTranslation()
}
class SlugReplacementEmail {
+useTranslation()
}
class OrganizationAdminNoSlotsEmail {
+useTranslation()
}
class AdminOrganizationNotificationEmail {
+useTranslation()
}
class Navbar {
+useTranslation()
}
class OAuthClientForm {
+useTranslation()
}
class Verify {
+useTranslation()
}
class LockStatusTable {
+useTranslation()
}
class Index {
+useTranslation()
}
class EventTypesStepCard {
+useTranslation()
}
class NoPlatformPlan {
+useTranslation()
}
class MaintenancePage {
+useTranslation()
}
class Bookings {
+useTranslation()
}
class Authorize {
+useTranslation()
}
class BookingConfirmationForm {
+useTranslation()
}
class ManagedUserHeader {
+useTranslation()
}
class OAuthClientsList {
+useTranslation()
}
class LockedSMSView {
+useTranslation()
}
class PlatformBillingUpgrade {
+useTranslation()
}
class EditOAuthClient {
+useTranslation()
}
class PlatformPlans {
+useTranslation()
}
class Signup {
+useTranslation()
}
class MoveTeamToOrg {
+useTranslation()
}
class DeleteForm {
+useTranslation()
}
class DailyVideoDownloadRecordingEmail {
+useTranslation()
}
class Home {
+useTranslation()
}
class ToolbarPlugin {
+useTranslation()
}
class PremiumTextfield {
+useTranslation()
}
class SingleAppPage {
+useTranslation()
}
class RerouteDialog {
+useTranslation()
}
class ManagedUserTable {
+useTranslation()
}
class ConnectAndJoin {
+useTranslation()
}
class InfiniteEventTypeList {
+useTranslation()
}
class Platform {
+useTranslation()
}
class Custom404 {
+useTranslation()
}
class Error500 {
+useTranslation()
}
class IconsPage {
+useTranslation()
}
class RemoveTeamFromOrg {
+useTranslation()
}
class RemoveUserFromOrg {
+useTranslation()
}
class DialogComponent {
+useTranslation()
}
class RefundInformation {
+useTranslation()
}
class Embed {
+useTranslation()
}
class Page {
+useTranslation()
}
class AppPage {
+useTranslation()
}
class MinutesField {
+useTranslation()
}
class OAuthView {
+useTranslation()
}
class EditOAuthClientWebhooks {
+useTranslation()
}
class MeetingUnavailable {
+useTranslation()
}
class NotFound {
+useTranslation()
}
class Page {
+useTranslation()
}
class AppListCard {
+useTranslation()
}
class AppCard {
+useTranslation()
}
class ErrorBoundary {
+useTranslation()
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. It seems to have been created by a bot (hey, codemod[bot]!). We assume it knows what it's doing!
This PR applies i18n codemods
Summary by Sourcery
Apply i18n codemods to refactor text content across the codebase, enabling internationalization support by integrating translation functions and keys.
New Features:
Enhancements: