Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Localization & Image Asset Naming Consistency Improvements #68

Merged
merged 9 commits into from
Mar 22, 2025

Conversation

AkkeyLab
Copy link
Member

@AkkeyLab AkkeyLab commented Mar 22, 2025

Summary

  • Added a new Organizer section.
  • Localized Speaker and Organizer bios using Localizable.xcstrings.
  • Renamed image_name fields and asset names to ensure consistency between Website Package and MyLibrary Package.
  • Updated dependencies so that Website Package can access Localizable.xcstrings from different targets.
  • Modified ScheduleFeature Target to be buildable on macOS, allowing it to be added as a dependency of Website Package.
  • Updated Speaker, Organizer and Sponsor data.

Image Asset Naming Consistency

Previously, Speakers and Organizers had different naming conventions for their images across different packages:

  • Website Package references images using the image file name.
  • MyLibrary Package references images using the .imageset name.

To prevent potential issues caused by this inconsistency, all image file names and .imageset names have been unified.

Localizable.xcstrings Access in Website Package

Since Website Package needs to access Localizable.xcstrings in different targets, it must do so through their respective bundles.
To achieve this, those targets need to be added as dependencies of Website Package.

macOS Compatibility Changes

To add ScheduleFeature Target as a dependency of Website Package, it must be buildable in a macOS environment.

  • Some minor modifications were made to add platform-specific branches to handle API differences between iOS and macOS.

Dependency Update

The following diagram illustrates the dependency structure:

graph LR
  subgraph Website Package
    Website
  end

  subgraph MyLibrary Package
    DataClient -->|depends on| SharedModels

    subgraph ScheduleFeature Target
      xcstrings1(Localizable.xcstrings)
    end
  
    subgraph trySwiftFeature Target
      xcstrings2(Localizable.xcstrings)
    end
  end

  Website -->|depends on| DataClient
  Website -->|depends on| xcstrings1
  Website -->|depends on| xcstrings2
Loading

@AkkeyLab AkkeyLab self-assigned this Mar 22, 2025
@AkkeyLab AkkeyLab changed the title Feature/update website data ✨ Localization & Image Asset Naming Consistency Improvements Mar 22, 2025
@AkkeyLab AkkeyLab merged commit 2d8917d into tryswift:main Mar 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant