Changed min avatar size to 96x96
authorMarcel Werk <burntime@woltlab.com>
Sat, 3 Jan 2015 20:55:16 +0000 (21:55 +0100)
committerMarcel Werk <burntime@woltlab.com>
Sat, 3 Jan 2015 20:55:16 +0000 (21:55 +0100)
wcfsetup/install/files/lib/system/upload/AvatarUploadFileValidationStrategy.class.php
wcfsetup/install/lang/de.xml
wcfsetup/install/lang/en.xml

index 25b0367d97969e3109b7003a3ca9279b6f7ca22a..2afb9df4d4d027a140e62dfce8be4c2af75d61fb 100644 (file)
@@ -22,7 +22,7 @@ class AvatarUploadFileValidationStrategy extends DefaultUploadFileValidationStra
                // get image size
                try {
                        $imageData = getimagesize($uploadFile->getLocation());
-                       if ($imageData[0] < 48 || $imageData[1] < 48) {
+                       if ($imageData[0] < 96 || $imageData[1] < 96) {
                                $uploadFile->setValidationErrorType('tooSmall');
                                return false;
                        }
index fdb06056e88a9b2fa3266384d04e645edd1e632a..768abc1a681f0aff6485f626ec2d88521bb60049 100644 (file)
@@ -3045,7 +3045,7 @@ Sollten Sie sich nicht auf der Website: {@PAGE_TITLE|language} angemeldet haben,
                <item name="wcf.user.avatar.type.custom"><![CDATA[Eigenen Avatar hochladen]]></item>
                <item name="wcf.user.avatar.type.custom.crop"><![CDATA[Avatar zuschneiden]]></item>
                <item name="wcf.user.avatar.type.custom.crop.description"><![CDATA[Die verkleinerten Darstellungen Ihres Avatars verwenden einen quadratischen Ausschnitt. Sie können den gewünschten Ausschnitt individuell festlegen, in dem Sie den hervorgehobenen Bereich mit gedrückter Maustaste an die gewünschte Position verschieben.]]></item>
-               <item name="wcf.user.avatar.type.custom.description"><![CDATA[Eigene Avatare dürfen die Dateiendungen {"\n"|str_replace:', ':$__wcf->session->getPermission('user.profile.avatar.allowedFileExtensions')} und maximal eine Größe {@$__wcf->session->getPermission('user.profile.avatar.maxSize')|filesize} besitzen. Die Mindestgröße für Avatare liegt bei 48×48 Pixel, die empfohlene Maximalgröße bei {@MAX_AVATAR_WIDTH}×{@MAX_AVATAR_HEIGHT} Pixel, größere Avatare werden - sofern möglich - automatisch auf die Maximalgröße verkleinert.]]></item>
+               <item name="wcf.user.avatar.type.custom.description"><![CDATA[Eigene Avatare dürfen die Dateiendungen {"\n"|str_replace:', ':$__wcf->session->getPermission('user.profile.avatar.allowedFileExtensions')} und maximal eine Größe {@$__wcf->session->getPermission('user.profile.avatar.maxSize')|filesize} besitzen. Die Mindestgröße für Avatare liegt bei 96×96 Pixel, die empfohlene Maximalgröße bei {@MAX_AVATAR_WIDTH}×{@MAX_AVATAR_HEIGHT} Pixel, größere Avatare werden - sofern möglich - automatisch auf die Maximalgröße verkleinert.]]></item>
                <item name="wcf.user.avatar.type.gravatar"><![CDATA[Gravatar verwenden]]></item>
                <item name="wcf.user.avatar.type.gravatar.description"><![CDATA[Bei einem Gravatar handelt es sich um einen global verfügbaren Avatar (Global Recognized Avatar), welcher mit Ihrer E-Mail-Adresse („{$__wcf->user->email}“) verknüpft ist. Auf der folgenden Website können Sie einen Gravatar anlegen: <a href="http://www.gravatar.com" class="externalURL"{if EXTERNAL_LINK_TARGET_BLANK} target="_blank"{/if}>www.gravatar.com</a>]]></item>
                <item name="wcf.user.avatar.type.gravatar.error.notFound"><![CDATA[Zu Ihrer E-Mail-Adresse konnte kein Gravatar gefunden werden.]]></item>
index b1611475cb8e5b746da8d853ecd3112e25c393ae..d93a56ca237ae5f7c03c97b4665889e75bc8ac19 100644 (file)
@@ -3039,7 +3039,7 @@ You can safely ignore this email if you did not register with the website: {@PAG
                <item name="wcf.user.avatar.type.custom"><![CDATA[Upload Own Avatar]]></item>
                <item name="wcf.user.avatar.type.custom.crop"><![CDATA[Crop Avatar]]></item>
                <item name="wcf.user.avatar.type.custom.crop.description"><![CDATA[The scaled versions of your avatar are based on a square cutout. You may specify an individual cutout by holding down your mouse button and moving the highlighted area to the desired position.]]></item>
-               <item name="wcf.user.avatar.type.custom.description"><![CDATA[You may use the following file extensions “{"\n"|str_replace:', ':$__wcf->session->getPermission('user.profile.avatar.allowedFileExtensions')}” for your avatar with a maximum file size of {@$__wcf->session->getPermission('user.profile.avatar.maxSize')|filesize}. The minimum dimensions are 48×48 pixel, it is recommended to provide a dimension of {@MAX_AVATAR_WIDTH}×{@MAX_AVATAR_HEIGHT} pixel. Any avatar that exceeds this limit will be scaled down if possible.]]></item>
+               <item name="wcf.user.avatar.type.custom.description"><![CDATA[You may use the following file extensions “{"\n"|str_replace:', ':$__wcf->session->getPermission('user.profile.avatar.allowedFileExtensions')}” for your avatar with a maximum file size of {@$__wcf->session->getPermission('user.profile.avatar.maxSize')|filesize}. The minimum dimensions are 96×96 pixel, it is recommended to provide a dimension of {@MAX_AVATAR_WIDTH}×{@MAX_AVATAR_HEIGHT} pixel. Any avatar that exceeds this limit will be scaled down if possible.]]></item>
                <item name="wcf.user.avatar.type.gravatar"><![CDATA[Use Gravatar]]></item>
                <item name="wcf.user.avatar.type.gravatar.description"><![CDATA[Gravatar (Global Recognized Avatar) provides a globally reusable avatar connected with your email address “{$__wcf->user->email}”. Visit <a href="http://www.gravatar.com" class="externalURL"{if EXTERNAL_LINK_TARGET_BLANK} target="_blank"{/if}>www.gravatar.com</a> to set up or change your avatar.]]></item>
                <item name="wcf.user.avatar.type.gravatar.error.notFound"><![CDATA[Your email address is not connected with a gravatar.]]></item>