Sha256: 05ce4c3d35569084ccf56375c8bdc445d02651d16d996930fcd5699a9a7f7b05
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
module FastlaneCore module Languages # These are all the languages which are available to use to upload app metadata and screenshots # The old format which was used until August 2015 (good old times) ALL_LANGUAGES_LEGACY = ["da-DK", "de-DE", "el-GR", "en-AU", "en-CA", "en-GB", "en-US", "es-ES", "es-MX", "fi-FI", "fr-CA", "fr-FR", "id-ID", "it-IT", "ja-JP", "ko-KR", "ms-MY", "nl-NL", "no-NO", "pt-BR", "pt-PT", "ru-RU", "sv-SE", "th-TH", "tr-TR", "vi-VI", "cmn-Hans", "cmn-Hant"] # The new format used from September 2015 on # This was generated from `Spaceship::Tunes.client.available_languages.sort` # Updates should also be made to: # - produce/lib/produce/available_default_languages.rb # - spaceship/lib/assets/languageMapping.json # See pull request for example: https://github.com/fastlane/fastlane/pull/14110 ALL_LANGUAGES = ["ar-SA", "ca", "cs", "da", "de-DE", "el", "en-AU", "en-CA", "en-GB", "en-US", "es-ES", "es-MX", "fi", "fr-CA", "fr-FR", "he", "hi", "hr", "hu", "id", "it", "ja", "ko", "ms", "nl-NL", "no", "pl", "pt-BR", "pt-PT", "ro", "ru", "sk", "sv", "th", "tr", "uk", "vi", "zh-Hans", "zh-Hant"] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.165.1 | fastlane_core/lib/fastlane_core/languages.rb |
fastlane_hotfix-2.165.0 | fastlane_core/lib/fastlane_core/languages.rb |