Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 7月 25, 2023
  2. 7月 18, 2023
  3. 7月 14, 2023
  4. 7月 13, 2023
  5. 7月 12, 2023
  6. 7月 06, 2023
  7. 7月 04, 2023
  8. 6月 29, 2023
  9. 6月 28, 2023
    • Eduardo Bonet's avatar
      Runs gettext by default · 259dc331
      Eduardo Bonet 创作于
      The performance of generating translations was greatly increased, which
      means we can run it before pushing. This should save some unnecessary
      broken pipelines.
      259dc331
  10. 5月 28, 2023
  11. 5月 22, 2023
  12. 5月 13, 2023
  13. 5月 11, 2023
  14. 5月 04, 2023
  15. 4月 27, 2023
  16. 4月 26, 2023
    • Mayra Cabrera's avatar
      Adjust stable branch logic for package-and-test · c0c72451
      Mayra Cabrera 创作于
      The package-and-test-ee configuration was modified to suceed even with
      test failures, this makes the failures less noticeable and requires
      adjusting in the tooling side.
      
      This commit:
      * Updates the name of the package-and-test to specifically search for
        'package-and-test'
      * Makes a Danger warn message about the package-and-test to always be
        sent (it used to only be sent if the status was different than
      success)
      c0c72451
  17. 4月 25, 2023
  18. 4月 24, 2023
  19. 4月 20, 2023
    • Lukas Eipert's avatar
      Add guard to backend gettext extractor · f2cd7c61
      Lukas Eipert 创作于
      Only about 10% of our rb, haml and erb files seem to contain
      externalized strings. We can add a simple guard that checks whether a
      file contains `_(` and only parse it, if it does. This leads to a
      massive performance improvement.
      f2cd7c61
    • Lukas Eipert's avatar
      Implement "custom" haml gettext parser · 8b0eeac3
      Lukas Eipert 创作于
      We currently use `GettextI18nRails::HamlParser` which is using `hamlit`
      to convert `haml` to ruby and then `RubyGettextExtractor` (also part of
      the `gettext_i18n_rails` gem) to extract externalized strings from the
      converted ruby code. This however seems to be slower than the
      `GetText::RubyParser` from the `gettext` gem. The performance difference
      comes from `ruby_parser` vs `ripper`. The tool also seems to find more
      strings, that the previous parser wasn't able to find.
      8b0eeac3
  20. 4月 19, 2023
    • Lukas Eipert's avatar
      Stop scanning ee/spec for externalized strings · 96d7b30c
      Lukas Eipert 创作于
      We currently scan ee/spec for externalized strings, which brings up a
      few false-positives. These false positives create an unnecessary burden
      for translators and increase our scan time quite a bit (about 19% of our
      rb/erb/haml files are found inside ee/spec). On my machine this reduces
      the execution time from 29.4s to 21.5s when running on one core only.
      
      Fixed two specs which used confusing placeholder names in strings.
      96d7b30c
    • Steve Abrams's avatar
      Skip certain Danger rules for stable branch MRs · fb444b78
      Steve Abrams 创作于
      - Skip database warnings
      - Skip product intelligence review
      - Skip data team warnings
      fb444b78
  21. 4月 18, 2023
  22. 4月 13, 2023
加载中