From c2104468bd964f476407c57f2e3f03a94d07885e Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Wed, 4 Aug 2021 11:00:50 +0300 Subject: [PATCH] remove debug output --- xcode/aux_scripts/import_strings.php | 1 - 1 file changed, 1 deletion(-) diff --git a/xcode/aux_scripts/import_strings.php b/xcode/aux_scripts/import_strings.php index e5c0a8d..1cd20ee 100644 --- a/xcode/aux_scripts/import_strings.php +++ b/xcode/aux_scripts/import_strings.php @@ -49,7 +49,6 @@ $ios_swift_strings .= "\t/// ".$value_without_linefeed."\n\t".'static let '.preg_replace_callback('/_(.?)/', function ($m) { return strtoupper($m[1]); }, $key).' = NSLocalizedString("'.$key.'", bundle: '.$BUNDLE.', comment: "'.addslashes($value_without_linefeed).'")'."\n".PHP_EOL; } $ios_swift_strings .= '}'.PHP_EOL; - echo $ios_swift_strings; file_put_contents($LOCALIZATION_PATH.'String+Localization.swift', $ios_swift_strings); } }