From f6d22ec11ef3427f1295f6552e94a7e9e6324d32 Mon Sep 17 00:00:00 2001 From: Bob Van Landuyt Date: Tue, 10 Jul 2018 17:50:17 +0200 Subject: [PATCH] Remove timestamps from `locale/gitlab.pot` This will help us avoid conflicts when regenerating the pot file, the timestamps aren't used by Crowdin. --- lib/tasks/gettext.rake | 8 +++++++- locale/gitlab.pot | 2 -- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/tasks/gettext.rake b/lib/tasks/gettext.rake index 6df7fe81437..f431352b61e 100644 --- a/lib/tasks/gettext.rake +++ b/lib/tasks/gettext.rake @@ -20,16 +20,22 @@ namespace :gettext do end task :regenerate do + pot_file = 'locale/gitlab.pot' # Remove all translated files, this speeds up finding FileUtils.rm Dir['locale/**/gitlab.*'] # remove the `pot` file to ensure it's completely regenerated - FileUtils.rm_f 'locale/gitlab.pot' + FileUtils.rm_f pot_file Rake::Task['gettext:find'].invoke # leave only the required changes. `git checkout -- locale/*/gitlab.po` + # Remove timestamps from the pot file + pot_content = File.read pot_file + pot_content.gsub!(/^"POT?\-(?:Creation|Revision)\-Date\:.*\n/, '') + File.write pot_file, pot_content + puts <<~MSG All done. Please commit the changes to `locale/gitlab.pot`. diff --git a/locale/gitlab.pot b/locale/gitlab.pot index 77cfe4ee84e..83ff735580e 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -8,8 +8,6 @@ msgid "" msgstr "" "Project-Id-Version: gitlab 1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-07-10 17:09+0300\n" -"PO-Revision-Date: 2018-07-10 17:09+0300\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n"