We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ef5c6b commit d9d0667Copy full SHA for d9d0667
src/Console/TranslateStrings.php
@@ -245,7 +245,7 @@ public function translate(int $maxContextItems = 100): void
245
foreach ($locales as $locale) {
246
// 소스 언어와 같거나 스킵 목록에 있는 언어는 건너뜀
247
if ($locale === $this->sourceLocale || in_array($locale, config('ai-translator.skip_locales', []))) {
248
- this->warn('Skipping locale ' . $locale .'.');
+ $this->warn('Skipping locale ' . $locale .'.');
249
continue;
250
}
251
@@ -274,7 +274,7 @@ public function translate(int $maxContextItems = 100): void
274
$this->warn('Skipping file ' . basename($file) .'.');
275
276
277
-
+
278
$this->displayFileInfo($file, $locale, $outputFile);
279
280
$localeFileCount++;
0 commit comments