]> git.mxchange.org Git - friendica.git/commitdiff
Use correct placeholder
authorMichael Vogel <icarus@dabo.de>
Tue, 24 May 2022 17:45:02 +0000 (19:45 +0200)
committerMichael Vogel <icarus@dabo.de>
Tue, 24 May 2022 17:45:02 +0000 (19:45 +0200)
src/Console/MoveToAvatarCache.php

index dfb2e2ec2db717de248a7a4d549c86a1b2d6de97..2d14f405fe2b4ebbd15ff423515bcf3f722ef06b 100644 (file)
@@ -89,26 +89,26 @@ HELP;
                        echo ++$count . '/' . $total . "\t" . $contact['id'] . "\t" . $contact['url'] . "\t";
                        $resourceid = Photo::ridFromURI($contact['photo']);
                        if (empty($resourceid)) {
-                               echo $this->l10n->t('no resource in photo %1', $contact['photo']) . "\n";
+                               echo $this->l10n->t('no resource in photo %s', $contact['photo']) . "\n";
                                continue;
                        }
                        echo '1';
                        $photo = Photo::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]);
                        if (empty($photo)) {
-                               echo ' ' . $this->l10n->t('no photo with id %1', $resourceid) . "\n";
+                               echo ' ' . $this->l10n->t('no photo with id %s', $resourceid) . "\n";
                                continue;
                        }
 
                        echo '2';
                        $imgdata = Photo::getImageDataForPhoto($photo);
                        if (empty($imgdata)) {
-                               echo ' ' . $this->l10n->t('no image data for photo with id %1', $resourceid) . "\n";
+                               echo ' ' . $this->l10n->t('no image data for photo with id %s', $resourceid) . "\n";
                                continue;
                        }
                        echo '3';
                        $image = new Image($imgdata, Images::getMimeTypeByData($imgdata));
                        if (!$image->isValid()) {
-                               echo ' ' . $this->l10n->t('invalid image for id %1', $resourceid) . "\n";
+                               echo ' ' . $this->l10n->t('invalid image for id %s', $resourceid) . "\n";
                                continue;
                        }