Skip to content

Commit

Permalink
taskcluster check
Browse files Browse the repository at this point in the history
  • Loading branch information
mcleinman committed Oct 15, 2024
1 parent 319be60 commit ab90ae5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/localizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,12 @@ QString Localizer::getTranslatedCityName(const QString& cityName) const {

auto value = getCapitalizedStringFromI18n(i18nCityId);

if (cityName.contains("alm")) {
logger.error() << "TESTING: cityName - " << cityName << "parsedCityName "
<< parsedCityName << "i18nCityId " << i18nCityId << " value "
<< value;
}

// The server list is ever changing, so it is plausible that a translation
// doesn't exist yet for a given server.
if (value.isEmpty()) {
Expand Down
1 change: 1 addition & 0 deletions taskcluster/scripts/build/macos_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ cmake --build ${TASK_HOME}/build --target pkg

print Y "Exporting the build artifacts..."
mkdir -p tmp || die
cp ${TASK_HOME}/build/translations/generated/mozillavpn_el.ts ${TASK_HOME}/artifacts/mozillavpn_el.ts


print Y "Extracting the Symbols..."
Expand Down

0 comments on commit ab90ae5

Please sign in to comment.