remove debug output

This commit is contained in:
Ivan Smolin 2021-08-04 11:00:50 +03:00
parent 7c4149778c
commit c2104468bd
1 changed files with 0 additions and 1 deletions

View File

@ -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);
}
}