Skip to content

Commit 1063771

Browse files
author
Michiel Verkoijen
committed
Small text change.
1 parent a17b40c commit 1063771

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/class-tiny-settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,11 @@ public function render_resize() {
305305
$id = self::get_prefixed_name("resize_original_enabled");
306306
$name = self::get_prefixed_name("resize_original[enabled]");
307307
$checked = ( $this->get_resize_enabled() ? ' checked="checked"' : '' );
308-
$label = self::translate_escape('Resize and compress orginal images to fit within');
308+
$label = self::translate_escape('Resize and compress the orginal image');
309309

310310
echo '<p class="tiny-resize-available">';
311311
echo '<input type="checkbox" id="' . $id . '" name="' . $name . '" value="on" '. $checked . '/>';
312-
echo '<label for="' . $id . '">' . $label . ':</label>';
312+
echo '<label for="' . $id . '">' . $label . '</label>';
313313
echo '<br>';
314314
echo '</p>';
315315

-11 Bytes
Binary file not shown.

src/languages/tiny-compress-images-nl_NL.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ msgstr "(verkleind naar %dx%d)"
7676
msgid "(modified after compression)"
7777
msgstr "(veranderd na compressie)"
7878

79-
msgid "(file missing)"
79+
msgid "(file removed)"
8080
msgstr "(bestand ontbreekt)"
8181

8282
msgid "ago"
@@ -280,7 +280,7 @@ msgstr "Orgineel verkleinen"
280280
msgid "Enable the compression of the original image size to configure resizing"
281281
msgstr "Schakel compressie van de originele afbeelding in om te kunnen verkleinen"
282282

283-
msgid "Resize and compress orginal images to fit within"
283+
msgid "Resize and compress the orginal image"
284284
msgstr "Verklein en comprimeer de originele afbeelding"
285285

286286
msgid "Resizing takes %s for each image that is larger"

src/views/compress-details.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<?php if ($missing > 0) { ?>
3030
<span class="message">
31-
<?php printf(self::translate_escape('%d %s missing'), $missing, ($missing == 1) ? "file" : "files") ?>
31+
<?php printf(self::translate_escape('%d %s removed'), $missing, ($missing == 1) ? "file" : "files") ?>
3232
</span>
3333
<br />
3434
<?php } ?>
@@ -92,7 +92,7 @@
9292
echo '<em>' . self::translate_escape('(modified after compression)') . '</em>';
9393
}
9494
} else {
95-
echo '<em>' . self::translate_escape('(file missing)') . '</em>';
95+
echo '<em>' . self::translate_escape('(file removed)') . '</em>';
9696
}
9797
?>
9898
</td>

0 commit comments

Comments
 (0)