aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/options/OptionsWidget_avatar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/options/OptionsWidget_avatar.cpp')
-rw-r--r--src/modules/options/OptionsWidget_avatar.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/modules/options/OptionsWidget_avatar.cpp b/src/modules/options/OptionsWidget_avatar.cpp
index 0b5b2dd5a..3ffdc3502 100644
--- a/src/modules/options/OptionsWidget_avatar.cpp
+++ b/src/modules/options/OptionsWidget_avatar.cpp
@@ -40,10 +40,10 @@ OptionsWidget_avatar::OptionsWidget_avatar(QWidget * parent)
// 1st Box
KviTalGroupBox *g = addGroupBox(0,0,0,0,Qt::Horizontal,__tr2qs_ctx("Scaling in Userlist","options"));
KviBoolSelector *b = addBoolSelector(g,__tr2qs_ctx("Scale avatar images in userlist (recommended)","options"),KviOption_boolScaleAvatars);
- KviTalToolTip::add(b,__tr2qs_ctx("<center>This option will force KVIrc to scale avatars" \
+ KviTalToolTip::add(b,__tr2qs_ctx("This option will force KVIrc to scale avatars" \
" shown in the userlist.<br>" \
"Avatars will be scaled to fit the " \
- "constraints set below. Better keep this option on. :)</center>","options"));
+ "constraints set below. Better keep this option on. :)","options"));
addBoolSelector(g,__tr2qs_ctx("Do not scale avatar if it is less than required size","options"),KviOption_boolDoNotUpscaleAvatars);
@@ -67,40 +67,40 @@ OptionsWidget_avatar::OptionsWidget_avatar(QWidget * parent)
KviUIntSelector * us = addUIntSelector(g,__tr2qs_ctx("Maximum requested file size:","options"),KviOption_uintMaximumRequestedAvatarSize,0,1048576,102400,KVI_OPTION_BOOL(KviOption_boolRequestMissingAvatars));
mergeTip(bs,
- __tr2qs_ctx("<center>This option will cause KVIrc to send a DCC GET request " \
- "when someone sets an avatar and there is no cached copy available.</center>","options"));
+ __tr2qs_ctx("This option will cause KVIrc to send a DCC GET request " \
+ "when someone sets an avatar and there is no cached copy available.","options"));
us->setSuffix(__tr2qs_ctx(" bytes","options"));
mergeTip(us,
- __tr2qs_ctx("<center>This is the maximum size for avatar images that " \
+ __tr2qs_ctx("This is the maximum size for avatar images that " \
"will be automatically requested.<br>" \
- "A reasonable value might be 102400 bytes (100 K).</center>","options"));
+ "A reasonable value might be 102400 bytes (100 K).","options"));
connect(bs,SIGNAL(toggled(bool)),us,SLOT(setEnabled(bool)));
bs = addBoolSelector(gs,__tr2qs_ctx("Automatically accept incoming avatars","options"),KviOption_boolAutoAcceptIncomingAvatars);
mergeTip(
bs,
- __tr2qs_ctx("<center>This option will cause KVIrc to auto-accept " \
+ __tr2qs_ctx("This option will cause KVIrc to auto-accept " \
"DCC SEND requests for incoming avatars.<br>" \
"If you're using the \"Request missing avatars\" option " \
"above, enabling this may by useful.<br>" \
- "Avatars will be saved in the local KVIrc directory.</center>","options"));
+ "Avatars will be saved in the local KVIrc directory.","options"));
bs = addBoolSelector(gs,__tr2qs_ctx("Remember avatars for registered users","options"),KviOption_boolSetLastAvatarAsDefaultForRegisteredUsers);
mergeTip(
bs,
- __tr2qs_ctx("<center>Use a user's last known avatar by default " \
- "(only for users that are registered).</center>","options"));
+ __tr2qs_ctx("Use a user's last known avatar by default " \
+ "(only for users that are registered).","options"));
us = addUIntSelector(gs,__tr2qs_ctx("Avatar offer timeout:","options"),KviOption_uintAvatarOfferTimeoutInSecs,1,99999,60);
us->setSuffix(__tr2qs_ctx(" sec","options"));
mergeTip(us,
- __tr2qs_ctx("<center>This is the amount of time to make an avatar available for transfer when requested.<br>" \
+ __tr2qs_ctx("This is the amount of time to make an avatar available for transfer when requested.<br>" \
"When someone sends a CTCP AVATAR request, " \
"KVIrc will reply with a CTCP AVATAR message containing the name and size " \
"of your avatar image.<br>" \
"A time-limited file offer is added for the image file " \
- "to the requesting user.</center>","options"));
+ "to the requesting user.","options"));
bs = addBoolSelector(gs,__tr2qs_ctx("Ignore requests if no avatar is set","options"),KviOption_boolIgnoreChannelAvatarRequestsWhenNoAvatarSet);
mergeTip(bs,