crowdin.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # Files configuration
  3. #
  4. files: [
  5. {
  6. #
  7. # Source files filter
  8. # e.g. "/resources/en/*.json"
  9. #
  10. # App strings template
  11. "source" : "/Localization/app.json",
  12. #
  13. # Where translations will be placed
  14. # e.g. "/resources/%two_letters_code%/%original_file_name%"
  15. #
  16. "translation" : "/Localization/StringsConvertor/input/%osx_code%/%original_file_name%",
  17. #
  18. # The parameter "update_option" is optional. If it is not set, after the files update the translations for changed strings will be removed. Use to fix typos and for minor changes in the source strings
  19. # e.g. "update_as_unapproved" or "update_without_changes"
  20. #
  21. # "update_option" : "update_as_unapproved",
  22. #
  23. },
  24. {
  25. # App info plist strings template
  26. "source" : "/Localization/ios-infoPlist.json",
  27. "translation" : "/Localization/StringsConvertor/input/%osx_code%/%original_file_name%",
  28. "update_option" : "update_as_unapproved",
  29. },
  30. {
  31. # App strings dict
  32. "source" : "/Localization/Localizable.stringsdict",
  33. "translation" : "/Localization/StringsConvertor/input/%osx_code%/%original_file_name%",
  34. # "update_option" : "update_as_unapproved",
  35. },
  36. {
  37. # intents strings
  38. "source" : "/MastodonIntent/en.lproj/Intents.strings",
  39. "translation" : "/Localization/StringsConvertor/Intents/input/%osx_code%/%original_file_name%",
  40. # "update_option" : "update_as_unapproved",
  41. },
  42. {
  43. # intents strings dict
  44. "source" : "/MastodonIntent/en.lproj/Intents.stringsdict",
  45. "translation" : "/Localization/StringsConvertor/Intents/input/%osx_code%/%original_file_name%",
  46. # "update_option" : "update_as_unapproved",
  47. },
  48. ]