Manage RunCat localization srtings.
RunCat uses SystemInfoKit, so localization of this library is also required.
Note
This repository does not accept requests or inquiries for RunCat.
- English (primary)
- Japanese
- Korean
- Development with Xcode 16.4+
- Written in Swift 6.1
- Compatible with macOS 14.0+
-
Edit Sources/RunCatLocalization/RCLLanguage.swift
public enum RCLLanguage: String, Sendable, Identifiable { case automatic case english = "en" case japanese = "ja" case korean = "ko" + case newLanguage = "new language code" ︙ public static let allCases: [RCLLanguage] = [ .english, .japanese, .korean, + .newLanguage ] } -
Add Locale to xcstrings files in Sources/RunCatLocalization/Resources

Please use wording that follows Apple platform conventions. And refer to the Apple Style Guide and Apple Localization Terms Glossary for word choice.
Apache License Version 2.0
