Skip to content
Snippets Groups Projects
  1. Feb 13, 2023
  2. Feb 09, 2023
  3. Feb 01, 2023
  4. Jan 24, 2023
  5. Jan 23, 2023
  6. Jan 19, 2023
  7. Jan 18, 2023
  8. Jan 16, 2023
  9. Jan 12, 2023
  10. Jan 09, 2023
  11. Dec 22, 2022
  12. Dec 19, 2022
  13. Dec 15, 2022
  14. Dec 09, 2022
  15. Dec 06, 2022
  16. Dec 05, 2022
  17. Dec 04, 2022
  18. Dec 02, 2022
  19. Nov 30, 2022
  20. Nov 29, 2022
    • Pier Angelo Vendrame's avatar
      Bug 41473: Add Albanian to locales · ca328865
      Pier Angelo Vendrame authored
      ca328865
    • boklm's avatar
      Bug 40699: Fix input_files in projects/firefox-l10n/config · 985fe814
      boklm authored
      In input_files in projects/firefox-l10n/config we are doing this:
      
        my $locales = project_config($project, 'var/locales', $options);
        foreach my $locale (@$locales) {
          $locale = process_template($project, $locale, '.');
      
      In this foreach loop, `$locale` is pointing to the real string from
      `var/locales` and not a copy, and we are updating it with the output
      from `process_template`. This means that the template will be processed
      the first time the function is called (for example for a linux-x86_64
      build) and the processed value from the first call reused on subsequent
      calls (for example a macos build, where the `ja` locale is supposed to
      be different).
      
      This is what caused the reproducibility issue in
      !591 (comment 2857042)
      
      To fix that we just use a separate variable to store the processed
      template.
      985fe814
Loading