├── README.md ├── i18n-ios-xcstrings.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── yangzhiyuan.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── i18n-ios-xcstrings ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Localizable2.xcstrings ├── SceneDelegate.swift ├── ViewController.swift ├── ar.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── ceb.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── de.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── fat.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── fj.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── fon.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── fr.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── i18n │ ├── Localizable.xcstrings │ └── Login.xcstrings ├── ja.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── ko.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── ms.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── pt.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── th.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── zh-HK.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── zh-Hans.lproj │ ├── LaunchScreen.strings │ └── Main.strings └── zh-TW.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── i18n-ios-xcstringsTests └── i18n_ios_xcstringsTests.swift ├── i18n-ios-xcstringsUITests ├── i18n_ios_xcstringsUITests.swift └── i18n_ios_xcstringsUITestsLaunchTests.swift └── images ├── fix-xcode16.png ├── load-xcstrings.webp ├── screen.webp ├── translate-all.gif ├── translate-key.gif ├── translate-language.gif ├── translate-value.gif └── translate-xcode-preview.webp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/README.md -------------------------------------------------------------------------------- /i18n-ios-xcstrings.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /i18n-ios-xcstrings.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /i18n-ios-xcstrings.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /i18n-ios-xcstrings.xcodeproj/xcuserdata/yangzhiyuan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings.xcodeproj/xcuserdata/yangzhiyuan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /i18n-ios-xcstrings/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/AppDelegate.swift -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Info.plist -------------------------------------------------------------------------------- /i18n-ios-xcstrings/Localizable2.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/Localizable2.xcstrings -------------------------------------------------------------------------------- /i18n-ios-xcstrings/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/SceneDelegate.swift -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/ViewController.swift -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ar.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ar.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ceb.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ceb.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/de.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fat.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fat.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fj.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fj.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fon.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fon.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/fr.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/i18n/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/i18n/Localizable.xcstrings -------------------------------------------------------------------------------- /i18n-ios-xcstrings/i18n/Login.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstrings/i18n/Login.xcstrings -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ms.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/ms.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/pt.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/pt.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/th.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/th.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/zh-HK.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/zh-HK.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/zh-TW.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstrings/zh-TW.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-ios-xcstringsTests/i18n_ios_xcstringsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstringsTests/i18n_ios_xcstringsTests.swift -------------------------------------------------------------------------------- /i18n-ios-xcstringsUITests/i18n_ios_xcstringsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstringsUITests/i18n_ios_xcstringsUITests.swift -------------------------------------------------------------------------------- /i18n-ios-xcstringsUITests/i18n_ios_xcstringsUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/i18n-ios-xcstringsUITests/i18n_ios_xcstringsUITestsLaunchTests.swift -------------------------------------------------------------------------------- /images/fix-xcode16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/fix-xcode16.png -------------------------------------------------------------------------------- /images/load-xcstrings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/load-xcstrings.webp -------------------------------------------------------------------------------- /images/screen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/screen.webp -------------------------------------------------------------------------------- /images/translate-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/translate-all.gif -------------------------------------------------------------------------------- /images/translate-key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/translate-key.gif -------------------------------------------------------------------------------- /images/translate-language.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/translate-language.gif -------------------------------------------------------------------------------- /images/translate-value.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/translate-value.gif -------------------------------------------------------------------------------- /images/translate-xcode-preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/i18n-ios-xcstrings/HEAD/images/translate-xcode-preview.webp --------------------------------------------------------------------------------